summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/jump.lua
blob: b69224ec96dcc513e4aa24a2a802e4a7a25d5820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
return {
  love.graphics.newQuad(metaSprites.bola.x * 5, metaSprites.bola.y * 2, metaSprites.bola.x, metaSprites.bola.y, metaSprites.bola.image:getDimensions()),
  start     = 1,
  fps       = 9,
  height    = -250,
  velocity  = 0,
  ground    = windowProfile.mode.height / 2,
  higher    = 0.15,
  higherMax = 0.15,
  limitButtonJump = false,
  isJumping = false,
}