diff --git a/Assets/Scripts/Dialog System/LineAdvanceInput.cs b/Assets/Scripts/Dialog System/LineAdvanceInput.cs index d618ef161..eeaa52671 100644 --- a/Assets/Scripts/Dialog System/LineAdvanceInput.cs +++ b/Assets/Scripts/Dialog System/LineAdvanceInput.cs @@ -1,5 +1,4 @@ using System; -using AibisDream.Framework; using UnityEngine; namespace AibisDream diff --git a/Assets/Scripts/Dialog System/LineRunner.cs b/Assets/Scripts/Dialog System/LineRunner.cs index ac58c572e..cf81f5896 100644 --- a/Assets/Scripts/Dialog System/LineRunner.cs +++ b/Assets/Scripts/Dialog System/LineRunner.cs @@ -28,9 +28,6 @@ namespace AibisDream DialogController.Instance.lineSyncToken = lineSyncEvent; DispatchToView(dialogueLine, lineSyncEvent); - // 最后交给推进处理 - advanceInput.RunLine(lineSyncEvent); - using var skipReg = token.HurryUpToken.Register(() => { if (lineSyncEvent.state == LineSyncState.PlayText) @@ -140,7 +137,7 @@ namespace AibisDream return; } } - + public void HideDialog() { foreach (var view in _screenViewDict.Values) @@ -163,6 +160,6 @@ namespace AibisDream public interface ILineView { void RunLine(LineSyncToken token); - void HideDialog() {} + void HideDialog() { } } -} \ No newline at end of file +}