Package net.minecraft.client.particle

Examples of net.minecraft.client.particle.EntityBlockDustFX


                else if (s.startsWith("blockdust_"))
                {
                    astring = s.split("_", 3);
                    block = Block.getBlockById(Integer.parseInt(astring[1]));
                    k = Integer.parseInt(astring[2]);
                    fx = (new EntityBlockDustFX(w, x, y, z, 0D, 0D, 0D, block, k)).applyRenderColor(k);
                }
            }
        }
   
    if(mc.gameSettings.fancyGraphics)
View Full Code Here

TOP

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

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.