OnHoverObject

using UnityEngine;

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

Last updated

Was this helpful?