Combo Action Graph is basically finished. The hard part, anyway.
This commit is contained in:
@@ -56,23 +56,6 @@ bool UComboActionGraphNode_StartNode::ValidateNode(TArray<FText>& ValidationsMes
|
||||
ValidationsMessages.Add(FText::FromString(RichFormat ? RichTextReturn : TextReturn));
|
||||
}
|
||||
|
||||
if (ChildrenNodes.Num() > 1)
|
||||
{
|
||||
bResult = false;
|
||||
|
||||
const FString RichTextReturn =
|
||||
FString("* ")
|
||||
.Append("<RichTextBlock.Bold>")
|
||||
.Append(this->NodeTitle.ToString())
|
||||
.Append("</>")
|
||||
.Append(": Has more than 1 child node.");
|
||||
|
||||
const FString TextReturn = FString(this->NodeTitle.ToString())
|
||||
.Append(": Has more than 1 child node.");
|
||||
|
||||
ValidationsMessages.Add(FText::FromString(RichFormat ? RichTextReturn : TextReturn));
|
||||
}
|
||||
|
||||
return bResult;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user