Package com.mojang.minecraft.particle

Examples of com.mojang.minecraft.particle.Particle


      }

   }

   public final void spawnParticle(Entity var1) {
      Particle var3;
      int var2 = (var3 = (Particle)var1).getParticleTexture();
      this.particles[var2].add(var3);
   }
View Full Code Here


   }

   public final void tick() {
      for(int var1 = 0; var1 < 2; ++var1) {
         for(int var2 = 0; var2 < this.particles[var1].size(); ++var2) {
            Particle var3;
            (var3 = (Particle)this.particles[var1].get(var2)).tick();
            if(var3.removed) {
               this.particles[var1].remove(var2--);
            }
         }
View Full Code Here

TOP

Related Classes of com.mojang.minecraft.particle.Particle

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.