Package com.ardor3d.extension.terrain.client

Examples of com.ardor3d.extension.terrain.client.TerrainGridCache$CacheData


        super.paintComponent(g);

        final Graphics2D g2 = (Graphics2D) g;

        for (int i = 0; i < cacheList.size(); i++) {
            final TerrainGridCache cache = (TerrainGridCache) cacheList.get(i);
            for (final TileLoadingData data : cache.getDebugTiles()) {
                if (data.state == State.init) {
                    g2.setColor(Color.lightGray);
                } else if (data.state == State.loading) {
                    g2.setColor(Color.blue);
                } else if (data.state == State.finished) {
View Full Code Here

TOP

Related Classes of com.ardor3d.extension.terrain.client.TerrainGridCache$CacheData

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.