---
name: EasingDirection
last_updated: 2026-06-19T03:26:26Z
type: enum
summary: "Enum used with TweenInfo.new() to control the direction Tweens play in."
---

# EasingDirection

Enum used with [TweenInfo.new()](/docs/reference/engine/datatypes/TweenInfo.md) to control the direction
[Tweens](/docs/reference/engine/classes/Tween.md) play in.

**Type:** enum

## Description

These enum values are passed to [TweenInfo.new()](/docs/reference/engine/datatypes/TweenInfo.md) to control the
direction [Tweens](/docs/reference/engine/classes/Tween.md) play in.

## Items

| Name | Value | Description |
|------|-------|-------------|
| `In` | 0 | The easing style is applied in a forward direction. |
| `Out` | 1 | The easing style is applied in a reverse direction. |
| `InOut` | 2 | The easing style is applied forward for the first half and in reverse for the second half. |