Package rakama.worldtools.light

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

Related Classes of rakama.worldtools.light.ChunkRelighter

Copyright © 2018 www.massapicom. 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.