More fixes, vents generation prototype

This commit is contained in:
paulevsGitch 2020-12-04 15:52:44 +03:00
parent a93d7b7ef1
commit cec37f10d6
5 changed files with 72 additions and 12 deletions

View file

@ -28,8 +28,8 @@ public class ParticleGeyser extends SpriteBillboardParticle {
if (this.age >= this.maxAge + 40) {
this.setColorAlpha((this.maxAge - this.age) / 40F);
}
this.velocityX = 0;
this.velocityZ = 0;
//this.velocityX = 0;
//this.velocityZ = 0;
this.velocityY = 0.125;
super.tick();
}