2018-05-30 19:11:33 +02:00
|
|
|
def can_build(env, platform):
|
2018-04-28 02:52:15 +02:00
|
|
|
return True
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|
2018-05-12 09:38:00 +02:00
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
|
|
|
"CSGBox",
|
|
|
|
"CSGCombiner",
|
|
|
|
"CSGCylinder",
|
|
|
|
"CSGMesh",
|
|
|
|
"CSGPolygon",
|
|
|
|
"CSGPrimitive",
|
|
|
|
"CSGShape",
|
|
|
|
"CSGSphere",
|
|
|
|
"CSGTorus",
|
|
|
|
]
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|