1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-10-14 03:54:59 +00:00
Files
bedrock-samples/metadata/json_schemas/server/biome/1.21.100/Custom Map Tint Component Grass Noise.json
2025-09-09 10:02:11 -07:00

23 lines
545 B
JSON

{
"$id": "1703738264",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Makes grass use the noise based colors for tinting in this biome on the map.",
"properties": {
"type": {
"const": "noise",
"description": "Controls the type of grass tint to use.",
"enum": [
"tint",
"noise"
],
"title": "GrassType",
"type": "string"
}
},
"required": [
"type"
],
"title": "custom_map_tint_grass_noise",
"type": "object",
"x-format-version": "1.21.100"
}