-
Notifications
You must be signed in to change notification settings - Fork 7
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
0fbb90c
commit 8572dd6
Showing
23 changed files
with
352 additions
and
5 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
19 changes: 19 additions & 0 deletions
19
src/generated/resources/assets/ultramarine/blockstates/large_leaf_pile.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,19 @@ | ||
{ | ||
"variants": { | ||
"facing=north": { | ||
"model": "ultramarine:block/large_leaf_pile", | ||
"y": 180 | ||
}, | ||
"facing=south": { | ||
"model": "ultramarine:block/large_leaf_pile" | ||
}, | ||
"facing=west": { | ||
"model": "ultramarine:block/large_leaf_pile", | ||
"y": 90 | ||
}, | ||
"facing=east": { | ||
"model": "ultramarine:block/large_leaf_pile", | ||
"y": 270 | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
src/generated/resources/assets/ultramarine/blockstates/medium_leaf_pile.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,19 @@ | ||
{ | ||
"variants": { | ||
"facing=north": { | ||
"model": "ultramarine:block/medium_leaf_pile", | ||
"y": 180 | ||
}, | ||
"facing=south": { | ||
"model": "ultramarine:block/medium_leaf_pile" | ||
}, | ||
"facing=west": { | ||
"model": "ultramarine:block/medium_leaf_pile", | ||
"y": 90 | ||
}, | ||
"facing=east": { | ||
"model": "ultramarine:block/medium_leaf_pile", | ||
"y": 270 | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
src/generated/resources/assets/ultramarine/blockstates/small_leaf_pile.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,19 @@ | ||
{ | ||
"variants": { | ||
"facing=north": { | ||
"model": "ultramarine:block/small_leaf_pile", | ||
"y": 180 | ||
}, | ||
"facing=south": { | ||
"model": "ultramarine:block/small_leaf_pile" | ||
}, | ||
"facing=west": { | ||
"model": "ultramarine:block/small_leaf_pile", | ||
"y": 90 | ||
}, | ||
"facing=east": { | ||
"model": "ultramarine:block/small_leaf_pile", | ||
"y": 270 | ||
} | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
src/generated/resources/assets/ultramarine/models/item/large_leaf_pile.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,3 @@ | ||
{ | ||
"parent": "ultramarine:block/large_leaf_pile" | ||
} |
3 changes: 3 additions & 0 deletions
3
src/generated/resources/assets/ultramarine/models/item/medium_leaf_pile.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,3 @@ | ||
{ | ||
"parent": "ultramarine:block/medium_leaf_pile" | ||
} |
3 changes: 3 additions & 0 deletions
3
src/generated/resources/assets/ultramarine/models/item/small_leaf_pile.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,3 @@ | ||
{ | ||
"parent": "ultramarine:block/small_leaf_pile" | ||
} |
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
16 changes: 16 additions & 0 deletions
16
src/generated/resources/data/ultramarine/loot_tables/blocks/large_leaf_pile.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,16 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"name": "large_leaf_pile", | ||
"rolls": 1.0, | ||
"bonus_rolls": 0.0, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "ultramarine:large_leaf_pile" | ||
} | ||
] | ||
} | ||
] | ||
} |
16 changes: 16 additions & 0 deletions
16
src/generated/resources/data/ultramarine/loot_tables/blocks/medium_leaf_pile.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,16 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"name": "medium_leaf_pile", | ||
"rolls": 1.0, | ||
"bonus_rolls": 0.0, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "ultramarine:medium_leaf_pile" | ||
} | ||
] | ||
} | ||
] | ||
} |
16 changes: 16 additions & 0 deletions
16
src/generated/resources/data/ultramarine/loot_tables/blocks/small_leaf_pile.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,16 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"name": "small_leaf_pile", | ||
"rolls": 1.0, | ||
"bonus_rolls": 0.0, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "ultramarine:small_leaf_pile" | ||
} | ||
] | ||
} | ||
] | ||
} |
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
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
68 changes: 68 additions & 0 deletions
68
src/main/resources/assets/ultramarine/models/block/large_leaf_pile.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,68 @@ | ||
{ | ||
"credit": "Made with Blockbench", | ||
"texture_size": [64, 64], | ||
"render_type": "cutout", | ||
"textures": { | ||
"2": "ultramarine:block/large_leaf_pile", | ||
"particle": "block/moss_block" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [0, 0, 0], | ||
"to": [16, 0.25, 16], | ||
"faces": { | ||
"north": {"uv": [4.25, 0, 8.25, 0.25], "texture": "#2"}, | ||
"east": {"uv": [4.25, 0.5, 8.25, 0.75], "texture": "#2"}, | ||
"south": {"uv": [4.25, 1, 8.25, 1.25], "texture": "#2"}, | ||
"west": {"uv": [4.25, 1.5, 8.25, 1.75], "texture": "#2"}, | ||
"up": {"uv": [4, 4, 0, 0], "texture": "#2"}, | ||
"down": {"uv": [0, 0, 4, 4], "texture": "#2"} | ||
} | ||
} | ||
], | ||
"display": { | ||
"thirdperson_righthand": { | ||
"rotation": [75, 45, 0], | ||
"translation": [0, 2.5, 3.5], | ||
"scale": [0.375, 0.375, 0.375] | ||
}, | ||
"thirdperson_lefthand": { | ||
"rotation": [75, 45, 0], | ||
"translation": [0, 2.5, 3.5], | ||
"scale": [0.375, 0.375, 0.375] | ||
}, | ||
"firstperson_righthand": { | ||
"rotation": [0, 45, 0], | ||
"translation": [0, 5, 0], | ||
"scale": [0.4, 0.4, 0.4] | ||
}, | ||
"firstperson_lefthand": { | ||
"rotation": [0, 45, 0], | ||
"translation": [0, 5, 0], | ||
"scale": [0.4, 0.4, 0.4] | ||
}, | ||
"ground": { | ||
"translation": [0, 3, 0], | ||
"scale": [0.25, 0.25, 0.25] | ||
}, | ||
"gui": { | ||
"rotation": [30, 45, 0], | ||
"scale": [0.625, 0.625, 0.625] | ||
}, | ||
"head": { | ||
"translation": [0, 14.5, 0] | ||
}, | ||
"fixed": { | ||
"rotation": [0, 20.5, 0], | ||
"translation": [0, -16.25, -80] | ||
} | ||
}, | ||
"groups": [ | ||
{ | ||
"name": "group", | ||
"origin": [7, 0.94181, 5.74025], | ||
"color": 0, | ||
"children": [0] | ||
} | ||
] | ||
} |
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
Oops, something went wrong.