Package net.anzix.fsz.sceneComponents

Examples of net.anzix.fsz.sceneComponents.PlainWater


        reflectedNode.attachChild(sky);
        reflectedNode.attachChild(voxelPoolContainer.getNode());
        reflectedNode.attachChild(staticObjectNode);
       
        // WATER
        water = new PlainWater(camera, reflectedNode, sky, FAR_PLANE, WATER_HEIGHT); //= new Water(camera, reflectedNode, sky, FAR_PLANE, WATER_HEIGHT, timer);
        root.attachChild(reflectedNode);   
        root.attachChild(water);

        // FOG
        ColorRGBA fogColor = new ColorRGBA(1.0f, 1.0f, 1.0f, 1.0f);
View Full Code Here

TOP

Related Classes of net.anzix.fsz.sceneComponents.PlainWater

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.