Added client biome schema (#319)
This commit is contained in:
15
source/resource/biomes/format/components/fog_appearance.json
Normal file
15
source/resource/biomes/format/components/fog_appearance.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.biomes.minecraft.fog_appearance",
|
||||
"title": "Fog Appearance",
|
||||
"description": "Set the fog settings used during rendering. Biomes without this component will have default fog settings.",
|
||||
"type": "object",
|
||||
"required": ["fog_identifier"],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"fog_identifier": {
|
||||
"title": "Fog Identifier",
|
||||
"description": "Identifier of fog definition to use.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
17
source/resource/biomes/format/components/sky_color.json
Normal file
17
source/resource/biomes/format/components/sky_color.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.biomes.minecraft.sky_color",
|
||||
"title": "Sky Color",
|
||||
"description": "Set the sky color used during rendering. Biomes without this component will have default sky color behavior.",
|
||||
"type": "object",
|
||||
"required": ["sky_color"],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"sky_color": {
|
||||
"title": "Sky Color",
|
||||
"description": "RGB color of the sky.",
|
||||
"type": "string",
|
||||
"format": "color-hex",
|
||||
"examples": ["#FFFFFF"]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.biomes.minecraft.water_appearance",
|
||||
"title": "Water Appearance",
|
||||
"description": "Set the water surface color used during rendering. Biomes without this component will have default water surface color behavior.",
|
||||
"type": "object",
|
||||
"required": ["surface_color"],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"surface_color": {
|
||||
"title": "Surface Color",
|
||||
"description": "RGB color of the water surface.",
|
||||
"type": "string",
|
||||
"format": "color-hex",
|
||||
"examples": ["#FFFFFF"]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user