generated from neoforged/MDK
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
183 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/main/resources/assets/bellsandwhistles/blockstates/corrugated_metro_panel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"variants": { | ||
"facing=down": { | ||
"model": "bellsandwhistles:block/metro/corrugated_panel/block_bottom", | ||
"x": 180 | ||
}, | ||
"facing=east": { | ||
"model": "bellsandwhistles:block/metro/corrugated_panel/block_side", | ||
"y": 270 | ||
}, | ||
"facing=north": { | ||
"model": "bellsandwhistles:block/metro/corrugated_panel/block_side", | ||
"y": 180 | ||
}, | ||
"facing=south": { | ||
"model": "bellsandwhistles:block/metro/corrugated_panel/block_side" | ||
}, | ||
"facing=up": { | ||
"model": "bellsandwhistles:block/metro/corrugated_panel/block_bottom" | ||
}, | ||
"facing=west": { | ||
"model": "bellsandwhistles:block/metro/corrugated_panel/block_side", | ||
"y": 90 | ||
} | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
src/main/resources/assets/bellsandwhistles/blockstates/metro_panel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"variants": { | ||
"facing=down": { | ||
"model": "bellsandwhistles:block/metro/panel/block_bottom", | ||
"x": 180 | ||
}, | ||
"facing=east": { | ||
"model": "bellsandwhistles:block/metro/panel/block_side", | ||
"y": 270 | ||
}, | ||
"facing=north": { | ||
"model": "bellsandwhistles:block/metro/panel/block_side", | ||
"y": 180 | ||
}, | ||
"facing=south": { | ||
"model": "bellsandwhistles:block/metro/panel/block_side" | ||
}, | ||
"facing=up": { | ||
"model": "bellsandwhistles:block/metro/panel/block_bottom" | ||
}, | ||
"facing=west": { | ||
"model": "bellsandwhistles:block/metro/panel/block_side", | ||
"y": 90 | ||
} | ||
} | ||
} |
24 changes: 20 additions & 4 deletions
24
src/main/resources/assets/bellsandwhistles/models/block/metro/corrugated_metro_casing.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,22 @@ | ||
{ | ||
"parent": "minecraft:block/cube_all", | ||
"textures": { | ||
"all": "bellsandwhistles:metro/corrugated_metro" | ||
} | ||
"credit": "Made with Blockbench", | ||
"textures": { | ||
"0": "bellsandwhistles:block/metro/corrugated_metro", | ||
"1": "bellsandwhistles:block/metro/metro", | ||
"particle": "bellsandwhistles:block/metro/corrugated_metro" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [0, 0, 0], | ||
"to": [16, 16, 16], | ||
"faces": { | ||
"north": {"uv": [0, 0, 16, 16], "texture": "#0"}, | ||
"east": {"uv": [0, 0, 16, 16], "texture": "#0"}, | ||
"south": {"uv": [0, 0, 16, 16], "texture": "#0"}, | ||
"west": {"uv": [16, 0, 0, 16], "texture": "#0"}, | ||
"up": {"uv": [0, 0, 16, 16], "texture": "#1"}, | ||
"down": {"uv": [0, 0, 16, 16], "texture": "#1"} | ||
} | ||
} | ||
] | ||
} |
23 changes: 23 additions & 0 deletions
23
...n/resources/assets/bellsandwhistles/models/block/metro/corrugated_panel/block_bottom.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"parent": "block/block", | ||
"credit": "Made with Blockbench", | ||
"textures": { | ||
"0": "bellsandwhistles:block/metro/corrugated_panel_side", | ||
"1": "bellsandwhistles:block/metro/corrugated_metro", | ||
"particle": "bellsandwhistles:block/metro/corrugated_metro" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [0, 0, 0], | ||
"to": [16, 3, 16], | ||
"faces": { | ||
"north": {"uv": [0, 0, 16, 3], "texture": "#0"}, | ||
"east": {"uv": [0, 0, 16, 3], "texture": "#0"}, | ||
"south": {"uv": [0, 0, 16, 3], "texture": "#0"}, | ||
"west": {"uv": [0, 0, 16, 3], "texture": "#0"}, | ||
"up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#1"}, | ||
"down": {"uv": [0, 0, 16, 16], "texture": "#1"} | ||
} | ||
} | ||
] | ||
} |
23 changes: 23 additions & 0 deletions
23
...ain/resources/assets/bellsandwhistles/models/block/metro/corrugated_panel/block_side.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"credit": "Made with Blockbench", | ||
"parent": "block/block", | ||
"textures": { | ||
"0": "bellsandwhistles:block/metro/corrugated_panel_side", | ||
"1": "bellsandwhistles:block/metro/corrugated_metro", | ||
"particle": "bellsandwhistles:block/metro/corrugated_metro" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [0, 0, 13], | ||
"to": [16, 16, 16], | ||
"faces": { | ||
"north": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#1"}, | ||
"east": {"uv": [0, 0, 16, 3], "rotation": 90, "texture": "#0"}, | ||
"south": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#1"}, | ||
"west": {"uv": [0, 0, 16, 3], "rotation": 270, "texture": "#0"}, | ||
"up": {"uv": [0, 0, 16, 3], "texture": "#0"}, | ||
"down": {"uv": [0, 0, 16, 3], "rotation": 180, "texture": "#0"} | ||
} | ||
} | ||
] | ||
} |
23 changes: 23 additions & 0 deletions
23
src/main/resources/assets/bellsandwhistles/models/block/metro/panel/block_bottom.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"parent": "block/block", | ||
"credit": "Made with Blockbench", | ||
"textures": { | ||
"0": "bellsandwhistles:block/metro/panel_side", | ||
"1": "bellsandwhistles:block/metro/metro", | ||
"particle": "bellsandwhistles:block/metro/metro" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [0, 0, 0], | ||
"to": [16, 3, 16], | ||
"faces": { | ||
"north": {"uv": [0, 0, 16, 3], "texture": "#0"}, | ||
"east": {"uv": [0, 0, 16, 3], "texture": "#0"}, | ||
"south": {"uv": [0, 0, 16, 3], "texture": "#0"}, | ||
"west": {"uv": [0, 0, 16, 3], "texture": "#0"}, | ||
"up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#1"}, | ||
"down": {"uv": [0, 0, 16, 16], "texture": "#1"} | ||
} | ||
} | ||
] | ||
} |
23 changes: 23 additions & 0 deletions
23
src/main/resources/assets/bellsandwhistles/models/block/metro/panel/block_side.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"credit": "Made with Blockbench", | ||
"parent": "block/block", | ||
"textures": { | ||
"0": "bellsandwhistles:block/metro/panel_side", | ||
"1": "bellsandwhistles:block/metro/metro", | ||
"particle": "bellsandwhistles:block/metro/metro" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [0, 0, 13], | ||
"to": [16, 16, 16], | ||
"faces": { | ||
"north": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#1"}, | ||
"east": {"uv": [0, 0, 16, 3], "rotation": 90, "texture": "#0"}, | ||
"south": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#1"}, | ||
"west": {"uv": [0, 0, 16, 3], "rotation": 270, "texture": "#0"}, | ||
"up": {"uv": [0, 0, 16, 3], "texture": "#0"}, | ||
"down": {"uv": [0, 0, 16, 3], "rotation": 180, "texture": "#0"} | ||
} | ||
} | ||
] | ||
} |
Binary file added
BIN
+433 Bytes
...esources/assets/bellsandwhistles/textures/block/metro/corrugated_panel_side.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+404 Bytes
src/main/resources/assets/bellsandwhistles/textures/block/metro/panel_side.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.