Adding dots to description
This commit is contained in:
@@ -14,11 +14,11 @@
|
||||
"additionalProperties": false,
|
||||
"required": ["effect"],
|
||||
"properties": {
|
||||
"effect": { "type": "string", "title": "Particle Id", "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": "Particle Id", "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": {
|
||||
"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.",
|
||||
"$ref": "../../molang/string.json"
|
||||
},
|
||||
"bind_to_actor": {
|
||||
@@ -31,7 +31,7 @@
|
||||
},
|
||||
"PositionV3": {
|
||||
"title": "Position Array",
|
||||
"description": "An array of 3 items that describe the bones position",
|
||||
"description": "An array of 3 items that describe the bones position.",
|
||||
"type": "array",
|
||||
"examples": [[0, 0, 0]],
|
||||
"maxItems": 3,
|
||||
@@ -44,7 +44,7 @@
|
||||
},
|
||||
"RotationV3": {
|
||||
"title": "Rotation Array",
|
||||
"description": "An array of 3 items that describe the bones rotation",
|
||||
"description": "An array of 3 items that describe the bones rotation.",
|
||||
"type": "array",
|
||||
"examples": [[0, 0, 0]],
|
||||
"maxItems": 3,
|
||||
@@ -57,7 +57,7 @@
|
||||
},
|
||||
"ScaleV3": {
|
||||
"title": "Scale Array",
|
||||
"description": "An array of 3 items that describe the bones scale",
|
||||
"description": "An array of 3 items that describe the bones scale.",
|
||||
"type": "array",
|
||||
"examples": [[0, 0, 0]],
|
||||
"maxItems": 3,
|
||||
@@ -86,14 +86,14 @@
|
||||
"format_version": { "$ref": "../../general/format_version.json" },
|
||||
"animations": {
|
||||
"title": "Animations Schema",
|
||||
"description": "The animation specification",
|
||||
"description": "The animation specification.",
|
||||
"propertyNames": { "pattern": "^animation\\.[a-z\\.]+" },
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"title": "Animation",
|
||||
"description": "The animation specification",
|
||||
"description": "The animation specification.",
|
||||
"properties": {
|
||||
"anim_time_update": {
|
||||
"title": "Start Delay",
|
||||
@@ -113,19 +113,19 @@
|
||||
},
|
||||
"bones": {
|
||||
"title": "Bones",
|
||||
"description": "Defines how the bones in an animation move or transform",
|
||||
"description": "Defines how the bones in an animation move or transform.",
|
||||
"propertyNames": { "examples": ["leftArm"] },
|
||||
"type": "object",
|
||||
"minProperties": 1,
|
||||
"additionalProperties": {
|
||||
"title": "Bone Transformation",
|
||||
"description": "The bone definition that declare how it transforms during animation",
|
||||
"description": "The bone definition that declare how it transforms during animation.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"position": {
|
||||
"title": "Position",
|
||||
"description": "The Position transformation during this animation",
|
||||
"description": "The Position transformation during this animation.",
|
||||
"oneOf": [
|
||||
{ "type": "array", "$ref": "#/definitions/PositionV3" },
|
||||
{
|
||||
@@ -133,9 +133,9 @@
|
||||
"propertyNames": { "pattern": "^(\\d+\\.\\d+|\\d+)$", "examples": ["0.0", "1.0"] },
|
||||
"additionalProperties": {
|
||||
"title": "Timeline Object",
|
||||
"description": "A single point in time",
|
||||
"description": "A single point in time.",
|
||||
"oneOf": [
|
||||
{ "$ref": "../../molang/number.json", "description": "Uniform position" },
|
||||
{ "$ref": "../../molang/number.json", "description": "Uniform position." },
|
||||
{ "type": "array", "$ref": "#/definitions/PositionV3" },
|
||||
{
|
||||
"additionalProperties": false,
|
||||
@@ -144,19 +144,19 @@
|
||||
"lerp_mode": {
|
||||
"type": "string",
|
||||
"title": "Lerp Mode",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"enum": ["linear", "catmullrom"]
|
||||
},
|
||||
"pre": {
|
||||
"title": "Pre",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"$ref": "#/definitions/PositionV3"
|
||||
},
|
||||
"post": {
|
||||
"title": "Pre",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"$ref": "#/definitions/PositionV3"
|
||||
}
|
||||
@@ -169,7 +169,7 @@
|
||||
},
|
||||
"rotation": {
|
||||
"title": "Rotation",
|
||||
"description": "The rotation transformation during this animation",
|
||||
"description": "The rotation transformation during this animation.",
|
||||
"oneOf": [
|
||||
{ "type": "array", "$ref": "#/definitions/RotationV3" },
|
||||
{
|
||||
@@ -177,12 +177,12 @@
|
||||
"propertyNames": { "pattern": "^(\\d+\\.\\d+|\\d+)$", "examples": ["0.0", "1.0"] },
|
||||
"additionalProperties": {
|
||||
"title": "Timeline Object",
|
||||
"description": "A single point in time",
|
||||
"description": "A single point in time.",
|
||||
"oneOf": [
|
||||
{ "$ref": "../../molang/number.json", "description": "Uniform rotation" },
|
||||
{ "$ref": "../../molang/number.json", "description": "Uniform rotation." },
|
||||
{
|
||||
"type": "array",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"$ref": "#/definitions/RotationV3"
|
||||
},
|
||||
@@ -193,19 +193,19 @@
|
||||
"lerp_mode": {
|
||||
"type": "string",
|
||||
"title": "Lerp Mode",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"enum": ["linear", "catmullrom"]
|
||||
},
|
||||
"pre": {
|
||||
"title": "Pre",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"$ref": "#/definitions/RotationV3"
|
||||
},
|
||||
"post": {
|
||||
"title": "Pre",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"$ref": "#/definitions/RotationV3"
|
||||
}
|
||||
@@ -218,33 +218,33 @@
|
||||
},
|
||||
"relative_to": {
|
||||
"title": "Relative To",
|
||||
"description": "If set, makes the bone rotation relative to the entity instead of the bone's parent",
|
||||
"description": "If set, makes the bone rotation relative to the entity instead of the bone's parent.",
|
||||
"properties": {
|
||||
"rotation": {
|
||||
"title": "Rotation",
|
||||
"description": "If set, makes the bone rotation relative to the entity instead of the bone's parent",
|
||||
"description": "If set, makes the bone rotation relative to the entity instead of the bone's parent.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"scale": {
|
||||
"title": "Scale",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"oneOf": [
|
||||
{ "$ref": "../../molang/number.json", "description": "Uniform scale" },
|
||||
{ "$ref": "../../molang/number.json", "description": "Uniform scale." },
|
||||
{ "$ref": "#/definitions/ScaleV3" },
|
||||
{
|
||||
"type": "object",
|
||||
"propertyNames": { "pattern": "^(\\d+\\.\\d+|\\d+)$", "examples": ["0.0", "1.0"] },
|
||||
"additionalProperties": {
|
||||
"title": "Timeline Object",
|
||||
"description": "A single point in time",
|
||||
"description": "A single point in time.",
|
||||
"oneOf": [
|
||||
{ "$ref": "../../molang/number.json", "description": "Uniform rotation" },
|
||||
{ "$ref": "../../molang/number.json", "description": "Uniform rotation." },
|
||||
{
|
||||
"type": "array",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"$ref": "#/definitions/ScaleV3"
|
||||
},
|
||||
@@ -255,19 +255,19 @@
|
||||
"lerp_mode": {
|
||||
"type": "string",
|
||||
"title": "Lerp Mode",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"enum": ["linear", "catmullrom"]
|
||||
},
|
||||
"pre": {
|
||||
"title": "Pre",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"$ref": "#/definitions/ScaleV3"
|
||||
},
|
||||
"post": {
|
||||
"title": "Pre",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"$ref": "#/definitions/ScaleV3"
|
||||
}
|
||||
@@ -283,7 +283,7 @@
|
||||
},
|
||||
"loop": {
|
||||
"title": "Loop",
|
||||
"description": "Should this animation stop, loop, or stay on the last frame when finished (true, false, hold_on_last_frame)",
|
||||
"description": "Should this animation stop, loop, or stay on the last frame when finished (true, false, hold_on_last_frame).",
|
||||
"oneOf": [{ "type": "boolean" }, { "type": "string", "enum": ["hold_on_last_frame"] }]
|
||||
},
|
||||
"loop_delay": {
|
||||
@@ -298,14 +298,14 @@
|
||||
},
|
||||
"particle_effects": {
|
||||
"title": "Particle Effects",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"type": "object",
|
||||
"propertyNames": { "pattern": "^(\\d+\\.\\d+|\\d+)$", "examples": ["0.0", "1.0"] },
|
||||
"examples": [{ "0.0": {} }],
|
||||
"additionalProperties": {
|
||||
"title": "Timeline Object",
|
||||
"description": "A single point in time",
|
||||
"description": "A single point in time.",
|
||||
"oneOf": [
|
||||
{ "type": "object", "$ref": "#/definitions/ParticleEffect" },
|
||||
{ "type": "array", "items": { "$ref": "#/definitions/ParticleEffect" } }
|
||||
@@ -319,13 +319,13 @@
|
||||
},
|
||||
"sound_effects": {
|
||||
"title": "Sound Effect",
|
||||
"description": "UNDOCUMENTED",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"type": "object",
|
||||
"propertyNames": { "pattern": "^(\\d+\\.\\d+|\\d+)$", "examples": ["0.0", "1.0"] },
|
||||
"additionalProperties": {
|
||||
"title": "Timeline Object",
|
||||
"description": "A single point in time",
|
||||
"description": "A single point in time.",
|
||||
"oneOf": [
|
||||
{ "type": "object", "$ref": "#/definitions/SoundEffect" },
|
||||
{ "type": "array", "items": { "$ref": "#/definitions/SoundEffect" } }
|
||||
@@ -334,17 +334,17 @@
|
||||
},
|
||||
"timeline": {
|
||||
"title": "Timeline",
|
||||
"description": "The time line",
|
||||
"description": "The time line.",
|
||||
"type": "object",
|
||||
"propertyNames": { "pattern": "^(\\d+\\.\\d+|\\d+)$", "examples": ["0.0", "1.0"] },
|
||||
"examples": [{ "0.0": {} }],
|
||||
"additionalProperties": {
|
||||
"oneOf": [
|
||||
{ "type": "string", "title": "Molang", "description": "Variable definition", "pattern": "^(v|variable)\\..*=.*;$" },
|
||||
{ "type": "string", "title": "Molang", "description": "Variable definition.", "pattern": "^(v|variable)\\..*=.*;$" },
|
||||
{
|
||||
"type": "array",
|
||||
"title": "Collection Timelime Items",
|
||||
"items": { "type": "string", "title": "Molang", "description": "Variable definition", "pattern": "^(v|variable)\\..*=.*;$" }
|
||||
"items": { "type": "string", "title": "Molang", "description": "Variable definition.", "pattern": "^(v|variable)\\..*=.*;$" }
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user