Last active
August 29, 2015 14:00
-
-
Save Jezza/6dfa59e6ad07417491a1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void renderBiggerFlame(World world, double x, double y, double z, double velX, double velY, double velZ, float scale) { | |
| if (world.isRemote) | |
| return; | |
| EntityFX entityfx = new EntityFlameFX(world, x, y, z, velX, velY, velZ).multipleParticleScaleBy(scale); | |
| FMLClientHandler.instance().getClient().effectRenderer.addEffect(entityfx); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
public void renderBiggerFlame(World world, double x, double y, double z, double velX, double velY, double velZ, float scale) {
if (!world.isRemote)
return;
EntityFX entityfx = new EntityFlameFX(world, x, y, z, velX, velY, velZ).multipleParticleScaleBy(10F);
Minecraft.getMinecraft().effectRenderer.addEffect(entityfx);
}