Home | History | Annotate | Download | only in animation
      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 {
      8     public SpatialAnimation(String name, float length) {
      9         super(name, length);
     10     }
     11 }
     12