Hello- I am just learning the basics of UMG and widget stuff, and I’m not sure how to best implement this. I understand how to alter the appearance of a button’s up, hover, and pressed states- but what if I want the button to stay in it’s ‘pressed’ state after clicking it (and then return it to it’s ‘up’ state if I click it a second time).
Do I stil use a regular ‘button’, and control this behavior in the graph editor? Or is there some other widget type that already behaves this way? I see there is a checkbox widget, but I’d prefer the appearance of the entire button change when pressed.
You can do a little trick, just change button style , photo, text or anything else to “pressed” after player clicked the button just in the OnClicked event.
But if you’re making multiple “Checkboxes” and you clicked through, they will all look Checked, won’t they? Gotta figure out the logic for only one checkbox being checked.