config.py 393 B

12345678910111213141516171819202122232425
  1. def can_build(env, platform):
  2. return not env["disable_3d"]
  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"