Update demo to use tiny-ecs 2.

This commit is contained in:
Calvin Rose
2016-03-11 20:39:15 -05:00
parent 4f134e8aa3
commit 27a123f2d1
4 changed files with 352 additions and 200 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ end
function Intro:update(dt)
self.time = self.time + dt
if love.keyboard.isDown(" ") and self.time > 0.55 then
if love.keyboard.isDown("space") and self.time > 0.55 then
world:add(TransitionScreen(true, Level("assets/lvl1")))
end
end