diff options
author | Aki <nthirtyone@gmail.com> | 2017-07-12 11:09:05 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-07-12 11:09:05 +0200 |
commit | 6c6e2fe6ec84ec57f6336fa9d6e4136c0e1c9513 (patch) | |
tree | a93776e6f624773cbf11aeb53ed4c4ef05500d4f /not | |
parent | ea694c3659c801effaaf3361d3713f20517de3f5 (diff) | |
download | roflnauts-6c6e2fe6ec84ec57f6336fa9d6e4136c0e1c9513.zip roflnauts-6c6e2fe6ec84ec57f6336fa9d6e4136c0e1c9513.tar.gz roflnauts-6c6e2fe6ec84ec57f6336fa9d6e4136c0e1c9513.tar.bz2 |
All changeScene calls replaced with proper SceneManager calls
Diffstat (limited to 'not')
-rw-r--r-- | not/World.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/not/World.lua b/not/World.lua index be29557..8108a8a 100644 --- a/not/World.lua +++ b/not/World.lua @@ -195,7 +195,7 @@ function World:onNautKilled (naut) self:createRay(naut) local nauts = self:getNautsPlayable() if self.lastNaut then - changeScene(Menu()) + sceneManager:changeScene(Menu()) elseif #nauts < 2 then self.lastNaut = true naut:playSound(5, true) @@ -391,7 +391,7 @@ function World:controlpressed (set, action, key) table.insert(nauts, {naut.name, naut:getControllerSet()}) end local new = World(map, nauts) - changeScene(new) + sceneManager:changeScene(new) end for k,naut in pairs(self:getNautsAll()) do naut:controlpressed(set, action, key) |