According to the wiki to have overlapping widgets the Stack should be used.
However, I could not find how to position the widgets inside the stack relative to each other. What I'm trying to achieve is to have a panel, where the players position is shown on top of a mini-map of the scene.
How can the actors inside the Stack positioned? Is there some other way to achieve this?
After looking around in the sourcecde a bit, it became clear why
Stackdidn't let any modification to size and position: it overwrites it.So since
StackExtendsWidgetGroupI tried to use it, instead ofStackand the positioning actually works.