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

Method RemoveSubNode

Source/FlowEditor/Private/Graph/Nodes/FlowGraphNode.cpp:1580–1594  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1578}
1579
1580void UFlowGraphNode::RemoveSubNode(UFlowGraphNode* SubNode)
1581{
1582 Modify();
1583
1584 if (SubNode->NodeInstance)
1585 {
1586 SubNode->NodeInstance->OnAddOnRequestedParentReconstruction.Unbind();
1587 }
1588
1589 SubNodes.RemoveSingle(SubNode);
1590
1591 RebuildRuntimeAddOnsFromEditorSubNodes();
1592
1593 OnSubNodeRemoved(SubNode);
1594}
1595
1596void UFlowGraphNode::RemoveAllSubNodes()
1597{

Callers 2

RemoveDraggedSubNodesMethod · 0.80
DestroyNodeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected