aboutsummaryrefslogtreecommitdiff
path: root/engine/src/core/com/jme3/animation/SpatialAnimation.java
blob: 54f50583a8cfb0fdb9be7a7bd96598e650b942d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.jme3.animation;

/**
 * @deprecated use Animation instead with tracks of selected type (ie. BoneTrack, SpatialTrack, MeshTrack)
 */
@Deprecated
public class SpatialAnimation extends Animation {
    public SpatialAnimation(String name, float length) {
        super(name, length);
    }
}