fix: HideAllPages 增加隐藏 TipPanel

This commit is contained in:
yangbear
2026-06-30 01:22:54 +08:00
parent c88651be54
commit 7d2696d65c
5 changed files with 75819 additions and 835 deletions
+4
View File
@@ -218,6 +218,10 @@ public class PageController : MonoBehaviour
if (_modeSelectPanel != null) _modeSelectPanel.SetActive(false);
if (_fixationPanel != null) _fixationPanel.SetActive(false);
if (_experimentPanel != null) _experimentPanel.SetActive(false);
// 隐藏不在页面面板内的独立 UI 元素
var tipPanel = GameObject.Find("TipPanel");
if (tipPanel != null) tipPanel.SetActive(false);
}