Default max child nodes for combo actions is set to -1 now, so that there is no limit.
This commit is contained in:
parent
68397f74e6
commit
fde46f4a91
@ -26,7 +26,7 @@ UComboActionGraphNode_ActionNode::UComboActionGraphNode_ActionNode()
|
|||||||
|
|
||||||
this->bAutoStarts = false;
|
this->bAutoStarts = false;
|
||||||
|
|
||||||
this->MaxChildrenNodes = 1;
|
this->MaxChildrenNodes = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void UComboActionGraphNode_ActionNode::PreProcessNode(const TScriptInterface<IComboActionGraphManagerInterface> &Manager)
|
void UComboActionGraphNode_ActionNode::PreProcessNode(const TScriptInterface<IComboActionGraphManagerInterface> &Manager)
|
||||||
|
|||||||
@ -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.");
|
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
|
#endif
|
||||||
|
|
||||||
// TODO: Once there are Conditional Decorators, this will be replaced
|
|
||||||
this->MaxChildrenNodes = -1;
|
this->MaxChildrenNodes = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user