editor: 编辑器微调

This commit is contained in:
2026-07-22 00:06:59 +08:00
parent 9f61f53b7f
commit 3891b6bd37
2 changed files with 4 additions and 4 deletions
@@ -403,7 +403,7 @@ namespace AibisDream.FrameAnimation.Editor
public static string MakeUniqueFlowId(FrameAnimationGraph graph, AnimationNode node)
{
var root = (string.IsNullOrWhiteSpace(node?.DisplayName) ? "Animation" : node.DisplayName) + "Flow";
var root = (string.IsNullOrWhiteSpace(node?.DisplayName) ? "Animation" : node.DisplayName) + "_Flow";
var candidate = root;
var suffix = 2;
while (!FrameAnimationAssetOperations.IsPlayableIdAvailable(graph, candidate))