---
name: PoseEasingStyle
last_updated: 2026-06-19T03:26:26Z
type: enum
---

# PoseEasingStyle

**Type:** enum

## Items

| Name | Value | Description |
|------|-------|-------------|
| `Linear` | 0 | Poses interpolate linearly between key frames. |
| `Constant` | 1 | Poses do not interpolate but snap to the key frame indicated by the [PoseEasingDirection](/docs/reference/engine/enums/PoseEasingDirection.md). |
| `Elastic` | 2 | Pose interpolation will overshoot like it is elastic. |
| `Cubic` | 3 | Deprecated - Use [PoseEasingStyle.CubicV2](/docs/reference/engine/enums/PoseEasingStyle.md). Pose interpolation is a cubic curve between keyframes based on the [PoseEasingDirection](/docs/reference/engine/enums/PoseEasingDirection.md). |
| `Bounce` | 4 | Pose interpolation produces a bounce like effect between key frames. |
| `CubicV2` | 5 | Pose interpolation is a cubic curve between keyframes based on [PoseEasingDirection](/docs/reference/engine/enums/PoseEasingDirection.md). |