| ParticleEffectorUpdateParticles Method |
Updates particles.
Namespace: DigitalRune.ParticlesAssembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax public void UpdateParticles(
TimeSpan deltaTime,
int startIndex,
int count
)
Public Sub UpdateParticles (
deltaTime As TimeSpan,
startIndex As Integer,
count As Integer
)
public:
void UpdateParticles(
TimeSpan deltaTime,
int startIndex,
int count
)
member UpdateParticles :
deltaTime : TimeSpan *
startIndex : int *
count : int -> unit
Parameters
- deltaTime
- Type: SystemTimeSpan
The elapsed time since the last update. - startIndex
- Type: SystemInt32
The index of the first particle to initialize. - count
- Type: SystemInt32
The number of particles to initialize.
Remarks
This method is automatically called when the particle system is updated (see
Update(TimeSpan)).
See Also