Files
minecraft-bedrock-json-schemas/source/resource/biomes/format/components/water_appearance.json

24 lines
754 B
JSON
Raw Normal View History

2024-10-12 15:47:16 +01:00
{
"$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",
"additionalProperties": false,
"properties": {
"surface_color": {
"title": "Surface Color",
"description": "RGB color of the water surface.",
"type": "string",
"format": "color-hex",
"examples": ["#FFFFFF"]
},
"surface_opacity": {
"title": "Surface Opacity",
"description": "Opacity of the water surface (0 for invisible and 1 for opaque)",
"type": "number",
"minimum": 0,
"maximum": 1
2024-10-12 15:47:16 +01:00
}
}
}