UMG widget hovered state following focus?

We have a UMG-built menu system which works well with mouse input. It uses the hovered state style to change buttons when they are hovered with the mouse.

Now adding controller support, but the widgets are just getting focus changed.

Can we re-use the hovered style when the user is using a controller? If not what is the intended workflow? The user needs feedback when they are navigating a menu!

(4.6 release)

I’d like to know this as well.

This is exactly what I’d need right now.

Upvote it.

isHovered is only used when a pointer is above a widget. Using a gamepad means no pointer but you can presume that if the object has focus and the last key pressed was a gamepad key, the isHovered is true and you can set a style based on that. It would be nice to be able to force isHovered. There will be something in the slate code regarding that however.