generated from QuiltMC/quilt-template-mod
-
Notifications
You must be signed in to change notification settings - Fork 8
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
woodytexas
committed
Apr 21, 2022
1 parent
458d2c0
commit 1f554ac
Showing
9 changed files
with
86 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
* text=auto | ||
|
||
gradlew text eol=lf | ||
*.bat text eol=crlf | ||
|
||
*.png binary |
This file was deleted.
Oops, something went wrong.
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
6 changes: 3 additions & 3 deletions
6
...a/com/example/example_mod/ExampleMod.java → ...re_extensions/ArchitectureExtensions.java
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
4 changes: 2 additions & 2 deletions
4
src/main/resources/example_mod.mixins.json → ...urces/architecture_extensions.mixins.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
File renamed without changes
62 changes: 62 additions & 0 deletions
62
src/main/resources/assets/architecture_extensions/models/block/arch_segment.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,62 @@ | ||
{ | ||
"credit": "Made with Blockbench", | ||
"textures": { | ||
"0": "stone_bricks", | ||
"particle": "stone_bricks" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [0, 0, 0], | ||
"to": [16, 4, 16], | ||
"faces": { | ||
"north": {"uv": [0, 12, 16, 16], "texture": "#0", "cullface": "north"}, | ||
"east": {"uv": [0, 12, 16, 16], "texture": "#0", "cullface": "east"}, | ||
"south": {"uv": [0, 12, 16, 16], "texture": "#0", "cullface": "south"}, | ||
"west": {"uv": [0, 12, 16, 16], "texture": "#0", "cullface": "west"}, | ||
"up": {"uv": [0, 0, 16, 16], "texture": "#0"}, | ||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"} | ||
} | ||
}, | ||
{ | ||
"from": [0, 4, 8], | ||
"to": [16, 8, 12], | ||
"faces": { | ||
"north": {"uv": [0, 8, 16, 12], "texture": "#0"}, | ||
"east": {"uv": [4, 8, 8, 12], "texture": "#0", "cullface": "east"}, | ||
"west": {"uv": [8, 8, 12, 12], "texture": "#0", "cullface": "west"}, | ||
"up": {"uv": [0, 4, 16, 8], "texture": "#0"} | ||
} | ||
}, | ||
{ | ||
"from": [0, 4, 4], | ||
"to": [16, 6, 8], | ||
"faces": { | ||
"north": {"uv": [0, 10, 16, 12], "texture": "#0"}, | ||
"east": {"uv": [8, 10, 12, 12], "texture": "#0", "cullface": "east"}, | ||
"west": {"uv": [4, 10, 8, 12], "texture": "#0", "cullface": "west"}, | ||
"up": {"uv": [0, 8, 16, 12], "texture": "#0"} | ||
} | ||
}, | ||
{ | ||
"from": [0, 8, 10], | ||
"to": [16, 12, 12], | ||
"faces": { | ||
"north": {"uv": [0, 4, 16, 8], "texture": "#0"}, | ||
"east": {"uv": [3, 4, 5, 8], "texture": "#0", "cullface": "east"}, | ||
"west": {"uv": [10, 4, 12, 8], "texture": "#0", "cullface": "west"}, | ||
"up": {"uv": [0, 2, 16, 4], "texture": "#0"} | ||
} | ||
}, | ||
{ | ||
"from": [0, 4, 12], | ||
"to": [16, 16, 16], | ||
"faces": { | ||
"north": {"uv": [0, 0, 16, 12], "texture": "#0"}, | ||
"east": {"uv": [0, 0, 4, 12], "texture": "#0", "cullface": "east"}, | ||
"south": {"uv": [0, 0, 16, 12], "texture": "#0", "cullface": "south"}, | ||
"west": {"uv": [0, 0, 4, 12], "texture": "#0", "cullface": "west"}, | ||
"up": {"uv": [0, 0, 16, 4], "texture": "#0", "cullface": "up"} | ||
} | ||
} | ||
] | ||
} |
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