Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gltf/config.py
10277 views
1
def can_build(env, platform):
2
env.module_add_dependencies("gltf", ["csg", "gridmap"], True)
3
return not env["disable_3d"]
4
5
6
def configure(env):
7
pass
8
9
10
def get_doc_classes():
11
return [
12
"EditorSceneFormatImporterBlend",
13
"EditorSceneFormatImporterGLTF",
14
"GLTFAccessor",
15
"GLTFAnimation",
16
"GLTFBufferView",
17
"GLTFCamera",
18
"GLTFDocument",
19
"GLTFDocumentExtension",
20
"GLTFDocumentExtensionConvertImporterMesh",
21
"GLTFLight",
22
"GLTFMesh",
23
"GLTFNode",
24
"GLTFObjectModelProperty",
25
"GLTFPhysicsBody",
26
"GLTFPhysicsShape",
27
"GLTFSkeleton",
28
"GLTFSkin",
29
"GLTFSpecGloss",
30
"GLTFState",
31
"GLTFTexture",
32
"GLTFTextureSampler",
33
]
34
35
36
def get_doc_path():
37
return "doc_classes"
38
39