Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/csg/config.py
10277 views
1
def can_build(env, platform):
2
return not env["disable_3d"]
3
4
5
def configure(env):
6
pass
7
8
9
def get_doc_classes():
10
return [
11
"CSGBox3D",
12
"CSGCombiner3D",
13
"CSGCylinder3D",
14
"CSGMesh3D",
15
"CSGPolygon3D",
16
"CSGPrimitive3D",
17
"CSGShape3D",
18
"CSGSphere3D",
19
"CSGTorus3D",
20
]
21
22
23
def get_doc_path():
24
return "doc_classes"
25
26