Skip to main content

hanging_points_info_v1_0.json

hanging_points_info.json Copy Json { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Hanging Points Info", "o...

Updated over 3 weeks ago

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"
      ]
    }
  ]
}
Did this answer your question?