godot/modules/raycast/config.py

21 lines
406 B
Python
Raw Normal View History

2020-12-19 14:50:20 +01:00
def can_build(env, platform):
2021-05-04 11:07:12 +02:00
if not env["tools"]:
return False
# Depends on Embree library, which only supports x86_64 and aarch64.
2021-05-04 11:07:12 +02:00
if platform == "android":
return env["android_arch"] in ["arm64v8", "x86_64"]
2021-05-04 11:07:12 +02:00
if platform in ["javascript", "server"]:
return False
if env["bits"] == "32":
return False
2021-05-04 11:07:12 +02:00
return True
2020-12-19 14:50:20 +01:00
def configure(env):
pass