godot/modules/csg/config.py

22 lines
350 B
Python
Raw Normal View History

def can_build(platform):
return True
def configure(env):
pass
2018-05-12 07:38:00 +00:00
def get_doc_classes():
return [
"CSGBox",
"CSGCombiner",
"CSGCylinder",
"CSGMesh",
"CSGPolygon",
"CSGPrimitive",
"CSGShape",
"CSGSphere",
"CSGTorus",
]
def get_doc_path():
return "doc_classes"