Package appeng.client.render.effects

Examples of appeng.client.render.effects.CraftingFx


  {
    float x = (float) (((Platform.getRandomInt() % 100) * 0.01) - 0.5) * 0.7f;
    float y = (float) (((Platform.getRandomInt() % 100) * 0.01) - 0.5) * 0.7f;
    float z = (float) (((Platform.getRandomInt() % 100) * 0.01) - 0.5) * 0.7f;

    CraftingFx fx = new CraftingFx( w, posX + x, posY + y, posZ + z, Items.diamond );

    fx.motionX = -x * 0.2;
    fx.motionY = -y * 0.2;
    fx.motionZ = -z * 0.2;

 
View Full Code Here

TOP

Related Classes of appeng.client.render.effects.CraftingFx

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.