More work on Blueprint_Dump

This commit is contained in:
2026-03-18 18:39:13 -04:00
parent b0743a3c3d
commit 230f104fda
11 changed files with 268 additions and 403 deletions

View File

@@ -7,6 +7,7 @@
#include "Engine/MemberReference.h"
#include "Engine/World.h"
#include "Components/ActorComponent.h"
#include "Engine/SCS_Node.h"
#include "EdGraph/EdGraph.h"
#include "EdGraph/EdGraphNode.h"
#include "EdGraph/EdGraphPin.h"
@@ -85,6 +86,11 @@ FString WingUtils::FormatName(const UActorComponent *C)
return C->GetName();
}
FString WingUtils::FormatName(const USCS_Node *Node)
{
return Node->GetVariableName().ToString();
}
FString WingUtils::FormatName(const UEdGraph *Graph)
{
FString Name = Graph->GetName();