summaryrefslogtreecommitdiff
path: root/modules/csg/config.py
blob: 5e1d9167902512d18fac8be8f1a3ac56a5e91a70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
def can_build(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"