Examples of SpatialRTTEffect


Examples of com.ardor3d.renderer.effect.SpatialRTTEffect

        // 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));

        // Add a bloom effect
        final SimpleBloomEffect bloomEffect = new SimpleBloomEffect();
        effectManager.addEffect(bloomEffect);

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.