Trying to fix model/texture errors.

Need to figure out how to make BlockRift and TransientDoor not try to have models.
This commit is contained in:
zangamj 2016-08-14 16:02:09 -04:00
parent 36882363b9
commit adb5114b04
35 changed files with 309 additions and 285 deletions

View file

@ -5,6 +5,7 @@ import java.util.List;
import com.zixiken.dimdoors.items.*; import com.zixiken.dimdoors.items.*;
import com.zixiken.dimdoors.network.DimDoorsNetwork; import com.zixiken.dimdoors.network.DimDoorsNetwork;
import com.zixiken.dimdoors.render.BlockRenderManager;
import com.zixiken.dimdoors.render.ItemRenderManager; import com.zixiken.dimdoors.render.ItemRenderManager;
import com.zixiken.dimdoors.schematic.BlockRotator; import com.zixiken.dimdoors.schematic.BlockRotator;
import com.zixiken.dimdoors.blocks.TransientDoor; import com.zixiken.dimdoors.blocks.TransientDoor;
@ -229,6 +230,7 @@ public class DimDoors {
DimDoorsNetwork.init(); DimDoorsNetwork.init();
ItemRenderManager.addModelVariants(); ItemRenderManager.addModelVariants();
BlockRenderManager.addCustomStateMappers();
} }
@Mod.EventHandler @Mod.EventHandler

View file

@ -31,8 +31,7 @@ import net.minecraftforge.fml.relauncher.SideOnly;
public abstract class BaseDimDoor extends BlockDoor implements IDimDoor, ITileEntityProvider { public abstract class BaseDimDoor extends BlockDoor implements IDimDoor, ITileEntityProvider {
public BaseDimDoor(Material material) public BaseDimDoor(Material material) {
{
super(material); super(material);
} }

View file

@ -62,9 +62,9 @@ public class TransientDoor extends BaseDimDoor {
@Override @Override
public boolean isCollidable() {return false;} 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 @Override
public int getRenderType() {return -1;} public int getRenderType() {return 2;}
@Override
public boolean isOpaqueCube() {return false;}
} }

View file

@ -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());
}
}

View file

@ -1,36 +1,36 @@
{ {
"variants": { "variants": {
"facing=east,half=lower,hinge=left,open=false": { "model": "chaosDoor_bottom" }, "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:chaosDoor_bottom" },
"facing=south,half=lower,hinge=left,open=false": { "model": "chaosDoor_bottom", "y": 90 }, "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:chaosDoor_bottom", "y": 90 },
"facing=west,half=lower,hinge=left,open=false": { "model": "chaosDoor_bottom", "y": 180 }, "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:chaosDoor_bottom", "y": 180 },
"facing=north,half=lower,hinge=left,open=false": { "model": "chaosDoor_bottom", "y": 270 }, "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:chaosDoor_bottom", "y": 270 },
"facing=east,half=lower,hinge=right,open=false": { "model": "chaosDoor_bottom_rh" }, "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:chaosDoor_bottom_rh" },
"facing=south,half=lower,hinge=right,open=false": { "model": "chaosDoor_bottom_rh", "y": 90 }, "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:chaosDoor_bottom_rh", "y": 90 },
"facing=west,half=lower,hinge=right,open=false": { "model": "chaosDoor_bottom_rh", "y": 180 }, "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:chaosDoor_bottom_rh", "y": 180 },
"facing=north,half=lower,hinge=right,open=false": { "model": "chaosDoor_bottom_rh", "y": 270 }, "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:chaosDoor_bottom_rh", "y": 270 },
"facing=east,half=lower,hinge=left,open=true": { "model": "chaosDoor_bottom_rh", "y": 90 }, "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:chaosDoor_bottom_rh", "y": 90 },
"facing=south,half=lower,hinge=left,open=true": { "model": "chaosDoor_bottom_rh", "y": 180 }, "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:chaosDoor_bottom_rh", "y": 180 },
"facing=west,half=lower,hinge=left,open=true": { "model": "chaosDoor_bottom_rh", "y": 270 }, "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:chaosDoor_bottom_rh", "y": 270 },
"facing=north,half=lower,hinge=left,open=true": { "model": "chaosDoor_bottom_rh" }, "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:chaosDoor_bottom_rh" },
"facing=east,half=lower,hinge=right,open=true": { "model": "chaosDoor_bottom", "y": 270 }, "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:chaosDoor_bottom", "y": 270 },
"facing=south,half=lower,hinge=right,open=true": { "model": "chaosDoor_bottom" }, "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:chaosDoor_bottom" },
"facing=west,half=lower,hinge=right,open=true": { "model": "chaosDoor_bottom", "y": 90 }, "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:chaosDoor_bottom", "y": 90 },
"facing=north,half=lower,hinge=right,open=true": { "model": "chaosDoor_bottom", "y": 180 }, "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:chaosDoor_bottom", "y": 180 },
"facing=east,half=upper,hinge=left,open=false": { "model": "chaosDoor_top" }, "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:chaosDoor_top" },
"facing=south,half=upper,hinge=left,open=false": { "model": "chaosDoor_top", "y": 90 }, "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:chaosDoor_top", "y": 90 },
"facing=west,half=upper,hinge=left,open=false": { "model": "chaosDoor_top", "y": 180 }, "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:chaosDoor_top", "y": 180 },
"facing=north,half=upper,hinge=left,open=false": { "model": "chaosDoor_top", "y": 270 }, "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:chaosDoor_top", "y": 270 },
"facing=east,half=upper,hinge=right,open=false": { "model": "chaosDoor_top_rh" }, "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:chaosDoor_top_rh" },
"facing=south,half=upper,hinge=right,open=false": { "model": "chaosDoor_top_rh", "y": 90 }, "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:chaosDoor_top_rh", "y": 90 },
"facing=west,half=upper,hinge=right,open=false": { "model": "chaosDoor_top_rh", "y": 180 }, "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:chaosDoor_top_rh", "y": 180 },
"facing=north,half=upper,hinge=right,open=false": { "model": "chaosDoor_top_rh", "y": 270 }, "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:chaosDoor_top_rh", "y": 270 },
"facing=east,half=upper,hinge=left,open=true": { "model": "chaosDoor_top_rh", "y": 90 }, "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:chaosDoor_top_rh", "y": 90 },
"facing=south,half=upper,hinge=left,open=true": { "model": "chaosDoor_top_rh", "y": 180 }, "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:chaosDoor_top_rh", "y": 180 },
"facing=west,half=upper,hinge=left,open=true": { "model": "chaosDoor_top_rh", "y": 270 }, "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:chaosDoor_top_rh", "y": 270 },
"facing=north,half=upper,hinge=left,open=true": { "model": "chaosDoor_top_rh" }, "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:chaosDoor_top_rh" },
"facing=east,half=upper,hinge=right,open=true": { "model": "chaosDoor_top", "y": 270 }, "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:chaosDoor_top", "y": 270 },
"facing=south,half=upper,hinge=right,open=true": { "model": "chaosDoor_top" }, "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:chaosDoor_top" },
"facing=west,half=upper,hinge=right,open=true": { "model": "chaosDoor_top", "y": 90 }, "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:chaosDoor_top", "y": 90 },
"facing=north,half=upper,hinge=right,open=true": { "model": "chaosDoor_top", "y": 180 } "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:chaosDoor_top", "y": 180 }
} }
} }

