Files
minecraft-bedrock-json-schemas/source/resource/shadows/global.json

31 lines
992 B
JSON
Raw Normal View History

{
"$id": "blockception.minecraft.behavior.shadows.color_grading",
"type": "object",
"title": "Shadows",
"description": "The properties of the shadows",
"additionalProperties": false,
"properties": {
"format_version": { "$ref": "../../general/format_version.json" },
"minecraft:shadow_settings": {
"title": "Shadow Settings",
"description": "UNDOCUMENTED",
"type": "object",
"additionalProperties": false,
"required": [ "shadow_style" ],
"properties": {
"shadow_style": {
"title": "Shadow Style",
"description": "The type of shadows to use.",
"type": "string",
"enum": [ "blocky_shadows", "soft_shadows" ]
},
"texel_size": {
"title": "Texel Size",
"description": "The resolution to snap shadow texels to; recommended to use the same resolution as block texture assets in the accompanying pack",
"type": "integer"
}
}
}
}
}