using System.Collections; using System.Collections.Generic; using Unity.VisualScripting; using UnityEngine; public class Tips : MonoBehaviour { public GameObject tip; public void Show() { tip.gameObject.SetActive(true); } public void Hide() { tip.gameObject.SetActive(false); } public void TXTTOADD(){ Get.o2("OBJSELECT","TXTTOADD").SetActive(true); } void OnMouseEnter(){ } }