2018-05-30 17:11:33 +00:00
|
|
|
def can_build(env, platform):
|
2021-03-17 19:22:33 +00:00
|
|
|
return not env["disable_3d"]
|
2017-09-28 12:15:21 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2017-09-28 12:15:21 +00:00
|
|
|
def configure(env):
|
2017-11-15 18:23:20 +00:00
|
|
|
pass
|
2017-09-29 11:36:27 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2017-09-29 11:36:27 +00:00
|
|
|
def get_doc_classes():
|
2017-11-15 18:23:20 +00:00
|
|
|
return [
|
|
|
|
"MobileVRInterface",
|
|
|
|
]
|
2017-09-29 11:36:27 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2017-09-29 11:36:27 +00:00
|
|
|
def get_doc_path():
|
2017-11-15 18:23:20 +00:00
|
|
|
return "doc_classes"
|