From 3c7662679c67a53b5b909fd50c2dc426cc7c67e3 Mon Sep 17 00:00:00 2001 From: bottlefish <781230111@qq.com> Date: Thu, 2 Jul 2026 17:36:45 +0800 Subject: [PATCH] =?UTF-8?q?chore(ui):=20=E7=A7=BB=E5=8A=A8=E7=AB=AF?= =?UTF-8?q?=E4=B8=B4=E6=97=B6=E6=98=BE=E7=A4=BA=E5=BF=AB=E8=BF=9B=E6=8C=89?= =?UTF-8?q?=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cursor --- Assets/Scripts/UI/Panel/MainPanel.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Assets/Scripts/UI/Panel/MainPanel.cs b/Assets/Scripts/UI/Panel/MainPanel.cs index 5e5777386..dad750dff 100644 --- a/Assets/Scripts/UI/Panel/MainPanel.cs +++ b/Assets/Scripts/UI/Panel/MainPanel.cs @@ -77,6 +77,12 @@ namespace AibisDream.UI _ffwdBtn = topBar.Find("Quick Forward").GetComponent(); _ffwdBtn.OnClick.AddListener(QuickForward); _ffwdBtn.getBool = () => DialogController.Instance.advanceMode.Value.CurrentMode == AdvanceModeEnum.Quick; + + // TEMP: mobile debug — expose Quick Forward for faster eye-module testing. + if (Application.isMobilePlatform) + { + _ffwdBtn.gameObject.SetActive(true); + } } private void AutoSkip()