Updated descrption/titles

This commit is contained in:
DaanV2
2021-04-04 14:14:02 +02:00
parent 7cafb5cfc6
commit 251aeaebaa
5 changed files with 137 additions and 89 deletions

View File

@@ -4,6 +4,7 @@
"type": "object",
"title": "Biomes Client",
"description": "The minecraft biomes definition file",
"additionalProperties": false,
"definitions": {
"biomespec": {
"additionalProperties": false,
@@ -16,17 +17,17 @@
"water_fog_color": { "$ref": "#/definitions/colorhex", "title": "Water Fog Color", "description": "The color of the water fog" },
"water_fog_distance": { "type": "integer", "title": "Water Fog Distance", "description": "The distance the water fog start at" },
"water_surface_color": { "$ref": "#/definitions/colorhex", "title": "Water Surface Color", "description": "The color of the water surface" },
"water_surface_transparency": { "type": "number", "title": "Water Surface Transparency", "description": "TODO" }
"water_surface_transparency": { "type": "number", "title": "Water Surface Transparency", "description": "The amount of transpareny the surface of the water has" }
}
},
"colorhex": { "description": "TODO description: colorhex", "title": "Colorhex", "format": "color-hex" }
"colorhex": { "description": "The colouration of this object", "title": "Colorhex", "format": "color-hex" }
},
"properties": {
"biomes": {
"additionalProperties": false,
"description": "TODO description: biomes",
"title": "Biomes",
"biomes": {
"type": "object",
"title": "Biomes",
"additionalProperties": false,
"description": "A collection of predefined biomes",
"properties": {
"bamboo_jungle": { "$ref": "#/definitions/biomespec" },
"bamboo_jungle_hills": { "$ref": "#/definitions/biomespec" },
@@ -99,6 +100,5 @@
"warped_forest": { "$ref": "#/definitions/biomespec" }
}
}
},
"additionalProperties": false
}
}