mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 20:59:09 +01:00
52 lines
1.6 KiB
Java
52 lines
1.6 KiB
Java
|
package de.ellpeck.naturesaura.blocks;
|
||
|
|
||
|
import de.ellpeck.naturesaura.blocks.tiles.TileEntityPowderPlacer;
|
||
|
import net.minecraft.block.SoundType;
|
||
|
import net.minecraft.block.material.Material;
|
||
|
import net.minecraft.block.state.BlockFaceShape;
|
||
|
import net.minecraft.block.state.IBlockState;
|
||
|
import net.minecraft.util.EnumFacing;
|
||
|
import net.minecraft.util.math.AxisAlignedBB;
|
||
|
import net.minecraft.util.math.BlockPos;
|
||
|
import net.minecraft.world.IBlockAccess;
|
||
|
|
||
|
public class BlockPowderPlacer extends BlockContainerImpl {
|
||
|
private static final AxisAlignedBB BOUND_BOX = new AxisAlignedBB(0F, 0F, 0F, 1F, 4 / 16F, 1F);
|
||
|
|
||
|
public BlockPowderPlacer() {
|
||
|
super(Material.ROCK, "powder_placer", TileEntityPowderPlacer.class, "powder_placer");
|
||
|
this.setSoundType(SoundType.STONE);
|
||
|
this.setHardness(2.5F);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) {
|
||
|
return BOUND_BOX;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean isFullCube(IBlockState state) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean isOpaqueCube(IBlockState state) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean isSideSolid(IBlockState baseState, IBlockAccess world, BlockPos pos, EnumFacing side) {
|
||
|
return side == EnumFacing.DOWN;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public BlockFaceShape getBlockFaceShape(IBlockAccess worldIn, IBlockState state, BlockPos pos, EnumFacing face) {
|
||
|
return BlockFaceShape.UNDEFINED;
|
||
|
}
|
||
|
}
|