C# Class Project290.Particles.TechnicolorAction

DO NOT CREATE AN INSTANCE OF THIS. USE TechnicolorAction.Instance.
Inheritance: ParticleAction
Afficher le fichier Open project: scastle/Solitude Class Usage Examples

Méthodes publiques

Méthode 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 méthode

Creates this instance.
public static Create ( ) : void
Résultat void

Draw() public méthode

Draws the specified particle.
public Draw ( Particle particle ) : void
particle Particle The particle.
Résultat void

Update() public méthode

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.
Résultat void