godot check if in exported version code example
Example: godot check if in exported version
if OS.has_feature("standalone"):
print("Running an exported build.")
else:
print("Running from the editor.")
if OS.has_feature("standalone"):
print("Running an exported build.")
else:
print("Running from the editor.")