Skip to content

Instantly share code, notes, and snippets.

@falseresync
Created June 10, 2020 14:22
Show Gist options
  • Save falseresync/9ad715677639da9f76a5cc7e848a7f4a to your computer and use it in GitHub Desktop.
Save falseresync/9ad715677639da9f76a5cc7e848a7f4a to your computer and use it in GitHub Desktop.
// Note: remove all comments, Minecraft doesn't support them
// File: src/main/resources/assets/my_mod/models/item/my_item.json
{
// You can extend any existing model
// Minecraft's item/generated is a simple generic item
"parent": "item/generated",
"textures": {
// You can have layers!
// Each value is a texture identifier
// Path to texture for this must be following:
// src/main/resources/assets/my_mod/textures/item/my_item.png
"layer0": "my_mod:item/my_item"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment