Godot Version
Godot Engine v4.2.2.stable.official
Question
I’m new to using control nodes. I want to be able to focus and move between these sliders, check marks, and buttons, but the typical VBoxContainer and HBoxContainers won’t cut it. Is there a way for me to link these different containers, or a node that I can use to handle the uneven layout? (In the image, the sliders are drawn on in paint but that’s the general layout of where they’ll be).
Why won’t the typical VBoxContainer cut it? This UI seems very suitable for a VBoxContainer with some HBoxContainers where applicable.
So are you saying that I just have to have a VBoxContainer that contains the sliders and checkmarks, and have an HBoxContainer for the buttons? If so, how would I “connect” the two?
What do you mean by “connect”?
Moving between VBox and HBox
You can focus from any Control to any other, if the default focus pattern isn’t to your liking you can override each direction under the “Focus” category of properties.
Ok, thank you. And just to clarify, you don’t need containers for this, you can just manually set the focus for individual nodes?
Yes, containers are not required to assign focus