position in center of screen

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Sakura37

How can I position something in the center of the screen and down?For example the dialogue box…how can i position it without making it the player’s child, to be in the same spot and not depending where the player is?

:bust_in_silhouette: Reply From: kidscancode

You can find the center of the screen with get_viewport_rect().size / 2.

For Control nodes, you can set their anchors to be centered (choose Layout → Center) in the menu, or make them a child of a CenterContainer (if you need a dynamic layout for different sized screens).