Widget Component inside HUD Class

Im trying to create a widget component inside the HUD class.
However, the widget does not show.
(to test I created the same component in another actor, and it works).

Does anyone knows why the HUD class does not show the widget component in the world?

Found why.
The problem is not the widget component.
The problem is that HUD class is set to be hidden by Default.
Calling SetHidden(false) on the child class solves it, and the widget component appears.

1 Like