Godot Version
4.2
Question
So I have a scene like this:
The Price Tag child is supposed to hang out from the bottom like this:
My problem is, when I add this to a container, it doesn’t account for the minimum_size of the PriceTag. So the PriceTag hangs out from underneath the container instead of being contained inside it?
Whats the default way to handle something like this? I thought of maybe refactoring my scene to use a VBoxContainer containing the PriceTag and its parent node as two separate children but is there a better way?