forked from KhronosGroup/glTF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.schema.json
96 lines (96 loc) · 3.88 KB
/
node.schema.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "Node",
"type": "object",
"description": "A node in the node hierarchy. When the node contains `skin`, all `mesh.primitives` must contain `JOINTS_0` and `WEIGHTS_0` attributes. A node can have either a `matrix` or any combination of `translation`/`rotation`/`scale` (TRS) properties. TRS properties are converted to matrices and postmultiplied in the `T * R * S` order to compose the transformation matrix; first the scale is applied to the vertices, then the rotation, and then the translation. If none are provided, the transform is the identity. When a node is targeted for animation (referenced by an animation.channel.target), only TRS properties may be present; `matrix` will not be present.",
"allOf": [ { "$ref": "glTFChildOfRootProperty.schema.json" } ],
"properties": {
"camera": {
"allOf": [ { "$ref": "glTFid.schema.json" } ],
"description": "The index of the camera referenced by this node."
},
"children": {
"type": "array",
"description": "The indices of this node's children.",
"items": {
"$ref": "glTFid.schema.json"
},
"uniqueItems": true,
"minItems": 1
},
"skin": {
"allOf": [ { "$ref": "glTFid.schema.json" } ],
"description": "The index of the skin referenced by this node."
},
"matrix": {
"type": "array",
"description": "A floating-point 4x4 transformation matrix stored in column-major order.",
"items": {
"type": "number"
},
"minItems": 16,
"maxItems": 16,
"default": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ],
"gltf_detailedDescription": "A floating-point 4x4 transformation matrix stored in column-major order.",
"gltf_webgl": "`uniformMatrix4fv()` with the transpose parameter equal to false"
},
"mesh": {
"allOf": [ { "$ref": "glTFid.schema.json" } ],
"description": "The index of the mesh in this node."
},
"rotation": {
"type": "array",
"description": "The node's unit quaternion rotation in the order (x, y, z, w), where w is the scalar.",
"items": {
"type": "number",
"minimum": -1.0,
"maximum": 1.0
},
"minItems": 4,
"maxItems": 4,
"default": [ 0.0, 0.0, 0.0, 1.0 ]
},
"scale": {
"type": "array",
"description": "The node's non-uniform scale, given as the scaling factors along the x, y, and z axes.",
"items": {
"type": "number"
},
"minItems": 3,
"maxItems": 3,
"default": [ 1.0, 1.0, 1.0 ]
},
"translation": {
"type": "array",
"description": "The node's translation along the x, y, and z axes.",
"items": {
"type": "number"
},
"minItems": 3,
"maxItems": 3,
"default": [ 0.0, 0.0, 0.0 ]
},
"weights": {
"type": "array",
"description": "The weights of the instantiated Morph Target. Number of elements must match number of Morph Targets of used mesh.",
"minItems": 1,
"items": {
"type": "number"
}
},
"name": { },
"extensions": { },
"extras": { }
},
"dependencies": {
"weights": [ "mesh" ],
"skin": [ "mesh" ]
},
"not": {
"anyOf": [
{ "required": [ "matrix", "translation" ] },
{ "required": [ "matrix", "rotation" ] },
{ "required": [ "matrix", "scale" ] }
]
}
}