same
PizzaHutsAlat it behaves like all children of Node2D and doesn't follow the camera (and can be overlapped by 2D nodes). I know this is probably intentional since both Node2D and Control families are extended from CanvasItem, but it's not working how I need it too, so does anybody know how I can make them stay stationary when the camera moves like in 3D? I hope this makes sense, I wasn't really how to describe my problem.
3D and 2D are rendered in different viewports, so when you put controls in a 3D camera it renders it on top.
the same doesn't happen in 2D. in 2D you can mishmash Controls and 2D nodes, since they are all canvas.
in order for controls to work correctly for UI in 2D, you need a CanvasLayer node, and put your UI as children of it.
the nodes will just not work if they are just children of the camera, because the camera2D is not a viewport and doesn't have a size, so your control nodes are going to start drawing from the center and be all glitched.