diff --git a/sonic-radiance.love/core/scenemanager.lua b/sonic-radiance.love/core/scenemanager.lua index 9f108f5..a3b5362 100644 --- a/sonic-radiance.love/core/scenemanager.lua +++ b/sonic-radiance.love/core/scenemanager.lua @@ -34,6 +34,7 @@ function SceneManager:update(dt) if (self.currentScene ~= nil) then local keys = self.controller.input.keys self.currentScene.keys = keys + self.currentScene.assets:update(dt) self.currentScene:update(dt) end end