Packagecv.orion.interfaces
Interfacepublic interface IFilter
ImplementorsBounceEdgeFilter, CollisionFilter, ColorFilter, DragFilter, FadeFilter, FrameFilter, GravityFilter, MouseGravityFilter, MouseSpringFilter, ScaleFilter, StopEdgeFilter, TargetsGravityFilter, TargetsSpringFilter, TurnToPathFilter, WanderFilter, WindFilter, WrapEdgeFilter

Implement the IFilter interface to create a custom particle filter. A particle filter applies a specific force or action to be applied to the particle.

Such forces could be gravity, a spring motion, or even fading the particle. The combination of these filters are strung together to form an effect.

See also

cv.Orion


Public Methods
 MethodDefined by
  
applyFilter(particle:ParticleVO, target:Orion):void
Applies the specified filter to a particular particle.
IFilter
Method detail
applyFilter()method
public function applyFilter(particle:ParticleVO, target:Orion):void

Applies the specified filter to a particular particle.

Parameters
particle:ParticleVO — The individual particle.
 
target:Orion — The emitter associated with the particle.