Enum Tween.EaseType
enum EaseType
: int { ... }
Enum members
Name | Description |
---|---|
easeIn
|
The interpolation starts slowly and speeds up towards the end. |
easeInOut
|
A combination of constant EASE_IN and constant EASE_OUT . The interpolation is slowest at both ends.
|
easeOut
|
The interpolation starts quickly and slows down towards the end. |
easeOutIn
|
A combination of constant EASE_IN and constant EASE_OUT . The interpolation is fastest at both ends.
|