Bugfix/master

This commit is contained in:
2025-07-24 09:38:08 +00:00
parent 6937a2d6e8
commit 14affc5c6e
322 changed files with 61050 additions and 14851 deletions
@@ -72,6 +72,13 @@ namespace AibisDream
public void StartDialogNode(string nodeName)
{
// 检查对话是否正在运行
if (_dialogueRunner.IsDialogueRunning)
{
Debug.LogWarning($"对话正在运行中,无法启动新节点: {nodeName}");
return;
}
if (CheckIfNodeExistInCurrentYarnProject(nodeName))
{
_dialogueRunner.StartDialogue(nodeName);