Resource Packs
Flat Shulker Icons
The built-in Flat Shulker Icons
resource pack shows shulker boxes directly from the top.
Without the Flat Shulker Icons
resource pack:
With the Flat Shulker Icons
resource pack:
Custom Resource Packs
Shulker Box Hints (Minecraft 1.21.4+)
You can create your own resource pack to customize the way items are rendered on shulker boxes. Just use the condition peek:shulker_item
.
Example item model override assets/<namespace>/items/<item_name>.json
:
{
"model": {
"type": "minecraft:condition",
"property": "peek:shulker_item",
"on_true": {
"type": "minecraft:model",
"model": "minecraft:item/example_item"
},
"on_false": {
"type": "minecraft:model",
"model": "minecraft:item/vanilla_item"
},
...
}
}
Shulker Box Hints (Minecraft 1.19.2 - 1.21.3)
You can create your own resource pack to customize the way items are rendered on shulker boxes. Just add the override predicate peek:shulker_item
to 1
in your item model.
Example item model override:
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "minecraft:item/golden_apple"
},
"overrides": [
{ "predicate": { "peek:shulker_item": 1 }, "model": "item/golden_apple/custom_model"}
]
}
Decorated Pot Hints (Minecraft 1.21.4+)
You can create your own resource pack to customize the way items are rendered on decorated pots. Just use the condition peek:decorated_pot_item
.
Example item model override assets/<namespace>/items/<item_name>.json
:
{
"model": {
"type": "minecraft:condition",
"property": "peek:decorated_pot_item",
"on_true": {
"type": "minecraft:model",
"model": "minecraft:item/example_item"
},
"on_false": {
"type": "minecraft:model",
"model": "minecraft:item/vanilla_item"
},
...
}
}
Decorated Pot Hints (Minecraft 1.19.2 - 1.21.3)
You can also customize hints on decorated pots by using the predicate peek:decorated_pot_item
.
Example item model override:
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "minecraft:item/golden_apple"
},
"overrides": [
{ "predicate": { "peek:decorated_pot_item": 1 }, "model": "item/golden_apple/custom_model"}
]
}