Uses of Class
yearreview.app.animation.AnimationCurve
Packages that use AnimationCurve
-
Uses of AnimationCurve in yearreview.app.animation
Fields in yearreview.app.animation declared as AnimationCurveModifier and TypeFieldDescriptionprivate AnimationCurveAnimatedNumber.curveCurve used for the animation.private final AnimationCurveAnimatedNumber.defaultCurveDefault curve used for animations if no curve is specified.static final AnimationCurveAnimationCurve.EASE_INA Curve for ease-in animations.static final AnimationCurveAnimationCurve.EASE_IN_OUTA Curve for ease-in-out animations.static final AnimationCurveAnimationCurve.EASE_OUTA Curve for ease-out animations.static final AnimationCurveAnimationCurve.LINEARA Curve for linear animations.Methods in yearreview.app.animation that return AnimationCurveModifier and TypeMethodDescriptionprotected AnimationCurveAnimationCurve.getCurveWithSlope(Vector2D slope) Gets a new AnimationCurve with the start angled at a certain slope.Methods in yearreview.app.animation with parameters of type AnimationCurveModifier and TypeMethodDescriptionvoidAnimatedNumber.animateTo(float newValue, Duration d, AnimationCurve c) Animated the value to a given new value with a certain animation duration and AnimationCurve.voidAnimatedVector2D.animateTo(Vector2D pos, Duration d, AnimationCurve c) Animates the Vector to a new position.Constructors in yearreview.app.animation with parameters of type AnimationCurveModifierConstructorDescriptionAnimatedNumber(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.