I am creating a game where I dynamically add nodes to a VBoxContainer, a dynamic list in effect. However, when I add nodes to the VBoxContainer the nodes overlap. Why is this? Can I change this? I thought everything in a VBoxContainer was supposed to be arranged vertically, not overlapping.
I can sort of fix this issue by increasing the separation, but my nodes inside the vbox are dynamic size so a static separation between nodes won't work
And also I have...
Scroll Container
->Panel
-->VBoxContainer
--->Dynamically added and sized Control Nodes
But no matter how many control nodes I add, I never get the scrolling functionality. After a few added nodes, they just disappear presumably under the bottom of the VBoxContainer I think.
What is a good setup for what I am trying to do? Surely I'm not the first to put dynamically size nodes in a scroll-able container?
Thanks for the help!