> For the complete documentation index, see [llms.txt](https://docs.overdare.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.overdare.com/development/api-reference/enums/playbackstate.md).

# PlaybackState

## Overview

PlaybackState is an Enum that represents the current state of a Tween.

This is used in the PlaybackState property of TweenBase and indicates the state of the Tween.

## Items

| Name      | Value | Description                                                                                                              |
| --------- | ----- | ------------------------------------------------------------------------------------------------------------------------ |
| Begin     | 0     | The Tween has been instantiated, but playback has not yet started. In this state, playback does not start automatically. |
| Delayed   | 1     | The Tween is waiting for the delay time specified in TweenInfo.DelayTime.                                                |
| Playing   | 2     | The Tween is currently playing.                                                                                          |
| Paused    | 3     | The Tween is paused. It can be resumed later.                                                                            |
| Completed | 4     | The Tween playback has completed normally.                                                                               |
| Cancelled | 5     | The Tween has been stopped before completion.                                                                            |

## See also

{% content-ref url="/pages/Y6cpFTTgNkkgQlDN8Ds0" %}
[TweenBase](/development/api-reference/classes/tweenbase.md)
{% endcontent-ref %}
