试图修复快进模式卡流程的问题
This commit is contained in:
@@ -72,6 +72,13 @@ namespace AibisDream
|
||||
|
||||
public void StartDialogNode(string nodeName)
|
||||
{
|
||||
// 检查对话是否正在运行
|
||||
if (_dialogueRunner.IsDialogueRunning)
|
||||
{
|
||||
Debug.LogWarning($"对话正在运行中,无法启动新节点: {nodeName}");
|
||||
return;
|
||||
}
|
||||
|
||||
if (CheckIfNodeExistInCurrentYarnProject(nodeName))
|
||||
{
|
||||
_dialogueRunner.StartDialogue(nodeName);
|
||||
|
||||
Reference in New Issue
Block a user