Declaration


public static bool IsTransitioning { get; }

Description


Gets if the music manager’s current playing is in the middle of a transition or not.

Example


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