• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.jme3.animation;
2 
3 /**
4  * @deprecated use Animation instead with tracks of selected type (ie. BoneTrack, SpatialTrack, MeshTrack)
5  */
6 @Deprecated
7 public class SpatialAnimation extends Animation {
SpatialAnimation(String name, float length)8     public SpatialAnimation(String name, float length) {
9         super(name, length);
10     }
11 }
12