Examples of generateBlocks()


Examples of me.daddychurchill.CityWorld.Plats.PlatLot.generateBlocks()

    int platZ = chunk.chunkZ - originZ;
    PlatLot platlot = platLots[platX][platZ];
    if (platlot != null) {

      // do what we came here for
      platlot.generateBlocks(generator, this, chunk, context, platX, platZ);
    }
  }
 
 
  public int getNumberOfRoads() {
View Full Code Here

Examples of me.daddychurchill.CityWorld.Support.PlatMap.generateBlocks()

        RealChunk realChunk = new RealChunk(chunkGen, chunk);

        // figure out what everything looks like
        PlatMap platmap = chunkGen.getPlatMap(chunkX, chunkZ);
        if (platmap != null) {
          platmap.generateBlocks(realChunk);
         
          // finalize things
          chunkGen.lootProvider.saveLoots();
         
          // Originally by Sablednah
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.