View file

@ -1,36 +1,36 @@
{ {
"variants": { "variants": {
"facing=east,half=lower,hinge=left,open=false": { "model": "dimDoor_bottom" }, "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoor_bottom" },
"facing=south,half=lower,hinge=left,open=false": { "model": "dimDoor_bottom", "y": 90 }, "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoor_bottom", "y": 90 },
"facing=west,half=lower,hinge=left,open=false": { "model": "dimDoor_bottom", "y": 180 }, "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoor_bottom", "y": 180 },
"facing=north,half=lower,hinge=left,open=false": { "model": "dimDoor_bottom", "y": 270 }, "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoor_bottom", "y": 270 },
"facing=east,half=lower,hinge=right,open=false": { "model": "dimDoor_bottom_rh" }, "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoor_bottom_rh" },
"facing=south,half=lower,hinge=right,open=false": { "model": "dimDoor_bottom_rh", "y": 90 }, "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoor_bottom_rh", "y": 90 },
"facing=west,half=lower,hinge=right,open=false": { "model": "dimDoor_bottom_rh", "y": 180 }, "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoor_bottom_rh", "y": 180 },
"facing=north,half=lower,hinge=right,open=false": { "model": "dimDoor_bottom_rh", "y": 270 }, "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoor_bottom_rh", "y": 270 },
"facing=east,half=lower,hinge=left,open=true": { "model": "dimDoor_bottom_rh", "y": 90 }, "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoor_bottom_rh", "y": 90 },
"facing=south,half=lower,hinge=left,open=true": { "model": "dimDoor_bottom_rh", "y": 180 }, "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoor_bottom_rh", "y": 180 },
"facing=west,half=lower,hinge=left,open=true": { "model": "dimDoor_bottom_rh", "y": 270 }, "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoor_bottom_rh", "y": 270 },
"facing=north,half=lower,hinge=left,open=true": { "model": "dimDoor_bottom_rh" }, "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoor_bottom_rh" },
"facing=east,half=lower,hinge=right,open=true": { "model": "dimDoor_bottom", "y": 270 }, "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoor_bottom", "y": 270 },
"facing=south,half=lower,hinge=right,open=true": { "model": "dimDoor_bottom" }, "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoor_bottom" },
"facing=west,half=lower,hinge=right,open=true": { "model": "dimDoor_bottom", "y": 90 }, "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoor_bottom", "y": 90 },
"facing=north,half=lower,hinge=right,open=true": { "model": "dimDoor_bottom", "y": 180 }, "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoor_bottom", "y": 180 },
"facing=east,half=upper,hinge=left,open=false": { "model": "dimDoor_top" }, "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoor_top" },
"facing=south,half=upper,hinge=left,open=false": { "model": "dimDoor_top", "y": 90 }, "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoor_top", "y": 90 },
"facing=west,half=upper,hinge=left,open=false": { "model": "dimDoor_top", "y": 180 }, "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoor_top", "y": 180 },
"facing=north,half=upper,hinge=left,open=false": { "model": "dimDoor_top", "y": 270 }, "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoor_top", "y": 270 },
"facing=east,half=upper,hinge=right,open=false": { "model": "dimDoor_top_rh" }, "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoor_top_rh" },
"facing=south,half=upper,hinge=right,open=false": { "model": "dimDoor_top_rh", "y": 90 }, "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoor_top_rh", "y": 90 },
"facing=west,half=upper,hinge=right,open=false": { "model": "dimDoor_top_rh", "y": 180 }, "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoor_top_rh", "y": 180 },
"facing=north,half=upper,hinge=right,open=false": { "model": "dimDoor_top_rh", "y": 270 }, "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoor_top_rh", "y": 270 },
"facing=east,half=upper,hinge=left,open=true": { "model": "dimDoor_top_rh", "y": 90 }, "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoor_top_rh", "y": 90 },
"facing=south,half=upper,hinge=left,open=true": { "model": "dimDoor_top_rh", "y": 180 }, "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoor_top_rh", "y": 180 },
"facing=west,half=upper,hinge=left,open=true": { "model": "dimDoor_top_rh", "y": 270 }, "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoor_top_rh", "y": 270 },
"facing=north,half=upper,hinge=left,open=true": { "model": "dimDoor_top_rh" }, "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoor_top_rh" },
"facing=east,half=upper,hinge=right,open=true": { "model": "dimDoor_top", "y": 270 }, "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoor_top", "y": 270 },
"facing=south,half=upper,hinge=right,open=true": { "model": "dimDoor_top" }, "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoor_top" },
"facing=west,half=upper,hinge=right,open=true": { "model": "dimDoor_top", "y": 90 }, "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoor_top", "y": 90 },
"facing=north,half=upper,hinge=right,open=true": { "model": "dimDoor_top", "y": 180 } "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoor_top", "y": 180 }
} }
} }

