Uses of Class
com.jme3.animation.Animation

Packages that use Animation
com.jme3.animation The com.jme3.animation package contains various classes for managing animation inside a jME3 application. 
com.jme3.scene.plugins.blender.constraints   
com.jme3.scene.plugins.ogre   
 

Uses of Animation in com.jme3.animation
 

Subclasses of Animation in com.jme3.animation
 class BoneAnimation
          Deprecated. use Animation instead with tracks of selected type (ie. BoneTrack, SpatialTrack, MeshTrack)
 class SpatialAnimation
          Deprecated. use Animation instead with tracks of selected type (ie. BoneTrack, SpatialTrack, MeshTrack)
 

Methods in com.jme3.animation that return Animation
 Animation AnimationFactory.buildAnimation()
          Creates an Animation based on the keyFrames previously added to the helper.
 Animation Animation.clone()
          This method creates a clone of the current object.
 Animation AnimControl.getAnim(java.lang.String name)
          Retrieve an animation from the list of animations.
 

Methods in com.jme3.animation with parameters of type Animation
 void AnimControl.addAnim(Animation anim)
          Adds an animation to be available for playing to this AnimControl.
 void AnimControl.removeAnim(Animation anim)
          Remove an animation so that it is no longer available for playing.
 

Method parameters in com.jme3.animation with type arguments of type Animation
 void AnimControl.setAnimations(java.util.HashMap<java.lang.String,Animation> animations)
           
 

Uses of Animation in com.jme3.scene.plugins.blender.constraints
 

Methods in com.jme3.scene.plugins.blender.constraints with parameters of type Animation
protected  com.jme3.scene.plugins.blender.constraints.BlenderTrack Constraint.getTrack(java.lang.Object owner, Skeleton skeleton, Animation animation)
          This method returns the bone traces for the bone that is affected by the given constraint.
 

Uses of Animation in com.jme3.scene.plugins.ogre
 

Fields in com.jme3.scene.plugins.ogre with type parameters of type Animation
 java.util.ArrayList<Animation> AnimData.anims
           
 

Constructor parameters in com.jme3.scene.plugins.ogre with type arguments of type Animation
AnimData(Skeleton skeleton, java.util.ArrayList<Animation> anims)