aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/entities/EntityFXPollution.java
diff options
context:
space:
mode:
authorAlexdoru <57050655+Alexdoru@users.noreply.github.com>2024-10-21 21:21:33 +0200
committerGitHub <noreply@github.com>2024-10-21 19:21:33 +0000
commit901cb0d294b0c4f114bb247fbd7d6f97e7484f3c (patch)
treefd4900d59f98ec34c9119c2003f79f7467abddf0 /src/main/java/gregtech/common/entities/EntityFXPollution.java
parente741976ea6a6fa5dbcb45813fd1e2ca368331ba5 (diff)
downloadGT5-Unofficial-901cb0d294b0c4f114bb247fbd7d6f97e7484f3c.tar.gz
GT5-Unofficial-901cb0d294b0c4f114bb247fbd7d6f97e7484f3c.tar.bz2
GT5-Unofficial-901cb0d294b0c4f114bb247fbd7d6f97e7484f3c.zip
Import pollution mixins from hodgepodge (#3395)
Co-authored-by: Martin Robertz <dream-master@gmx.net> Co-authored-by: boubou19 <miisterunknown@gmail.com>
Diffstat (limited to 'src/main/java/gregtech/common/entities/EntityFXPollution.java')
-rw-r--r--src/main/java/gregtech/common/entities/EntityFXPollution.java59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/main/java/gregtech/common/entities/EntityFXPollution.java b/src/main/java/gregtech/common/entities/EntityFXPollution.java
deleted file mode 100644
index facd3d3364..0000000000
--- a/src/main/java/gregtech/common/entities/EntityFXPollution.java
+++ /dev/null
@@ -1,59 +0,0 @@
-package gregtech.common.entities;
-
-import java.util.Random;
-
-import net.minecraft.client.particle.EntityFX;
-import net.minecraft.world.World;
-
-public class EntityFXPollution extends EntityFX {
-
- public EntityFXPollution(World world, double x, double y, double z) {
- super(world, x, y, z, 0, 0, 0);
-
- this.particleRed = 0.25F;
- this.particleGreen = 0.2F;
- this.particleBlue = 0.25F;
-
- this.motionX *= 0.1D;
- this.motionY *= -0.1D;
- this.motionZ *= 0.1F;
-
- Random random = world.rand;
- this.motionX += random.nextFloat() * -1.9D * random.nextFloat() * 0.1D;
- this.motionY += random.nextFloat() * -0.5D * random.nextFloat() * 0.1D * 5.0D;
- this.motionZ += random.nextFloat() * -1.9D * random.nextFloat() * 0.1D;
-
- this.particleTextureIndexX = 0;
- this.particleTextureIndexY = 0;
-
- this.particleMaxAge = (int) ((double) 20 / ((double) random.nextFloat() * 0.8D + 0.2D));
-
- this.particleScale *= 0.75F;
- this.noClip = true;
- }
-
- @Override
- public void onUpdate() {
- this.prevPosX = this.posX;
- this.prevPosY = this.posY;
- this.prevPosZ = this.posZ;
-
- if (this.particleAge++ >= this.particleMaxAge) {
- this.setDead();
- } else {
- this.motionY -= 5.0E-4D;
- this.moveEntity(this.motionX, this.motionY, this.motionZ);
- if (this.posY == this.prevPosY) {
- this.motionX *= 1.1D;
- this.motionZ *= 1.1D;
- }
- this.motionX *= 0.96D;
- this.motionY *= 0.96D;
- this.motionZ *= 0.96D;
- if (this.onGround) {
- this.motionX *= 0.7D;
- this.motionZ *= 0.7D;
- }
- }
- }
-}