Skip to main content

SoundState

The SoundState enum represents the various states of a sound in the game.


Definition

enum SoundState {
Playing = 'playing',
Paused = 'paused',
Stopped = 'stopped',
}

Enum Values

  • Playing: The sound is currently playing.
  • Paused: The sound is currently paused.
  • Stopped: The sound is currently stopped.