mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-09-09 04:19:42 -05:00
update JsonSchema
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"title": "vrm.blendshape",
|
||||
"description": "BlendShapeAvatar of UniVRM",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"blendShapeGroups": {
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mesh": {
|
||||
"type": "integer"
|
||||
"type": "integer",
|
||||
"minimum": 0
|
||||
},
|
||||
"firstPersonFlag": {
|
||||
"type": "string"
|
||||
|
||||
@@ -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.",
|
||||
|
||||
@@ -9,7 +9,8 @@
|
||||
},
|
||||
"node": {
|
||||
"description": "Reference node index",
|
||||
"type": "integer"
|
||||
"type": "integer",
|
||||
"minimum": 0
|
||||
},
|
||||
"useDefaultValues": {
|
||||
"description": "Unity's HumanLimit.useDefaultValues",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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": {
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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": {
|
||||
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user