summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/bola.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/bola.lua')
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/bola.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/bola.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/bola.lua
new file mode 100644
index 0000000..116c72c
--- /dev/null
+++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/bola.lua
@@ -0,0 +1,15 @@
+draw.bola = function()
+ love.graphics.draw(
+ metaSprites.bola.image,
+ quad.bola,
+ character.bola.position.x,
+ character.bola.position.y,
+ character.bola.orientation,
+ character.bola.scale.x,
+ character.bola.scale.y,
+ character.bola.origin.x,
+ character.bola.origin.y
+ )
+-- bolaDraw.motion()
+-- game.draw(metaSprites.bola, quad.bola, character.bola)
+end