| LinearAccelerationEffectorAccelerationParameter Property |
Gets or sets the name of the parameter that defines the acceleration vector.
(A varying or uniform parameter of type
Vector3F.)
Namespace: DigitalRune.Particles.EffectorsAssembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax [ParticleParameterAttribute(ParticleParameterUsage.In)]
public string AccelerationParameter { get; set; }
<ParticleParameterAttribute(ParticleParameterUsage.In)>
Public Property AccelerationParameter As String
Get
Set
public:
[ParticleParameterAttribute(ParticleParameterUsage::In)]
property String^ AccelerationParameter {
String^ get ();
void set (String^ value);
}
[<ParticleParameterAttribute(ParticleParameterUsage.In)>]
member AccelerationParameter : string with get, set
Property Value
Type:
String
The name of the parameter that defines the acceleration vector.
(Parameter type: varying or uniform, value type:
Vector3F)
The default value is "LinearAcceleration".
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