Examples of FXSparkle


Examples of vazkii.botania.client.fx.FXSparkle

  @Override
  public void sparkleFX(World world, double x, double y, double z, float r, float g, float b, float size, int m, boolean fake) {
    if(!doParticle() && !fake)
      return;

    FXSparkle sparkle = new FXSparkle(world, x, y, z, size, r, g, b, m);
    sparkle.fake = sparkle.noClip = fake;
    if(noclipEnabled)
      sparkle.noClip = true;
    Minecraft.getMinecraft().effectRenderer.addEffect(sparkle);
  }
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.