Click or drag to resize

PlayerState Enumeration

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
C#
public enum PlayerState
Members
  Member nameValueDescription
IDLE1 The player does not have a source to play, so it is neither buffering nor ready to play
BUFFERING2 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
READY3 The player is able to immediately play from the current position. The player will be playing if getPlayWhenReady returns true, and paused otherwise
ENDED4 The player has finished playing the media
See Also