-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathnode.OMI_seat.schema.json
34 lines (34 loc) · 1.21 KB
/
node.OMI_seat.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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "node.OMI_seat.schema.json",
"title": "OMI_seat glTF Node Extension",
"type": "object",
"description": "Parameters describing a seat for a character.",
"allOf": [ { "$ref": "glTFProperty.schema.json" } ],
"properties": {
"back": {
"type": "array",
"description": "Three number array defining the seat position corresponding to the character's back position limit in local space."
},
"foot": {
"type": "array",
"description": "Three number array defining the seat position corresponding to the character's feet position limit in local space."
},
"knee": {
"type": "array",
"description": "Three number array defining the seat position corresponding to the character's knee base position in local space."
},
"angle": {
"type": "number",
"description": "The angle between the spine and back-knee line in radians.",
"default": 1.57079632679489662
},
"extensions": { },
"extras": { }
},
"required": [
"back",
"foot",
"knee"
]
}