Files
Xterionix 5503ea5612 1.21.100 (#363)
* - Added replacements for enderman block place/take behaviors
* - Added transport items goal
* - Added grass_is_shaded property
* - Removed experimental tag for movable component
* - Remove experimental tag from random offset
* - Added can_wear_armor field
* - Added "none" heightmap projection
* - Improved descriptions for jigsaw rule
* - Added blockstate and random block state predicates
* - Improve rule descriptions
* - Added min and max values for terrain texture variations
* - Update template pool with empty pool
* - Improved surface builder component
* - Added humidity biome component
* - Added partially frozen biome component
* - Renamed to rotation_axis_aligned
* - Added map_tints biome component
2025-08-08 15:59:24 +02:00

53 lines
1.5 KiB
JSON

{
"$id": "blockception.minecraft.resource.biomes.minecraft.grass_appearance",
"title": "Grass Appearance",
"description": "Set the grass color or color map used during rendering. Biomes without this component will have default grass appearance.",
"type": "object",
"required": ["color"],
"additionalProperties": false,
"properties": {
"color": {
"title": "Color",
"description": "RGB color of grass, or a Grass Color Map object.",
"default": { "color_map": "grass" },
"examples": ["#FFFFFF", [255, 255, 255]],
"oneOf": [
{
"type": "string",
"format": "color-hex"
},
{
"type": "array",
"minItems": 3,
"maxItems": 3,
"additionalItems": false,
"items": {
"type": "integer",
"minimum": 0,
"maximum": 255
}
},
{
"type": "object",
"required": ["color_map"],
"additionalProperties": false,
"properties": {
"color_map": {
"title": "Color Map",
"description": "Color map from textures/colormap to determine color of grass.",
"enum": ["grass", "swamp_grass"],
"default": "grass"
}
}
}
]
},
"grass_is_shaded": {
"title": "Grass Is Shaded",
"description": "Adds a shading effect to the grass as if there was a roof.",
"type": "boolean",
"default": false
}
}
}