Hello everyone,
Is it possible to attach the Scroll Rect component (Unity UI) as a menu element to control its visibility like other UI elements (buttons, texts, sliders, checkboxes, etc.)? At the moment, the only workaround I've found is to add an Image component to my Scroll Rect, set its alpha to 0, and assign this as an image menu element in the Menu Manager. Works good, but I thought there might be a more straightforward solution.
Thanks so much for any possible help!
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
That's a novel way around it - but no, there's no ScrollRect element equivalent in the Menu Manager.
You can, however, attach a Canvas Group component to the object, and use the Object: Visibility Action to control its alpha.
Thanks so much as always, Chris! I'll try your suggestion too.