From 085366f836de02c9893922a62cda80b029406687 Mon Sep 17 00:00:00 2001 From: Ding Yuntian <1491671119@qq.com> Date: Wed, 23 Jul 2025 19:43:45 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=93=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Resources/Yarn/Test/Start.yarn | 12 ++++++++++++ .../FixSystemNew/WhackMole/WhackMoleSystem.cs | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Assets/Resources/Yarn/Test/Start.yarn b/Assets/Resources/Yarn/Test/Start.yarn index da5de5953..ace76ed13 100644 --- a/Assets/Resources/Yarn/Test/Start.yarn +++ b/Assets/Resources/Yarn/Test/Start.yarn @@ -7,3 +7,15 @@ tags: me: 打地鼠测试 #line:0559767 <> === + +title: 打地鼠游戏通过 +tags: +--- +me: 成功 +=== + +title: 打地鼠游戏失败 +tags: +--- +me: 失败 +=== \ No newline at end of file diff --git a/Assets/Scripts/FixSystemNew/WhackMole/WhackMoleSystem.cs b/Assets/Scripts/FixSystemNew/WhackMole/WhackMoleSystem.cs index 7b00b1058..a3278ebac 100644 --- a/Assets/Scripts/FixSystemNew/WhackMole/WhackMoleSystem.cs +++ b/Assets/Scripts/FixSystemNew/WhackMole/WhackMoleSystem.cs @@ -41,7 +41,7 @@ namespace AibisDream.FixSystem _moleModules.Values.ToList().ForEach(item => item.isInMoleGame = false); // TODO 触发游戏结束 _log.OnGameEnd(isSuccess); - DialogController.Instance.StartDialogNode("游戏结束"); + DialogController.Instance.StartDialogNode(isSuccess ? "打地鼠游戏通过" : "打地鼠游戏失败"); } public void OnPlugIn(string moduleName)