Package net.minecraft.client.particle

Examples of net.minecraft.client.particle.EntityDropParticleFX


            if (dPosX * dPosX + dPosY * dPosY + dPosZ * dPosZ < maxDistSqrd * maxDistSqrd)
            {
                if (particleID.equals("sludgeDrip"))
                {
                    particle = new EntityDropParticleFX(mc.theWorld, position.x, position.y, position.z, Material.water);
                }
            }

            if (particle != null)
            {
View Full Code Here


    else if(s.equals("reddust"))
      fx = new EntityReddustFX(w, x, y, z, 0F, 0F, 0F);
    else if(s.equals("snowballpoof"))
      fx = new EntityBreakingFX(w, x, y, z, Items.snowball);
    else if(s.equals("dripWater"))
      fx = new EntityDropParticleFX(w, x, y, z, Material.water);
    else if(s.equals("dripLava"))
      fx = new EntityDropParticleFX(w, x, y, z, Material.lava);
    else if(s.equals("snowshovel"))
      fx = new EntitySnowShovelFX(w, x, y, z, 0D, 0D, 0D);
    else if(s.equals("slime"))
      fx = new EntityBreakingFX(w, x, y, z, Items.slime_ball);
    else if(s.equals("heart"))
View Full Code Here

TOP

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

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.