Tooltips Spawner

As someone who is not using your project, I went rummaging through the git so I could quickly write out TooltipSpawer, from what I can see it uses MonoBehaviour, IPointerEnterHandler, IPointerExitHandler.

Where do IPointerEnterHandler, IPointerExitHandler come from? Are they something that you guys wrote and what file are they in? Or do I need to just add a “using” like UnityEngine.EventSystem?

All the best
Will

IPointerEnterHandler and IPointerExitHandler are built in Unity interfaces.
You can put them on any object that you want to detect when the pointer has moved over or left.

Here’s a quick link with more information: https://docs.unity3d.com/2018.1/Documentation/ScriptReference/EventSystems.IPointerEnterHandler.html

2 Likes

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.

Privacy & Terms