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

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


  public void dispose () {
    if(controller != null){
      for(int i=0; i < controller.particles.size; ++i){
        ParticleController controller = particleControllerChannel.data[i];
        if(controller != null){
          controller.dispose();
          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.