That screenshot is from the editor, not your runtime game. The editor viewport only shows things that are associated with the currently edited scene root, so you need to set the owner of newly tool script added nodes to the scene root. If you use different viewports you also need to make sure that they render to the same rendering scenario, if they use their own world they dont so it will not show.
In my _Ready call, I’m trying to add new cubes to the scene (tried both CSGBox3D and MeshInstance3D with same results).
var box = new MeshInstance3D()
{
Mesh = boxmesh,
Transform = new()
{
Origin = new Vector3(x, y, z)
},
Visible = true
};
AddChild(box);
box.Owner = SceneRoot;
If I add an object to the same node in the editor with the same properties, I see it fine. I checked its owner and assign the same one here to the dynamic node, but I still don’t see them in the game window, even though I see them listed in the remote tab with all the same properties.