-
Notifications
You must be signed in to change notification settings - Fork 395
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
1 parent
91c207d
commit 410612c
Showing
3 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
src/main/resources/assets/immersiveengineering/models/block/wall_post_topped.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,29 @@ | ||
{ | ||
"textures": { | ||
"particle": "#wall_bottom" | ||
}, | ||
"elements": [{ | ||
"from": [ 4, 0, 4 ], | ||
"to": [ 12, 16, 12 ], | ||
"faces": { | ||
"down": { "texture": "#wall_bottom", "cullface": "down" }, | ||
"up": { "texture": "#wall_top", "cullface": "up" }, | ||
"north": { "texture": "#wall_bottom" }, | ||
"south": { "texture": "#wall_bottom" }, | ||
"west": { "texture": "#wall_bottom" }, | ||
"east": { "texture": "#wall_bottom" } | ||
}, | ||
"__comment": "Center post" | ||
}, | ||
{ | ||
"from": [3.995, 0, 3.995], | ||
"to": [12.005, 16.005, 12.005], | ||
"faces": { | ||
"north": {"texture": "#wall_side", "cullface": "up"}, | ||
"south": {"texture": "#wall_side", "cullface": "up"}, | ||
"west": {"texture": "#wall_side", "cullface": "up"}, | ||
"east": {"texture": "#wall_side", "cullface": "up"} | ||
} | ||
} | ||
] | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/resources/assets/immersiveengineering/models/block/wall_side_tall_topped.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,17 @@ | ||
{ | ||
"textures": { | ||
"particle": "#wall" | ||
}, | ||
"elements": [ | ||
{ "from": [ 5, 0, 0 ], | ||
"to": [ 11, 16, 8 ], | ||
"faces": { | ||
"down": { "texture": "#wall", "cullface": "down" }, | ||
"up": { "texture": "#wall", "cullface": "up"}, | ||
"north": { "texture": "#wall", "cullface": "north" }, | ||
"west": { "texture": "#wall" }, | ||
"east": { "texture": "#wall" } | ||
} | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/assets/immersiveengineering/models/block/wall_side_topped.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,18 @@ | ||
{ | ||
"textures": { | ||
"particle": "#wall_bottom" | ||
}, | ||
"elements": [ | ||
{ "from": [ 5, 0, 0 ], | ||
"to": [ 11, 14, 8 ], | ||
"faces": { | ||
"down": { "texture": "#wall_bottom", "cullface": "down" }, | ||
"up": { "texture": "#wall_top" }, | ||
"north": { "texture": "#wall_side", "cullface": "north", "uv": [4, 2, 12, 16] }, | ||
"west": { "texture": "#wall_side", "uv": [0, 2, 8, 16] }, | ||
"east": { "texture": "#wall_side", "uv": [8, 2, 16, 16] } | ||
}, | ||
"__comment": "wall" | ||
} | ||
] | ||
} |