Declaration


public static bool IsPlaying { get; }

Description


Gets if the music player’s active player is currently playing music or not.

Example


private void OnEnable()
{
		if (!MusicManager.IsPlaying)
		{
				// Do Stuff...
		}
}