Package net.minecraft.client.particle

Examples of net.minecraft.client.particle.EntitySplashFX


    else if(s.equals("lava"))
      fx = new EntityLavaFX(w, x, y, z);
    else if(s.equals("footstep"))
      fx = new EntityFootStepFX(mc.renderEngine, w, x, y, z);
    else if(s.equals("splash"))
      fx = new EntitySplashFX(w, x, y, z, 0D, 0D, 0D);
    else if(s.equals("wake"))
      fx = new EntityFishWakeFX(w, x, y, z, 0D, 0D, 0D);
    else if(s.equals("largesmoke"))
      fx = new EntitySmokeFX(w, x, y, z, 0D, 0D, 0D, 2.5F);
    else if(s.equals("cloud"))
View Full Code Here

TOP

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

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.