mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-12 13:34:39 -05:00
Fixed JsonSchema #45
This commit is contained in:
parent
950d018ee8
commit
da4989c852
2
UniGLTF
2
UniGLTF
|
|
@ -1 +1 @@
|
|||
Subproject commit 8f04b09b5cb7c12ad0f49b6aaa66800029258f77
|
||||
Subproject commit 975f06f872b86b0a269cdd39a756a8b1f4c17435
|
||||
|
|
@ -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.",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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.",
|
||||
|
|
|
|||
|
|
@ -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.",
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user