#My Texture is Invisible, I Followed the Tutorial But Nothing Seems To Work

1 messages · Page 1 of 1 (latest)

fallow violet
#

[Item][error]-Item 'sc:oats' with format_version 1.16.100 or greater cannot be loaded from resource packs.

RP Item File Path: RP/items/oats.item.rp.json

{
    "format_version": "1.16.100",
    "minecraft:item": {
        "description": {
            "identifier": "sc:oats",
            "category": "items"
        },
        "components": {
            "minecraft:icon": {
                "texture": "oats"
            }
        }
    }
}```
Item's Texture Path: ``RP/textures/items/oats``

Item Texture Path: ``RP/textures/item_texture.json``
```json
{
    "resource_pack_name": "vanilla",
    "texture_name": "atlas.items",
    "texture_data": {
        "oats": {
            "textures": "textures/items/oats"
        }
    }
}```
untold forum
fallow violet
stiff ospreyBOT
#
1.16+ Items

Items have a totally new, and completely different format in 1.16.100 and higher. The largest difference between the two (outside of component differences) is that there is no longer any resourcepack item file.

Be sure to move any and all components from your resource file to your behaviour file. Do mind that certain ones are updated in their syntax, such as render_offsets (see ?render_offsets) and icon, the latter seen in the following example:

"minecraft:icon": {
    "texture": "jade_katana"
}```

Learn about new items here: https://wiki.bedrock.dev/items/items-16.html