Declaration


public static readonly Evt Looped;

Returns


Evt

A class that works like an action, but with a better API setup. Use Add() or Remove() like += & -= from an action.

Description


Is raised when the music manager has looped the current track.

Example


private void OnEnable()
{
		MusicManager.Looped.Add(OnTrackLooped);
}

private void OnTrackLooped()
{
		Debug.Log("Track just looped....");
}