Fixed JsonSchema #45

This commit is contained in:
ousttrue 2018-10-11 09:58:40 +09:00
parent 950d018ee8
commit da4989c852
5 changed files with 73 additions and 7 deletions

@ -1 +1 @@
Subproject commit 8f04b09b5cb7c12ad0f49b6aaa66800029258f77
Subproject commit 975f06f872b86b0a269cdd39a756a8b1f4c17435

View File

@ -8,7 +8,18 @@
},
"firstPersonBoneOffset": {
"description": "The target position of the VR headset in first-person view. It is assumed that an offset from the head bone to the VR headset is added.",
"type": "array"
"type": "object",
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
}
},
"meshAnnotations": {
"description": "Switch display \/ undisplay for each mesh in first-person view or the others.",

View File

@ -17,15 +17,48 @@
},
"min": {
"description": "Unity's HumanLimit.min",
"type": "array"
"type": "object",
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
}
},
"max": {
"description": "Unity's HumanLimit.max",
"type": "array"
"type": "object",
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
}
},
"center": {
"description": "Unity's HumanLimit.center",
"type": "array"
"type": "object",
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
}
},
"axisLength": {
"description": "Unity's HumanLimit.axisLength",

View File

@ -13,7 +13,18 @@
"properties": {
"offset": {
"description": "The local coordinate from the node of the collider group.",
"type": "array"
"type": "object",
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
}
},
"radius": {
"description": "The radius of the collider.",

View File

@ -16,7 +16,18 @@
},
"gravityDir": {
"description": "The direction of gravity. Set (0, -1, 0) for simulating the gravity. Set (1, 0, 0) for simulating the wind.",
"type": "array"
"type": "object",
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
}
},
"dragForce": {
"description": "The resistance (deceleration) of automatic animation.",