Enum AudioClipStatus
An enum listing the possible states an audio clip can be in during loading. Used by the AudioClip component to track loading status.
Namespace: Unity.Tiny.Audio
Syntax
public enum AudioClipStatus
Fields
Name | Description | Value |
---|---|---|
Unloaded | The clip is not loaded in memory. |
0 |
Loading | The clip has begun loading but is not ready to begin playback. |
1 |
Loaded | The clip is fully decoded, loaded in memory, and ready for playback. |
2 |
LoadError | The clip cannot be loaded in memory. |
3 |