Adjust giblet velocity

This commit is contained in:
Ketchetwahmeegwun T. Southall 2022-01-30 06:25:54 -08:00
parent ca4fc063e9
commit 001dbe9b44

View File

@ -17,8 +17,8 @@ export class GibletEntity extends Entity {
super.update(delta)
this.elapsed += delta
this.velocity[0] *= 0.85
this.velocity[1] *= 0.85
this.velocity[0] *= 0.80
this.velocity[1] *= 0.80
// Eh... let's manually handle velocity
this.x += this.velocity[0]