OnEnabled

using UnityEngine;

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

Last updated

Was this helpful?