diff options
| author | 1029chris <1029chris@gmail.com> | 2016-03-08 14:12:12 -0800 |
|---|---|---|
| committer | 1029chris <1029chris@gmail.com> | 2016-03-08 14:12:12 -0800 |
| commit | 5d8f2d1bf5bfdf69ee6218aaddb19ffef8d18005 (patch) | |
| tree | 7e087b404be0dbe0958218e8195af0d399d0b0ff /main.lua | |
| parent | ac56478967ce5069606b3ca38d0ea337aa1dde64 (diff) | |
Added Notifications
Diffstat (limited to 'main.lua')
| -rw-r--r-- | main.lua | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -14,6 +14,7 @@ function love.load() require "system" require "loading" require "elements" + require "notification" love.graphics.setDefaultFilter("nearest", "nearest") love.graphics.setBackgroundColor(0, 0, 0) love.graphics.setNewFont() @@ -42,6 +43,9 @@ function love.update(dt) elseif fade == 0 and fadeOpacity ~= 0 then fadeOpacity = fadeOpacity - 5 end + if scene == 1 then + updateSystem(dt) + end end function love.mousepressed(x, y, button) sys.mouse.p.x = x |
