diff --git a/Assets/Scripts/UI/PageController.cs b/Assets/Scripts/UI/PageController.cs index 620babc..545ff55 100644 --- a/Assets/Scripts/UI/PageController.cs +++ b/Assets/Scripts/UI/PageController.cs @@ -354,7 +354,8 @@ public class PageController : MonoBehaviour var point1 = touch.transform.GetChild(0).gameObject; point1.SetActive(true); Debug.Log("PageController: touchArray/point1 已显示"); - } + var tipPanel = GameObject.Find("TipPanel"); if (tipPanel != null) tipPanel.SetActive(true); + var dialogue = GameObject.Find("DialogueBubble"); if (dialogue != null) dialogue.SetActive(true); } }