Axiom.ParticleSystems.ParticleAffector.InitParticle C# (CSharp) 메소드

InitParticle() 공개 메소드

Method called to allow the affector to 'do it's stuff' on all active particles in the system.
This is where the affector gets the chance to apply it's effects to the particles of a system. The affector is expected to apply it's effect to some or all of the particles in the system passed to it, depending on the affector's approach.
public InitParticle ( Particle &particle ) : void
particle Particle Reference to a ParticleSystem to affect.
리턴 void
		public virtual void InitParticle( ref Particle particle )
		{
			// do nothing by default
		}