using UnityEngine; public class EventExample : MonoBehaviour { void Start () { UltimateGamepadCursor.Instance.OnExitObject += ( go ) => { Debug.Log( $"Object Exited: {go.name}" ); }; } }
Last updated 17 days ago
Was this helpful?