Answers for "godot check if in exported version"

1

godot check if in exported version

if OS.has_feature("standalone"):
    print("Running an exported build.")
else:
    print("Running from the editor.")
Posted by: Guest on June-28-2020

Browse Popular Code Answers by Language