C# Class Project290.Particles.TechnicolorAction

DO NOT CREATE AN INSTANCE OF THIS. USE TechnicolorAction.Instance.
Inheritance: ParticleAction
显示文件 Open project: scastle/Solitude Class Usage Examples

Public Methods

Method Description
Create ( ) : void

Creates this instance.

Draw ( Particle particle ) : void

Draws the specified particle.

Update ( Particle particle ) : void

Updates the specified particle. This should NOT do physics, but everything else. Assume that the physics is performed before this is called.

Method Details

Create() public static method

Creates this instance.
public static Create ( ) : void
return void

Draw() public method

Draws the specified particle.
public Draw ( Particle particle ) : void
particle Particle The particle.
return void

Update() public method

Updates the specified particle. This should NOT do physics, but everything else. Assume that the physics is performed before this is called.
public Update ( Particle particle ) : void
particle Particle The particle.
return void