本文整理汇总了Java中net.minecraft.world.chunk.storage.ExtendedBlockStorage.getBlockByExtId方法的典型用法代码示例。如果您正苦于以下问题:Java ExtendedBlockStorage.getBlockByExtId方法的具体用法?Java ExtendedBlockStorage.getBlockByExtId怎么用?Java ExtendedBlockStorage.getBlockByExtId使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.world.chunk.storage.ExtendedBlockStorage
的用法示例。
在下文中一共展示了ExtendedBlockStorage.getBlockByExtId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getBlock0
import net.minecraft.world.chunk.storage.ExtendedBlockStorage; //导入方法依赖的package包/类
/**
* Returns the block corresponding to the given coordinates inside a chunk.
*/
private Block getBlock0(int x, int y, int z)
{
Block block = Blocks.air;
if (y >= 0 && y >> 4 < this.storageArrays.length)
{
ExtendedBlockStorage extendedblockstorage = this.storageArrays[y >> 4];
if (extendedblockstorage != null)
{
try
{
block = extendedblockstorage.getBlockByExtId(x, y & 15, z);
}
catch (Throwable throwable)
{
CrashReport crashreport = CrashReport.makeCrashReport(throwable, "Getting block");
throw new ReportedException(crashreport);
}
}
}
return block;
}
示例2: getBlockState
import net.minecraft.world.chunk.storage.ExtendedBlockStorage; //导入方法依赖的package包/类
/**
* Get block state from the world
* @param pos Block position
* @return Block state
*/
public UBlockState getBlockState(UBlockPos pos) {
ExtendedBlockStorage storage = getStorage(world.getChunkFromBlockCoords(pos.getX(), pos.getZ()), pos.getY());
if (storage != null) {
UBlock block = new UBlock(storage.getBlockByExtId(pos.getX() & 15, pos.getY() & 15, pos.getZ() & 15));
int meta = storage.getExtBlockMetadata(pos.getX() & 15, pos.getY() & 15, pos.getZ() & 15);
return new UBlockState(block, meta);
}
return UBlocks.AIR.getState();
}