-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7dbed06
commit fd75a63
Showing
247 changed files
with
14,711 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Change Log | ||
|
||
## [0.3.0] - 2020-01-01 | ||
Initial release of the UniVGO. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#VGO Documentation |
47 changes: 47 additions & 0 deletions
47
Documentation~/VGO/specification/0.1/schema/node.vgo.collider.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"title": "node.vgo.collider", | ||
"description": "Node collider.", | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"description": "Type of collider.", | ||
"type": "string", | ||
"enum": ["Box","Capsule","Sphere"] | ||
}, | ||
"isTrigger": { | ||
"description": "Is the collider a trigger?", | ||
"type": "boolean" | ||
}, | ||
"center": { | ||
"description": "The center of the collider. [x, y, z]", | ||
"type": "array", | ||
"items": { | ||
"type": "number" | ||
} | ||
}, | ||
"size": { | ||
"description": "The total size of the box. [x, y, z]", | ||
"type": "array", | ||
"items": { | ||
"type": "number" | ||
} | ||
}, | ||
"radius": { | ||
"description": "The radius of the capsule or sphere, measured in the object's local space.", | ||
"type": "number", | ||
"minimum": 0 | ||
}, | ||
"height": { | ||
"description": "The height of the capsule, measured in the object's local space.", | ||
"type": "number", | ||
"minimum": 0 | ||
}, | ||
"direction": { | ||
"description": "The direction of the capsule. [0:x, 1:y, 2:z]", | ||
"type": "integer" | ||
}, | ||
"physicMaterial": { | ||
"$ref": "node.vgo.physicMaterial.schema.json" | ||
} | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
Documentation~/VGO/specification/0.1/schema/node.vgo.colliders.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"title": "node.vgo.colliders", | ||
"description": "Node colliders.", | ||
"type": "array", | ||
"items": { | ||
"$ref": "node.vgo.collider.schema.json" | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
Documentation~/VGO/specification/0.1/schema/node.vgo.physicMaterial.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"title": "node.vgo.physicMaterial", | ||
"description": "Physic material.", | ||
"type": "object", | ||
"properties": { | ||
"dynamicFriction": { | ||
"description": "The friction used when already moving.", | ||
"type": "number", | ||
"minimum": 0, | ||
"maximum": 1 | ||
}, | ||
"staticFriction": { | ||
"description": "The friction coefficient used when an object is lying on a surface.", | ||
"type": "number", | ||
"minimum": 0, | ||
"maximum": 1 | ||
}, | ||
"bounciness": { | ||
"description": "How bouncy is the surface?", | ||
"type": "number", | ||
"minimum": 0, | ||
"maximum": 1 | ||
}, | ||
"frictionCombine": { | ||
"description": "Determines how the friction is combined.", | ||
"type": "string", | ||
"enum": ["Average","Multiply","Minimum","Maximum"] | ||
}, | ||
"bounceCombine": { | ||
"description": "Determines how the bounciness is combined.", | ||
"type": "string", | ||
"enum": ["Average","Multiply","Minimum","Maximum"] | ||
} | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
Documentation~/VGO/specification/0.1/schema/node.vgo.rigidbody.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"title": "node.vgo.rigidbody", | ||
"description": "Node rigidbody.", | ||
"type": "object", | ||
"properties": { | ||
"mass": { | ||
"description": "The mass of the body. [0.0000001, 1000000000]", | ||
"type": "number", | ||
"minimum": 0.0000001, | ||
"maximum": 1000000000 | ||
}, | ||
"drag": { | ||
"description": "The linear drag coefficient. [0, infinity]", | ||
"type": "number", | ||
"minimum": 0 | ||
}, | ||
"angularDrag": { | ||
"description": "The angular drag coefficient. [0, infinity]", | ||
"type": "number", | ||
"minimum": 0 | ||
}, | ||
"useGravity": { | ||
"description": "Controls whether gravity affects this rigidbody.", | ||
"type": "boolean" | ||
}, | ||
"isKinematic": { | ||
"description": "Controls whether physics affects the rigidbody.", | ||
"type": "boolean" | ||
}, | ||
"interpolation": { | ||
"description": "Interpolation allows you to smooth out the effect of running physics at a fixed frame rate.", | ||
"type": "string", | ||
"enum": ["None","Interpolate","Extrapolate"] | ||
}, | ||
"collisionDetectionMode": { | ||
"description": "The Rigidbody's collision detection mode.", | ||
"type": "string", | ||
"enum": ["Discrete","Continuous","ContinuousDynamic","ContinuousSpeculative"] | ||
}, | ||
"constraints": { | ||
"description": "The flags to constrain motion of rigidbodies. [2|4|8|16|32|64]", | ||
"type": "integer", | ||
"maximum": 126 | ||
} | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
Documentation~/VGO/specification/0.1/schema/nodes.extensions.vgo_nodes.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"title": "nodes.extensions.VGO_nodes", | ||
"description": "Node extension for VGO.", | ||
"type": "object", | ||
"properties": { | ||
"colliders": { | ||
"$ref": "node.vgo.colliders.schema.json" | ||
}, | ||
"rigidbody": { | ||
"$ref": "node.vgo.rigidbody.schema.json" | ||
}, | ||
"right": { | ||
"$ref": "node.vgo.right.schema.json" | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
Documentation~/VGO/specification/0.1/schema/vgo.meta.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"title": "vgo.meta", | ||
"description": "VGO meta information.", | ||
"type": "object", | ||
"properties": { | ||
"generatorName": { | ||
"description": "The VGO generator name.", | ||
"type": "string" | ||
}, | ||
"generatorVersion": { | ||
"description": "The VGO generator version.", | ||
"type": "string" | ||
}, | ||
"specVersion": { | ||
"description": "The VGO specification version.", | ||
"type": "string" | ||
} | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
Documentation~/VGO/specification/0.1/schema/vgo.right.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"title": "vgo.right", | ||
"description": "Rights information.", | ||
"type": "object", | ||
"properties": { | ||
"title": { | ||
"description": "The name of the model.", | ||
"type": "string" | ||
}, | ||
"author": { | ||
"description": "The name of the model creator.", | ||
"type": "string" | ||
}, | ||
"organization": { | ||
"description": "Organization to which the creator belongs.", | ||
"type": "string" | ||
}, | ||
"createdDate": { | ||
"description": "The date this model was created.", | ||
"type": "string" | ||
}, | ||
"updatedDate": { | ||
"description": "The date this model was updated.", | ||
"type": "string" | ||
}, | ||
"version": { | ||
"description": "The version of this model.", | ||
"type": "string" | ||
}, | ||
"distributionUrl": { | ||
"description": "Distribution URL for this model.", | ||
"type": "string" | ||
}, | ||
"licenseUrl": { | ||
"description": "URL that describes the license for this model.", | ||
"type": "string" | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
Documentation~/VGO/specification/0.1/schema/vgo.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"title": "vgo", | ||
"description": "glTF extension for VGO.", | ||
"type": "object", | ||
"properties": { | ||
"meta": { | ||
"$ref": "vgo.meta.schema.json" | ||
}, | ||
"right": { | ||
"$ref": "vgo.right.schema.json" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2020 Izayoi Jiichan | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.