diff options
| author | 1029chris <1029chris@gmail.com> | 2016-06-06 14:20:00 -0700 |
|---|---|---|
| committer | 1029chris <1029chris@gmail.com> | 2016-06-06 14:20:00 -0700 |
| commit | 0c3a6ca6190ad47e5fbe1dfaa45c45aa07b4ced9 (patch) | |
| tree | 479397f6f1b1e150ece5720669f68d184c4fcacf /var.lua | |
| parent | 2804461a5a44997f240ba769e0ac9e2d86080fff (diff) | |
Finished Music player, added new songs
Music player buttons work
Music player has bouncing green bars
Music player shows actual title of song
New songs that can be played
Diffstat (limited to 'var.lua')
| -rw-r--r-- | var.lua | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -238,6 +238,9 @@ function loadVar() f.music = {} f.music[1] = {name="chill.mp3",x=0,y=0,hl=false} f.music[2] = {name="rage.mp3",x=0,y=0,hl=false} + f.music[3] = {name="sophie.mp3",x=0,y=0,hl=false} + f.music[4] = {name="oyeah.mp3",x=0,y=0,hl=false} + f.music[5] = {name="finale.mp3",x=0,y=0,hl=false} f.videos = {} f.videos[1] = {name="wtf.avi",x=0,y=0,hl=false} f.videos[2] = {name="lol.avi",x=0,y=0,hl=false} @@ -257,6 +260,9 @@ function loadVar() mplay.drag = false mplay.m = 0 mplay.p = false + mplay.pr = false + mplay.title = "Nothing" + mplay.bar = {} end function loadPre() love.graphics.setDefaultFilter("nearest", "nearest") |
