MCPcopy Create free account
hub / github.com/MothCocoon/FlowGraph / UpdateClassData

Method UpdateClassData

Source/FlowEditor/Private/Graph/FlowGraph.cpp:267–284  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

265}
266
267void UFlowGraph::UpdateClassData()
268{
269 for (UEdGraphNode* Node : Nodes)
270 {
271 if (UFlowGraphNode* FlowGraphNode = Cast<UFlowGraphNode>(Node))
272 {
273 FlowGraphNode->UpdateNodeClassData();
274
275 for (UFlowGraphNode* SubNode : FlowGraphNode->SubNodes)
276 {
277 if (SubNode)
278 {
279 SubNode->UpdateNodeClassData();
280 }
281 }
282 }
283 }
284}
285
286void UFlowGraph::UpdateAsset(const int32 UpdateFlags)
287{

Callers 1

PasteNodesHereMethod · 0.80

Calls 1

UpdateNodeClassDataMethod · 0.80

Tested by

no test coverage detected