- Fix icon for 1.20.70 (#250)

This commit is contained in:
Xterionix
2024-03-24 15:51:30 +05:00
committed by GitHub
parent f0c7af820c
commit 9b217576d4

View File

@@ -5,14 +5,22 @@
"type": "object", "type": "object",
"additionalProperties": true, "additionalProperties": true,
"required": ["default"], "required": ["default"],
"properties": {
"textures": {
"title": "Textures",
"description": "Contains key-value pairs of textures used by the item",
"type": "object",
"additionalProperties": true,
"properties": { "properties": {
"default": { "default": {
"type": "string", "type": "string",
"title": "Default Texture", "title": "Default Texture",
"description": "The key from the resource_pack/textures/item_texture.json `texture_data` object associated with the texture file Example: blaze_powder." "description": "The key from the resource_pack/textures/item_texture.json `texture_data` object associated with the texture file Example: blaze_powder."
} }
}
}
}, },
"examples": [ "examples": [
{"default": "stick"} {"textures": {"default": "stick"}}
] ]
} }