Updated Schemas

This commit is contained in:
Ben C 2023-03-23 05:17:36 +00:00
parent ad704d9bf6
commit ad7ae299f2

View File

@ -1471,45 +1471,31 @@
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
"mirror": {
"type": [
"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": {
"description": "The local position of this object on the wall. If not specified, will use auto spiral generated value.",
"$ref": "#/definitions/MVector2"
},
"type": { "type": {
"description": "The type of text to display.", "description": "The type of text to display.",
"default": "adult", "default": "adult",
"$ref": "#/definitions/NomaiTextArcType" "$ref": "#/definitions/NomaiTextArcType"
}, },
"position": {
"description": "The local position of this object on the wall. If specified, auto spiral will not touch this arc.",
"$ref": "#/definitions/MVector2"
},
"zRotation": { "zRotation": {
"type": [ "type": [
"null", "null",
"number" "number"
], ],
"description": "The z euler angle for this arc. If not specified, will use auto spiral generated value.", "description": "The z euler angle for this arc. If specified, auto spiral will not touch this arc.",
"format": "float", "format": "float",
"maximum": 360.0, "maximum": 360.0,
"minimum": 0.0 "minimum": 0.0
}
}
},
"MVector2": {
"type": "object",
"additionalProperties": false,
"properties": {
"x": {
"type": "number",
"format": "float"
}, },
"y": { "mirror": {
"type": "number", "type": [
"format": "float" "boolean",
"null"
],
"description": "Whether to flip the spiral from left-curling to right-curling or vice versa. If specified, auto spiral will not touch this arc."
} }
} }
}, },
@ -1527,6 +1513,20 @@
"stranger" "stranger"
] ]
}, },
"MVector2": {
"type": "object",
"additionalProperties": false,
"properties": {
"x": {
"type": "number",
"format": "float"
},
"y": {
"type": "number",
"format": "float"
}
}
},
"NomaiTextType": { "NomaiTextType": {
"type": "string", "type": "string",
"description": "", "description": "",