summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/game/jump.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/game/jump.lua')
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/game/jump.lua9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/game/jump.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/game/jump.lua
deleted file mode 100644
index 1891af5..0000000
--- a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/game/jump.lua
+++ /dev/null
@@ -1,9 +0,0 @@
-game.jump = function(metaSprites, character, dt)
- if character.jump.limitButtonJump == false then
- character.jump.higher = character.jump.higher - dt
- character.jump.velocity = character.jump.velocity + character.jump.height * (dt / character.jump.higherMax)
-
- -- game.animation(character.jump, dt)
- -- metaSprites.quad = character.jump[character.jump.currentFrame]
- end
-end