diff --git a/gamecore/scenemanager.lua b/gamecore/scenemanager.lua index bbb9b08..5a9f88f 100644 --- a/gamecore/scenemanager.lua +++ b/gamecore/scenemanager.lua @@ -108,9 +108,9 @@ end function SceneManager:draw() self.controller.screen:apply() if (self.currentScene ~= nil) then + self.currentScene:drawWorld() self.currentScene:draw(dt) self.currentScene.menusystem:draw() - self.currentScene:drawWorld() end self.controller.screen:cease() end