Files
minecraft-bedrock-json-schemas/source/behavior/items/format/components/icon.json

19 lines
588 B
JSON
Raw Normal View History

2022-06-07 20:42:18 +02:00
{
2022-07-20 21:25:32 +02:00
"$id": "blockception.minecraft.behavior.items.minecraft:icon",
2022-06-07 20:42:18 +02:00
"title": "Icon",
"description": "The icon item componenent determines the icon to represent the item in the UI and elsewhere.",
"type": "object",
2024-03-16 01:02:41 +05:00
"additionalProperties": true,
"required": ["default"],
2022-06-07 20:42:18 +02:00
"properties": {
2024-03-16 01:02:41 +05:00
"default": {
2022-06-07 20:42:18 +02:00
"type": "string",
2024-03-16 01:02:41 +05:00
"title": "Default Texture",
2022-06-07 20:42:18 +02:00
"description": "The key from the resource_pack/textures/item_texture.json `texture_data` object associated with the texture file Example: blaze_powder."
}
},
"examples": [
2024-03-16 01:02:41 +05:00
{"default": "stick"}
]
2022-06-07 20:42:18 +02:00
}