Uses of Class
com.jmex.effects.particles.ParticleInfluence

Packages that use ParticleInfluence
com.jmex.editors.swing.particles   
com.jmex.effects.particles   
 

Uses of ParticleInfluence in com.jmex.editors.swing.particles
 

Methods in com.jmex.editors.swing.particles that return ParticleInfluence
 ParticleInfluence InfluenceEditPanel.getEdittedInfluence()
           
 

Methods in com.jmex.editors.swing.particles with parameters of type ParticleInfluence
 void InfluenceEditPanel.setEdittedInfluence(ParticleInfluence influence)
           
 

Uses of ParticleInfluence in com.jmex.effects.particles
 

Subclasses of ParticleInfluence in com.jmex.effects.particles
 class FloorInfluence
           
static class SimpleParticleInfluenceFactory.BasicDrag
           
static class SimpleParticleInfluenceFactory.BasicGravity
           
static class SimpleParticleInfluenceFactory.BasicVortex
           
static class SimpleParticleInfluenceFactory.BasicWind
           
 class SwarmInfluence
          Simple swarming influence for use with particles.
 class WanderInfluence
           
 

Methods in com.jmex.effects.particles that return ParticleInfluence
static ParticleInfluence SimpleParticleInfluenceFactory.createBasicDrag(float dragCoef)
          Create a basic drag force that will use the given drag coefficient.
static ParticleInfluence SimpleParticleInfluenceFactory.createBasicGravity(Vector3f gravForce, boolean rotateWithScene)
          Create a basic gravitational force.
static ParticleInfluence SimpleParticleInfluenceFactory.createBasicVortex(float strength, float divergence, Line axis, boolean random, boolean transformWithScene)
          Creates a basic vortex.
static ParticleInfluence SimpleParticleInfluenceFactory.createBasicWind(float windStr, Vector3f windDir, boolean addRandom, boolean rotateWithScene)
          Creates a basic wind that always blows in a single direction.
 

Methods in com.jmex.effects.particles that return types with arguments of type ParticleInfluence
 java.util.ArrayList<ParticleInfluence> ParticleController.getInfluences()
          Returns the list of influences acting on this particle controller.
 java.util.ArrayList<ParticleInfluence> ParticleSystem.getInfluences()
          Returns the list of influences acting on this particle controller.
 

Methods in com.jmex.effects.particles with parameters of type ParticleInfluence
 void ParticleController.addInfluence(ParticleInfluence influence)
          Add an external influence to this particle controller.
 void ParticleSystem.addInfluence(ParticleInfluence influence)
          Add an external influence to the particle controller for this mesh.
 boolean ParticleController.removeInfluence(ParticleInfluence influence)
          Remove an influence from this particle controller.
 boolean ParticleSystem.removeInfluence(ParticleInfluence influence)
          Remove an influence from the particle controller for this mesh.