config.py 768 B

12345678910111213141516171819202122232425262728293031323334353637
  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. "EditorSceneFormatImporterBlend",
  8. "EditorSceneFormatImporterGLTF",
  9. "GLTFAccessor",
  10. "GLTFAnimation",
  11. "GLTFBufferView",
  12. "GLTFCamera",
  13. "GLTFDocument",
  14. "GLTFDocumentExtension",
  15. "GLTFDocumentExtensionConvertImporterMesh",
  16. "GLTFLight",
  17. "GLTFMesh",
  18. "GLTFNode",
  19. "GLTFObjectModelProperty",
  20. "GLTFPhysicsBody",
  21. "GLTFPhysicsShape",
  22. "GLTFSkeleton",
  23. "GLTFSkin",
  24. "GLTFSpecGloss",
  25. "GLTFState",
  26. "GLTFTexture",
  27. "GLTFTextureSampler",
  28. ]
  29. def get_doc_path():
  30. return "doc_classes"