Uses of Class
com.jme3.animation.LoopMode

Packages that use LoopMode
com.jme3.animation The com.jme3.animation package contains various classes for managing animation inside a jME3 application. 
com.jme3.cinematic   
com.jme3.cinematic.events   
 

Uses of LoopMode in com.jme3.animation
 

Methods in com.jme3.animation that return LoopMode
 LoopMode AnimChannel.getLoopMode()
           
static LoopMode LoopMode.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LoopMode[] LoopMode.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.jme3.animation with parameters of type LoopMode
 void AnimChannel.setLoopMode(LoopMode loopMode)
           
 

Uses of LoopMode in com.jme3.cinematic
 

Constructors in com.jme3.cinematic with parameters of type LoopMode
Cinematic(Node scene, float initialDuration, LoopMode loopMode)
           
Cinematic(Node scene, LoopMode loopMode)
           
 

Uses of LoopMode in com.jme3.cinematic.events
 

Fields in com.jme3.cinematic.events declared as LoopMode
protected  LoopMode AbstractCinematicEvent.loopMode
           
 

Methods in com.jme3.cinematic.events that return LoopMode
 LoopMode AbstractCinematicEvent.getLoopMode()
          retursthe loopMode of the animation
 LoopMode CinematicEvent.getLoopMode()
           
 

Methods in com.jme3.cinematic.events with parameters of type LoopMode
 void AbstractCinematicEvent.setLoopMode(LoopMode loopMode)
          Sets the loopMode of the animation
 void AnimationTrack.setLoopMode(LoopMode loopMode)
           
 void CinematicEvent.setLoopMode(LoopMode loop)
           
 void SoundTrack.setLoopMode(LoopMode loopMode)
           
 

Constructors in com.jme3.cinematic.events with parameters of type LoopMode
AbstractCinematicEvent(float initialDuration, LoopMode loopMode)
          contruct a cinematic event with the given loopMode and the given initialDuration
AbstractCinematicEvent(LoopMode loopMode)
          contruct a cinematic event with the given loopMode
AnimationTrack(Spatial model, java.lang.String animationName, float initialDuration, LoopMode loopMode)
           
AnimationTrack(Spatial model, java.lang.String animationName, LoopMode loopMode)
           
GuiTrack(de.lessvoid.nifty.Nifty nifty, java.lang.String screen, float initialDuration, LoopMode loopMode)
           
GuiTrack(de.lessvoid.nifty.Nifty nifty, java.lang.String screen, LoopMode loopMode)
           
MotionTrack(Spatial spatial, MotionPath path, float initialDuration, LoopMode loopMode)
          Creates a MotionPath for the given spatial on the given motion path
MotionTrack(Spatial spatial, MotionPath path, LoopMode loopMode)
          Creates a MotionPath for the given spatial on the given motion path
PositionTrack(Spatial spatial, Vector3f endPosition, float initialDuration, LoopMode loopMode)
          Deprecated.  
PositionTrack(Spatial spatial, Vector3f endPosition, LoopMode loopMode)
          Deprecated.  
RotationTrack(Spatial spatial, Quaternion endRotation, float initialDuration, LoopMode loopMode)
          Deprecated.  
RotationTrack(Spatial spatial, Quaternion endRotation, LoopMode loopMode)
          Deprecated.  
ScaleTrack(Spatial spatial, Vector3f endScale, float initialDuration, LoopMode loopMode)
          Deprecated.  
ScaleTrack(Spatial spatial, Vector3f endScale, LoopMode loopMode)
          Deprecated.  
SoundTrack(java.lang.String path, boolean stream, float initialDuration, LoopMode loopMode)
           
SoundTrack(java.lang.String path, boolean stream, LoopMode loopMode)
           
SoundTrack(java.lang.String path, float initialDuration, LoopMode loopMode)
           
SoundTrack(java.lang.String path, LoopMode loopMode)