View file

@ -1,36 +1,36 @@
{ {
"variants": { "variants": {
"facing=east,half=lower,hinge=left,open=false": { "model": "doorGold_bottom" }, "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom" },
"facing=south,half=lower,hinge=left,open=false": { "model": "doorGold_bottom", "y": 90 }, "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom", "y": 90 },
"facing=west,half=lower,hinge=left,open=false": { "model": "doorGold_bottom", "y": 180 }, "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom", "y": 180 },
"facing=north,half=lower,hinge=left,open=false": { "model": "doorGold_bottom", "y": 270 }, "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom", "y": 270 },
"facing=east,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh" }, "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh" },
"facing=south,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh", "y": 90 }, "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh", "y": 90 },
"facing=west,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh", "y": 180 }, "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh", "y": 180 },
"facing=north,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh", "y": 270 }, "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh", "y": 270 },
"facing=east,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh", "y": 90 }, "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh", "y": 90 },
"facing=south,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh", "y": 180 }, "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh", "y": 180 },
"facing=west,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh", "y": 270 }, "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh", "y": 270 },
"facing=north,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh" }, "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh" },
"facing=east,half=lower,hinge=right,open=true": { "model": "doorGold_bottom", "y": 270 }, "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom", "y": 270 },
"facing=south,half=lower,hinge=right,open=true": { "model": "doorGold_bottom" }, "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom" },
"facing=west,half=lower,hinge=right,open=true": { "model": "doorGold_bottom", "y": 90 }, "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom", "y": 90 },
"facing=north,half=lower,hinge=right,open=true": { "model": "doorGold_bottom", "y": 180 }, "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom", "y": 180 },
"facing=east,half=upper,hinge=left,open=false": { "model": "doorGold_top" }, "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top" },
"facing=south,half=upper,hinge=left,open=false": { "model": "doorGold_top", "y": 90 }, "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top", "y": 90 },
"facing=west,half=upper,hinge=left,open=false": { "model": "doorGold_top", "y": 180 }, "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top", "y": 180 },
"facing=north,half=upper,hinge=left,open=false": { "model": "doorGold_top", "y": 270 }, "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top", "y": 270 },
"facing=east,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh" }, "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh" },
"facing=south,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh", "y": 90 }, "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh", "y": 90 },
"facing=west,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh", "y": 180 }, "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh", "y": 180 },
"facing=north,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh", "y": 270 }, "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh", "y": 270 },
"facing=east,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh", "y": 90 }, "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh", "y": 90 },
"facing=south,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh", "y": 180 }, "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh", "y": 180 },
"facing=west,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh", "y": 270 }, "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh", "y": 270 },
"facing=north,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh" }, "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh" },
"facing=east,half=upper,hinge=right,open=true": { "model": "doorGold_top", "y": 270 }, "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top", "y": 270 },
"facing=south,half=upper,hinge=right,open=true": { "model": "doorGold_top" }, "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top" },
"facing=west,half=upper,hinge=right,open=true": { "model": "doorGold_top", "y": 90 }, "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top", "y": 90 },
"facing=north,half=upper,hinge=right,open=true": { "model": "doorGold_top", "y": 180 } "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top", "y": 180 }
} }
} }

