using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class TipShow : BaseShow { private void OnTriggerEnter(Collider other) { TipPlayerEx.Instance.ShowTip(info); } private void OnTriggerExit(Collider other) { TipPlayerEx.Instance.HideTip(); } }