Skip to content

Commit

Permalink
Data generators
Browse files Browse the repository at this point in the history
  • Loading branch information
Rushmead committed Feb 10, 2025
1 parent d3621f5 commit ec1d97c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
// 1.20.2 2024-07-30T19:12:09.649396 Item Models: theatrical
// 1.20.2 2025-02-10T21:36:36.4650464 Item Models: theatrical
b61dea162dac1064778fccd83e00b34aeea3d2b7 assets/theatrical/models/item/artnet_interface.json
b8f0135bf11be0f31f5d16d76a8c50f28900ee04 assets/theatrical/models/item/basic_lighting_desk.json
545f9e738bfe2c1e7b2236f46042b2504b81373b assets/theatrical/models/item/configuration_card.json
0dc3e30a7627a40ada8a4b8e20249c809067a337 assets/theatrical/models/item/led_fresnel.json
81307d2abd44e288e5e8c9b7824de5a0e895e0be assets/theatrical/models/item/led_panel.json
e6b312509e9a1cfcd5730624d5cbd9f04781d7f7 assets/theatrical/models/item/moving_light.json
60c8fe683be5154fc1d18d5e88c969e422e289c2 assets/theatrical/models/item/moving_wash.json
0d5befeac428b5d0be735b72f8ca31d904c081d8 assets/theatrical/models/item/pipe.json
4c0820713db76bd2b2dfb712bff51e382da41ac2 assets/theatrical/models/item/redstone_interface.json
da8f48c84e1fb2dc911004bad231caadbbcd9701 assets/theatrical/models/item/tank_trap.json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// 1.20.2 2024-08-10T16:17:08.6930462 Languages: en_us
831d4167f7c689fed8b25d9623c152450500fc8f assets/theatrical/lang/en_us.json
// 1.20.2 2025-02-10T21:36:36.4700505 Languages: en_us
cb8eaff73b76198108bddce14ea2b0b4b381ffbb assets/theatrical/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"block.theatrical.led_fresnel": "LED Fresnel",
"block.theatrical.led_panel": "LED Panel",
"block.theatrical.moving_light": "Moving Light",
"block.theatrical.moving_wash": "Moving Wash",
"block.theatrical.pipe": "Rigging Pipe",
"block.theatrical.redstone_interface": "Redstone Interface",
"block.theatrical.tank_trap": "Tank Trap",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"parent": "theatrical:block/moving_wash/moving_wash_whole"
}
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ protected void registerModels() {
withExistingParent(Blocks.PIPE_BLOCK.getId().getPath(), new ResourceLocation(Theatrical.MOD_ID, "block/vertical_pipe"));
withExistingParent(Blocks.TRUSS_BLOCK.getId().getPath(), new ResourceLocation(Theatrical.MOD_ID, "block/truss"));
withExistingParent(Blocks.MOVING_LIGHT_BLOCK.getId().getPath(), new ResourceLocation(Theatrical.MOD_ID, "block/moving_light/moving_head_whole"));
withExistingParent(Blocks.MOVING_WASH_BLOCK.getId().getPath(), new ResourceLocation(Theatrical.MOD_ID, "block/moving_wash/moving_wash_whole"));
withExistingParent(Blocks.LED_FRESNEL.getId().getPath(), new ResourceLocation(Theatrical.MOD_ID, "block/fresnel/fresnel_whole"));
withExistingParent(Blocks.TANK_TRAP.getId().getPath(), new ResourceLocation(Theatrical.MOD_ID, "block/tank_trap"));
withExistingParent(Blocks.LED_PANEL.getId().getPath(), new ResourceLocation(Theatrical.MOD_ID, "block/led_panel"));
Expand All @@ -84,6 +85,7 @@ public Lang(PackOutput output, String locale) {
protected void addTranslations() {
addBlock(Blocks.ART_NET_INTERFACE, "ArtNet Interface");
addBlock(Blocks.MOVING_LIGHT_BLOCK, "Moving Light");
addBlock(Blocks.MOVING_WASH_BLOCK, "Moving Wash");
addBlock(Blocks.PIPE_BLOCK, "Rigging Pipe");
addBlock(Blocks.LED_FRESNEL, "LED Fresnel");
addBlock(Blocks.TRUSS_BLOCK, "MT100 Truss");
Expand Down

0 comments on commit ec1d97c

Please sign in to comment.