chore(ui): 移动端临时显示快进按钮

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-02 17:36:45 +08:00
co-authored by Cursor
parent 0832e4cac1
commit 3c7662679c
+6
View File
@@ -77,6 +77,12 @@ namespace AibisDream.UI
_ffwdBtn = topBar.Find("Quick Forward").GetComponent<BoolButton>();
_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()