Better error reporting in WingFetcher

This commit is contained in:
2026-03-25 17:13:00 -04:00
parent 89231987f2
commit bcb79ad0ab
5 changed files with 162 additions and 117 deletions

View File

@@ -459,7 +459,6 @@ TArray<UEdGraph*> WingUtils::AllGraphs(UBlueprint* BP)
return Graphs;
}
TArray<UEdGraphNode*> WingUtils::AllNodes(UBlueprint* BP)
{
TArray<UEdGraphNode*> Nodes;
@@ -468,6 +467,13 @@ TArray<UEdGraphNode*> WingUtils::AllNodes(UBlueprint* BP)
return Nodes;
}
TArray<UEdGraphNode*> WingUtils::AllNodes(UEdGraph *Graph)
{
TArray<UEdGraphNode*> Result;
Result.Append(Graph->Nodes);
return Result;
}
// ============================================================
// Material helpers
// ============================================================