Package com.badlogic.gdx.graphics.g3d.particles

Examples of com.badlogic.gdx.graphics.g3d.particles.ParticleController.end()


   
    @Override
    public void killParticles (int startIndex, int count) {
      for(int i=startIndex, c = startIndex +count; i < c; ++i){
        ParticleController controller = particleControllerChannel.data[i];
        controller.end();
        pool.free(controller);
        particleControllerChannel.data[i] = null;
      }
    }
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.