Merge branch '1.12-WIP' into registry-rewrite
This commit is contained in:
commit
f248ac7fcb
4 changed files with 26 additions and 4 deletions
|
@ -15,6 +15,7 @@ public class BlockDimDoorTransient extends BlockDimDoorBase { // TODO: convert t
|
|||
setHardness(1.0F);
|
||||
setUnlocalizedName(ID);
|
||||
setRegistryName(new ResourceLocation(DimDoors.MODID, ID));
|
||||
setDefaultState(super.getDefaultState().withProperty(OPEN, true));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -19,12 +19,12 @@ public class WorldProviderPersonalPocket extends WorldProviderPublicPocket {
|
|||
return new Vec3d(1, 1, 1);
|
||||
}
|
||||
|
||||
/*@Override
|
||||
@Override
|
||||
protected void generateLightBrightnessTable() {
|
||||
for (int i = 0; i <= 15; ++i) {
|
||||
this.lightBrightnessTable[i] = (15);
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
@Override
|
||||
public double getHorizon() {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"parent": "dimdoors:block/fullbright",
|
||||
"textures": { "all": "dimdoors:blocks/fabric_altered" }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"particle": "#all"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [ 0, 0, 0 ],
|
||||
"to": [ 16, 16, 16 ],
|
||||
"shade": false,
|
||||
"faces": {
|
||||
"down": { "texture": "#all", "cullface": "down" },
|
||||
"up": { "texture": "#all", "cullface": "up" },
|
||||
"north": { "texture": "#all", "cullface": "north" },
|
||||
"south": { "texture": "#all", "cullface": "south" },
|
||||
"west": { "texture": "#all", "cullface": "west" },
|
||||
"east": { "texture": "#all", "cullface": "east" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue