2018-05-30 19:11:33 +02:00
|
|
|
def can_build(env, platform):
|
2025-03-30 13:20:04 -03:00
|
|
|
if env["disable_navigation_3d"]:
|
|
|
|
|
return False
|
|
|
|
|
|
2025-01-08 21:59:18 -06:00
|
|
|
env.module_add_dependencies("navigation", ["csg", "gridmap"], True)
|
2025-03-30 13:20:04 -03:00
|
|
|
return True
|
2017-02-28 12:10:29 +00:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
|
2017-02-28 12:10:29 +00:00
|
|
|
def configure(env):
|
|
|
|
|
pass
|