HomeSort by relevance Sort by last modified time
    Searched defs:velocity (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
Particle.java 46 * Particle velocity.
48 public final Vector3f velocity = new Vector3f(); field in class:Particle
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
Listener.java 41 private Vector3f velocity; field in class:Listener
48 velocity = new Vector3f();
54 velocity = source.velocity.clone();
82 return velocity;
109 public void setVelocity(Vector3f velocity) {
110 this.velocity.set(velocity);
112 renderer.updateListenerParam(this, ListenerParam.Velocity);