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