Verificación de Godot si en la versión exportada

if OS.has_feature("standalone"):
    print("Running an exported build.")
else:
    print("Running from the editor.")
Zwazel