标签:tac deb 网上 inter handler color style cti pointer
相信大家玩游戏的时候,鼠标移动到游戏装备上,都会显示装备的的具体信息,那么接下来就写代码把,废话不多说。
下面是 效果图 鼠标移动到装备位置显示的信息,鼠标移动不在装备区域后不现实信息,下面是代码
:
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
using UnityEngine.EventSystems;
public class onmois : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler //必须要继承的接口 具体就不多说,可以网上查
{
public GameObject tupian;//要显示的文字
public void OnPointerEnter(PointerEventData eventData)
{
Debug.Log("进入");
tupian.SetActive(true);
}
public void OnPointerExit(PointerEventData eventData)
{
Debug.Log("退出");
tupian.SetActive(false);
}
}
标签:tac deb 网上 inter handler color style cti pointer
原文地址:https://www.cnblogs.com/LanPeng/p/11041896.html