-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Actually add the storage block models
- Loading branch information
1 parent
21ee045
commit 0fbd236
Showing
16 changed files
with
89 additions
and
85 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
src/main/generated/assets/spectrum/blockstates/bedrock_storage_block.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,7 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"model": "spectrum:block/bedrock_storage_block" | ||
} | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
src/main/generated/assets/spectrum/blockstates/neolith_block.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,30 @@ | ||
{ | ||
"variants": { | ||
"facing=down": { | ||
"model": "spectrum:block/neolith_block", | ||
"x": 180 | ||
}, | ||
"facing=east": { | ||
"model": "spectrum:block/neolith_block", | ||
"x": 90, | ||
"y": 90 | ||
}, | ||
"facing=north": { | ||
"model": "spectrum:block/neolith_block", | ||
"x": 90 | ||
}, | ||
"facing=south": { | ||
"model": "spectrum:block/neolith_block", | ||
"x": 90, | ||
"y": 180 | ||
}, | ||
"facing=up": { | ||
"model": "spectrum:block/neolith_block" | ||
}, | ||
"facing=west": { | ||
"model": "spectrum:block/neolith_block", | ||
"x": 90, | ||
"y": 270 | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
src/main/generated/assets/spectrum/models/block/neolith_block.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,8 @@ | ||
{ | ||
"parent": "minecraft:block/cube_bottom_top", | ||
"textures": { | ||
"bottom": "spectrum:block/neolith_block_bottom", | ||
"side": "spectrum:block/neolith_block_side", | ||
"top": "spectrum:block/neolith_block_top" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/generated/assets/spectrum/models/block/vegetal_block.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,6 @@ | ||
{ | ||
"parent": "spectrum:templates/translucent_outer1", | ||
"textures": { | ||
"texture": "spectrum:block/vegetal_block" | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
7 changes: 0 additions & 7 deletions
7
src/main/resources/assets/spectrum/blockstates/bedrock_storage_block.json
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
src/main/resources/assets/spectrum/blockstates/neolith_block.json
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/main/resources/assets/spectrum/models/block/neolith_block.json
This file was deleted.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
src/main/resources/assets/spectrum/models/block/vegetal_block.json
This file was deleted.
Oops, something went wrong.
34 changes: 34 additions & 0 deletions
34
src/main/resources/assets/spectrum/models/templates/translucent_outer1.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,34 @@ | ||
{ | ||
"parent": "block/block", | ||
"textures": { | ||
"particle": "#texture", | ||
"texture": "#texture" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [ 1, 1, 1 ], | ||
"to": [ 15, 15, 15 ], | ||
"faces": { | ||
"down": { "texture": "#texture" }, | ||
"up": { "texture": "#texture" }, | ||
"north": { "texture": "#texture" }, | ||
"south": { "texture": "#texture" }, | ||
"west": { "texture": "#texture" }, | ||
"east": { "texture": "#texture" } | ||
} | ||
}, | ||
{ | ||
"from": [ 0, 0, 0 ], | ||
"to": [ 16, 16, 16 ], | ||
"faces": { | ||
"down": { "texture": "#texture", "cullface": "down" }, | ||
"up": { "texture": "#texture", "cullface": "up" }, | ||
"north": { "texture": "#texture", "cullface": "north" }, | ||
"south": { "texture": "#texture", "cullface": "south" }, | ||
"west": { "texture": "#texture", "cullface": "west" }, | ||
"east": { "texture": "#texture", "cullface": "east" } | ||
} | ||
} | ||
] | ||
} | ||
|