Package tripleplay.anim
Class Animation.Interped<R>
java.lang.Object
tripleplay.anim.Animation
tripleplay.anim.Animation.Interped<R>
- Direct Known Subclasses:
Animation.One
,Animation.Shake
,Animation.Two
- Enclosing class:
Animation
A base class for animations that interpolate values.
-
Nested Class Summary
Nested classes/interfaces inherited from class tripleplay.anim.Animation
Animation.Action, Animation.Delay, Animation.Flip, Animation.Handle, Animation.Interped<R>, Animation.One, Animation.Repeat, Animation.Shake, Animation.Two, Animation.Value, Animation.XYValue
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionUses an ease-out-back interpolator for this animation.easeIn()
Uses an ease-in interpolator for this animation.Uses an ease-in-back interpolator for this animation.Uses an ease-inout interpolator for this animation.easeOut()
Uses an ease-out interpolator for this animation.Uses an ease-out-back interpolator for this animation.Uses an ease-out-elastic interpolator for this animation.in
(float duration) Configures the duration for this animation (in milliseconds).linear()
Uses a linear interpolator for this animation.using
(Interpolator interp) Uses the supplied interpolator for this animation.
-
Constructor Details
-
Interped
public Interped()
-
-
Method Details
-
using
Uses the supplied interpolator for this animation. -
linear
Uses a linear interpolator for this animation. -
easeIn
Uses an ease-in interpolator for this animation. -
easeOut
Uses an ease-out interpolator for this animation. -
easeInOut
Uses an ease-inout interpolator for this animation. -
easeInBack
Uses an ease-in-back interpolator for this animation. -
easeOutBack
Uses an ease-out-back interpolator for this animation. -
bounceOut
Uses an ease-out-back interpolator for this animation. -
easeOutElastic
Uses an ease-out-elastic interpolator for this animation. -
in
Configures the duration for this animation (in milliseconds). Default: 1000.
-