config.py 358 B

12345678910111213141516171819202122232425
  1. def can_build(env, platform):
  2. return True
  3. def configure(env):
  4. pass
  5. def get_doc_classes():
  6. return [
  7. "CSGBox",
  8. "CSGCombiner",
  9. "CSGCylinder",
  10. "CSGMesh",
  11. "CSGPolygon",
  12. "CSGPrimitive",
  13. "CSGShape",
  14. "CSGSphere",
  15. "CSGTorus",
  16. ]
  17. def get_doc_path():
  18. return "doc_classes"