summaryrefslogtreecommitdiff
path: root/modules/csg/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/csg/config.py')
-rw-r--r--modules/csg/config.py18
1 files changed, 17 insertions, 1 deletions
diff --git a/modules/csg/config.py b/modules/csg/config.py
index 5f133eba90..38ccc66d91 100644
--- a/modules/csg/config.py
+++ b/modules/csg/config.py
@@ -1,5 +1,21 @@
-def can_build(platform):
+def can_build(env, platform):
return True
def configure(env):
pass
+
+def get_doc_classes():
+ return [
+ "CSGBox",
+ "CSGCombiner",
+ "CSGCylinder",
+ "CSGMesh",
+ "CSGPolygon",
+ "CSGPrimitive",
+ "CSGShape",
+ "CSGSphere",
+ "CSGTorus",
+ ]
+
+def get_doc_path():
+ return "doc_classes"