Абстрактный базовый класс для Анимированных Значений.
Animated Values are an editor only concept for values that have a current value and a target. The value will tween towards the target at a given speed.
isAnimating | Значение в данный момент анимируется. |
speed | Скорость анимации. |
target | Цель по отношению к анимации. |
value | Текущее значение анимации. |
valueChanged | Обратный вызов во время изменения значения. |
BeginAnimating | Begin an animation moving from the start value to the target value. |
GetValue | Abstract function to be overridden in derived types. Should return the current value of the animated value. |
StopAnim | Stop the animation and assign the given value. |