godot/modules/csg/config.py
Rémi Verschelde f3c74afd28
Merge pull request #37436 from akien-mga/doc-node-renames
doc: Update classref with node renames
2020-03-30 20:32:11 +02:00

25 lines
376 B
Python

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"