Adding dots to description

This commit is contained in:
DaanV2
2022-07-22 19:41:04 +02:00
parent 61327eac6e
commit 8b3778de6d
457 changed files with 2337 additions and 2406 deletions

View File

@@ -17,13 +17,13 @@
"anyOf": [
{
"title": "Animation Specification",
"description": "A single string that specifies which animation there are",
"description": "A single string that specifies which animation there are.",
"type": "string"
},
{
"type": "object",
"title": "Animation Specification",
"description": "A object specification on when to animate",
"description": "A object specification on when to animate.",
"maxProperties": 1,
"minProperties": 1,
"additionalProperties": {
@@ -46,23 +46,23 @@
"effect": {
"type": "string",
"title": "Effect",
"description": "The name of a particle effect that should be played"
"description": "The name of a particle effect that should be played."
},
"locator": {
"type": "string",
"title": "Locator",
"description": "The name of a locator on the actor where the effect should be located"
"description": "The name of a locator on the actor where the effect should be located."
},
"pre_effect_script": {
"type": "string",
"title": "Pre Effect Script",
"description": "A molang script that will be run when the particle emitter is initialized"
"description": "A molang script that will be run when the particle emitter is initialized."
}
}
},
"commands": {
"type": "string",
"description": "The event or commands to execute",
"description": "The event or commands to execute.",
"title": "Commands",
"oneOf": [
{ "pattern": "^@s .+$", "title": "Event" },
@@ -73,7 +73,7 @@
},
"type": "object",
"title": "Animation Controller",
"description": "Animation controller for behaviors",
"description": "Animation controller for behaviors.",
"required": ["format_version", "animation_controllers"],
"additionalProperties": false,
"properties": {
@@ -81,7 +81,7 @@
"animation_controllers": {
"type": "object",
"title": "Animation Controllers",
"description": "The animation controllers schema for",
"description": "The animation controllers schema for.",
"propertyNames": {
"pattern": "^controller\\.animation\\.[a-z\\.]+",
"examples": ["controller.animation.example", "controller.animation.example.foo"]
@@ -90,20 +90,20 @@
"additionalProperties": false,
"type": "object",
"title": "Animation Controller",
"description": "A single animation controller",
"description": "A single animation controller.",
"required": ["states"],
"minProperties": 1,
"properties": {
"states": {
"title": "States",
"description": "The states of this animation controller",
"description": "The states of this animation controller.",
"propertyNames": { "pattern": "[a-z\\.]+" },
"minProperties": 1,
"type": "object",
"additionalProperties": {
"additionalProperties": false,
"title": "Animation State",
"description": "Animation state",
"description": "Animation state.",
"type": "object",
"examples": [
{
@@ -114,17 +114,17 @@
"properties": {
"animations": {
"title": "Animations",
"description": "The animations definition for",
"description": "The animations definition for.",
"type": "array",
"items": {
"$ref": "#/definitions/animationspec",
"description": "The key definition of an animation to play, defined in the entity",
"description": "The key definition of an animation to play, defined in the entity.",
"title": "Animations"
}
},
"on_entry": {
"type": "array",
"description": "Events, commands or transitions to preform on entry of this state",
"description": "Events, commands or transitions to preform on entry of this state.",
"title": "On Entry",
"items": {
"$ref": "#/definitions/commands"
@@ -132,7 +132,7 @@
},
"on_exit": {
"type": "array",
"description": "Events, commands or transitions to preform on exit of this state",
"description": "Events, commands or transitions to preform on exit of this state.",
"title": "On Exit",
"items": {
"$ref": "#/definitions/commands"
@@ -140,12 +140,12 @@
},
"transitions": {
"title": "Transition",
"description": "The transition definition for",
"description": "The transition definition for.",
"minProperties": 1,
"type": "array",
"items": {
"title": "Transition",
"description": "A transition to another state",
"description": "A transition to another state.",
"type": "object",
"maxProperties": 1,
"minProperties": 1,
@@ -160,7 +160,7 @@
},
"initial_state": {
"title": "Initial State",
"description": "The state to start with, if not specified state at position 0 in the array is used",
"description": "The state to start with, if not specified state at position 0 in the array is used.",
"type": "string",
"examples": ["default"]
}