Currently if you’ve an action bound to a button it just immediately activates its pressed logic. There’s no visual indication of this like when clicking the button or pressing Enter while it’s focused. Is there a built in way to do this or am I going to have to implement my own solution here? Lack of visual feedback IMO is a serious problem for this feature for accessibility purposes.
Only solution I’ve come up with so far is using OnInputActionTriggered then play an animation or swapping the style temporarily. Swapping the style temporarily gives me the identical pressed state style, but that’s a ton of extra work as I’ll need double the styles for buttons. Animation works (e.g. changing opacity or something), but doesn’t give the same feedback as clicking.