gamecore: don't crash when there is no scene

This commit is contained in:
Kazhnuz 2019-03-16 14:43:37 +01:00
parent eab1044dc7
commit 2207ebcd89

View file

@ -42,15 +42,19 @@ function SceneManager:update(dt)
end end
function SceneManager:mousemoved(x, y, dx, dy) function SceneManager:mousemoved(x, y, dx, dy)
if (self.currentScene ~= nil) then
self.currentScene.mouse.x, self.currentScene.mouse.x,
self.currentScene.mouse.y = x, y self.currentScene.mouse.y = x, y
self.currentScene:mousemoved(x, y, dx, dy) self.currentScene:mousemoved(x, y, dx, dy)
self.currentScene.menusystem:mousemoved(x, y, dx, dy) self.currentScene.menusystem:mousemoved(x, y, dx, dy)
end
end end
function SceneManager:mousepressed( x, y, button, istouch ) function SceneManager:mousepressed( x, y, button, istouch )
if (self.currentScene ~= nil) then
self.currentScene:mousepressed( x, y, button, istouch ) self.currentScene:mousepressed( x, y, button, istouch )
self.currentScene.menusystem:mousepressed( x, y, button, istouch ) self.currentScene.menusystem:mousepressed( x, y, button, istouch )
end
end end
function SceneManager:clearScene() function SceneManager:clearScene()