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()