Hi there!
I need help.
I made a game that work nice when i launch it on Godot.
But after export, the console return me this line :
Edit state is only for editors, does not work without tools compiled
this is the script i try to call :
scene = load("res://portions/portion1.scn");
node = scene.instance(true);
add_child(node);
node.set_name("portion1");
i just want to load a portion of my level on the scene start.
Do you know what i did wrong?
regards!