Default max child nodes for combo actions is set to -1 now, so that there is no limit.

This commit is contained in:
Jamie Greunbaum 2023-10-01 18:13:42 -04:00
parent 68397f74e6
commit fde46f4a91
2 changed files with 1 additions and 2 deletions

View File

@ -26,7 +26,7 @@ UComboActionGraphNode_ActionNode::UComboActionGraphNode_ActionNode()
this->bAutoStarts = false;
this->MaxChildrenNodes = 1;
this->MaxChildrenNodes = -1;
}
void UComboActionGraphNode_ActionNode::PreProcessNode(const TScriptInterface<IComboActionGraphManagerInterface> &Manager)

View File

@ -23,7 +23,6 @@ UComboActionGraphNode_StartNode::UComboActionGraphNode_StartNode()
this->NodeTooltipText = LOCTEXT("ComboActionGraphNode_CompleteTooltip", "* This Node will be added to the graph automatically.\n* This Node cannot be created manually.\n* This Node cannot be deleted.\n* Does not implement any logic.");
#endif
// TODO: Once there are Conditional Decorators, this will be replaced
this->MaxChildrenNodes = -1;
}