Adding dots to description
This commit is contained in:
@@ -16,22 +16,22 @@
|
||||
],
|
||||
"type": "object",
|
||||
"title": "Animation Controller",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"definitions": {
|
||||
"animationspec": {
|
||||
"anyOf": [
|
||||
{ "title": "Animation Specification", "description": "A single string that specifies which animation there are", "type": "string" },
|
||||
{ "title": "Animation Specification", "description": "A single string that specifies which animation there are.", "type": "string" },
|
||||
{
|
||||
"type": "object",
|
||||
"title": "Animation Specification",
|
||||
"description": "A object specification on how to transition",
|
||||
"description": "A object specification on how to transition.",
|
||||
"maxProperties": 1,
|
||||
"minProperties": 1,
|
||||
"additionalProperties": {
|
||||
"oneOf": [
|
||||
{ "type": "string", "$ref": "../../molang/string.json" },
|
||||
{ "type": "number", "description": "A blend weight" }
|
||||
{ "type": "number", "description": "A blend weight." }
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -48,17 +48,17 @@
|
||||
"description": "Set to false to have the effect spawned in the world without being bound to an actor (by default an effect is bound to the actor).",
|
||||
"const": false
|
||||
},
|
||||
"effect": { "type": "string", "title": "Effect", "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" },
|
||||
"effect": { "type": "string", "title": "Effect", "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." },
|
||||
"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.",
|
||||
"pattern": "^.+;$"
|
||||
}
|
||||
}
|
||||
},
|
||||
"commands": { "type": "string", "description": "The event or commands to execute", "pattern": "^(@s .+|/.+)$" }
|
||||
"commands": { "type": "string", "description": "The event or commands to execute.", "pattern": "^(@s .+|/.+)$" }
|
||||
},
|
||||
"required": ["format_version", "animation_controllers"],
|
||||
"additionalProperties": false,
|
||||
@@ -67,7 +67,7 @@
|
||||
"animation_controllers": {
|
||||
"type": "object",
|
||||
"title": "Animation Controllers Schema",
|
||||
"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"]
|
||||
@@ -76,20 +76,20 @@
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"title": "A 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\\.]+", "examples": ["default"] },
|
||||
"minProperties": 1,
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"additionalProperties": false,
|
||||
"title": "Animation State",
|
||||
"description": "Animation state",
|
||||
"description": "Animation state.",
|
||||
"type": "object",
|
||||
"examples": [
|
||||
{
|
||||
@@ -100,7 +100,7 @@
|
||||
"properties": {
|
||||
"animations": {
|
||||
"title": "Animations",
|
||||
"description": "The animations definition for",
|
||||
"description": "The animations definition for.",
|
||||
"type": "array",
|
||||
"items": { "$ref": "#/definitions/animationspec", "title": "Animations" }
|
||||
},
|
||||
@@ -111,11 +111,11 @@
|
||||
"type": "number",
|
||||
"default": 0.1,
|
||||
"minimum": 0,
|
||||
"description": "A short-hand version of blend_out that simply sets the amount of time to fade out if the animation is interrupted"
|
||||
"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",
|
||||
"description": "Specifies the cross-fade time in seconds when transitioning to another state.",
|
||||
"additionalProperties": {
|
||||
"type": "number",
|
||||
"description": "Mapping of time since the animation was canceled, to the blend value at that time. A default key of time=0 to a blend value of 1.0 is provided if any other key is set and a blend value at time=0 hasn't already been set."
|
||||
@@ -124,16 +124,16 @@
|
||||
]
|
||||
},
|
||||
"blend_via_shortest_path": {
|
||||
"description": "When blending a transition to another state, animate each euler axis through the shortest rotation, instead of by value",
|
||||
"description": "When blending a transition to another state, animate each euler axis through the shortest rotation, instead of by value.",
|
||||
"type": "boolean",
|
||||
"title": "Blend Via Shortest Path"
|
||||
},
|
||||
"particle_effects": {
|
||||
"description": "The effects to be emitted",
|
||||
"description": "The effects to be emitted.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/particle_effect_spec",
|
||||
"description": "UNDOCUMENTED: particle effects",
|
||||
"description": "UNDOCUMENTED: particle effects.",
|
||||
"title": "Particle Effects"
|
||||
},
|
||||
"title": "Particle Effects"
|
||||
@@ -155,12 +155,12 @@
|
||||
},
|
||||
"transitions": {
|
||||
"title": "Transition",
|
||||
"description": "The transition definition for",
|
||||
"description": "The transition definition for.",
|
||||
"minProperties": 1,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/animationspec",
|
||||
"description": "The specification on when to transition to a new state",
|
||||
"description": "The specification on when to transition to a new state.",
|
||||
"title": "Transitions"
|
||||
}
|
||||
},
|
||||
@@ -182,24 +182,24 @@
|
||||
},
|
||||
"on_entry": {
|
||||
"title": "On Entry",
|
||||
"description": "Sets molang on data on entry",
|
||||
"description": "Sets molang on data on entry.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"type": "array",
|
||||
"items": { "pattern": "^.+=.+;$", "title": "Molang", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "string" }
|
||||
"items": { "pattern": "^.+=.+;$", "title": "Molang", "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED", "type": "string" }
|
||||
},
|
||||
"on_exit": {
|
||||
"title": "On Exit",
|
||||
"description": "Sets molang on data on exit",
|
||||
"description": "Sets molang on data on exit.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"type": "array",
|
||||
"items": { "pattern": "^.+=.+;$", "title": "Molang", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "string" }
|
||||
"items": { "pattern": "^.+=.+;$", "title": "Molang", "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED", "type": "string" }
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"initial_state": {
|
||||
"type": "string",
|
||||
"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.",
|
||||
"title": "Initial State"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user