本文整理汇总了Java中net.minecraft.block.material.Material.PISTON属性的典型用法代码示例。如果您正苦于以下问题:Java Material.PISTON属性的具体用法?Java Material.PISTON怎么用?Java Material.PISTON使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类net.minecraft.block.material.Material
的用法示例。
在下文中一共展示了Material.PISTON属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: BlockPistonExtension
public BlockPistonExtension()
{
super(Material.PISTON);
this.setDefaultState(this.blockState.getBaseState().withProperty(FACING, EnumFacing.NORTH).withProperty(TYPE, BlockPistonExtension.EnumPistonType.DEFAULT).withProperty(SHORT, Boolean.valueOf(false)));
this.setSoundType(SoundType.STONE);
this.setHardness(0.5F);
}
示例2: BlockPistonBase
public BlockPistonBase(boolean isSticky)
{
super(Material.PISTON);
this.setDefaultState(this.blockState.getBaseState().withProperty(FACING, EnumFacing.NORTH).withProperty(EXTENDED, Boolean.valueOf(false)));
this.isSticky = isSticky;
this.setSoundType(SoundType.STONE);
this.setHardness(0.5F);
this.setCreativeTab(CreativeTabs.REDSTONE);
}
示例3: BlockPistonMoving
public BlockPistonMoving()
{
super(Material.PISTON);
this.setDefaultState(this.blockState.getBaseState().withProperty(FACING, EnumFacing.NORTH).withProperty(TYPE, BlockPistonExtension.EnumPistonType.DEFAULT));
this.setHardness(-1.0F);
}