PoseEasingStyle
Specifies the interpolation curve used when blending between keyframe Poses in a KeyframeSequence.
Items 6
| History | Name | Value | Description | |
|---|---|---|---|---|
| 220 | Linear | 0 | Poses interpolate linearly between keyframes. | |
| 220 | Constant | 1 | Poses do not interpolate but snap to the keyframe indicated by the PoseEasingDirection. | |
| 220 | Elastic | 2 | Pose interpolation overshoots like an elastic curve. | |
| 220 | Cubic | 3 | Deprecated - Use PoseEasingStyle.CubicV2. Pose interpolation is a cubic curve between keyframes based on the PoseEasingDirection. | |
| 220 | Bounce | 4 | Pose interpolation produces a bounce-like effect between keyframes. | |
| 646 | CubicV2 | 5 | Pose interpolation is a cubic curve between keyframes based on PoseEasingDirection. |
Description
Controls how a Pose transitions from one keyframe to the next in a KeyframeSequence. The value is set via the Pose.EasingStyle property, which defaults to PoseEasingStyle.Linear. For asymmetric styles such as PoseEasingStyle.Elastic, PoseEasingStyle.Bounce, and PoseEasingStyle.CubicV2, the direction of the curve is further controlled by PoseEasingDirection. PoseEasingStyle.Cubic is a legacy alias with a known direction-reversal bug between the Animation Editor and runtime; use PoseEasingStyle.CubicV2 for all new work.