Hello I hope im in the proper forum,
im creating a custom node system. When adding a node I use this code to add two checkboxes to the node:
Node tempDialogueNode
var button = new Toggle("1");
var button2 = new Toggle("2");
tempDialogueNode.extensionContainer.Add(button);
tempDialogueNode.extensionContainer.Add(button2);
However i would like these boxes to work like radio buttons, so only one can be checked at a time.
Is there a system in place like the toggle group for ui?