Package com.ardor3d.scenegraph.extension

Examples of com.ardor3d.scenegraph.extension.PassNode


        final PassNodeState pass2 = new PassNodeState();
        pass2.setPassState(ts2);
        pass2.setPassState(as);

        // Add the passes to the pass node
        final PassNode pNode = new PassNode();
        pNode.addPass(pass1);
        pNode.addPass(pass2);

        // Attach the box to the pass node.
        pNode.attachChild(box);

        // Attach the pass node to the scenegraph root.
        _root.attachChild(pNode);
    }
View Full Code Here

TOP

Related Classes of com.ardor3d.scenegraph.extension.PassNode

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.