Files
minecraft-bedrock-json-schemas/source/resource/pbr/global.json
Xterionix caef874bf8 1.21.90 (#350)
* - Added VV

* - Updated block culling

* - Added remove_in_peaceful

* - Added leashable_to

* - Updated leashable

* - Added body_rotation_always_follows_head

* - Added particle count to destruction_particles

* - Added uv_lock

* - Added liquid_settings to jigsaws

* - Added missing jigsaw fields

* - Added random_offset

* - Updated color grading description for one field

* - Added damaged_by_entity loot table condition

* - Added y offset to interact > spawn_items

* - Added is_riding_self filter

* - Added hides_player_location to wearable

* - Added henyey_greenstein_g to fog

* - Added block component movable

* - Removed internal markers for VV client biome components

* - Removed experimental marker for air controlled
2025-06-02 14:48:10 +02:00

85 lines
3.0 KiB
JSON

{
"$id": "blockception.minecraft.behavior.pbr.global",
"type": "object",
"additionalProperties": false,
"definitions": {
"rgbaOrHex": {
"oneOf": [
{
"type": "array",
"items": [
{ "type": "number", "minimum": 0, "maximum": 255, "title": "Red" },
{ "type": "number", "minimum": 0, "maximum": 255, "title": "Green" },
{ "type": "number", "minimum": 0, "maximum": 255, "title": "Blue" },
{ "type": "number", "minimum": 0, "maximum": 255, "title": "Alpha" }
]
},
{ "type": "string", "format": "color-hex", "pattern": "^\\#[0-9a-fA-F]{6}$" }
]
}
},
"properties": {
"format_version": { "$ref": "../../general/format_version.json" },
"minecraft:pbr_fallback_settings": {
"title": "PBR Fallback Settings",
"description": "UNDOCUMENTED",
"type": "object",
"additionalProperties": false,
"required": [ "colors" ],
"properties": {
"blocks": {
"title": "Blocks",
"description": "UNDOCUMENTED",
"type": "object",
"additionalProperties": false,
"properties": {
"global_metalness_emissive_roughness_subsurface": {
"title": "Global Metalness Emissive Roughness Subsurface",
"description": "The default MERS value to use for blocks when not defined via textureset",
"$ref": "#/definitions/rgbaOrHex"
}
}
},
"actors": {
"title": "Actors",
"description": "UNDOCUMENTED",
"type": "object",
"additionalProperties": false,
"properties": {
"global_metalness_emissive_roughness_subsurface": {
"title": "Global Metalness Emissive Roughness Subsurface",
"description": "The default MERS value to use for actors/mobs when not defined via textureset",
"$ref": "#/definitions/rgbaOrHex"
}
}
},
"particles": {
"title": "Particles",
"description": "UNDOCUMENTED",
"type": "object",
"additionalProperties": false,
"properties": {
"global_metalness_emissive_roughness_subsurface": {
"title": "Global Metalness Emissive Roughness Subsurface",
"description": "The default MERS value to use for particles when not defined via textureset",
"$ref": "#/definitions/rgbaOrHex"
}
}
},
"items": {
"title": "Items",
"description": "UNDOCUMENTED",
"type": "object",
"additionalProperties": false,
"properties": {
"global_metalness_emissive_roughness_subsurface": {
"title": "Global Metalness Emissive Roughness Subsurface",
"description": "The default MERS value to use for items when not defined via textureset",
"$ref": "#/definitions/rgbaOrHex"
}
}
}
}
}
}
}