石头功能修改

This commit is contained in:
2024-11-27 00:49:38 +08:00
parent e340cbd0d0
commit 4da5e3b5e2
20 changed files with 430 additions and 2769 deletions
+2 -2
View File
@@ -48,7 +48,7 @@ namespace AibisDream
dialogText.onTypewriterStart.AddListener(() =>
{
_skipLineDelay = true;
CommonUtil.Delay(delayTime, () => { _skipLineDelay = false; });
_ = CommonUtil.Delay(delayTime, () => { _skipLineDelay = false; });
});
}
@@ -113,7 +113,7 @@ namespace AibisDream
// 执行自动跳过结局
if (isAutoSkip)
{
dialogText.onTextShowed.AddListener(() => CommonUtil.Delay(200, nextStep));
dialogText.onTextShowed.AddListener(() => _ = CommonUtil.Delay(200, nextStep));
}
}