f37812be3e
I may have got a bit behind with version control. A lot behind, in fact. Maybe I'll go back and split this sometime - then again, I probably won't. But hey, at least it's here!
36 lines
1.2 KiB
Java
36 lines
1.2 KiB
Java
package electroblob.wizardry.client.particle;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
//@SideOnly(Side.CLIENT)
|
|
public class ParticleMagicBubble extends ParticleWizardry {
|
|
|
|
public ParticleMagicBubble(World world, double x, double y, double z){
|
|
super(world, x, y, z);
|
|
this.setRBGColorF(1, 1, 1);
|
|
this.setParticleTextureIndex(32);
|
|
this.setSize(0.02F, 0.02F);
|
|
this.particleScale *= this.rand.nextFloat() * 0.6F + 0.2F;
|
|
// this.motionX = par8 * 0.20000000298023224D + (double)((float)(Math.random() * 2.0D - 1.0D) * 0.02F);
|
|
// this.motionY = par10 * 0.20000000298023224D + (double)((float)(Math.random() * 2.0D - 1.0D) * 0.02F);
|
|
// this.motionZ = par12 * 0.20000000298023224D + (double)((float)(Math.random() * 2.0D - 1.0D) * 0.02F);
|
|
this.particleMaxAge = (int)(8.0D / (Math.random() * 0.8D + 0.2D));
|
|
}
|
|
|
|
@Override
|
|
public void onUpdate(){
|
|
this.prevPosX = this.posX;
|
|
this.prevPosY = this.posY;
|
|
this.prevPosZ = this.posZ;
|
|
this.motionY += 0.002D;
|
|
this.move(this.motionX, this.motionY, this.motionZ);
|
|
this.motionX *= 0.8500000238418579D;
|
|
this.motionY *= 0.8500000238418579D;
|
|
this.motionZ *= 0.8500000238418579D;
|
|
|
|
if(this.particleMaxAge-- <= 0){
|
|
this.setExpired();
|
|
}
|
|
}
|
|
}
|