I have these three lines of code:
UIElement_InvButton->OnClicked.AddDynamic(UIElement_InvButton, &UHQButton_ItemButton::Clicked);
UIElement_InvButton->OnHovered.AddDynamic(UIElement_InvButton, &UHQButton_ItemButton::Hovered);
UIElement_InvButton->OnUnhovered.AddDynamic(UIElement_InvButton, &UHQButton_ItemButton::Unhovered);
When I click the button, it runs Clicked() as expected.
When I hover the button, the Hovered() function is not even called.
Anyone have a thought as to why this might be happening?