View file

@ -1,36 +1,36 @@
{ {
"variants": { "variants": {
"facing=east,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom" }, "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom" },
"facing=south,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom", "y": 90 }, "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom", "y": 90 },
"facing=west,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom", "y": 180 }, "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom", "y": 180 },
"facing=north,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom", "y": 270 }, "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom", "y": 270 },
"facing=east,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh" }, "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh" },
"facing=south,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh", "y": 90 }, "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 90 },
"facing=west,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh", "y": 180 }, "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 180 },
"facing=north,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh", "y": 270 }, "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 270 },
"facing=east,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh", "y": 90 }, "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 90 },
"facing=south,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh", "y": 180 }, "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 180 },
"facing=west,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh", "y": 270 }, "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 270 },
"facing=north,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh" }, "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh" },
"facing=east,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom", "y": 270 }, "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom", "y": 270 },
"facing=south,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom" }, "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom" },
"facing=west,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom", "y": 90 }, "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom", "y": 90 },
"facing=north,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom", "y": 180 }, "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom", "y": 180 },
"facing=east,half=upper,hinge=left,open=false": { "model": "doorQuartz_top" }, "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top" },
"facing=south,half=upper,hinge=left,open=false": { "model": "doorQuartz_top", "y": 90 }, "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top", "y": 90 },
"facing=west,half=upper,hinge=left,open=false": { "model": "doorQuartz_top", "y": 180 }, "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top", "y": 180 },
"facing=north,half=upper,hinge=left,open=false": { "model": "doorQuartz_top", "y": 270 }, "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top", "y": 270 },
"facing=east,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh" }, "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh" },
"facing=south,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh", "y": 90 }, "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh", "y": 90 },
"facing=west,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh", "y": 180 }, "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh", "y": 180 },
"facing=north,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh", "y": 270 }, "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh", "y": 270 },
"facing=east,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh", "y": 90 }, "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh", "y": 90 },
"facing=south,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh", "y": 180 }, "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh", "y": 180 },
"facing=west,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh", "y": 270 }, "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh", "y": 270 },
"facing=north,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh" }, "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh" },
"facing=east,half=upper,hinge=right,open=true": { "model": "doorQuartz_top", "y": 270 }, "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top", "y": 270 },
"facing=south,half=upper,hinge=right,open=true": { "model": "doorQuartz_top" }, "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top" },
"facing=west,half=upper,hinge=right,open=true": { "model": "doorQuartz_top", "y": 90 }, "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top", "y": 90 },
"facing=north,half=upper,hinge=right,open=true": { "model": "doorQuartz_top", "y": 180 } "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top", "y": 180 }
} }
} }

View file

