config.py 376 B

123456789101112131415161718192021222324
  1. def can_build(env, platform):
  2. return True
  3. def configure(env):
  4. pass
  5. def get_doc_classes():
  6. return [
  7. "CSGBox3D",
  8. "CSGCombiner3D",
  9. "CSGCylinder3D",
  10. "CSGMesh3D",
  11. "CSGPolygon3D",
  12. "CSGPrimitive3D",
  13. "CSGShape3D",
  14. "CSGSphere3D",
  15. "CSGTorus3D",
  16. ]
  17. def get_doc_path():
  18. return "doc_classes"