Package net.minecraft.client.particle

Examples of net.minecraft.client.particle.EntityHugeExplodeFX


  {
    Minecraft mc = Minecraft.getMinecraft();
    //return mc.renderGlobal.doSpawnParticle(s, x, y, z, 0.01D, 0.01D, 0.01D);
    EntityFX fx = null;
    if(s.equals("hugeexplosion"))
      fx = new EntityHugeExplodeFX(w, x, y, z, 0D, 0D, 0D);
    else if(s.equals("largeexplode"))
      fx = new EntityLargeExplodeFX(mc.renderEngine, w, x, y, z, 0D, 0D, 0D);
    else if(s.equals("fireworksSpark"))
      fx = new EntityFireworkSparkFX(w, x, y, z, 0D, 0D, 0D, mc.effectRenderer);
    else if(s.equals("bubble"))
View Full Code Here

TOP

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

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.