A bool multi-toggle that lets you switch between multiple options exclusively of each other.
When all bools are false, change nothing and preserve last enabled option.
Example: Three toggles in your menu to switch between three different hairstyles. Only one can be worn at a time, but if all of them are off, then preserve the last hairstyle rather than going bald (unless that’s your thing).
<aside> ⚠️ While using integers instead of bools is simpler as it removes the need for parameter drivers, bools should still be used if your exclusive group is less than 8 options in order to save memory.
</aside>