Files
TaiWan/Assets/Roaming/Scripts/Show/TipShow.cs

17 lines
333 B
C#
Raw Normal View History

2025-10-31 15:20:38 +08:00
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();
}
}