@ -1,36 +1,36 @@
{ {
"variants": { "variants": {
"facing=east,half=lower,hinge=left,open=false": { "model": "dimDoorWarp_bottom" }, "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_bottom" },
"facing=south,half=lower,hinge=left,open=false": { "model": "dimDoorWarp_bottom", "y": 90 }, "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_bottom", "y": 90 },
"facing=west,half=lower,hinge=left,open=false": { "model": "dimDoorWarp_bottom", "y": 180 }, "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_bottom", "y": 180 },
"facing=north,half=lower,hinge=left,open=false": { "model": "dimDoorWarp_bottom", "y": 270 }, "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_bottom", "y": 270 },
"facing=east,half=lower,hinge=right,open=false": { "model": "dimDoorWarp_bottom_rh" }, "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_bottom_rh" },
"facing=south,half=lower,hinge=right,open=false": { "model": "dimDoorWarp_bottom_rh", "y": 90 }, "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_bottom_rh", "y": 90 },
"facing=west,half=lower,hinge=right,open=false": { "model": "dimDoorWarp_bottom_rh", "y": 180 }, "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_bottom_rh", "y": 180 },
"facing=north,half=lower,hinge=right,open=false": { "model": "dimDoorWarp_bottom_rh", "y": 270 }, "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_bottom_rh", "y": 270 },
"facing=east,half=lower,hinge=left,open=true": { "model": "dimDoorWarp_bottom_rh", "y": 90 }, "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_bottom_rh", "y": 90 },
"facing=south,half=lower,hinge=left,open=true": { "model": "dimDoorWarp_bottom_rh", "y": 180 }, "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_bottom_rh", "y": 180 },
"facing=west,half=lower,hinge=left,open=true": { "model": "dimDoorWarp_bottom_rh", "y": 270 }, "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_bottom_rh", "y": 270 },
"facing=north,half=lower,hinge=left,open=true": { "model": "dimDoorWarp_bottom_rh" }, "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_bottom_rh" },
"facing=east,half=lower,hinge=right,open=true": { "model": "dimDoorWarp_bottom", "y": 270 }, "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_bottom", "y": 270 },
"facing=south,half=lower,hinge=right,open=true": { "model": "dimDoorWarp_bottom" }, "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_bottom" },
"facing=west,half=lower,hinge=right,open=true": { "model": "dimDoorWarp_bottom", "y": 90 }, "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_bottom", "y": 90 },
"facing=north,half=lower,hinge=right,open=true": { "model": "dimDoorWarp_bottom", "y": 180 }, "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_bottom", "y": 180 },
"facing=east,half=upper,hinge=left,open=false": { "model": "dimDoorWarp_top" }, "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_top" },
"facing=south,half=upper,hinge=left,open=false": { "model": "dimDoorWarp_top", "y": 90 }, "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_top", "y": 90 },
"facing=west,half=upper,hinge=left,open=false": { "model": "dimDoorWarp_top", "y": 180 }, "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_top", "y": 180 },
"facing=north,half=upper,hinge=left,open=false": { "model": "dimDoorWarp_top", "y": 270 }, "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:dimDoorWarp_top", "y": 270 },
"facing=east,half=upper,hinge=right,open=false": { "model": "dimDoorWarp_top_rh" }, "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_top_rh" },
"facing=south,half=upper,hinge=right,open=false": { "model": "dimDoorWarp_top_rh", "y": 90 }, "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_top_rh", "y": 90 },
"facing=west,half=upper,hinge=right,open=false": { "model": "dimDoorWarp_top_rh", "y": 180 }, "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_top_rh", "y": 180 },
"facing=north,half=upper,hinge=right,open=false": { "model": "dimDoorWarp_top_rh", "y": 270 }, "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:dimDoorWarp_top_rh", "y": 270 },
"facing=east,half=upper,hinge=left,open=true": { "model": "dimDoorWarp_top_rh", "y": 90 }, "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_top_rh", "y": 90 },
"facing=south,half=upper,hinge=left,open=true": { "model": "dimDoorWarp_top_rh", "y": 180 }, "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_top_rh", "y": 180 },
"facing=west,half=upper,hinge=left,open=true": { "model": "dimDoorWarp_top_rh", "y": 270 }, "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_top_rh", "y": 270 },
"facing=north,half=upper,hinge=left,open=true": { "model": "dimDoorWarp_top_rh" }, "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:dimDoorWarp_top_rh" },
"facing=east,half=upper,hinge=right,open=true": { "model": "dimDoorWarp_top", "y": 270 }, "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_top", "y": 270 },
"facing=south,half=upper,hinge=right,open=true": { "model": "dimDoorWarp_top" }, "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_top" },
"facing=west,half=upper,hinge=right,open=true": { "model": "dimDoorWarp_top", "y": 90 }, "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_top", "y": 90 },
"facing=north,half=upper,hinge=right,open=true": { "model": "dimDoorWarp_top", "y": 180 } "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:dimDoorWarp_top", "y": 180 }
} }
} }

View file

@ -1,20 +1,20 @@
{ {
"variants": { "variants": {
"facing=north,half=bottom,open=false": { "model": "dimHatch_bottom" }, "facing=north,half=bottom,open=false": { "model": "dimdoors:dimHatch_bottom" },
"facing=south,half=bottom,open=false": { "model": "dimHatch_bottom" }, "facing=south,half=bottom,open=false": { "model": "dimdoors:dimHatch_bottom" },
"facing=east,half=bottom,open=false": { "model": "dimHatch_bottom" }, "facing=east,half=bottom,open=false": { "model": "dimdoors:dimHatch_bottom" },
"facing=west,half=bottom,open=false": { "model": "dimHatch_bottom" }, "facing=west,half=bottom,open=false": { "model": "dimdoors:dimHatch_bottom" },
"facing=north,half=top,open=false": { "model": "dimHatch_top" }, "facing=north,half=top,open=false": { "model": "dimdoors:dimHatch_top" },
"facing=south,half=top,open=false": { "model": "dimHatch_top" }, "facing=south,half=top,open=false": { "model": "dimdoors:dimHatch_top" },
"facing=east,half=top,open=false": { "model": "dimHatch_top" }, "facing=east,half=top,open=false": { "model": "dimdoors:dimHatch_top" },
"facing=west,half=top,open=false": { "model": "dimHatch_top" }, "facing=west,half=top,open=false": { "model": "dimdoors:dimHatch_top" },
"facing=north,half=bottom,open=true": { "model": "dimHatch_open" }, "facing=north,half=bottom,open=true": { "model": "dimdoors:dimHatch_open" },
"facing=south,half=bottom,open=true": { "model": "dimHatch_open", "y": 180 }, "facing=south,half=bottom,open=true": { "model": "dimdoors:dimHatch_open", "y": 180 },
"facing=east,half=bottom,open=true": { "model": "dimHatch_open", "y": 90 }, "facing=east,half=bottom,open=true": { "model": "dimdoors:dimHatch_open", "y": 90 },
"facing=west,half=bottom,open=true": { "model": "dimHatch_open", "y": 270 }, "facing=west,half=bottom,open=true": { "model": "dimdoors:dimHatch_open", "y": 270 },
"facing=north,half=top,open=true": { "model": "dimHatch_open" }, "facing=north,half=top,open=true": { "model": "dimdoors:dimHatch_open" },
"facing=south,half=top,open=true": { "model": "dimHatch_open", "y": 180 }, "facing=south,half=top,open=true": { "model": "dimdoors:dimHatch_open", "y": 180 },
"facing=east,half=top,open=true": { "model": "dimHatch_open", "y": 90 }, "facing=east,half=top,open=true": { "model": "dimdoors:dimHatch_open", "y": 90 },
"facing=west,half=top,open=true": { "model": "dimHatch_open", "y": 270 } "facing=west,half=top,open=true": { "model": "dimdoors:dimHatch_open", "y": 270 }
} }
} }

