Added client biome schema (#319)

This commit is contained in:
QuazChick
2024-10-12 15:47:16 +01:00
committed by GitHub
parent 8c8da48e9e
commit bad3e5d6d5
8 changed files with 132 additions and 0 deletions

View File

@@ -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"]
}
}
}