Click or drag to resize
DigitalRuneIParticleParameter Interface
Represents a named parameter of a particle, like "Color" or "Position".

Namespace: DigitalRune.Particles
Assembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax
public interface IParticleParameter : INamedObject

The IParticleParameter type exposes the following members.

Properties
  NameDescription
Public propertyIsUniform
Gets a value indicating whether this particle parameter is a uniform parameter or a varying parameter.
Public propertyName
Gets the name.
(Inherited from INamedObject.)
Top
Remarks
Particles have several parameters, like "Color", "Position", "Mass", etc. All particle parameters must implement IParticleParameter. The name of a parameter (see property Name) must be unique within a particle system. See ParticleParameterNames for standard parameter names.
See Also