using TMPro; using UnityEngine; using UnityEngine.UI; namespace UnityTest.ZXL { // 若提示 public class WeakTipsUI : UI { public TextMeshProUGUI text; public void SetContent(string content) { text.text = content; } } }