Package net.minecraft.client.particle

Examples of net.minecraft.client.particle.EntityFX.onUpdate()


        for (Iterator<CoreParticle> it = particles.iterator(); it.hasNext();)
        {
            EntityFX particle = it.next();

            particle.onUpdate();

            if (particle.isDead) it.remove();
        }
        Minecraft.getMinecraft().mcProfiler.endSection();
    }
View Full Code Here


    lazyAdd = true;

    for (Iterator<EntityFX> it = particles.iterator(); it.hasNext(); ) {
      EntityFX particle = it.next();

      particle.onUpdate();

      if (particle.isDead) {
        it.remove();
      }
    }
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.