Examples of EffectManager


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

Examples of de.lessvoid.nifty.effects.EffectManager

    if (newElementRenderer == null) {
      this.elementRenderer = new ElementRenderer[0];
    } else {
      this.elementRenderer = newElementRenderer;
    }
    this.effectManager = new EffectManager();
    this.effectManager.setAlternateKey(nifty.getAlternateKey());
    this.layoutPart = newLayoutPart;
    this.enabled = true;
    this.enabledCount = 0;
    this.visible = true;
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.