The resource pack used in my custom models tutorial

Initial Commit

willmexe e7bc5e85

Changed files
+69
assets
minecraft
models
textures
models
+48
assets/minecraft/models/custom/rock.json
···
··· 1 + { 2 + "credit": "Made with Blockbench", 3 + "textures": { 4 + "0": "models/rock", 5 + "particle": "models/rock" 6 + }, 7 + "elements": [ 8 + { 9 + "from": [0, -8, 0], 10 + "to": [16, 8, 16], 11 + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -8, -8]}, 12 + "faces": { 13 + "north": {"uv": [0, 0, 8, 8], "texture": "#0"}, 14 + "east": {"uv": [0, 0, 8, 8], "texture": "#0"}, 15 + "south": {"uv": [0, 0, 8, 8], "texture": "#0"}, 16 + "west": {"uv": [0, 0, 8, 8], "texture": "#0"}, 17 + "up": {"uv": [0, 0, 8, 8], "texture": "#0"}, 18 + "down": {"uv": [0, 0, 8, 8], "texture": "#0"} 19 + } 20 + }, 21 + { 22 + "from": [20, -8, 0], 23 + "to": [28, 0, 8], 24 + "rotation": {"angle": -22.5, "axis": "y", "origin": [-8, -8, -8]}, 25 + "faces": { 26 + "north": {"uv": [0, 0, 4, 4], "texture": "#0"}, 27 + "east": {"uv": [0, 0, 4, 4], "texture": "#0"}, 28 + "south": {"uv": [0, 0, 4, 4], "texture": "#0"}, 29 + "west": {"uv": [0, 0, 4, 4], "texture": "#0"}, 30 + "up": {"uv": [0, 0, 4, 4], "texture": "#0"}, 31 + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} 32 + } 33 + }, 34 + { 35 + "from": [-2, -8, -12], 36 + "to": [10, 4, 0], 37 + "rotation": {"angle": -22.5, "axis": "y", "origin": [-8, -8, -8]}, 38 + "faces": { 39 + "north": {"uv": [0, 0, 6, 6], "texture": "#0"}, 40 + "east": {"uv": [0, 0, 6, 6], "texture": "#0"}, 41 + "south": {"uv": [0, 0, 6, 6], "texture": "#0"}, 42 + "west": {"uv": [0, 0, 6, 6], "texture": "#0"}, 43 + "up": {"uv": [0, 0, 6, 6], "texture": "#0"}, 44 + "down": {"uv": [0, 0, 6, 6], "texture": "#0"} 45 + } 46 + } 47 + ] 48 + }
+15
assets/minecraft/models/item/firework_star.json
···
··· 1 + { 2 + "parent": "item/generated", 3 + "textures": { 4 + "layer0": "item/firework_star", 5 + "layer1": "item/firework_star_overlay" 6 + }, 7 + "overrides": [ 8 + { 9 + "predicate": { 10 + "custom_model_data": 1000 11 + }, 12 + "model": "custom/rock" 13 + } 14 + ] 15 + }
assets/minecraft/textures/models/rock.png

This is a binary file and will not be displayed.

+6
pack.mcmeta
···
··· 1 + { 2 + "pack": { 3 + "pack_format": 9, 4 + "description": "" 5 + } 6 + }