Examples of LayeredBiomeSelector


Examples of org.spout.api.generator.biome.selector.LayeredBiomeSelector

  @Override
  public void registerBiomes() {
    // if you want to check out a particular biome, use this!
    //setSelector(new PerBlockBiomeSelector(VanillaBiomes.TUNDRA));
    setSelector(new LayeredBiomeSelector(buildSelectorStack(1), VanillaBiomes.OCEAN) {
      @Override
      public Biome pickBiome(int x, int y, int z, long seed) {
        int hash = x * 2345803 ^ y * 9236449 ^ (int) seed;
        hash *= hash + 223;
        int xNoise = hash >> 20 & 3;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.