Uses of Class
yearreview.app.animation.AnimationCurve
-
Uses of AnimationCurve in yearreview.app.animation
Modifier and TypeFieldDescriptionprivate AnimationCurve
AnimatedNumber.curve
Curve used for the animation.private final AnimationCurve
AnimatedNumber.defaultCurve
Default curve used for animations if no curve is specified.static final AnimationCurve
AnimationCurve.EASE_IN
A Curve for ease-in animations.static final AnimationCurve
AnimationCurve.EASE_IN_OUT
A Curve for ease-in-out animations.static final AnimationCurve
AnimationCurve.EASE_OUT
A Curve for ease-out animations.static final AnimationCurve
AnimationCurve.LINEAR
A Curve for linear animations.Modifier and TypeMethodDescriptionprotected AnimationCurve
AnimationCurve.getCurveWithSlope
(Vector2D slope) Gets a new AnimationCurve with the start angled at a certain slope.Modifier and TypeMethodDescriptionvoid
AnimatedNumber.animateTo
(float newValue, Duration d, AnimationCurve c) Animated the value to a given new value with a certain animation duration and AnimationCurve.void
AnimatedVector2D.animateTo
(Vector2D pos, Duration d, AnimationCurve c) Animates the Vector to a new position.ModifierConstructorDescriptionAnimatedNumber
(float initialVal, AnimationCurve defaultCurve) Constructs an AnimatedNumber from a starting value and AnimationCurve.AnimatedVector2D
(Vector2D initialVector, AnimationCurve defaultCurve) Constructs a new AnimatedVector2D from an initial position and a Curve to use for animation.