Package net.anzix.fsz.sceneComponents

Examples of net.anzix.fsz.sceneComponents.Fog


        root.attachChild(reflectedNode);   
        root.attachChild(water);

        // FOG
        ColorRGBA fogColor = new ColorRGBA(1.0f, 1.0f, 1.0f, 1.0f);
        fog = new Fog(FAR_PLANE, WATER_HEIGHT, fogColor, new ColorRGBA(0.1f, 0.1f, 0.9f, 1.0f));
        root.setRenderState(fog);

        // SHADOW
        shadow = new Shadow();
        shadow.registerPass(passManager);
View Full Code Here

TOP

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

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.