Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert Schema changes #285

Merged
merged 1 commit into from
Jun 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"type": "object",
"properties": {
"mesh": {
"type": "integer",
"minimum": 0
"type": "integer"
},
"firstPersonFlag": {
"type": "string"
Expand Down
3 changes: 1 addition & 2 deletions specification/0.0/schema/vrm.firstperson.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"properties": {
"firstPersonBone": {
"description": "The bone whose rendering should be turned off in first-person view. Usually Head is specified.",
"type": "integer",
"minimum": 0
"type": "integer"
},
"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.",
Expand Down
3 changes: 1 addition & 2 deletions specification/0.0/schema/vrm.humanoid.bone.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
},
"node": {
"description": "Reference node index",
"type": "integer",
"minimum": 0
"type": "integer"
},
"useDefaultValues": {
"description": "Unity's HumanLimit.useDefaultValues",
Expand Down
3 changes: 1 addition & 2 deletions specification/0.0/schema/vrm.meta.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
},
"texture": {
"description": "Thumbnail of VRM model",
"type": "integer",
"minimum": 0
"type": "integer"
},
"allowedUserName": {
"description": "A person who can perform with this avatar",
Expand Down
2 changes: 1 addition & 1 deletion specification/0.0/schema/vrm.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "object",
"properties": {
"exporterVersion": {
"description": "Version of exporter that vrm created. UniVRM-0.53.0",
"description": "Version of exporter that vrm created. UniVRM-0.46",
"type": "string"
},
"specVersion": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"properties": {
"node": {
"description": "The node of the collider group for setting up collision detections.",
"type": "integer",
"minimum": 0
"type": "integer"
},
"colliders": {
"type": "array",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,14 @@
"description": "Specify the node index of the root bone of the swaying object.",
"type": "array",
"items": {
"type": "integer",
"minimum": 0
"type": "integer"
}
},
"colliderGroups": {
"description": "Specify the index of the collider group for collisions with swaying objects.",
"type": "array",
"items": {
"type": "integer",
"minimum": 0
"type": "integer"
}
}
}
Expand Down