pocketmine\level\Level::updateAllLight PHP Method

updateAllLight() public method

public updateAllLight ( Vector3 $pos )
$pos pocketmine\math\Vector3
    public function updateAllLight(Vector3 $pos)
    {
        $this->updateBlockSkyLight($pos->x, $pos->y, $pos->z);
        $this->updateBlockLight($pos->x, $pos->y, $pos->z);
    }
Level