View file

@ -1,36 +1,36 @@
{ {
"variants": { "variants": {
"facing=east,half=lower,hinge=left,open=false": { "model": "doorGold_bottom" }, "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom" },
"facing=south,half=lower,hinge=left,open=false": { "model": "doorGold_bottom", "y": 90 }, "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom", "y": 90 },
"facing=west,half=lower,hinge=left,open=false": { "model": "doorGold_bottom", "y": 180 }, "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom", "y": 180 },
"facing=north,half=lower,hinge=left,open=false": { "model": "doorGold_bottom", "y": 270 }, "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:doorGold_bottom", "y": 270 },
"facing=east,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh" }, "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh" },
"facing=south,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh", "y": 90 }, "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh", "y": 90 },
"facing=west,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh", "y": 180 }, "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh", "y": 180 },
"facing=north,half=lower,hinge=right,open=false": { "model": "doorGold_bottom_rh", "y": 270 }, "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:doorGold_bottom_rh", "y": 270 },
"facing=east,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh", "y": 90 }, "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh", "y": 90 },
"facing=south,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh", "y": 180 }, "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh", "y": 180 },
"facing=west,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh", "y": 270 }, "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh", "y": 270 },
"facing=north,half=lower,hinge=left,open=true": { "model": "doorGold_bottom_rh" }, "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:doorGold_bottom_rh" },
"facing=east,half=lower,hinge=right,open=true": { "model": "doorGold_bottom", "y": 270 }, "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom", "y": 270 },
"facing=south,half=lower,hinge=right,open=true": { "model": "doorGold_bottom" }, "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom" },
"facing=west,half=lower,hinge=right,open=true": { "model": "doorGold_bottom", "y": 90 }, "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom", "y": 90 },
"facing=north,half=lower,hinge=right,open=true": { "model": "doorGold_bottom", "y": 180 }, "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:doorGold_bottom", "y": 180 },
"facing=east,half=upper,hinge=left,open=false": { "model": "doorGold_top" }, "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top" },
"facing=south,half=upper,hinge=left,open=false": { "model": "doorGold_top", "y": 90 }, "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top", "y": 90 },
"facing=west,half=upper,hinge=left,open=false": { "model": "doorGold_top", "y": 180 }, "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top", "y": 180 },
"facing=north,half=upper,hinge=left,open=false": { "model": "doorGold_top", "y": 270 }, "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:doorGold_top", "y": 270 },
"facing=east,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh" }, "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh" },
"facing=south,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh", "y": 90 }, "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh", "y": 90 },
"facing=west,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh", "y": 180 }, "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh", "y": 180 },
"facing=north,half=upper,hinge=right,open=false": { "model": "doorGold_top_rh", "y": 270 }, "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:doorGold_top_rh", "y": 270 },
"facing=east,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh", "y": 90 }, "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh", "y": 90 },
"facing=south,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh", "y": 180 }, "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh", "y": 180 },
"facing=west,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh", "y": 270 }, "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh", "y": 270 },
"facing=north,half=upper,hinge=left,open=true": { "model": "doorGold_top_rh" }, "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:doorGold_top_rh" },
"facing=east,half=upper,hinge=right,open=true": { "model": "doorGold_top", "y": 270 }, "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top", "y": 270 },
"facing=south,half=upper,hinge=right,open=true": { "model": "doorGold_top" }, "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top" },
"facing=west,half=upper,hinge=right,open=true": { "model": "doorGold_top", "y": 90 }, "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top", "y": 90 },
"facing=north,half=upper,hinge=right,open=true": { "model": "doorGold_top", "y": 180 } "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:doorGold_top", "y": 180 }
} }
} }

View file

