| StartValueEffectorTDistribution Property |
Gets or sets the random value distribution that is used to choose a start value for the
parameter of a new particle.
Namespace: DigitalRune.Particles.EffectorsAssembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax [ContentSerializerAttribute(Optional = true)]
public Distribution<T> Distribution { get; set; }
<ContentSerializerAttribute(Optional := true)>
Public Property Distribution As Distribution(Of T)
Get
Set
public:
[ContentSerializerAttribute(Optional = true)]
property Distribution<T>^ Distribution {
Distribution<T>^ get ();
void set (Distribution<T>^ value);
}
[<ContentSerializerAttribute(Optional = true)>]
member Distribution : Distribution<'T> with get, set
Property Value
Type:
DistributionT
The random value distribution that determines the start value for the parameter of new
particles. The default is
, which means that the start value is set to
the
DefaultValue.
See Also