Specifically I'm trying to make a progress bar show custom text, but since it doesn't support that I'd like to overlap a label on top of it and have it display my custom text.
In XAML for example, that could be achieved by something like:
- parent container (vbox)
- grid (to overlap contents)
- progress bar
- label
- grid (to overlap contents)
However I don't see the equivalent of Grid in Godot's layout controls. So short of manually positioning controls on top of each other, how would I achieve something like the above?