Examples of RealChunk


Examples of me.daddychurchill.CityWorld.Support.RealChunk

        // where are we?
        int chunkX = chunk.getX();
        int chunkZ = chunk.getZ();
       
        // place to work
        RealChunk realChunk = new RealChunk(chunkGen, chunk);

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