|  | AngularVelocityEffector Class | 
 Inheritance Hierarchy
Inheritance HierarchyNamespace: DigitalRune.Particles.Effectors
 Syntax
SyntaxThe AngularVelocityEffector type exposes the following members.
 Constructors
Constructors| Name | Description | |
|---|---|---|
|  | AngularVelocityEffector | 
            Initializes a new instance of the AngularVelocityEffector class.
             | 
 Methods
Methods| Name | Description | |
|---|---|---|
|  | BeginUpdate | 
            Called when the particle system begins its update.
            (Inherited from ParticleEffector.) | 
|  | Clone | 
            Creates a new ParticleEffector that is a clone of the current instance.
            (Inherited from ParticleEffector.) | 
|  | CloneCore | 
            Makes the instance a clone of the specified ParticleEffector.
            (Overrides ParticleEffectorCloneCore(ParticleEffector).) | 
|  | CreateInstanceCore | 
            When implemented in a derived class, creates a new instance of the 
            ParticleEffector derived class. 
            (Overrides ParticleEffectorCreateInstanceCore.) | 
|  | EndUpdate | 
            Called when the particle system finishes its update.
            (Inherited from ParticleEffector.) | 
|  | Equals | (Inherited from Object.) | 
|  | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) | 
|  | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | 
|  | GetType | Gets the Type of the current instance.(Inherited from Object.) | 
|  | Initialize | 
            Initializes this particle effector.
            (Inherited from ParticleEffector.) | 
|  | InitializeParticles | 
            Initializes new particles.
            (Inherited from ParticleEffector.) | 
|  | MemberwiseClone | Creates a shallow copy of the current Object.(Inherited from Object.) | 
|  | OnBeginUpdate | 
            Called when BeginUpdate(TimeSpan) was called.
            (Overrides ParticleEffectorOnBeginUpdate(TimeSpan).) | 
|  | OnEndUpdate | 
            Called when BeginUpdate(TimeSpan) was called.
            (Inherited from ParticleEffector.) | 
|  | OnInitialize | 
            Called when Initialize was called.
            (Inherited from ParticleEffector.) | 
|  | OnInitializeParticles | 
            Called when InitializeParticles(Int32, Int32, Object) was called.
            (Inherited from ParticleEffector.) | 
|  | OnRequeryParameters | 
            Called when RequeryParameters was called.
            (Overrides ParticleEffectorOnRequeryParameters.) | 
|  | OnUninitialize | 
            Called when Uninitialize was called.
            (Overrides ParticleEffectorOnUninitialize.) | 
|  | OnUpdateParticles | 
            Called when UpdateParticles(TimeSpan, Int32, Int32) was called.
            (Overrides ParticleEffectorOnUpdateParticles(TimeSpan, Int32, Int32).) | 
|  | RequeryParameters | 
            Requeries the particle parameters.
            (Inherited from ParticleEffector.) | 
|  | ToString | Returns a string that represents the current object.(Inherited from Object.) | 
|  | Uninitialize | 
            Uninitializes this particle effector.
            (Inherited from ParticleEffector.) | 
|  | UpdateParticles | 
            Updates particles.
            (Inherited from ParticleEffector.) | 
 Properties
Properties| Name | Description | |
|---|---|---|
|  | AngleParameter | 
            Gets or sets the name of the parameter that defines the angle.
            (A varying or uniform parameter of type Single.)
             | 
|  | Enabled | 
            Gets or sets a value indicating whether this ParticleEffector is enabled.
            (Inherited from ParticleEffector.) | 
|  | Name | 
            Gets the name of this particle effector.
            (Inherited from ParticleEffector.) | 
|  | ParticleSystem | 
            Gets or sets the particle system.
            (Inherited from ParticleEffector.) | 
|  | SpeedParameter | 
            Gets or sets the name of the parameter that defines the rotation speed.
            (A varying or uniform parameter of type Single.)
             | 
 Remarks
RemarksThis effector changes an angle parameter by applying an angular velocity.
Used particle parameters:
| Particle Parameter | Description | 
|---|---|
| AngleParameter | A Single parameter that defines the angle in radians. This parameter is modified by this effector. The angle is always kept in the interval [0, 2π[. Per default, the parameter "Angle" is used. | 
| SpeedParameter | A Single parameter that defines the angular speed in radians per second. Per default, the parameter "AngularSpeed" is used. | 
 See Also
See Also