pocketmine\level\Level::setBiomeColor PHP Method

setBiomeColor() public method

public setBiomeColor ( integer $x, integer $z, integer $R, integer $G, integer $B )
$x integer
$z integer
$R integer
$G integer
$B integer
    public function setBiomeColor(int $x, int $z, int $R, int $G, int $B)
    {
        $this->getChunk($x >> 4, $z >> 4, true)->setBiomeColor($x & 0xf, $z & 0xf, $R, $G, $B);
    }
Level