Package net.minecraft.client.particle

Examples of net.minecraft.client.particle.EntityHeartFX


    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"))
      fx = new EntityHeartFX(w, x, y, z, 0D, 0D, 0D);
    else if(s.equals("angryVillager"))
    {
      fx = new EntityHeartFX(w, x, y, z, 0D, 0D, 0D);
      fx.setParticleTextureIndex(81);
      fx.setRBGColorF(1.0F, 1.0F, 1.0F);
    }
    else if(s.equals("happyVillager"))
    {
View Full Code Here

TOP

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

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.