Examples of FXWisp


Examples of vazkii.botania.client.fx.FXWisp

  @Override
  public void wispFX(World world, double x, double y, double z, float r, float g, float b, float size, float motionx, float motiony, float motionz, float maxAgeMul) {
    if(!doParticle())
      return;

    FXWisp wisp = new FXWisp(world, x, y, z, size, r, g, b, distanceLimit, depthTest, maxAgeMul);
    wisp.motionX = motionx;
    wisp.motionY = motiony;
    wisp.motionZ = motionz;

    Minecraft.getMinecraft().effectRenderer.addEffect(wisp);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.