📜  godot 检查是否在导出版本中 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:11.651000             🧑  作者: Mango

代码示例1
if OS.has_feature("standalone"):
    print("Running an exported build.")
else:
    print("Running from the editor.")