Setup text in a window node?

Godot Version

mono 4.2.1

Question

Does anyone know how to properly setup a text node inside a window node?
I did the following, but I don’t find a way to adjust the size of the text container. And also, the text and button nodes under the window node reports “this node doesn’t have a control parent”. But if I give then a parent that is a child of the window node, then that new parent node will also report “this node doesn’t have a control parent”?? So I am really confused about how to organize things inside a window node.
image

1 Like

A Window inherits from Viewport. You cannot modify a node inside a Viewport from the editor.

Create a new scene with the contents of the Window where you will be able to position and size them correctly and instantiate that scene inside the Window node.

2 Likes

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