@ -1,36 +1,36 @@
{ {
"variants": { "variants": {
"facing=east,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom" }, "facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom" },
"facing=south,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom", "y": 90 }, "facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom", "y": 90 },
"facing=west,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom", "y": 180 }, "facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom", "y": 180 },
"facing=north,half=lower,hinge=left,open=false": { "model": "doorQuartz_bottom", "y": 270 }, "facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:doorQuartz_bottom", "y": 270 },
"facing=east,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh" }, "facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh" },
"facing=south,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh", "y": 90 }, "facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 90 },
"facing=west,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh", "y": 180 }, "facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 180 },
"facing=north,half=lower,hinge=right,open=false": { "model": "doorQuartz_bottom_rh", "y": 270 }, "facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 270 },
"facing=east,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh", "y": 90 }, "facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 90 },
"facing=south,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh", "y": 180 }, "facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 180 },
"facing=west,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh", "y": 270 }, "facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh", "y": 270 },
"facing=north,half=lower,hinge=left,open=true": { "model": "doorQuartz_bottom_rh" }, "facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:doorQuartz_bottom_rh" },
"facing=east,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom", "y": 270 }, "facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom", "y": 270 },
"facing=south,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom" }, "facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom" },
"facing=west,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom", "y": 90 }, "facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom", "y": 90 },
"facing=north,half=lower,hinge=right,open=true": { "model": "doorQuartz_bottom", "y": 180 }, "facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:doorQuartz_bottom", "y": 180 },
"facing=east,half=upper,hinge=left,open=false": { "model": "doorQuartz_top" }, "facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top" },
"facing=south,half=upper,hinge=left,open=false": { "model": "doorQuartz_top", "y": 90 }, "facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top", "y": 90 },
"facing=west,half=upper,hinge=left,open=false": { "model": "doorQuartz_top", "y": 180 }, "facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top", "y": 180 },
"facing=north,half=upper,hinge=left,open=false": { "model": "doorQuartz_top", "y": 270 }, "facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:doorQuartz_top", "y": 270 },
"facing=east,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh" }, "facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh" },
"facing=south,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh", "y": 90 }, "facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh", "y": 90 },
"facing=west,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh", "y": 180 }, "facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh", "y": 180 },
"facing=north,half=upper,hinge=right,open=false": { "model": "doorQuartz_top_rh", "y": 270 }, "facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:doorQuartz_top_rh", "y": 270 },
"facing=east,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh", "y": 90 }, "facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh", "y": 90 },
"facing=south,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh", "y": 180 }, "facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh", "y": 180 },
"facing=west,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh", "y": 270 }, "facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh", "y": 270 },
"facing=north,half=upper,hinge=left,open=true": { "model": "doorQuartz_top_rh" }, "facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:doorQuartz_top_rh" },
"facing=east,half=upper,hinge=right,open=true": { "model": "doorQuartz_top", "y": 270 }, "facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top", "y": 270 },
"facing=south,half=upper,hinge=right,open=true": { "model": "doorQuartz_top" }, "facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top" },
"facing=west,half=upper,hinge=right,open=true": { "model": "doorQuartz_top", "y": 90 }, "facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top", "y": 90 },
"facing=north,half=upper,hinge=right,open=true": { "model": "doorQuartz_top", "y": 180 } "facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:doorQuartz_top", "y": 180 }
} }
} }

View file

@ -2,6 +2,6 @@
"parent": "block/door_bottom", "parent": "block/door_bottom",
"textures": { "textures": {
"bottom": "blocks/door_iron_lower", "bottom": "blocks/door_iron_lower",
"top": "blocks/chaosDoor_upper" "top": "dimdoors:blocks/chaosDoor_upper"
} }
} }

View file

@ -2,6 +2,6 @@
"parent": "block/door_bottom_rh", "parent": "block/door_bottom_rh",
"textures": { "textures": {
"bottom": "blocks/door_iron_lower", "bottom": "blocks/door_iron_lower",
"top": "blocks/chaosDoor_upper" "top": "dimdoors:blocks/chaosDoor_upper"
} }
} }

View file

@ -2,6 +2,6 @@
"parent": "block/door_top", "parent": "block/door_top",
"textures": { "textures": {
"bottom": "blocks/door_iron_lower", "bottom": "blocks/door_iron_lower",
"top": "blocks/chaosDoor_upper" "top": "dimdoors:blocks/chaosDoor_upper"
} }
} }

View file

