本文整理匯總了Java中net.minecraft.block.state.BlockStateContainer類的典型用法代碼示例。如果您正苦於以下問題:Java BlockStateContainer類的具體用法?Java BlockStateContainer怎麽用?Java BlockStateContainer使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
BlockStateContainer類屬於net.minecraft.block.state包,在下文中一共展示了BlockStateContainer類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
@Override
protected BlockStateContainer createBlockState() {
return new BlockStateContainer(this, FACING);
}
示例2: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
protected BlockStateContainer createBlockState()
{
return new BlockStateContainer(this, new IProperty[] {ROTATION});
}
示例3: getStateContainer
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
public BlockStateContainer getStateContainer()
{
return this.stateContainer;
}
示例4: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
@Override
public BlockStateContainer createBlockState() {
return new BlockStateContainer(this, VARIANT, COOKED);
}
示例5: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
@Override
protected BlockStateContainer createBlockState() {
return new BlockStateContainer(this, LOG_AXIS);
}
示例6: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
@Override
protected BlockStateContainer createBlockState () {
return new BlockStateContainer(this, VARIANT);
}
示例7: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
protected BlockStateContainer createBlockState()
{
return new BlockStateContainer(this, new IProperty[] {VARIANT});
}
示例8: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
protected BlockStateContainer createBlockState()
{
return new BlockStateContainer(this, new IProperty[] {FACING, DELAY, LOCKED});
}
示例9: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
@Override
protected BlockStateContainer createBlockState() {
return new BlockStateContainer(this, FACING, STATETYPE);
}
示例10: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
protected BlockStateContainer createBlockState()
{
return new BlockStateContainer(this, new IProperty[] {FACING, field_190963_a});
}
示例11: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
@Override
protected BlockStateContainer createBlockState() {
return new ExtendedBlockState(this, new IProperty[0], new IUnlistedProperty[] { UP, DOWN, NORTH, SOUTH, EAST, WEST, COLOR });
}
示例12: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
@Override
protected BlockStateContainer createBlockState()
{
return new BlockStateContainer(this, VARIANT);
}
示例13: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
protected BlockStateContainer createBlockState()
{
return new BlockStateContainer(this, new IProperty[] {HAS_RECORD});
}
示例14: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
@Override
protected BlockStateContainer createBlockState() {
return new BlockStateContainer(this, LOG_AXIS);
}
示例15: createBlockState
import net.minecraft.block.state.BlockStateContainer; //導入依賴的package包/類
protected BlockStateContainer createBlockState()
{
return new BlockStateContainer(this, new IProperty[] {TYPE});
}