Package net.anzix.fsz.sceneComponents

Examples of net.anzix.fsz.sceneComponents.Sky


        addStaticModels();
       
        final Node reflectedNode = new Node("reflectNode");
       
        // SKY
        sky = new Sky(WATER_HEIGHT);
        reflectedNode.attachChild(sky);
        reflectedNode.attachChild(voxelPoolContainer.getNode());
        reflectedNode.attachChild(staticObjectNode);
       
        // WATER
View Full Code Here


            ex1.printStackTrace();
        }

        final Node reflectedNode = new Node("reflectNode");
        reflectedNode.attachChild(terrain);
        sky = new Sky(0.0f);
        reflectedNode.attachChild(sky);

        //water = new Water(camera, reflectedNode, sky, farPlane,0);

        root.attachChild(reflectedNode);
View Full Code Here

TOP

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

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.