How do I moce Buttons

Godot Version

4.2.2

Question

How to move buttons? It now allows my becouse of parent
It says “Children of a container get their position and size determined only by their parent”
Screenshot 2024-07-22 101817

Yes the vbox container arranges its children → you cant change the position of the buttons. If you want to arrange the buttons differently you can consider using another parent-node, for example:

  • Control: You can arrange them as you like
  • GridContainer: Allows you to arrange them in a grid
  • FlowContainer: Allows you to let the buttons “flow” the container full
3 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.