OnExitObject

using UnityEngine;

public class EventExample : MonoBehaviour
{
    void Start ()
    {
        UltimateGamepadCursor.Instance.OnExitObject += ( go ) =>
        {
            Debug.Log( $"Object Exited: {go.name}" );
        };
    }
}

Last updated

Was this helpful?