Examples of numLights()


Examples of org.jdesktop.mtgame.RenderManager.numLights()

    }

    private List<LightNode> getLightsFromRenderer() {
        RenderManager rm = ClientContextJME.getWorldManager().getRenderManager();
       
        int numberOfLights = rm.numLights();
        List<LightNode> lights = new ArrayList<LightNode>();
        for(int i = 0; i < numberOfLights; i++) {
            lights.add(rm.getLight(i));
        }
       
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.