Examples of ChunkCoordinate


Examples of com.khorn.terraincontrol.util.ChunkCoordinate

    {
        makeSureWorldIsInitialized(world);

        if (this.NotGenerate)
            return new byte[16][];
        ChunkCoordinate chunkCoord = ChunkCoordinate.fromChunkCoords(chunkX, chunkZ);
        BukkitChunkBuffer chunkBuffer = new BukkitChunkBuffer(chunkCoord);
        this.chunkProviderTC.generate(chunkBuffer);

        return chunkBuffer.accessBytes();
    }
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.