Package com.ardor3d.renderer.effect

Examples of com.ardor3d.renderer.effect.EffectManager


        final TextureState ts = new TextureState();
        ts.setTexture(TextureManager.load("images/ardor3d_white_256.jpg", Texture.MinificationFilter.Trilinear, true));
        sphere.setRenderState(ts);

        // Setup our manager
        effectManager = new EffectManager(_settings, TextureStoreFormat.RGBA8);
        effectManager.setSceneCamera(_canvas.getCanvasRenderer().getCamera());

        // Add a step to draw our scene to our scene texture.
        effectManager.addEffect(new SpatialRTTEffect("*Next", null, _root));

View Full Code Here

TOP

Related Classes of com.ardor3d.renderer.effect.EffectManager

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.