| ParticleEffectorEndUpdate Method |
Called when the particle system finishes its update.
Namespace: DigitalRune.ParticlesAssembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax public void EndUpdate(
TimeSpan deltaTime
)
Public Sub EndUpdate (
deltaTime As TimeSpan
)
public:
void EndUpdate(
TimeSpan deltaTime
)
member EndUpdate :
deltaTime : TimeSpan -> unit
Parameters
- deltaTime
- Type: SystemTimeSpan
The elapsed time since the last update.
Remarks
This method is automatically called by the particle system at the end of its
Update(TimeSpan) method.
See Also