diff options
author | Aki <nthirtyone@gmail.com> | 2016-07-21 14:50:43 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2016-07-21 14:50:43 +0200 |
commit | 2a5b6541dc41bcc818b4023f4228706faace4774 (patch) | |
tree | 0a09513463303d0325e30247469054829f6bf1c9 | |
parent | 3a9f07bac86be9f9c13ed5b6761ac9255c50ba4e (diff) | |
download | roflnauts-2a5b6541dc41bcc818b4023f4228706faace4774.zip roflnauts-2a5b6541dc41bcc818b4023f4228706faace4774.tar.gz roflnauts-2a5b6541dc41bcc818b4023f4228706faace4774.tar.bz2 |
Contributors list corrected
-rw-r--r-- | maplist.lua | 4 | ||||
-rw-r--r-- | menu.lua | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/maplist.lua b/maplist.lua new file mode 100644 index 0000000..ef45fce --- /dev/null +++ b/maplist.lua @@ -0,0 +1,4 @@ +return { + "default", + "emo" +}
\ No newline at end of file @@ -17,6 +17,8 @@ Menu = { portrait_sheet = require "portraits", scale = getScale(), countdown = 10, + maplist = require "maplist", + map = 1, header_move = 0 } @@ -80,7 +82,7 @@ function Menu:draw() local dy = self:getBounce()*4 love.graphics.printf("ROFLNAUTS2",(w/2)*scale,(32+dy)*scale,336,"center",(angle*5)*math.pi/180,scale,scale,168,12) love.graphics.setFont(Font) - love.graphics.printf("Use W,S,A,D,G,H or Arrows,Enter,Rshift or Gamepad\n\nA game by Awesomenauts Community\nParaDoX, Burningdillo, MilkingChicken, Seltzy, Bronkey, Gnarlyman, Aki\nBased on a game by Jan Willem Nijman, Paul Veer and Bits_Beats XOXO", (w/2)*scale, (h-42)*scale, 336, "center", 0, scale, scale, 168, 4) + love.graphics.printf("Use W,S,A,D,G,H or Arrows,Enter,Rshift or Gamepad\n\nA game by Awesomenauts Community\nSeltzy, ParaDoX, MilkingChicken, Burningdillo, Bronkey, Aki\nBased on a game by Jan Willem Nijman, Paul Veer and Bits_Beats XOXO", (w/2)*scale, (h-42)*scale, 336, "center", 0, scale, scale, 168, 4) end function Menu:update(dt) |