Examples of showChunkBounds()


Examples of de.venjinx.jme3.VoxelObjectNode.showChunkBounds()

            case DebugGUI.MENU_SHOW_CHUNK_BOUNDS:
                parent = activeGeometry.getParent();
                while (!(parent instanceof VoxelObjectNode))
                    parent = parent.getParent();
                vObject = (VoxelObjectNode) parent;
                vObject.showChunkBounds();
                break;
            case DebugGUI.MENU_SHOW_CHUNK_LODS:
                parent = activeGeometry.getParent();
                while (!(parent instanceof VoxelObjectNode))
                    parent = parent.getParent();
View Full Code Here

Examples of de.venjinx.jme3.VoxelObjectNode.showChunkBounds()

                voxelGrid = buildVoxelGrid(vo);
                voxelGrid.setLocalTranslation(vo.getLocalTranslation());
                node.attachChild(voxelGrid);

                vo.showChunkLODs();
                vo.showChunkBounds();
            }
        }
        return node;
    }
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.