Hey there,
For the dialogue system I am trying to implent that if the player only has one choice, that the UI doen’t show the choice buttons but rather the Ai text.
if (playerConversant.SelectChoice(DialogueNode) < 1)
{
AIText.text = playerConversant.GetText();
nextButton.gameObject.SetActive(playerConversant.HasNext());
}