| IParticleParameter Interface |
Represents a named parameter of a particle, like "Color" or "Position".
Namespace: DigitalRune.ParticlesAssembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax public interface IParticleParameter : INamedObject
Public Interface IParticleParameter
Inherits INamedObject
public interface class IParticleParameter : INamedObject
type IParticleParameter =
interface
interface INamedObject
end
The IParticleParameter type exposes the following members.
Properties
| Name | Description |
---|
| IsUniform |
Gets a value indicating whether this particle parameter is a uniform parameter or a varying parameter.
|
| Name |
Gets the name.
(Inherited from INamedObject.) |
TopRemarks
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