Process Method

Project Mercury API

[This is preliminary documentation and is subject to change.]

Processes the particles.

Namespace:  ProjectMercury.Modifiers
Assembly:  ProjectMercury (in ProjectMercury.dll) Version: 3.1.0.0

Syntax

C#
public override void Process(
	float dt,
	Particle* particleArray,
	int count
)
Visual Basic (Declaration)
Public Overrides Sub Process ( _
	dt As Single, _
	particleArray As Particle*, _
	count As Integer _
)
Visual C++
public:
virtual void Process(
	float dt, 
	Particle* particleArray, 
	int count
) override

Parameters

dt
Type: System..::.Single
Elapsed time in whole and fractional seconds.
particleArray
Type: ProjectMercury..::.Particle *
A pointer to an array of particles.
count
Type: System..::.Int32
The number of particles which need to be processed.

See Also