summaryrefslogtreecommitdiff
path: root/modules/csg/config.py
blob: 9106cbceca1bba0be7fc0db495ab35d4ee0d3b6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
def can_build(env, platform):
    return True


def configure(env):
    pass


def get_doc_classes():
    return [
        "CSGBox3D",
        "CSGCombiner3D",
        "CSGCylinder3D",
        "CSGMesh3D",
        "CSGPolygon3D",
        "CSGPrimitive3D",
        "CSGShape3D",
        "CSGSphere3D",
        "CSGTorus3D",
    ]


def get_doc_path():
    return "doc_classes"