-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the armor display + some datagen + added insets to the IOConfig…
…Widget
- Loading branch information
Showing
13 changed files
with
138 additions
and
49 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
62 changes: 31 additions & 31 deletions
62
src/generated/resources/assets/enderio/blockstates/wired_charger.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,34 +1,34 @@ | ||
{ | ||
"variants": { | ||
"facing=east,powered=false": { | ||
"model": "enderio:block/wired_charger", | ||
"y": 90 | ||
}, | ||
"facing=east,powered=true": { | ||
"model": "enderio:block/wired_charger", | ||
"y": 90 | ||
}, | ||
"facing=north,powered=false": { | ||
"model": "enderio:block/wired_charger" | ||
}, | ||
"facing=north,powered=true": { | ||
"model": "enderio:block/wired_charger" | ||
}, | ||
"facing=south,powered=false": { | ||
"model": "enderio:block/wired_charger", | ||
"y": 180 | ||
}, | ||
"facing=south,powered=true": { | ||
"model": "enderio:block/wired_charger", | ||
"y": 180 | ||
}, | ||
"facing=west,powered=false": { | ||
"model": "enderio:block/wired_charger", | ||
"y": 270 | ||
}, | ||
"facing=west,powered=true": { | ||
"model": "enderio:block/wired_charger", | ||
"y": 270 | ||
} | ||
"variants": { | ||
"facing=east,powered=false": { | ||
"model": "enderio:block/wired_charger", | ||
"y": 90 | ||
}, | ||
"facing=east,powered=true": { | ||
"model": "enderio:block/wired_charger_on", | ||
"y": 90 | ||
}, | ||
"facing=north,powered=false": { | ||
"model": "enderio:block/wired_charger" | ||
}, | ||
"facing=north,powered=true": { | ||
"model": "enderio:block/wired_charger_on" | ||
}, | ||
"facing=south,powered=false": { | ||
"model": "enderio:block/wired_charger", | ||
"y": 180 | ||
}, | ||
"facing=south,powered=true": { | ||
"model": "enderio:block/wired_charger_on", | ||
"y": 180 | ||
}, | ||
"facing=west,powered=false": { | ||
"model": "enderio:block/wired_charger", | ||
"y": 270 | ||
}, | ||
"facing=west,powered=true": { | ||
"model": "enderio:block/wired_charger_on", | ||
"y": 270 | ||
} | ||
} | ||
} |
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: 6 additions & 0 deletions
6
src/generated/resources/assets/enderio/models/block/wired_charger_front_on.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": "enderio:block/wired_charger_front", | ||
"textures": { | ||
"front": "enderio:block/wired_charger_front" | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
src/generated/resources/assets/enderio/models/block/wired_charger_on.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,26 @@ | ||
{ | ||
"parent": "minecraft:block/block", | ||
"children": { | ||
"frame": { | ||
"parent": "enderio:block/machine_frame" | ||
}, | ||
"front": { | ||
"parent": "enderio:block/wired_charger_front", | ||
"textures": { | ||
"front": "enderio:block/wired_charger_front_on" | ||
} | ||
}, | ||
"overlay": { | ||
"parent": "enderio:block/io_overlay" | ||
} | ||
}, | ||
"item_render_order": [ | ||
"frame", | ||
"overlay", | ||
"front" | ||
], | ||
"loader": "forge:composite", | ||
"textures": { | ||
"particle": "enderio:block/machine_side" | ||
} | ||
} |
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
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