Examples of VibrantFX


Examples of appeng.client.render.effects.VibrantFX

    {
      double d0 = (Platform.getRandomFloat() - 0.5F) * 0.26D;
      double d1 = (Platform.getRandomFloat() - 0.5F) * 0.26D;
      double d2 = (Platform.getRandomFloat() - 0.5F) * 0.26D;

      VibrantFX fx = new VibrantFX( w, x + d0, y + d1, z + d2, 0.0D, 0.0D, 0.0D );
      Minecraft.getMinecraft().effectRenderer.addEffect( fx );
    }
  }
View Full Code Here

Examples of appeng.client.render.effects.VibrantFX

    {
      double d0 = (r.nextFloat() - 0.5F) * 0.96D;
      double d1 = (r.nextFloat() - 0.5F) * 0.96D;
      double d2 = (r.nextFloat() - 0.5F) * 0.96D;

      VibrantFX fx = new VibrantFX( w, 0.5 + x + d0, 0.5 + y + d1, 0.5 + z + d2, 0.0D, 0.0D, 0.0D );

      Minecraft.getMinecraft().effectRenderer.addEffect( fx );
    }
  }
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.