diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 2dfd22f8..ff4165c3 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -2,9 +2,8 @@ "permissions": { "allow": [ "WebFetch(domain:dev.epicgames.com)", - "WebSearch", "WebFetch(domain:github.com)", - "Bash(chmod:*)" + "Bash(grep:*)" ], "deny": [ "Bash(git commit *)", diff --git a/Content/Tangibles/TAN_Character.uasset b/Content/Tangibles/TAN_Character.uasset index 2de42b5a..04bc708c 100644 --- a/Content/Tangibles/TAN_Character.uasset +++ b/Content/Tangibles/TAN_Character.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:25c5f83c86df91f0bbf89a60038aec3c87865a19f1706b3414688cb517dc43b4 +oid sha256:cb03a154075d2c3ec064b3575f29b626b07033c11ac69370a20bd9eedd977241 size 353650 diff --git a/Source/Integration/BlueprintExporter.cpp b/Source/Integration/BlueprintExporter.cpp index 9ad8e540..d4be33a3 100644 --- a/Source/Integration/BlueprintExporter.cpp +++ b/Source/Integration/BlueprintExporter.cpp @@ -53,13 +53,13 @@ FString FlxBlueprintExporter::FormatPinType(UEdGraphPin* Pin) FString FlxBlueprintExporter::FormatNodeBaseName(UEdGraphNode* Node) { - FString Title = Node->GetNodeTitle(ENodeTitleType::ListView).ToString(); - Title = FName::NameToDisplayString(*Title, false); + FString Title = Node->GetNodeTitle(ENodeTitleType::FullTitle).ToString(); + int32 NewlineIdx; + if (Title.FindChar(TEXT('\n'), NewlineIdx)) + Title.LeftInline(NewlineIdx); return SanitizeName(Title); } - - UEdGraphPin* FlxBlueprintExporter::GetLinkedTo(UEdGraphPin* Pin) { while (true)