Package net.minecraft.client.particle

Examples of net.minecraft.client.particle.EntityExplodeFX


    else if(s.equals("portal"))
      fx = new EntityPortalFX(w, x, y, z, 0D, 0D, 0D);
    else if(s.equals("enchantmenttable"))
      fx = new EntityEnchantmentTableParticleFX(w, x, y, z, 0D, 0D, 0D);
    else if(s.equals("explode"))
      fx = new EntityExplodeFX(w, x, y, z, 0D, 0D, 0D);
    else if(s.equals("flame"))
      fx = new EntityFlameFX(w, x, y, z, 0D, 0D, 0D);
    else if(s.equals("lava"))
      fx = new EntityLavaFX(w, x, y, z);
    else if(s.equals("footstep"))
View Full Code Here


  @Override
  public void addEntityExplodeFX(World world, double d1, double d2, double d3, float f1, float f2, float f3) {
    if (!Config.enableParticleFX)
      return;

    getClientInstance().effectRenderer.addEffect(new EntityExplodeFX(world, d1, d2, d3, f1, f2, f3));
  }
View Full Code Here

TOP

Related Classes of net.minecraft.client.particle.EntityExplodeFX

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.