Package com.ardor3d.extension.effect.particle

Examples of com.ardor3d.extension.effect.particle.ParticleControllerListener


        explosion.setTransform(loc);
        explosion.warmUp(1);
        example.getRoot().attachChild(explosion);
        example.getRoot().updateWorldTransform(true);

        explosion.getParticleController().addListener(new ParticleControllerListener() {
            @Override
            public void onDead(final ParticleSystem particles) {
                explosion.removeFromParent();
            }
        });
View Full Code Here

TOP

Related Classes of com.ardor3d.extension.effect.particle.ParticleControllerListener

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.