hanging_points_info.json
Copy Json
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Hanging Points Info",
"oneOf": [
{
"description": "This will use Browzwear axies direction to calculate the hanging point of the avatar",
"type": "object",
"properties": {
"axies_direction": {
"type": "string",
"enum": [
"browzwear"
]
},
"pose": {
"type": "string",
"enum": [
"current",
"t-pose"
]
}
},
"required": [
"axies_direction",
"pose"
]
},
{
"description": "This will use the original avatar's axies direction to calculate the hanging point of the avatar",
"type": "object",
"properties": {
"axies_direction": {
"type": "string",
"enum": [
"original"
]
}
},
"required": [
"axies_direction"
]
}
]
}