auto: Formatted documents

This commit is contained in:
DaanV2
2021-05-18 23:32:44 +02:00
parent 6963d4eaab
commit 5b784a9cfc
400 changed files with 6276 additions and 1125 deletions

View File

@@ -59,7 +59,10 @@
"type": "object",
"title": "Animation Controllers Schema",
"description": "The animation controllers schema for 1.10.0",
"propertyNames": { "pattern": "^controller\\.animation\\.[a-z\\.]+", "examples": ["controller.animation.example", "controller.animation.example.foo"] },
"propertyNames": {
"pattern": "^controller\\.animation\\.[a-z\\.]+",
"examples": ["controller.animation.example", "controller.animation.example.foo"]
},
"additionalProperties": {
"additionalProperties": false,
"type": "object",
@@ -100,7 +103,10 @@
"title": "Blend Transition",
"description": "when transitioning away from this state, cross-fade over",
"oneOf": [
{ "type": "number", "description": "A short-hand version of blend_out that simply sets the amount of time to fade out if the animation is interrupted" },
{
"type": "number",
"description": "A short-hand version of blend_out that simply sets the amount of time to fade out if the animation is interrupted"
},
{
"type": "object",
"description": "Specifies the cross-fade time in seconds when transitioning to another state",
@@ -119,7 +125,11 @@
"particle_effects": {
"description": "The effects to be emitted",
"type": "array",
"items": { "$ref": "#/definitions/particle_effect_spec", "description": "TODO description: particle effects", "title": "Particle Effects" },
"items": {
"$ref": "#/definitions/particle_effect_spec",
"description": "TODO description: particle effects",
"title": "Particle Effects"
},
"title": "Particle Effects"
},
"sound_effects": {
@@ -129,7 +139,12 @@
"type": "object",
"additionalProperties": false,
"required": ["effect"],
"properties": { "effect": { "description": "Valid sound effect names should be listed in the entity's resource_definition json file.", "type": "string" } }
"properties": {
"effect": {
"description": "Valid sound effect names should be listed in the entity's resource_definition json file.",
"type": "string"
}
}
}
},
"transitions": {