forked from KhronosGroup/glTF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeshes.json
35 lines (35 loc) · 1.09 KB
/
meshes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"meshes" : {
"mesh_id": {
"name": "user-defined name of mesh",
"primitives": [
{
"attributes": {
"NORMAL": "accessor_id0",
"POSITION": "accessor_id1",
"TEXCOORD_0": "accessor_id2"
},
"indices": "accessor_id3",
"material": "material_id",
"mode": 4,
"extensions" : {
"extension_name" : {
"extension specific" : "value"
}
},
"extras" : {
"Application specific" : "The extra object can contain any properties."
}
}
],
"extensions" : {
"extension_name" : {
"extension specific" : "value"
}
},
"extras" : {
"Application specific" : "The extra object can contain any properties."
}
}
}
}