update JsonSchema

This commit is contained in:
j-hirose
2019-06-04 19:08:47 +09:00
parent f2bec289dc
commit e4ee14f8f3
9 changed files with 17 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
{
"title": "vrm.blendshape",
"description": "BlendShapeAvatar of UniVRM",
"type": "object",
"properties": {
"blendShapeGroups": {

View File

@@ -3,7 +3,8 @@
"type": "object",
"properties": {
"mesh": {
"type": "integer"
"type": "integer",
"minimum": 0
},
"firstPersonFlag": {
"type": "string"

View File

@@ -4,7 +4,8 @@
"properties": {
"firstPersonBone": {
"description": "The bone whose rendering should be turned off in first-person view. Usually Head is specified.",
"type": "integer"
"type": "integer",
"minimum": 0
},
"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.",

View File

@@ -9,7 +9,8 @@
},
"node": {
"description": "Reference node index",
"type": "integer"
"type": "integer",
"minimum": 0
},
"useDefaultValues": {
"description": "Unity's HumanLimit.useDefaultValues",

View File

@@ -24,7 +24,8 @@
},
"texture": {
"description": "Thumbnail of VRM model",
"type": "integer"
"type": "integer",
"minimum": 0
},
"allowedUserName": {
"description": "A person who can perform with this avatar",

View File

@@ -4,7 +4,7 @@
"type": "object",
"properties": {
"exporterVersion": {
"description": "Version of exporter that vrm created. UniVRM-0.46",
"description": "Version of exporter that vrm created. UniVRM-0.52.0",
"type": "string"
},
"specVersion": {

View File

@@ -4,7 +4,8 @@
"properties": {
"node": {
"description": "The node of the collider group for setting up collision detections.",
"type": "integer"
"type": "integer",
"minimum": 0
},
"colliders": {
"type": "array",

View File

@@ -1,5 +1,6 @@
{
"title": "vrm.secondaryanimation",
"description": "The setting of automatic animation of string-like objects such as tails and hairs.",
"type": "object",
"properties": {
"boneGroups": {

View File

@@ -45,14 +45,16 @@
"description": "Specify the node index of the root bone of the swaying object.",
"type": "array",
"items": {
"type": "integer"
"type": "integer",
"minimum": 0
}
},
"colliderGroups": {
"description": "Specify the index of the collider group for collisions with swaying objects.",
"type": "array",
"items": {
"type": "integer"
"type": "integer",
"minimum": 0
}
}
}