Click or drag to resize
DigitalRuneIParticleParameterTValues Property
Gets the particle parameter array that contains one value per particle.

Namespace: DigitalRune.Particles
Assembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax
T[] Values { get; }

Property Value

Type: T
The particle parameter array. Can be .
Remarks

If the Values array is , then the DefaultValue applies to all particles. This type of particle parameter is called a "uniform" parameter.

If the Values array is set, then each particles has its own value. This type of particle parameter is called a "varying" parameter.

Other objects should not store a direct reference to this array because the particle system can replace the array. Instead, store a reference to the IParticleParameterT and use this property to retrieve the current array when needed.

See Also