| StartDirectionEffectorDistribution 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<Vector3F> Distribution { get; set; }
<ContentSerializerAttribute(Optional := true)>
Public Property Distribution As Distribution(Of Vector3F)
Get
Set
public:
[ContentSerializerAttribute(Optional = true)]
property Distribution<Vector3F>^ Distribution {
Distribution<Vector3F>^ get ();
void set (Distribution<Vector3F>^ value);
}
[<ContentSerializerAttribute(Optional = true)>]
member Distribution : Distribution<Vector3F> with get, set
Property Value
Type:
DistributionVector3F
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
DefaultValue.
See Also