Esempio n. 1
0
 public void setPixelState(int x, int y, int z, pixel.Pixel state)
 {
     worldFile.setPixelState(new util.math.PixelPos((xPosition * 16) + x, y, (yPosition * 16) + z), state.getPixelID(), state.getState());
 }
Esempio n. 2
0
 public void presetPixels(pixel.Pixel topPixel, pixel.Pixel fillerPixel)
 {
     this.topPixel    = topPixel;
     this.fillerPixel = fillerPixel;
 }
Esempio n. 3
0
 public WorldGenLakes(pixel.Pixel fill) : base(fill)
 {
 }