@ -2,6 +2,6 @@
"parent": "block/door_top_rh", "parent": "block/door_top_rh",
"textures": { "textures": {
"bottom": "blocks/door_iron_lower", "bottom": "blocks/door_iron_lower",
"top": "blocks/chaosDoor_upper" "top": "dimdoors:blocks/chaosDoor_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_bottom", "parent": "block/door_bottom",
"textures": { "textures": {
"bottom": "blocks/dimDoorWarp_lower", "bottom": "dimdoors:blocks/dimDoorWarp_lower",
"top": "blocks/dimDoorWarp_upper" "top": "dimdoors:blocks/dimDoorWarp_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_bottom_rh", "parent": "block/door_bottom_rh",
"textures": { "textures": {
"bottom": "blocks/dimDoorWarp_lower", "bottom": "dimdoors:blocks/dimDoorWarp_lower",
"top": "blocks/dimDoorWarp_upper" "top": "dimdoors:blocks/dimDoorWarp_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_top", "parent": "block/door_top",
"textures": { "textures": {
"bottom": "blocks/dimDoorWarp_lower", "bottom": "dimdoors:blocks/dimDoorWarp_lower",
"top": "blocks/dimDoorWarp_upper" "top": "dimdoors:blocks/dimDoorWarp_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_top_rh", "parent": "block/door_top_rh",
"textures": { "textures": {
"bottom": "blocks/dimDoorWarp_lower", "bottom": "dimdoors:blocks/dimDoorWarp_lower",
"top": "blocks/dimDoorWarp_upper" "top": "dimdoors:blocks/dimDoorWarp_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_bottom", "parent": "block/door_bottom",
"textures": { "textures": {
"bottom": "blocks/dimDoor_lower", "bottom": "dimdoors:blocks/dimDoor_lower",
"top": "blocks/dimDoor_upper" "top": "dimdoors:blocks/dimDoor_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_bottom_rh", "parent": "block/door_bottom_rh",
"textures": { "textures": {
"bottom": "blocks/dimDoor_lower", "bottom": "dimdoors:blocks/dimDoor_lower",
"top": "blocks/dimDoor_upper" "top": "dimdoors:blocks/dimDoor_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_top", "parent": "block/door_top",
"textures": { "textures": {
"bottom": "blocks/dimDoor_lower", "bottom": "dimdoors:blocks/dimDoor_lower",
"top": "blocks/dimDoor_upper" "top": "dimdoors:blocks/dimDoor_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_top_rh", "parent": "block/door_top_rh",
"textures": { "textures": {
"bottom": "blocks/dimDoor_lower", "bottom": "dimdoors:blocks/dimDoor_lower",
"top": "blocks/dimDoor_upper" "top": "dimdoors:blocks/dimDoor_upper"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/trapdoor_bottom", "parent": "block/trapdoor_bottom",
"textures": { "textures": {
"texture": "blocks/dimHatch" "texture": "dimdoors:blocks/dimHatch"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/trapdoor_open", "parent": "block/trapdoor_open",
"textures": { "textures": {
"texture": "blocks/dimHatch" "texture": "dimdoors:blocks/dimHatch"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/trapdoor_top", "parent": "block/trapdoor_top",
"textures": { "textures": {
"texture": "blocks/dimHatch" "texture": "dimdoors:blocks/dimHatch"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_bottom", "parent": "block/door_bottom",
"textures": { "textures": {
"bottom": "blocks/doorGold_lower", "bottom": "dimdoors:blocks/doorGold_lower",
"top": "blocks/doorGold_upper" "top": "dimdoors:blocks/doorGold_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_bottom_rh", "parent": "block/door_bottom_rh",
"textures": { "textures": {
"bottom": "blocks/doorGold_lower", "bottom": "dimdoors:blocks/doorGold_lower",
"top": "blocks/doorGold_upper" "top": "dimdoors:blocks/doorGold_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_top", "parent": "block/door_top",
"textures": { "textures": {
"bottom": "blocks/doorGold_lower", "bottom": "dimdoors:blocks/doorGold_lower",
"top": "blocks/doorGold_upper" "top": "dimdoors:blocks/doorGold_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_top_rh", "parent": "block/door_top_rh",
"textures": { "textures": {
"bottom": "blocks/doorGold_lower", "bottom": "dimdoors:blocks/doorGold_lower",
"top": "blocks/doorGold_upper" "top": "dimdoors:blocks/doorGold_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_bottom", "parent": "block/door_bottom",
"textures": { "textures": {
"bottom": "blocks/doorQuartz_lower", "bottom": "dimdoors:blocks/doorQuartz_lower",
"top": "blocks/doorQuartz_upper" "top": "dimdoors:blocks/doorQuartz_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_bottom_rh", "parent": "block/door_bottom_rh",
"textures": { "textures": {
"bottom": "blocks/doorQuartz_lower", "bottom": "dimdoors:blocks/doorQuartz_lower",
"top": "blocks/doorQuartz_upper" "top": "dimdoors:blocks/doorQuartz_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_top", "parent": "block/door_top",
"textures": { "textures": {
"bottom": "blocks/doorQuartz_lower", "bottom": "dimdoors:blocks/doorQuartz_lower",
"top": "blocks/doorQuartz_upper" "top": "dimdoors:blocks/doorQuartz_upper"
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"parent": "block/door_top_rh", "parent": "block/door_top_rh",
"textures": { "textures": {
"bottom": "blocks/doorQuartz_lower", "bottom": "dimdoors:blocks/doorQuartz_lower",
"top": "blocks/doorQuartz_upper" "top": "dimdoors:blocks/doorQuartz_upper"
} }
} }