Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update minecraft:icon to match 1.20.60+ #222

Merged
merged 2 commits into from
Mar 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions source/behavior/items/format/components/icon.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,16 @@
"title": "Icon",
"description": "The icon item componenent determines the icon to represent the item in the UI and elsewhere.",
"type": "object",
"additionalProperties": false,
"required": ["texture"],
"additionalProperties": true,
"required": ["default"],
"properties": {
"legacy_id": { "type": "string", "title": "Texture", "description": "Legacy texture id for older item icons." },
"texture": {
"default": {
"type": "string",
"title": "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."
}
},
"examples": [
{"texture": "stick"}
{"default": "stick"}
]
}
Loading