Better error reporting in WingFetcher
This commit is contained in:
@@ -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
|
||||
// ============================================================
|
||||
|
||||
Reference in New Issue
Block a user