Updated descriptions

This commit is contained in:
DaanV2
2021-04-19 10:52:48 +02:00
parent 7914852f89
commit 34093deb9f

View File

@@ -82,28 +82,31 @@
"scripts": { "scripts": {
"additionalProperties": false, "additionalProperties": false,
"type": "object", "type": "object",
"description": "TODO description: scripts",
"title": "Scripts", "title": "Scripts",
"description": "TODO",
"properties": { "properties": {
"animate": { "animate": {
"type": "array", "type": "array",
"title": "Animate Schema", "title": "Animate",
"description": "The array of items to animate",
"minItems": 1, "minItems": 1,
"items": { "items": {
"oneOf": [ "oneOf": [
{ "type": "string", "description": "TODO description: oneOf[0]", "title": "TODO Title" }, { "type": "string", "description": "A single animation or animation controller to run", "title": "Animation (Controller)" },
{ {
"type": "object", "type": "object",
"minProperties": 1, "minProperties": 1,
"additionalProperties": { "type": "string", "description": "TODO description: additionalProperties", "title": "TODO" }, "maxProperties": 1,
"description": "TODO description: oneOf[1]", "title": "Animation (Controller) Condition",
"title": "TODO Title" "description": "A single animation or animation controller to run on condition",
"additionalProperties": {
"type": "string",
"description": "A molang condition",
"title": "Molang"
}
} }
], ]
"description": "TODO description: animate", }
"title": "Animate"
},
"description": "TODO description: animate"
}, },
"initialize": { "initialize": {
"type": "array", "type": "array",