Navigation
API > API/Runtime > API/Runtime/Engine
Enum describing the audio component play state.
| Name | EAudioComponentPlayState |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Classes/Components/AudioComponent.h |
| Include Path | #include "Components/AudioComponent.h" |
Syntax
enum EAudioComponentPlayState
{
Playing,
Stopped,
Paused,
FadingIn,
FadingOut,
Count,
}
Values
| Name | Remarks |
|---|---|
| Playing | If the sound is playing (i.e. not fading in, not fading out, not paused) |
| Stopped | If the sound is not playing. |
| Paused | If the sound is playing but paused. |
| FadingIn | If the sound is playing and fading in. |
| FadingOut | If the sound is playing and fading out. |
| Count |