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"]
|
2025-02-13 18:38:27 +05:00
|
|
|
},
|
|
|
|
|
"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
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|