44 lines
1.6 KiB
Java
44 lines
1.6 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.client.particle;
|
|
|
|
import net.minecraft.client.multiplayer.ClientLevel;
|
|
import net.minecraft.client.particle.NoRenderParticle;
|
|
import net.minecraft.client.particle.Particle;
|
|
import net.minecraft.client.particle.ParticleProvider;
|
|
import net.minecraft.core.particles.ParticleTypes;
|
|
import net.minecraft.core.particles.SimpleParticleType;
|
|
import net.minecraft.util.RandomSource;
|
|
|
|
public class HugeExplosionSeedParticle
|
|
extends NoRenderParticle {
|
|
private HugeExplosionSeedParticle(ClientLevel level, double x, double y, double z) {
|
|
super(level, x, y, z, 0.0, 0.0, 0.0);
|
|
this.lifetime = 8;
|
|
}
|
|
|
|
@Override
|
|
public void tick() {
|
|
for (int i = 0; i < 6; ++i) {
|
|
double xx = this.x + (this.random.nextDouble() - this.random.nextDouble()) * 4.0;
|
|
double yy = this.y + (this.random.nextDouble() - this.random.nextDouble()) * 4.0;
|
|
double zz = this.z + (this.random.nextDouble() - this.random.nextDouble()) * 4.0;
|
|
this.level.addParticle(ParticleTypes.EXPLOSION, xx, yy, zz, (float)this.age / (float)this.lifetime, 0.0, 0.0);
|
|
}
|
|
++this.age;
|
|
if (this.age == this.lifetime) {
|
|
this.remove();
|
|
}
|
|
}
|
|
|
|
public static class Provider
|
|
implements ParticleProvider<SimpleParticleType> {
|
|
@Override
|
|
public Particle createParticle(SimpleParticleType options, ClientLevel level, double x, double y, double z, double xAux, double yAux, double zAux, RandomSource random) {
|
|
return new HugeExplosionSeedParticle(level, x, y, z);
|
|
}
|
|
}
|
|
}
|
|
|