| StreamEmitterEmissionRateParameter Property |
Gets or sets the name of the particle parameter that defines the emission rate (particles
per second). (A uniform parameter of type
Single.)
Namespace: DigitalRune.Particles.EffectorsAssembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax [ContentSerializerAttribute(Optional = true)]
[ParticleParameterAttribute(ParticleParameterUsage.In, Optional = true)]
public string EmissionRateParameter { get; set; }
<ContentSerializerAttribute(Optional := true)>
<ParticleParameterAttribute(ParticleParameterUsage.In, Optional := true)>
Public Property EmissionRateParameter As String
Get
Set
public:
[ContentSerializerAttribute(Optional = true)]
[ParticleParameterAttribute(ParticleParameterUsage::In, Optional = true)]
property String^ EmissionRateParameter {
String^ get ();
void set (String^ value);
}
[<ContentSerializerAttribute(Optional = true)>]
[<ParticleParameterAttribute(ParticleParameterUsage.In, Optional = true)>]
member EmissionRateParameter : string with get, set
Property Value
Type:
String
The name of the particle parameter that defines emission rate.
(Parameter type: uniform, value type:
Single)
The default value is
.
Remarks
This property needs to be set before the particle system is running. The particle effector
might ignore any changes that occur while the particle system is running.
See Also