Package mekanism.client.render.particle

Examples of mekanism.client.render.particle.EntityJetpackFlameFX


  {
    EntityFX fx = null;

    if(s.equals("flame"))
    {
      fx = new EntityJetpackFlameFX(world, x, y, z, velX, velY, velZ);
    }
    else if(s.equals("smoke"))
    {
      fx = new EntityJetpackSmokeFX(world, x, y, z, velX, velY, velZ);
    }
View Full Code Here

TOP

Related Classes of mekanism.client.render.particle.EntityJetpackFlameFX

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.