For the complete documentation index, see llms.txt. This page is also available as Markdown.

OnEnabled

using UnityEngine;

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

Last updated