mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-05 23:07:42 -05:00
11 lines
208 B
Python
11 lines
208 B
Python
def can_build(env, platform):
|
|
if env["disable_navigation_3d"]:
|
|
return False
|
|
|
|
env.module_add_dependencies("navigation", ["csg", "gridmap"], True)
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|