diff options
author | Aki <nthirtyone@gmail.com> | 2017-07-11 01:21:31 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-07-11 01:21:31 +0200 |
commit | 4e69182a6d36966847430f01b440a9cdac0e4cdc (patch) | |
tree | b2d29a02e2cd10929a3f91926147a882b47fb42d | |
parent | 0b3de32ee8b9d79d7b818a6742ab577ff47525e6 (diff) | |
download | roflnauts-4e69182a6d36966847430f01b440a9cdac0e4cdc.zip roflnauts-4e69182a6d36966847430f01b440a9cdac0e4cdc.tar.gz roflnauts-4e69182a6d36966847430f01b440a9cdac0e4cdc.tar.bz2 |
Moved scene managment to SceneManager (non-existant)
-rw-r--r-- | main.lua | 12 | ||||
-rw-r--r-- | not/SceneManager.lua | 10 |
2 files changed, 11 insertions, 11 deletions
@@ -1,17 +1,6 @@ --- Roflnauts 2 -- TODO: Any lua source file in root directory that is not `main` (this file), `conf` should be moved to a proper directory. Its name should be changed to show what it contains. --- Pretend you didn't see this --- This is work for scene manager --- TODO: Create SceneManager or similar class. -Scene = nil -function changeScene (scene) - if Scene ~= nil then - Scene:delete() - end - Scene = scene -end - -- Should be moved to scene/camera -- TODO: move following functions to `Camera`. function getScale () @@ -24,6 +13,7 @@ end -- Require require "iconsList" +require "not.SceneManager" require "not.World" require "not.Camera" require "not.Menu" diff --git a/not/SceneManager.lua b/not/SceneManager.lua new file mode 100644 index 0000000..0a6cb4b --- /dev/null +++ b/not/SceneManager.lua @@ -0,0 +1,10 @@ +-- Pretend you didn't see this +-- This is work for scene manager +-- TODO: Create SceneManager or similar class. +Scene = nil +function changeScene (scene) + if Scene ~= nil then + Scene:delete() + end + Scene = scene +end |