Class IntAnimation
- java.lang.Object
-
- gaia.cu9.ari.gaiaorbit.util.gdx.model.IntAnimation
-
public class IntAnimation extends java.lang.Object
An Animation has an id and a list ofIntNodeAnimation
instances. Each NodeAnimation animates a singleIntNode
in theIntModel
. EveryIntNodeAnimation
is assumed to have the same amount of keyframes, at the same timestamps, as all other node animations for faster keyframe searches.
-
-
Field Summary
Fields Modifier and Type Field Description float
duration
the duration in secondsjava.lang.String
id
the unique id of the animationcom.badlogic.gdx.utils.Array<IntNodeAnimation>
nodeAnimations
the animation curves for individual nodes
-
Constructor Summary
Constructors Constructor Description IntAnimation()
-
-
-
Field Detail
-
id
public java.lang.String id
the unique id of the animation
-
duration
public float duration
the duration in seconds
-
nodeAnimations
public com.badlogic.gdx.utils.Array<IntNodeAnimation> nodeAnimations
the animation curves for individual nodes
-
-