Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


ValueAnimation<T>

Implementation object for transition animations.
Read time 1 minuteLast updated 11 days ago

Definition

public sealed class ValueAnimation<T> : IValueAnimation

Constructors

Constructor

Description

ValueAnimation`1()Constructor.

Properties

Property

Description

autoRecycleReturns true if this animation object will be automatically returned to the instance pool after the animation has completed.
durationMsDuration of the animation in milliseconds.
easingCurveSmoothing function related to this animation. Default value is OutQuad.
fromThe animation start value.
initialValueCallback invoked when the from field has not been set, in order to retrieve the starting state of this animation.
interpolatorValue interpolation method.
isRunningTells if the animation is currently active.
onAnimationCompletedCallback invoked when this animation has completed.
toThe animation end value.
valueUpdatedCallback invoked after every value interpolation.

Methods

Method

Description

EaseSets the easing function.
KeepAliveWill not return the object to the instance pool when the animation has completed.
OnCompletedSets a callback invoked when this animation has completed.
RecycleReturns this animation object into its object pool.
StartStarts the animation using this object's values.
StopStops this animation.

Static Methods

Method

Description

CreateCreates a new ValueAnimation object or returns an available one from it's instance pool.