Represents the main states a MediaPlayer can be in
Namespace:
frame8.Logic.Media.MediaPlayer
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
Members|
| Member name | Value | Description |
|---|
| IDLE | 1 | The player does not have a source to play, so it is neither buffering nor ready to play |
| BUFFERING | 2 | The player not able to immediately play from the current position. The cause is
Renderer specific, but this state typically occurs when more data needs to be
loaded to be ready to play, or more data needs to be buffered for playback to resume |
| READY | 3 |
The player is able to immediately play from the current position. The player will be playing if getPlayWhenReady
returns true, and paused otherwise
|
| ENDED | 4 | The player has finished playing the media |
See Also