scenes/levels: nerf a bit the jump

This commit is contained in:
Kazhnuz 2019-03-05 19:05:54 +01:00
parent 7b99c2588c
commit b6af6263e9
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ function Entity:initPhysics(level, collType, x, y, w, h)
self.obj = self.world.obj
self.collType = collType
self.gacc = 500
self.gacc = 550
self.xsp = 0
self.ysp = 0

View File

@ -51,7 +51,7 @@ function Player:initMovement()
self.dec = 0.5*60
self.frc = self.acc
self.grav = 1
self.jmp = - 6*60
self.jmp = -5*60
self.isJumping = false
end