tangled
alpha
login
or
join now
keii.dev
/
ModelsTutorialResourcePack
The resource pack used in my custom models tutorial
0
fork
atom
overview
issues
pulls
pipelines
Initial Commit
willmexe
3 years ago
e7bc5e85
+69
4 changed files
expand all
collapse all
unified
split
assets
minecraft
models
custom
rock.json
item
firework_star.json
textures
models
rock.png
pack.mcmeta
+48
assets/minecraft/models/custom/rock.json
···
1
1
+
{
2
2
+
"credit": "Made with Blockbench",
3
3
+
"textures": {
4
4
+
"0": "models/rock",
5
5
+
"particle": "models/rock"
6
6
+
},
7
7
+
"elements": [
8
8
+
{
9
9
+
"from": [0, -8, 0],
10
10
+
"to": [16, 8, 16],
11
11
+
"rotation": {"angle": 0, "axis": "y", "origin": [-8, -8, -8]},
12
12
+
"faces": {
13
13
+
"north": {"uv": [0, 0, 8, 8], "texture": "#0"},
14
14
+
"east": {"uv": [0, 0, 8, 8], "texture": "#0"},
15
15
+
"south": {"uv": [0, 0, 8, 8], "texture": "#0"},
16
16
+
"west": {"uv": [0, 0, 8, 8], "texture": "#0"},
17
17
+
"up": {"uv": [0, 0, 8, 8], "texture": "#0"},
18
18
+
"down": {"uv": [0, 0, 8, 8], "texture": "#0"}
19
19
+
}
20
20
+
},
21
21
+
{
22
22
+
"from": [20, -8, 0],
23
23
+
"to": [28, 0, 8],
24
24
+
"rotation": {"angle": -22.5, "axis": "y", "origin": [-8, -8, -8]},
25
25
+
"faces": {
26
26
+
"north": {"uv": [0, 0, 4, 4], "texture": "#0"},
27
27
+
"east": {"uv": [0, 0, 4, 4], "texture": "#0"},
28
28
+
"south": {"uv": [0, 0, 4, 4], "texture": "#0"},
29
29
+
"west": {"uv": [0, 0, 4, 4], "texture": "#0"},
30
30
+
"up": {"uv": [0, 0, 4, 4], "texture": "#0"},
31
31
+
"down": {"uv": [0, 0, 4, 4], "texture": "#0"}
32
32
+
}
33
33
+
},
34
34
+
{
35
35
+
"from": [-2, -8, -12],
36
36
+
"to": [10, 4, 0],
37
37
+
"rotation": {"angle": -22.5, "axis": "y", "origin": [-8, -8, -8]},
38
38
+
"faces": {
39
39
+
"north": {"uv": [0, 0, 6, 6], "texture": "#0"},
40
40
+
"east": {"uv": [0, 0, 6, 6], "texture": "#0"},
41
41
+
"south": {"uv": [0, 0, 6, 6], "texture": "#0"},
42
42
+
"west": {"uv": [0, 0, 6, 6], "texture": "#0"},
43
43
+
"up": {"uv": [0, 0, 6, 6], "texture": "#0"},
44
44
+
"down": {"uv": [0, 0, 6, 6], "texture": "#0"}
45
45
+
}
46
46
+
}
47
47
+
]
48
48
+
}
+15
assets/minecraft/models/item/firework_star.json
···
1
1
+
{
2
2
+
"parent": "item/generated",
3
3
+
"textures": {
4
4
+
"layer0": "item/firework_star",
5
5
+
"layer1": "item/firework_star_overlay"
6
6
+
},
7
7
+
"overrides": [
8
8
+
{
9
9
+
"predicate": {
10
10
+
"custom_model_data": 1000
11
11
+
},
12
12
+
"model": "custom/rock"
13
13
+
}
14
14
+
]
15
15
+
}
assets/minecraft/textures/models/rock.png
This is a binary file and will not be displayed.
+6
pack.mcmeta
···
1
1
+
{
2
2
+
"pack": {
3
3
+
"pack_format": 9,
4
4
+
"description": ""
5
5
+
}
6
6
+
}