This commit is contained in:
DaanV2
2021-06-06 13:00:25 +02:00
parent 4e62c0237c
commit b0d9e9146c
105 changed files with 33270 additions and 173 deletions

View File

@@ -257,7 +257,7 @@
},
"start_delay": {
"title": "Start Delay",
"description": "How long to wait in seconds before playing this animation. Note that this expression is evaluated once before playing, and only re-evaluated if asked to play from the beginning again. A looping animation should use 'loop_delay' if it wants a delay between loops.",
"description": "How long to wait in seconds before playing this animation. Note that this expression is evaluated once before playing, and only re-evaluated if asked to play from the beginning again. A looping animation should use `loop_delay` if it wants a delay between loops.",
"$ref": "../../../molang/number.json"
},
"sound_effects": {

View File

@@ -257,7 +257,7 @@
},
"start_delay": {
"title": "Start Delay",
"description": "How long to wait in seconds before playing this animation. Note that this expression is evaluated once before playing, and only re-evaluated if asked to play from the beginning again. A looping animation should use 'loop_delay' if it wants a delay between loops.",
"description": "How long to wait in seconds before playing this animation. Note that this expression is evaluated once before playing, and only re-evaluated if asked to play from the beginning again. A looping animation should use `loop_delay` if it wants a delay between loops.",
"$ref": "../../../molang/number.json"
},
"sound_effects": {

View File

@@ -41,7 +41,7 @@
"enable_attachables": { "type": "boolean", "description": "Whether or not attachables are enaboled", "title": "Enable Attachables" },
"geometry": {
"title": "Geometry",
"description": "The reference to defined geometries in '<resource pack>/models/'",
"description": "The reference to defined geometries in `<resource pack>/models/'",
"type": "object",
"propertyNames": { "pattern": "[a-zA-Z0-9_\\.\\-]+" },
"minProperties": 1,

View File

@@ -58,7 +58,7 @@
"enable_attachables": { "type": "boolean", "description": "TODO description: enable attachables", "title": "Enable Attachables" },
"geometry": {
"title": "Geometry",
"description": "The reference to defined geometries in '<resource pack>/models/'",
"description": "The reference to defined geometries in `<resource pack>/models/'",
"type": "object",
"propertyNames": { "pattern": "[a-zA-Z0-9_\\.\\-]+" },
"minProperties": 1,

View File

@@ -27,13 +27,13 @@
"properties": {
"fog_start": {
"title": "Fog Start",
"description": "The distance from the player that the fog will begin to appear. 'fog_start' must be less than or equal to 'fog_end'.",
"description": "The distance from the player that the fog will begin to appear. `fog_start` must be less than or equal to `fog_end'.",
"type": "number",
"minimum": 0
},
"fog_end": {
"title": "Fog End",
"description": "The distance from the player that the fog will become fully opaque. 'fog_end' must be greater than or equal to 'fog_start'.",
"description": "The distance from the player that the fog will become fully opaque. `fog_end` must be greater than or equal to `fog_start'.",
"type": "number",
"minimum": 0
},
@@ -68,7 +68,7 @@
},
"zero_density_height": {
"title": "Zero Density Height",
"description": "The height in blocks that the ground fog will be completely transparent and begin to appear. This value needs to be at least 1 higher than 'max_density_height'.",
"description": "The height in blocks that the ground fog will be completely transparent and begin to appear. This value needs to be at least 1 higher than `max_density_height'.",
"minimum": 0,
"maximum": 128,
"type": "number"

View File

@@ -110,7 +110,7 @@
},
"mirror": {
"type": "boolean",
"description": "Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's 'mirror' setting for this cube."
"description": "Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's `mirror` setting for this cube."
},
"origin": {
"type": "array",

View File

@@ -96,7 +96,7 @@
},
"bones": {
"type": "array",
"description": "Bones define the 'skeleton' of the mob: the parts that can be animated, and to which geometry and other bones are attached.",
"description": "Bones define the `skeleton` of the mob: the parts that can be animated, and to which geometry and other bones are attached.",
"items": {
"additionalProperties": false,
"type": "object",
@@ -118,7 +118,7 @@
},
"mirror": {
"type": "boolean",
"description": "Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's 'mirror' setting for this cube."
"description": "Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's `mirror` setting for this cube."
},
"origin": {
"type": "array",

View File

@@ -97,7 +97,7 @@
"bones": {
"title": "Bones",
"type": "array",
"description": "Bones define the 'skeleton' of the mob: the parts that can be animated, and to which geometry and other bones are attached.",
"description": "Bones define the `skeleton` of the mob: the parts that can be animated, and to which geometry and other bones are attached.",
"items": {
"additionalProperties": false,
"type": "object",
@@ -124,7 +124,7 @@
},
"mirror": {
"type": "boolean",
"description": "Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's 'mirror' setting for this cube."
"description": "Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's `mirror` setting for this cube."
},
"origin": {
"type": "array",

View File

@@ -16,7 +16,7 @@
},
"linear_drag_coefficient": {
"$ref": "../../../../molang/number.json",
"description": "Using the equation: 'acceleration = -linear_drag_coefficient*velocity' where velocity is the current direction times speed. Think of this as air-drag. The higher the value, the more drag evaluated every frame",
"description": "Using the equation: `acceleration = -linear_drag_coefficient*velocity` where velocity is the current direction times speed. Think of this as air-drag. The higher the value, the more drag evaluated every frame",
"default": 0,
"title": "Linear Drag Coefficient"
},

View File

@@ -9,7 +9,7 @@
"$id": "SoundFilepath",
"type": "string",
"title": "Sound Filepath Schema",
"description": "The filepath to the sound, starts with 'sounds/'",
"description": "The filepath to the sound, starts with `sounds/'",
"pattern": "(^sounds/.*$|^$)",
"additionalItems": true
},

View File

@@ -8,7 +8,7 @@
"$id": "SoundFilepath",
"type": "string",
"title": "Sound Filepath Schema",
"description": "The filepath to the sound, starts with 'sounds/'",
"description": "The filepath to the sound, starts with `sounds/'",
"pattern": "(^sounds/.*$|^$)",
"additionalItems": true
},