Updated Schemas

This commit is contained in:
Ben C 2023-03-22 00:51:28 +00:00
parent 8d13f1e5e5
commit 0f24804928

View File

@ -1457,16 +1457,15 @@
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
"keepAutoPlacement": {
"type": "boolean",
"description": "Whether to skip modifying this spiral's placement, and instead keep the automatically determined placement."
},
"mirror": { "mirror": {
"type": "boolean", "type": [
"description": "Whether to flip the spiral from left-curling to right-curling or vice versa." "boolean",
"null"
],
"description": "Whether to flip the spiral from left-curling to right-curling or vice versa. If not specified, will use auto spiral generated value."
}, },
"position": { "position": {
"description": "The local position of this object on the wall.", "description": "The local position of this object on the wall. If not specified, will use auto spiral generated value.",
"$ref": "#/definitions/MVector2" "$ref": "#/definitions/MVector2"
}, },
"type": { "type": {
@ -1474,15 +1473,12 @@
"default": "adult", "default": "adult",
"$ref": "#/definitions/NomaiTextArcType" "$ref": "#/definitions/NomaiTextArcType"
}, },
"variation": {
"type": "integer",
"description": "Which variation of the chosen type to place. If not specified, a random variation will be selected based on the seed provided in the parent module.",
"format": "int32",
"default": -1
},
"zRotation": { "zRotation": {
"type": "number", "type": [
"description": "The z euler angle for this arc.", "null",
"number"
],
"description": "The z euler angle for this arc. If not specified, will use auto spiral generated value.",
"format": "float", "format": "float",
"maximum": 360.0, "maximum": 360.0,
"minimum": 0.0 "minimum": 0.0