diff --git a/src/main/java/com/zixiken/dimdoors/DimDoors.java b/src/main/java/com/zixiken/dimdoors/DimDoors.java index 489ce993..5b025956 100644 --- a/src/main/java/com/zixiken/dimdoors/DimDoors.java +++ b/src/main/java/com/zixiken/dimdoors/DimDoors.java @@ -5,6 +5,7 @@ import java.util.List; import com.zixiken.dimdoors.items.*; import com.zixiken.dimdoors.network.DimDoorsNetwork; +import com.zixiken.dimdoors.render.BlockRenderManager; import com.zixiken.dimdoors.render.ItemRenderManager; import com.zixiken.dimdoors.schematic.BlockRotator; import com.zixiken.dimdoors.blocks.TransientDoor; @@ -229,6 +230,7 @@ public class DimDoors { DimDoorsNetwork.init(); ItemRenderManager.addModelVariants(); + BlockRenderManager.addCustomStateMappers(); } @Mod.EventHandler diff --git a/src/main/java/com/zixiken/dimdoors/blocks/BaseDimDoor.java b/src/main/java/com/zixiken/dimdoors/blocks/BaseDimDoor.java index b3540482..f47bc899 100644 --- a/src/main/java/com/zixiken/dimdoors/blocks/BaseDimDoor.java +++ b/src/main/java/com/zixiken/dimdoors/blocks/BaseDimDoor.java @@ -31,8 +31,7 @@ import net.minecraftforge.fml.relauncher.SideOnly; public abstract class BaseDimDoor extends BlockDoor implements IDimDoor, ITileEntityProvider { - public BaseDimDoor(Material material) - { + public BaseDimDoor(Material material) { super(material); } diff --git a/src/main/java/com/zixiken/dimdoors/blocks/TransientDoor.java b/src/main/java/com/zixiken/dimdoors/blocks/TransientDoor.java index 44b01a22..41c4acae 100644 --- a/src/main/java/com/zixiken/dimdoors/blocks/TransientDoor.java +++ b/src/main/java/com/zixiken/dimdoors/blocks/TransientDoor.java @@ -62,9 +62,9 @@ public class TransientDoor extends BaseDimDoor { @Override public boolean isCollidable() {return false;} - //The old textures are transparent. We should get the same effect with no render, - //though setting opaque to false might be necessary for ao/culling purposes @Override - public int getRenderType() {return -1;} - + public int getRenderType() {return 2;} + + @Override + public boolean isOpaqueCube() {return false;} } \ No newline at end of file diff --git a/src/main/java/com/zixiken/dimdoors/render/BlockRenderManager.java b/src/main/java/com/zixiken/dimdoors/render/BlockRenderManager.java new file mode 100644 index 00000000..06afeaee --- /dev/null +++ b/src/main/java/com/zixiken/dimdoors/render/BlockRenderManager.java @@ -0,0 +1,23 @@ +package com.zixiken.dimdoors.render; + +import com.zixiken.dimdoors.DimDoors; +import net.minecraft.block.BlockDoor; +import net.minecraft.client.renderer.block.statemap.StateMap; +import net.minecraftforge.client.model.ModelLoader; + +public class BlockRenderManager { + public static void addCustomStateMappers() { + StateMap map = new StateMap.Builder().ignore(BlockDoor.POWERED).build(); + + ModelLoader.setCustomStateMapper(DimDoors.goldenDoor, map); + ModelLoader.setCustomStateMapper(DimDoors.quartzDoor, map); + ModelLoader.setCustomStateMapper(DimDoors.goldenDimensionalDoor, map); + ModelLoader.setCustomStateMapper(DimDoors.dimensionalDoor, map); + ModelLoader.setCustomStateMapper(DimDoors.personalDimDoor, map); + ModelLoader.setCustomStateMapper(DimDoors.unstableDoor, map); + ModelLoader.setCustomStateMapper(DimDoors.warpDoor, map); + + ModelLoader.setCustomStateMapper(DimDoors.transientDoor, new StateMap.Builder().ignore( + BlockDoor.FACING, BlockDoor.HALF, BlockDoor.HINGE, BlockDoor.OPEN, BlockDoor.POWERED).build()); + } +} diff --git a/src/main/resources/assets/dimdoors/blockstates/chaosDoor.json b/src/main/resources/assets/dimdoors/blockstates/chaosDoor.json index 372c602c..be7e7a18 100644 --- a/src/main/resources/assets/dimdoors/blockstates/chaosDoor.json +++ b/src/main/resources/assets/dimdoors/blockstates/chaosDoor.json @@ -1,36 +1,36 @@ { "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "chaosDoor_bottom" }, - "facing=south,half=lower,hinge=left,open=false": { "model": "chaosDoor_bottom", "y": 90 }, - "facing=west,half=lower,hinge=left,open=false": { "model": "chaosDoor_bottom", "y": 180 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "chaosDoor_bottom", "y": 270 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "chaosDoor_bottom_rh" }, - "facing=south,half=lower,hinge=right,open=false": { "model": "chaosDoor_bottom_rh", "y": 90 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "chaosDoor_bottom_rh", "y": 180 }, - "facing=north,half=lower,hinge=right,open=false": { "model": "chaosDoor_bottom_rh", "y": 270 }, - "facing=east,half=lower,hinge=left,open=true": { "model": "chaosDoor_bottom_rh", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "chaosDoor_bottom_rh", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "chaosDoor_bottom_rh", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "chaosDoor_bottom_rh" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "chaosDoor_bottom", "y": 270 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "chaosDoor_bottom" }, - "facing=west,half=lower,hinge=right,open=true": { "model": "chaosDoor_bottom", "y": 90 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "chaosDoor_bottom", "y": 180 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "chaosDoor_top" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "chaosDoor_top", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "chaosDoor_top", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "chaosDoor_top", "y": 270 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "chaosDoor_top_rh" }, - "facing=south,half=upper,hinge=right,open=false": { "model": "chaosDoor_top_rh", "y": 90 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "chaosDoor_top_rh", "y": 180 }, - "facing=north,half=upper,hinge=right,open=false": { "model": "chaosDoor_top_rh", "y": 270 }, - "facing=east,half=upper,hinge=left,open=true": { "model": "chaosDoor_top_rh", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "chaosDoor_top_rh", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "chaosDoor_top_rh", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "chaosDoor_top_rh" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "chaosDoor_top", "y": 270 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "chaosDoor_top" }, - "facing=west,half=upper,hinge=right,open=true": { "model": "chaosDoor_top", "y": 90 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "chaosDoor_top", "y": 180 } + "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:chaosDoor_bottom" }, + "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:chaosDoor_bottom", "y": 90 }, + "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:chaosDoor_bottom", "y": 180 }, + "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:chaosDoor_bottom", "y": 270 }, + "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:chaosDoor_bottom_rh" }, + "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:chaosDoor_bottom_rh", "y": 90 }, + "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:chaosDoor_bottom_rh", "y": 180 }, + "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:chaosDoor_bottom_rh", "y": 270 }, + "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:chaosDoor_bottom_rh", "y": 90 }, + "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:chaosDoor_bottom_rh", "y": 180 }, + "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:chaosDoor_bottom_rh", "y": 270 }, + "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:chaosDoor_bottom_rh" }, + "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:chaosDoor_bottom", "y": 270 }, + "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:chaosDoor_bottom" }, + "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:chaosDoor_bottom", "y": 90 }, + "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:chaosDoor_bottom", "y": 180 }, + "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:chaosDoor_top" }, + "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:chaosDoor_top", "y": 90 }, + "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:chaosDoor_top", "y": 180 }, + "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:chaosDoor_top", "y": 270 }, + "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:chaosDoor_top_rh" }, + "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:chaosDoor_top_rh", "y": 90 }, + "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:chaosDoor_top_rh", "y": 180 }, + "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:chaosDoor_top_rh", "y": 270 }, + "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:chaosDoor_top_rh", "y": 90 }, + "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:chaosDoor_top_rh", "y": 180 }, + "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:chaosDoor_top_rh", "y": 270 }, + "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:chaosDoor_top_rh" }, + "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:chaosDoor_top", "y": 270 }, + "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:chaosDoor_top" }, + "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:chaosDoor_top", "y": 90 }, + "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:chaosDoor_top", "y": 180 } } } diff --git a/src/main/resources/assets/dimdoors/blockstates/dimDoor.json b/src/main/resources/assets/dimdoors/blockstates/dimDoor.json index fd660435..b3e10da8 100644 --- a/src/main/resources/assets/dimdoors/blockstates/dimDoor.json +++ b/src/main/resources/assets/dimdoors/blockstates/dimDoor.json @@ -1,36 +1,36 @@ { "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "dimDoor_bottom" }, - "facing=south,half=lower,hinge=left,open=false": { "model": "dimDoor_bottom", "y": 90 }, - "facing=west,half=lower,hinge=left,open=false": { "model": "dimDoor_bottom", "y": 180 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "dimDoor_bottom", "y": 270 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "dimDoor_bottom_rh" }, - "facing=south,half=lower,hinge=right,open=false": { "model": "dimDoor_bottom_rh", "y": 90 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "dimDoor_bottom_rh", "y": 180 }, - "facing=north,half=lower,hinge=right,open=false": { "model": "dimDoor_bottom_rh", "y": 270 }, - "facing=east,half=lower,hinge=left,open=true": { "model": "dimDoor_bottom_rh", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "dimDoor_bottom_rh", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "dimDoor_bottom_rh", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "dimDoor_bottom_rh" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "dimDoor_bottom", "y": 270 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "dimDoor_bottom" }, - "facing=west,half=lower,hinge=right,open=true": { "model": "dimDoor_bottom", "y": 90 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "dimDoor_bottom", "y": 180 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "dimDoor_top" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "dimDoor_top", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "dimDoor_top", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "dimDoor_top", "y": 270 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "dimDoor_top_rh" }, - "facing=south,half=upper,hinge=right,open=false": { "model": "dimDoor_top_rh", "y": 90 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "dimDoor_top_rh", "y": 180 }, - "facing=north,half=upper,hinge=right,open=false": { "model": "dimDoor_top_rh", "y": 270 }, - "facing=east,half=upper,hinge=left,open=true": { "model": "dimDoor_top_rh", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "dimDoor_top_rh", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "dimDoor_top_rh", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "dimDoor_top_rh" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "dimDoor_top", "y": 270 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "dimDoor_top" }, - "facing=west,half=upper,hinge=right,open=true": { "model": "dimDoor_top", "y": 90 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "dimDoor_top", "y": 180 } + "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoor_bottom" }, + "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoor_bottom", "y": 90 }, + "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoor_bottom", "y": 180 }, + "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoor_bottom", "y": 270 }, + "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoor_bottom_rh" }, + "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoor_bottom_rh", "y": 90 }, + "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoor_bottom_rh", "y": 180 }, + "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoor_bottom_rh", "y": 270 }, + "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoor_bottom_rh", "y": 90 }, + "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoor_bottom_rh", "y": 180 }, + "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoor_bottom_rh", "y": 270 }, + "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoor_bottom_rh" }, + "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoor_bottom", "y": 270 }, + "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoor_bottom" }, + "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoor_bottom", "y": 90 }, + "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoor_bottom", "y": 180 }, + "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoor_top" }, + "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoor_top", "y": 90 }, + "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoor_top", "y": 180 }, + "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoor_top", "y": 270 }, + "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoor_top_rh" }, + "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoor_top_rh", "y": 90 }, + "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoor_top_rh", "y": 180 }, + "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoor_top_rh", "y": 270 }, + "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoor_top_rh", "y": 90 }, + "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoor_top_rh", "y": 180 }, + "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoor_top_rh", "y": 270 }, + "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoor_top_rh" }, + "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoor_top", "y": 270 }, + "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoor_top" }, + "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoor_top", "y": 90 }, + "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoor_top", "y": 180 } } } diff --git a/src/main/resources/assets/dimdoors/blockstates/dimDoorGold.json b/src/main/resources/assets/dimdoors/blockstates/dimDoorGold.json index a2451a9e..c708543d 100644 --- a/src/main/resources/assets/dimdoors/blockstates/dimDoorGold.json +++ b/src/main/resources/assets/dimdoors/blockstates/dimDoorGold.json @@ -1,36 +1,36 @@ { "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "doorGold_bottom" }, - "facing=south,half=lower,hinge=left,open=false": { "model": "doorGold_bottom", "y": 90 }, - "facing=west,half=lower,hinge=left,open=false": { "model": "doorGold_bottom", "y": 180 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "doorGold_bottom", "y": 270 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh" }, - "facing=south,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh", "y": 90 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh", "y": 180 }, - "facing=north,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh", "y": 270 }, - "facing=east,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "doorGold_bottom", "y": 270 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "doorGold_bottom" }, - "facing=west,half=lower,hinge=right,open=true": { "model": "doorGold_bottom", "y": 90 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "doorGold_bottom", "y": 180 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "doorGold_top" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "doorGold_top", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "doorGold_top", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "doorGold_top", "y": 270 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh" }, - "facing=south,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh", "y": 90 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh", "y": 180 }, - "facing=north,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh", "y": 270 }, - "facing=east,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "doorGold_top", "y": 270 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "doorGold_top" }, - "facing=west,half=upper,hinge=right,open=true": { "model": "doorGold_top", "y": 90 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "doorGold_top", "y": 180 } + "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom" }, + "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom", "y": 90 }, + "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom", "y": 180 }, + "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom", "y": 270 }, + "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh" }, + "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh", "y": 90 }, + "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh", "y": 180 }, + "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh", "y": 270 }, + "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh", "y": 90 }, + "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh", "y": 180 }, + "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh", "y": 270 }, + "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh" }, + "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom", "y": 270 }, + "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom" }, + "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom", "y": 90 }, + "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom", "y": 180 }, + "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top" }, + "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top", "y": 90 }, + "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top", "y": 180 }, + "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top", "y": 270 }, + "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh" }, + "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh", "y": 90 }, + "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh", "y": 180 }, + "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh", "y": 270 }, + "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh", "y": 90 }, + "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh", "y": 180 }, + "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh", "y": 270 }, + "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh" }, + "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top", "y": 270 }, + "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top" }, + "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top", "y": 90 }, + "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top", "y": 180 } } } diff --git a/src/main/resources/assets/dimdoors/blockstates/dimDoorPersonal.json b/src/main/resources/assets/dimdoors/blockstates/dimDoorPersonal.json index 6b1cf7a8..475ead8c 100644 --- a/src/main/resources/assets/dimdoors/blockstates/dimDoorPersonal.json +++ b/src/main/resources/assets/dimdoors/blockstates/dimDoorPersonal.json @@ -1,36 +1,36 @@ { "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom" }, - "facing=south,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom", "y": 90 }, - "facing=west,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom", "y": 180 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom", "y": 270 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh" }, - "facing=south,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh", "y": 90 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh", "y": 180 }, - "facing=north,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh", "y": 270 }, - "facing=east,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom", "y": 270 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom" }, - "facing=west,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom", "y": 90 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom", "y": 180 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "doorQuartz_top" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "doorQuartz_top", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "doorQuartz_top", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "doorQuartz_top", "y": 270 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh" }, - "facing=south,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh", "y": 90 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh", "y": 180 }, - "facing=north,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh", "y": 270 }, - "facing=east,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "doorQuartz_top", "y": 270 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "doorQuartz_top" }, - "facing=west,half=upper,hinge=right,open=true": { "model": "doorQuartz_top", "y": 90 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "doorQuartz_top", "y": 180 } + "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom" }, + "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom", "y": 90 }, + "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom", "y": 180 }, + "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom", "y": 270 }, + "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh" }, + "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 90 }, + "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 180 }, + "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 270 }, + "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 90 }, + "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 180 }, + "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 270 }, + "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh" }, + "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom", "y": 270 }, + "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom" }, + "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom", "y": 90 }, + "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom", "y": 180 }, + "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top" }, + "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top", "y": 90 }, + "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top", "y": 180 }, + "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top", "y": 270 }, + "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh" }, + "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh", "y": 90 }, + "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh", "y": 180 }, + "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh", "y": 270 }, + "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh", "y": 90 }, + "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh", "y": 180 }, + "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh", "y": 270 }, + "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh" }, + "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top", "y": 270 }, + "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top" }, + "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top", "y": 90 }, + "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top", "y": 180 } } } diff --git a/src/main/resources/assets/dimdoors/blockstates/dimDoorWarp.json b/src/main/resources/assets/dimdoors/blockstates/dimDoorWarp.json index b42251ad..a4de928b 100644 --- a/src/main/resources/assets/dimdoors/blockstates/dimDoorWarp.json +++ b/src/main/resources/assets/dimdoors/blockstates/dimDoorWarp.json @@ -1,36 +1,36 @@ { "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "dimDoorWarp_bottom" }, - "facing=south,half=lower,hinge=left,open=false": { "model": "dimDoorWarp_bottom", "y": 90 }, - "facing=west,half=lower,hinge=left,open=false": { "model": "dimDoorWarp_bottom", "y": 180 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "dimDoorWarp_bottom", "y": 270 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "dimDoorWarp_bottom_rh" }, - "facing=south,half=lower,hinge=right,open=false": { "model": "dimDoorWarp_bottom_rh", "y": 90 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "dimDoorWarp_bottom_rh", "y": 180 }, - "facing=north,half=lower,hinge=right,open=false": { "model": "dimDoorWarp_bottom_rh", "y": 270 }, - "facing=east,half=lower,hinge=left,open=true": { "model": "dimDoorWarp_bottom_rh", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "dimDoorWarp_bottom_rh", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "dimDoorWarp_bottom_rh", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "dimDoorWarp_bottom_rh" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "dimDoorWarp_bottom", "y": 270 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "dimDoorWarp_bottom" }, - "facing=west,half=lower,hinge=right,open=true": { "model": "dimDoorWarp_bottom", "y": 90 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "dimDoorWarp_bottom", "y": 180 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "dimDoorWarp_top" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "dimDoorWarp_top", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "dimDoorWarp_top", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "dimDoorWarp_top", "y": 270 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "dimDoorWarp_top_rh" }, - "facing=south,half=upper,hinge=right,open=false": { "model": "dimDoorWarp_top_rh", "y": 90 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "dimDoorWarp_top_rh", "y": 180 }, - "facing=north,half=upper,hinge=right,open=false": { "model": "dimDoorWarp_top_rh", "y": 270 }, - "facing=east,half=upper,hinge=left,open=true": { "model": "dimDoorWarp_top_rh", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "dimDoorWarp_top_rh", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "dimDoorWarp_top_rh", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "dimDoorWarp_top_rh" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "dimDoorWarp_top", "y": 270 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "dimDoorWarp_top" }, - "facing=west,half=upper,hinge=right,open=true": { "model": "dimDoorWarp_top", "y": 90 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "dimDoorWarp_top", "y": 180 } + "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_bottom" }, + "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_bottom", "y": 90 }, + "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_bottom", "y": 180 }, + "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_bottom", "y": 270 }, + "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_bottom_rh" }, + "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_bottom_rh", "y": 90 }, + "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_bottom_rh", "y": 180 }, + "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_bottom_rh", "y": 270 }, + "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_bottom_rh", "y": 90 }, + "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_bottom_rh", "y": 180 }, + "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_bottom_rh", "y": 270 }, + "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_bottom_rh" }, + "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_bottom", "y": 270 }, + "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_bottom" }, + "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_bottom", "y": 90 }, + "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_bottom", "y": 180 }, + "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_top" }, + "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_top", "y": 90 }, + "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_top", "y": 180 }, + "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_top", "y": 270 }, + "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_top_rh" }, + "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_top_rh", "y": 90 }, + "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_top_rh", "y": 180 }, + "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_top_rh", "y": 270 }, + "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_top_rh", "y": 90 }, + "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_top_rh", "y": 180 }, + "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_top_rh", "y": 270 }, + "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_top_rh" }, + "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_top", "y": 270 }, + "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_top" }, + "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_top", "y": 90 }, + "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_top", "y": 180 } } } diff --git a/src/main/resources/assets/dimdoors/blockstates/dimHatch.json b/src/main/resources/assets/dimdoors/blockstates/dimHatch.json index 5523985d..f873c956 100644 --- a/src/main/resources/assets/dimdoors/blockstates/dimHatch.json +++ b/src/main/resources/assets/dimdoors/blockstates/dimHatch.json @@ -1,20 +1,20 @@ { "variants": { - "facing=north,half=bottom,open=false": { "model": "dimHatch_bottom" }, - "facing=south,half=bottom,open=false": { "model": "dimHatch_bottom" }, - "facing=east,half=bottom,open=false": { "model": "dimHatch_bottom" }, - "facing=west,half=bottom,open=false": { "model": "dimHatch_bottom" }, - "facing=north,half=top,open=false": { "model": "dimHatch_top" }, - "facing=south,half=top,open=false": { "model": "dimHatch_top" }, - "facing=east,half=top,open=false": { "model": "dimHatch_top" }, - "facing=west,half=top,open=false": { "model": "dimHatch_top" }, - "facing=north,half=bottom,open=true": { "model": "dimHatch_open" }, - "facing=south,half=bottom,open=true": { "model": "dimHatch_open", "y": 180 }, - "facing=east,half=bottom,open=true": { "model": "dimHatch_open", "y": 90 }, - "facing=west,half=bottom,open=true": { "model": "dimHatch_open", "y": 270 }, - "facing=north,half=top,open=true": { "model": "dimHatch_open" }, - "facing=south,half=top,open=true": { "model": "dimHatch_open", "y": 180 }, - "facing=east,half=top,open=true": { "model": "dimHatch_open", "y": 90 }, - "facing=west,half=top,open=true": { "model": "dimHatch_open", "y": 270 } + "facing=north,half=bottom,open=false": { "model": "dimdoors:dimHatch_bottom" }, + "facing=south,half=bottom,open=false": { "model": "dimdoors:dimHatch_bottom" }, + "facing=east,half=bottom,open=false": { "model": "dimdoors:dimHatch_bottom" }, + "facing=west,half=bottom,open=false": { "model": "dimdoors:dimHatch_bottom" }, + "facing=north,half=top,open=false": { "model": "dimdoors:dimHatch_top" }, + "facing=south,half=top,open=false": { "model": "dimdoors:dimHatch_top" }, + "facing=east,half=top,open=false": { "model": "dimdoors:dimHatch_top" }, + "facing=west,half=top,open=false": { "model": "dimdoors:dimHatch_top" }, + "facing=north,half=bottom,open=true": { "model": "dimdoors:dimHatch_open" }, + "facing=south,half=bottom,open=true": { "model": "dimdoors:dimHatch_open", "y": 180 }, + "facing=east,half=bottom,open=true": { "model": "dimdoors:dimHatch_open", "y": 90 }, + "facing=west,half=bottom,open=true": { "model": "dimdoors:dimHatch_open", "y": 270 }, + "facing=north,half=top,open=true": { "model": "dimdoors:dimHatch_open" }, + "facing=south,half=top,open=true": { "model": "dimdoors:dimHatch_open", "y": 180 }, + "facing=east,half=top,open=true": { "model": "dimdoors:dimHatch_open", "y": 90 }, + "facing=west,half=top,open=true": { "model": "dimdoors:dimHatch_open", "y": 270 } } } diff --git a/src/main/resources/assets/dimdoors/blockstates/doorGold.json b/src/main/resources/assets/dimdoors/blockstates/doorGold.json index a2451a9e..c708543d 100644 --- a/src/main/resources/assets/dimdoors/blockstates/doorGold.json +++ b/src/main/resources/assets/dimdoors/blockstates/doorGold.json @@ -1,36 +1,36 @@ { "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "doorGold_bottom" }, - "facing=south,half=lower,hinge=left,open=false": { "model": "doorGold_bottom", "y": 90 }, - "facing=west,half=lower,hinge=left,open=false": { "model": "doorGold_bottom", "y": 180 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "doorGold_bottom", "y": 270 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh" }, - "facing=south,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh", "y": 90 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh", "y": 180 }, - "facing=north,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh", "y": 270 }, - "facing=east,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "doorGold_bottom", "y": 270 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "doorGold_bottom" }, - "facing=west,half=lower,hinge=right,open=true": { "model": "doorGold_bottom", "y": 90 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "doorGold_bottom", "y": 180 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "doorGold_top" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "doorGold_top", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "doorGold_top", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "doorGold_top", "y": 270 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh" }, - "facing=south,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh", "y": 90 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh", "y": 180 }, - "facing=north,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh", "y": 270 }, - "facing=east,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "doorGold_top", "y": 270 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "doorGold_top" }, - "facing=west,half=upper,hinge=right,open=true": { "model": "doorGold_top", "y": 90 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "doorGold_top", "y": 180 } + "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom" }, + "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom", "y": 90 }, + "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom", "y": 180 }, + "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom", "y": 270 }, + "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh" }, + "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh", "y": 90 }, + "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh", "y": 180 }, + "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh", "y": 270 }, + "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh", "y": 90 }, + "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh", "y": 180 }, + "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh", "y": 270 }, + "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh" }, + "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom", "y": 270 }, + "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom" }, + "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom", "y": 90 }, + "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom", "y": 180 }, + "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top" }, + "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top", "y": 90 }, + "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top", "y": 180 }, + "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top", "y": 270 }, + "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh" }, + "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh", "y": 90 }, + "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh", "y": 180 }, + "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh", "y": 270 }, + "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh", "y": 90 }, + "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh", "y": 180 }, + "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh", "y": 270 }, + "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh" }, + "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top", "y": 270 }, + "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top" }, + "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top", "y": 90 }, + "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top", "y": 180 } } } diff --git a/src/main/resources/assets/dimdoors/blockstates/doorQuartz.json b/src/main/resources/assets/dimdoors/blockstates/doorQuartz.json index 6b1cf7a8..475ead8c 100644 --- a/src/main/resources/assets/dimdoors/blockstates/doorQuartz.json +++ b/src/main/resources/assets/dimdoors/blockstates/doorQuartz.json @@ -1,36 +1,36 @@ { "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom" }, - "facing=south,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom", "y": 90 }, - "facing=west,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom", "y": 180 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom", "y": 270 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh" }, - "facing=south,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh", "y": 90 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh", "y": 180 }, - "facing=north,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh", "y": 270 }, - "facing=east,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom", "y": 270 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom" }, - "facing=west,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom", "y": 90 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom", "y": 180 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "doorQuartz_top" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "doorQuartz_top", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "doorQuartz_top", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "doorQuartz_top", "y": 270 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh" }, - "facing=south,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh", "y": 90 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh", "y": 180 }, - "facing=north,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh", "y": 270 }, - "facing=east,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "doorQuartz_top", "y": 270 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "doorQuartz_top" }, - "facing=west,half=upper,hinge=right,open=true": { "model": "doorQuartz_top", "y": 90 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "doorQuartz_top", "y": 180 } + "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom" }, + "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom", "y": 90 }, + "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom", "y": 180 }, + "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom", "y": 270 }, + "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh" }, + "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 90 }, + "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 180 }, + "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 270 }, + "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 90 }, + "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 180 }, + "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 270 }, + "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh" }, + "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom", "y": 270 }, + "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom" }, + "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom", "y": 90 }, + "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom", "y": 180 }, + "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top" }, + "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top", "y": 90 }, + "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top", "y": 180 }, + "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top", "y": 270 }, + "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh" }, + "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh", "y": 90 }, + "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh", "y": 180 }, + "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh", "y": 270 }, + "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh", "y": 90 }, + "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh", "y": 180 }, + "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh", "y": 270 }, + "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh" }, + "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top", "y": 270 }, + "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top" }, + "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top", "y": 90 }, + "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top", "y": 180 } } } diff --git a/src/main/resources/assets/dimdoors/models/block/chaosDoor_bottom.json b/src/main/resources/assets/dimdoors/models/block/chaosDoor_bottom.json index 96d0c2c0..ef9d0d6d 100644 --- a/src/main/resources/assets/dimdoors/models/block/chaosDoor_bottom.json +++ b/src/main/resources/assets/dimdoors/models/block/chaosDoor_bottom.json @@ -2,6 +2,6 @@ "parent": "block/door_bottom", "textures": { "bottom": "blocks/door_iron_lower", - "top": "blocks/chaosDoor_upper" + "top": "dimdoors:blocks/chaosDoor_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/chaosDoor_bottom_rh.json b/src/main/resources/assets/dimdoors/models/block/chaosDoor_bottom_rh.json index 19fe9eda..0e2f1b17 100644 --- a/src/main/resources/assets/dimdoors/models/block/chaosDoor_bottom_rh.json +++ b/src/main/resources/assets/dimdoors/models/block/chaosDoor_bottom_rh.json @@ -2,6 +2,6 @@ "parent": "block/door_bottom_rh", "textures": { "bottom": "blocks/door_iron_lower", - "top": "blocks/chaosDoor_upper" + "top": "dimdoors:blocks/chaosDoor_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/chaosDoor_top.json b/src/main/resources/assets/dimdoors/models/block/chaosDoor_top.json index fb7edc8d..9859841a 100644 --- a/src/main/resources/assets/dimdoors/models/block/chaosDoor_top.json +++ b/src/main/resources/assets/dimdoors/models/block/chaosDoor_top.json @@ -2,6 +2,6 @@ "parent": "block/door_top", "textures": { "bottom": "blocks/door_iron_lower", - "top": "blocks/chaosDoor_upper" + "top": "dimdoors:blocks/chaosDoor_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/chaosDoor_top_rh.json b/src/main/resources/assets/dimdoors/models/block/chaosDoor_top_rh.json index 3a675485..63237940 100644 --- a/src/main/resources/assets/dimdoors/models/block/chaosDoor_top_rh.json +++ b/src/main/resources/assets/dimdoors/models/block/chaosDoor_top_rh.json @@ -2,6 +2,6 @@ "parent": "block/door_top_rh", "textures": { "bottom": "blocks/door_iron_lower", - "top": "blocks/chaosDoor_upper" + "top": "dimdoors:blocks/chaosDoor_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_bottom.json b/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_bottom.json index 320cbc80..c60a2754 100644 --- a/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_bottom.json +++ b/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_bottom.json @@ -1,7 +1,7 @@ { "parent": "block/door_bottom", "textures": { - "bottom": "blocks/dimDoorWarp_lower", - "top": "blocks/dimDoorWarp_upper" + "bottom": "dimdoors:blocks/dimDoorWarp_lower", + "top": "dimdoors:blocks/dimDoorWarp_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_bottom_rh.json b/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_bottom_rh.json index d4936004..090e36c3 100644 --- a/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_bottom_rh.json +++ b/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_bottom_rh.json @@ -1,7 +1,7 @@ { "parent": "block/door_bottom_rh", "textures": { - "bottom": "blocks/dimDoorWarp_lower", - "top": "blocks/dimDoorWarp_upper" + "bottom": "dimdoors:blocks/dimDoorWarp_lower", + "top": "dimdoors:blocks/dimDoorWarp_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_top.json b/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_top.json index ca88fd88..ca78e7db 100644 --- a/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_top.json +++ b/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_top.json @@ -1,7 +1,7 @@ { "parent": "block/door_top", "textures": { - "bottom": "blocks/dimDoorWarp_lower", - "top": "blocks/dimDoorWarp_upper" + "bottom": "dimdoors:blocks/dimDoorWarp_lower", + "top": "dimdoors:blocks/dimDoorWarp_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_top_rh.json b/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_top_rh.json index 633ba459..ba51efbe 100644 --- a/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_top_rh.json +++ b/src/main/resources/assets/dimdoors/models/block/dimDoorWarp_top_rh.json @@ -1,7 +1,7 @@ { "parent": "block/door_top_rh", "textures": { - "bottom": "blocks/dimDoorWarp_lower", - "top": "blocks/dimDoorWarp_upper" + "bottom": "dimdoors:blocks/dimDoorWarp_lower", + "top": "dimdoors:blocks/dimDoorWarp_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/dimDoor_bottom.json b/src/main/resources/assets/dimdoors/models/block/dimDoor_bottom.json index 80ebcf8c..2835a359 100644 --- a/src/main/resources/assets/dimdoors/models/block/dimDoor_bottom.json +++ b/src/main/resources/assets/dimdoors/models/block/dimDoor_bottom.json @@ -1,7 +1,7 @@ { "parent": "block/door_bottom", "textures": { - "bottom": "blocks/dimDoor_lower", - "top": "blocks/dimDoor_upper" + "bottom": "dimdoors:blocks/dimDoor_lower", + "top": "dimdoors:blocks/dimDoor_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/dimDoor_bottom_rh.json b/src/main/resources/assets/dimdoors/models/block/dimDoor_bottom_rh.json index ca9dfc02..b6c1a79a 100644 --- a/src/main/resources/assets/dimdoors/models/block/dimDoor_bottom_rh.json +++ b/src/main/resources/assets/dimdoors/models/block/dimDoor_bottom_rh.json @@ -1,7 +1,7 @@ { "parent": "block/door_bottom_rh", "textures": { - "bottom": "blocks/dimDoor_lower", - "top": "blocks/dimDoor_upper" + "bottom": "dimdoors:blocks/dimDoor_lower", + "top": "dimdoors:blocks/dimDoor_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/dimDoor_top.json b/src/main/resources/assets/dimdoors/models/block/dimDoor_top.json index e5feb103..e89f56f5 100644 --- a/src/main/resources/assets/dimdoors/models/block/dimDoor_top.json +++ b/src/main/resources/assets/dimdoors/models/block/dimDoor_top.json @@ -1,7 +1,7 @@ { "parent": "block/door_top", "textures": { - "bottom": "blocks/dimDoor_lower", - "top": "blocks/dimDoor_upper" + "bottom": "dimdoors:blocks/dimDoor_lower", + "top": "dimdoors:blocks/dimDoor_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/dimDoor_top_rh.json b/src/main/resources/assets/dimdoors/models/block/dimDoor_top_rh.json index f3903421..4dee3128 100644 --- a/src/main/resources/assets/dimdoors/models/block/dimDoor_top_rh.json +++ b/src/main/resources/assets/dimdoors/models/block/dimDoor_top_rh.json @@ -1,7 +1,7 @@ { "parent": "block/door_top_rh", "textures": { - "bottom": "blocks/dimDoor_lower", - "top": "blocks/dimDoor_upper" + "bottom": "dimdoors:blocks/dimDoor_lower", + "top": "dimdoors:blocks/dimDoor_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/dimHatch_bottom.json b/src/main/resources/assets/dimdoors/models/block/dimHatch_bottom.json index 799c0f6a..e096880b 100644 --- a/src/main/resources/assets/dimdoors/models/block/dimHatch_bottom.json +++ b/src/main/resources/assets/dimdoors/models/block/dimHatch_bottom.json @@ -1,6 +1,6 @@ { "parent": "block/trapdoor_bottom", "textures": { - "texture": "blocks/dimHatch" + "texture": "dimdoors:blocks/dimHatch" } } diff --git a/src/main/resources/assets/dimdoors/models/block/dimHatch_open.json b/src/main/resources/assets/dimdoors/models/block/dimHatch_open.json index 8b8e87fd..71ff93bb 100644 --- a/src/main/resources/assets/dimdoors/models/block/dimHatch_open.json +++ b/src/main/resources/assets/dimdoors/models/block/dimHatch_open.json @@ -1,6 +1,6 @@ { "parent": "block/trapdoor_open", "textures": { - "texture": "blocks/dimHatch" + "texture": "dimdoors:blocks/dimHatch" } } diff --git a/src/main/resources/assets/dimdoors/models/block/dimHatch_top.json b/src/main/resources/assets/dimdoors/models/block/dimHatch_top.json index 7bf77b86..f6e5fe31 100644 --- a/src/main/resources/assets/dimdoors/models/block/dimHatch_top.json +++ b/src/main/resources/assets/dimdoors/models/block/dimHatch_top.json @@ -1,6 +1,6 @@ { "parent": "block/trapdoor_top", "textures": { - "texture": "blocks/dimHatch" + "texture": "dimdoors:blocks/dimHatch" } } diff --git a/src/main/resources/assets/dimdoors/models/block/doorGold_bottom.json b/src/main/resources/assets/dimdoors/models/block/doorGold_bottom.json index 8cc9740d..35992be4 100644 --- a/src/main/resources/assets/dimdoors/models/block/doorGold_bottom.json +++ b/src/main/resources/assets/dimdoors/models/block/doorGold_bottom.json @@ -1,7 +1,7 @@ { "parent": "block/door_bottom", "textures": { - "bottom": "blocks/doorGold_lower", - "top": "blocks/doorGold_upper" + "bottom": "dimdoors:blocks/doorGold_lower", + "top": "dimdoors:blocks/doorGold_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/doorGold_bottom_rh.json b/src/main/resources/assets/dimdoors/models/block/doorGold_bottom_rh.json index 6b68a94f..2b9c4263 100644 --- a/src/main/resources/assets/dimdoors/models/block/doorGold_bottom_rh.json +++ b/src/main/resources/assets/dimdoors/models/block/doorGold_bottom_rh.json @@ -1,7 +1,7 @@ { "parent": "block/door_bottom_rh", "textures": { - "bottom": "blocks/doorGold_lower", - "top": "blocks/doorGold_upper" + "bottom": "dimdoors:blocks/doorGold_lower", + "top": "dimdoors:blocks/doorGold_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/doorGold_top.json b/src/main/resources/assets/dimdoors/models/block/doorGold_top.json index 1aba3596..fc355e5b 100644 --- a/src/main/resources/assets/dimdoors/models/block/doorGold_top.json +++ b/src/main/resources/assets/dimdoors/models/block/doorGold_top.json @@ -1,7 +1,7 @@ { "parent": "block/door_top", "textures": { - "bottom": "blocks/doorGold_lower", - "top": "blocks/doorGold_upper" + "bottom": "dimdoors:blocks/doorGold_lower", + "top": "dimdoors:blocks/doorGold_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/doorGold_top_rh.json b/src/main/resources/assets/dimdoors/models/block/doorGold_top_rh.json index 625ebc96..530b5863 100644 --- a/src/main/resources/assets/dimdoors/models/block/doorGold_top_rh.json +++ b/src/main/resources/assets/dimdoors/models/block/doorGold_top_rh.json @@ -1,7 +1,7 @@ { "parent": "block/door_top_rh", "textures": { - "bottom": "blocks/doorGold_lower", - "top": "blocks/doorGold_upper" + "bottom": "dimdoors:blocks/doorGold_lower", + "top": "dimdoors:blocks/doorGold_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/doorQuartz_bottom.json b/src/main/resources/assets/dimdoors/models/block/doorQuartz_bottom.json index 91247d03..8eb1b329 100644 --- a/src/main/resources/assets/dimdoors/models/block/doorQuartz_bottom.json +++ b/src/main/resources/assets/dimdoors/models/block/doorQuartz_bottom.json @@ -1,7 +1,7 @@ { "parent": "block/door_bottom", "textures": { - "bottom": "blocks/doorQuartz_lower", - "top": "blocks/doorQuartz_upper" + "bottom": "dimdoors:blocks/doorQuartz_lower", + "top": "dimdoors:blocks/doorQuartz_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/doorQuartz_bottom_rh.json b/src/main/resources/assets/dimdoors/models/block/doorQuartz_bottom_rh.json index da7cd414..859b046a 100644 --- a/src/main/resources/assets/dimdoors/models/block/doorQuartz_bottom_rh.json +++ b/src/main/resources/assets/dimdoors/models/block/doorQuartz_bottom_rh.json @@ -1,7 +1,7 @@ { "parent": "block/door_bottom_rh", "textures": { - "bottom": "blocks/doorQuartz_lower", - "top": "blocks/doorQuartz_upper" + "bottom": "dimdoors:blocks/doorQuartz_lower", + "top": "dimdoors:blocks/doorQuartz_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/doorQuartz_top.json b/src/main/resources/assets/dimdoors/models/block/doorQuartz_top.json index 5f7c86cb..70ca9c19 100644 --- a/src/main/resources/assets/dimdoors/models/block/doorQuartz_top.json +++ b/src/main/resources/assets/dimdoors/models/block/doorQuartz_top.json @@ -1,7 +1,7 @@ { "parent": "block/door_top", "textures": { - "bottom": "blocks/doorQuartz_lower", - "top": "blocks/doorQuartz_upper" + "bottom": "dimdoors:blocks/doorQuartz_lower", + "top": "dimdoors:blocks/doorQuartz_upper" } } diff --git a/src/main/resources/assets/dimdoors/models/block/doorQuartz_top_rh.json b/src/main/resources/assets/dimdoors/models/block/doorQuartz_top_rh.json index b75b3ea9..03443a05 100644 --- a/src/main/resources/assets/dimdoors/models/block/doorQuartz_top_rh.json +++ b/src/main/resources/assets/dimdoors/models/block/doorQuartz_top_rh.json @@ -1,7 +1,7 @@ { "parent": "block/door_top_rh", "textures": { - "bottom": "blocks/doorQuartz_lower", - "top": "blocks/doorQuartz_upper" + "bottom": "dimdoors:blocks/doorQuartz_lower", + "top": "dimdoors:blocks/doorQuartz_upper" } }