minecraft-src/net/minecraft/client/particle/BubblePopParticle.java
2025-07-04 01:41:11 +03:00

54 lines
1.5 KiB
Java

package net.minecraft.client.particle;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.client.multiplayer.ClientLevel;
import net.minecraft.core.particles.SimpleParticleType;
@Environment(EnvType.CLIENT)
public class BubblePopParticle extends TextureSheetParticle {
private final SpriteSet sprites;
BubblePopParticle(ClientLevel level, double x, double y, double z, double xSpeed, double ySpeed, double zSpeed, SpriteSet sprites) {
super(level, x, y, z);
this.sprites = sprites;
this.lifetime = 4;
this.gravity = 0.008F;
this.xd = xSpeed;
this.yd = ySpeed;
this.zd = zSpeed;
this.setSpriteFromAge(sprites);
}
@Override
public void tick() {
this.xo = this.x;
this.yo = this.y;
this.zo = this.z;
if (this.age++ >= this.lifetime) {
this.remove();
} else {
this.yd = this.yd - this.gravity;
this.move(this.xd, this.yd, this.zd);
this.setSpriteFromAge(this.sprites);
}
}
@Override
public ParticleRenderType getRenderType() {
return ParticleRenderType.PARTICLE_SHEET_OPAQUE;
}
@Environment(EnvType.CLIENT)
public static class Provider implements ParticleProvider<SimpleParticleType> {
private final SpriteSet sprites;
public Provider(SpriteSet sprites) {
this.sprites = sprites;
}
public Particle createParticle(SimpleParticleType type, ClientLevel level, double x, double y, double z, double xSpeed, double ySpeed, double zSpeed) {
return new BubblePopParticle(level, x, y, z, xSpeed, ySpeed, zSpeed, this.sprites);
}
}
}