Is it possible to make scene instance local or "editable children" through tool?
I found a solution like this:
node.filename=''
node.owner=get_tree().get_edited_scene_root()
But it doesn't work for me.
I also tried to call the scene.instance(GenEditState.GEN_EDIT_STATE_INSTANCE)
to make this instance local. Because the method description says: "If passed to instance(), provides local scene resources to the local scene." But that also didn’t work.
Although changes appear in the editor before the first restart of the project. But when the game starts, all children return to their default state.