本文整理匯總了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);
}