pocketmine\level\SimpleChunkManager::getBlockIdAt PHP Метод

getBlockIdAt() публичный Метод

Gets the raw block id.
public getBlockIdAt ( integer $x, integer $y, integer $z ) : integer
$x integer
$y integer
$z integer
Результат integer 0-255
    public function getBlockIdAt(int $x, int $y, int $z) : int
    {
        if ($chunk = $this->getChunk($x >> 4, $z >> 4)) {
            return $chunk->getBlockId($x & 0xf, $y & 0x7f, $z & 0xf);
        }
        return 0;
    }