-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ✨ Updated barrels so that their textures would be more naturall…
…y rotated and allow for material textures at the back of the barrel to match exactly the rotation of the block it was applied from and seamlessly blend with it
- Loading branch information
Showing
123 changed files
with
1,105 additions
and
1,129 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
110 changes: 53 additions & 57 deletions
110
src/main/resources/assets/sophisticatedstorage/blockstates/copper_barrel.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,60 +1,56 @@ | ||
{ | ||
"variants": { | ||
"facing=down,flat_top=false": { | ||
"x": 180, | ||
"y": 180, | ||
"model": "sophisticatedstorage:block/copper_barrel" | ||
}, | ||
"facing=east,flat_top=false": { | ||
"x": 270, | ||
"y": 270, | ||
"model": "sophisticatedstorage:block/copper_barrel" | ||
}, | ||
"facing=north,flat_top=false": { | ||
"x": 270, | ||
"y": 180, | ||
"model": "sophisticatedstorage:block/copper_barrel" | ||
}, | ||
"facing=south,flat_top=false": { | ||
"x": 270, | ||
"model": "sophisticatedstorage:block/copper_barrel" | ||
}, | ||
"facing=up,flat_top=false": { | ||
"y": 180, | ||
"model": "sophisticatedstorage:block/copper_barrel" | ||
}, | ||
"facing=west,flat_top=false": { | ||
"x": 270, | ||
"y": 90, | ||
"model": "sophisticatedstorage:block/copper_barrel" | ||
}, | ||
"facing=down,flat_top=true": { | ||
"x": 180, | ||
"y": 180, | ||
"model": "sophisticatedstorage:block/flat/copper_barrel" | ||
}, | ||
"facing=east,flat_top=true": { | ||
"x": 270, | ||
"y": 270, | ||
"model": "sophisticatedstorage:block/flat/copper_barrel" | ||
}, | ||
"facing=north,flat_top=true": { | ||
"x": 270, | ||
"y": 180, | ||
"model": "sophisticatedstorage:block/flat/copper_barrel" | ||
}, | ||
"facing=south,flat_top=true": { | ||
"x": 270, | ||
"model": "sophisticatedstorage:block/flat/copper_barrel" | ||
}, | ||
"facing=up,flat_top=true": { | ||
"y": 180, | ||
"model": "sophisticatedstorage:block/flat/copper_barrel" | ||
}, | ||
"facing=west,flat_top=true": { | ||
"x": 270, | ||
"y": 90, | ||
"model": "sophisticatedstorage:block/flat/copper_barrel" | ||
"variants": { | ||
"facing=down,flat_top=false": { | ||
"x": 180, | ||
"model": "sophisticatedstorage:block/copper_barrel" | ||
}, | ||
"facing=east,flat_top=false": { | ||
"x": 90, | ||
"y": 90, | ||
"model": "sophisticatedstorage:block/copper_barrel" | ||
}, | ||
"facing=north,flat_top=false": { | ||
"x": 90, | ||
"model": "sophisticatedstorage:block/copper_barrel" | ||
}, | ||
"facing=south,flat_top=false": { | ||
"x": 90, | ||
"y": 180, | ||
"model": "sophisticatedstorage:block/copper_barrel" | ||
}, | ||
"facing=up,flat_top=false": { | ||
"model": "sophisticatedstorage:block/copper_barrel" | ||
}, | ||
"facing=west,flat_top=false": { | ||
"x": 90, | ||
"y": 270, | ||
"model": "sophisticatedstorage:block/copper_barrel" | ||
}, | ||
"facing=down,flat_top=true": { | ||
"x": 180, | ||
"model": "sophisticatedstorage:block/flat/copper_barrel" | ||
}, | ||
"facing=east,flat_top=true": { | ||
"x": 90, | ||
"y": 90, | ||
"model": "sophisticatedstorage:block/flat/copper_barrel" | ||
}, | ||
"facing=north,flat_top=true": { | ||
"x": 90, | ||
"model": "sophisticatedstorage:block/flat/copper_barrel" | ||
}, | ||
"facing=south,flat_top=true": { | ||
"x": 90, | ||
"y": 180, | ||
"model": "sophisticatedstorage:block/flat/copper_barrel" | ||
}, | ||
"facing=up,flat_top=true": { | ||
"model": "sophisticatedstorage:block/flat/copper_barrel" | ||
}, | ||
"facing=west,flat_top=true": { | ||
"x": 90, | ||
"y": 270, | ||
"model": "sophisticatedstorage:block/flat/copper_barrel" | ||
} | ||
} | ||
} | ||
} |
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
Oops, something went wrong.