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

@@ -31,7 +31,13 @@
"sounds": {
"items": {
"anyOf": [
{ "$id": "#/Sound/sounds/stringItem", "type": "string", "$ref": "#/definitions/SoundPath", "description": "TODO description: Todo", "title": "Todo" },
{
"$id": "#/Sound/sounds/stringItem",
"type": "string",
"$ref": "#/definitions/SoundPath",
"description": "TODO description: Todo",
"title": "Todo"
},
{
"additionalItems": false,
"$id": "#/Sound/sounds/ObjectItem",
@@ -40,9 +46,19 @@
"properties": {
"pitch": { "description": "The pitch of the audio, 1 is nomial", "type": "number", "minimum": 0, "maximum": 2, "title": "Pitch" },
"volume": { "description": "The volume of the audio, 1 is nomial", "type": "number", "minimum": 0, "title": "Volume" },
"load_on_low_memory": { "type": "boolean", "description": "Marks if this audio should be loaded or not on low memory", "title": "Load On Low Memory" },
"load_on_low_memory": {
"type": "boolean",
"description": "Marks if this audio should be loaded or not on low memory",
"title": "Load On Low Memory"
},
"stream": { "description": "If marked true then minecraft will stream the audio", "type": "boolean", "title": "Stream" },
"name": { "$id": "#/Sound/sounds/stringItem", "type": "string", "$ref": "#/definitions/SoundPath", "description": "TODO description: name", "title": "Name" }
"name": {
"$id": "#/Sound/sounds/stringItem",
"type": "string",
"$ref": "#/definitions/SoundPath",
"description": "TODO description: name",
"title": "Name"
}
},
"description": "TODO description: Todo",
"title": "Todo"
@@ -70,7 +86,12 @@
"description": "TODO description: sound definitions",
"title": "Sound Definitions"
},
"__use_legacy_max_distance": { "description": "TODO description: use legacy max distance", "title": "Use Legacy Max Distance", "type": "string", "enum": ["true", "false"] }
"__use_legacy_max_distance": {
"description": "TODO description: use legacy max distance",
"title": "Use Legacy Max Distance",
"type": "string",
"enum": ["true", "false"]
}
},
"additionalProperties": false
}