---
name: PoseEasingDirection
last_updated: 2026-07-02T02:14:38Z
type: enum
summary: "Used exclusively by Pose.EasingDirection to specify direction of the EasingStyle curve."
---

# PoseEasingDirection

Used exclusively by Pose.EasingDirection to specify direction of the
EasingStyle curve.

**Type:** enum

## Description

When a Pose has an EasingStyle which is not symmetric, the EasingDirection
determines if the curve is applied from previous keyframe to next, next
keyframe to previous, or in both directions by using two copies of the curve
back to back. For the symmetric Linear and Constant EasingStyles, this
property has no effect. For legacy compatibility reasons, the use of In and
Out are backwards from how these terms are used by most other animation tools
and by TweenService.

## Items

| Name | Value | Description |
|------|-------|-------------|
| `In` | 0 | The EasingStyle curve is reversed, with the easing becoming linear as it approaches the next keyframe. |
| `Out` | 1 | EasingStyle curves are applied in the forward direction, from the current keyframe to the next. |
| `InOut` | 2 | Two easing curves are applied back-to-back with the linear ends of the curves meeting in the middle. |