mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-10-31 22:50:50 +01:00
New coal generator model
This commit is contained in:
parent
1ac651ac6f
commit
0753c2492b
2 changed files with 11 additions and 52 deletions
|
@ -50,6 +50,17 @@ public class BlockCoalGenerator extends BlockContainerBase{
|
|||
}
|
||||
|
||||
|
||||
@Override
|
||||
public boolean isFullCube(IBlockState state){
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isOpaqueCube(IBlockState state){
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public TileEntity createNewTileEntity(World world, int par2){
|
||||
return new TileEntityCoalGenerator();
|
||||
|
|
|
@ -84,58 +84,6 @@
|
|||
"up": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 16.0 ] },
|
||||
"down": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 16.0 ] }
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [ 1.0, 0.0, 0.0 ],
|
||||
"to": [ 15.0, 1.0, 1.0 ],
|
||||
"faces": {
|
||||
"north": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"east": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"south": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"west": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"up": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"down": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [ 1.0, 0.0, 15.0 ],
|
||||
"to": [ 15.0, 1.0, 16.0 ],
|
||||
"faces": {
|
||||
"north": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"east": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"south": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"west": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"up": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"down": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [ 15.0, 1.0, 15.0 ],
|
||||
"to": [ 16.0, 0.0, 1.0 ],
|
||||
"faces": {
|
||||
"north": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"east": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"south": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"west": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] },
|
||||
"up": { "texture": "#2", "uv": [ 15.0, 1.0, 16.0, 15.0 ] },
|
||||
"down": { "texture": "#2", "uv": [ 0.0, 15.0, 1.0, 1.0 ] }
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [ 0.0, 1.0, 15.0 ],
|
||||
"to": [ 1.0, 0.0, 1.0 ],
|
||||
"faces": {
|
||||
"north": { "texture": "#2", "uv": [ 0.0, 0.0, 11.0, 5.0 ] },
|
||||
"east": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 5.0 ] },
|
||||
"south": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 1.0 ] },
|
||||
"west": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 1.0 ] },
|
||||
"up": { "texture": "#2", "uv": [ 0.0, 14.0, 1.0, 0.0 ] },
|
||||
"down": { "texture": "#2", "uv": [ 0.0, 16.0, 1.0, 0.0 ] }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue