I want to do something like this:
tool
func _ready():
var node = preload("....").inctance()
add_child(node)
But this code adds a node to root/EditorNode. So when I start the application, I do not see the node on the stage.
Is it possible to implement this feature?
So that you can create nods through edits automatically, and add them to the scene?