pocketmine\level\Level::getBlockSkyLightAt PHP Method

getBlockSkyLightAt() public method

Gets the raw block skylight level
public getBlockSkyLightAt ( integer $x, integer $y, integer $z ) : integer
$x integer
$y integer
$z integer
return integer 0-15
    public function getBlockSkyLightAt(int $x, int $y, int $z) : int
    {
        return $this->getChunk($x >> 4, $z >> 4, true)->getBlockSkyLight($x & 0xf, $y & 0x7f, $z & 0xf);
    }
Level