Examples of ChunkRelighter


Examples of rakama.worldtools.light.ChunkRelighter

        this.windowScale = windowScale;
        this.windowSize = 1 << windowScale;
        this.windowMask = bitmask(windowScale);
        this.window = new ManagedChunk[windowSize * windowSize];
        this.cache = new ChunkCache(cacheSize);
        this.relighter = new ChunkRelighter();
        this.cleanup = new LinkedList<ManagedChunk>();
        this.lightingEnabled = true;
       
        shutdownHook = new CloseOpenChunks(this);
        Runtime.getRuntime().addShutdownHook(shutdownHook);
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.