Home | History | Annotate | Download | only in animation

Lines Matching refs:Animation

32 package com.jme3.animation;
39 * The animation class updates the animation target with the tracks of a given type.
43 public class Animation implements Savable, Cloneable {
46 * The name of the animation.
51 * The length of the animation.
56 * The tracks of the animation.
63 public Animation() {}
66 * Creates a new <code>Animation</code> with the given name and length.
68 * @param name The name of the animation.
69 * @param length Length in seconds of the animation.
71 public Animation(String name, float length) {
77 * The name of the bone animation
78 * @return name of the bone animation
85 * Returns the length in seconds of this animation
87 * @return the length in seconds of this animation
94 * This method sets the current time of the animation.
98 * @param time the time of the animation
100 * @param control the animation control
101 * @param channel the animation channel
144 * Set the {@link Track}s to be used by this animation.
156 * Returns the tracks set in {@link #setTracks(com.jme3.animation.Track[]) }.
169 public Animation clone() {
171 Animation result = (Animation) super.clone();