2018-05-30 19:11:33 +02:00
|
|
|
def can_build(env, platform):
|
2021-03-17 20:22:33 +01:00
|
|
|
return not env["disable_3d"]
|
2018-04-28 02:52:15 +02:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
|
2018-04-28 02:52:15 +02:00
|
|
|
def configure(env):
|
|
|
|
pass
|
2018-05-12 09:38:00 +02:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
|
2018-05-12 09:38:00 +02:00
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2020-03-30 18:22:57 +02:00
|
|
|
"CSGBox3D",
|
|
|
|
"CSGCombiner3D",
|
|
|
|
"CSGCylinder3D",
|
|
|
|
"CSGMesh3D",
|
|
|
|
"CSGPolygon3D",
|
|
|
|
"CSGPrimitive3D",
|
|
|
|
"CSGShape3D",
|
|
|
|
"CSGSphere3D",
|
|
|
|
"CSGTorus3D",
|
2018-05-12 09:38:00 +02:00
|
|
|
]
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
|
2018-05-12 09:38:00 +02:00
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|