OnDisabled

using UnityEngine;

public class EventExample : MonoBehaviour
{
    void Start ()
    {
        UltimateGamepadCursor.Instance.OnDisabled += () =>
        {
            Debug.Log( "Cursor Disabled" );
        };
    }
}

Last updated

Was this helpful?