In short, please add a method to the Toolbar object that allows you to create a seperator so that you can use Button:SetActive(bool active) to mark multiple Button objects as active at once.
I’m working on an Anti-Virus plugin and I stumbled upon a problem.
I have two features that can be toggled on or off: an “Auto-Protect” and a “Quarantine” feature.
I made it so that there is a button for each, and clicking the button enables/disables it. To make it easy to overview, I used the Button:SetActive(bool active) method to mark the button blue when the feature is enabled and unmark it when it is disabled.
This worked fine when I used only one feature at a time, but when I tried enabling the other while one of them was already enabled, it unmarked the first one and marked the one I just enabled:
So that’s why I would like for there to be a Toolbar:CreateSeperator() method that allows you to activate multiple buttons at once in the same toolbar.
Edit:
It seems that there’s more to it than just how the areas are seperated, so I’ll rephrase it. The feature I want is basically the ability to somehow mark multiple buttons active at the same time within the same Toolbar. For more information, see the fourth (my second) post in this thread.