diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-10 23:55:54 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-10 23:55:54 -0400 |
commit | 2b095e30f7786526da9339ccada3aae7f2ab5df4 (patch) | |
tree | 2f1b89406e387308f7d59818963a14e0ed8c6858 /Scripts | |
parent | 2349bd2ffdd7b312c4b13e5794f12d2b7613f3b4 (diff) |
Started world system
Diffstat (limited to 'Scripts')
-rw-r--r-- | Scripts/init.lua | 5 | ||||
-rw-r--r-- | Scripts/world.lua | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua index f177462..78b2a76 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -129,6 +129,9 @@ wall = { } } +-- Create the world +dofile("Scripts/world.lua") + birdSpawn = game.spawn(bird); dogSpawn = game.spawn(cat); @@ -156,8 +159,6 @@ game.spawn({ end }); -dofile("Scripts/world.lua") - ------------------- -- SERIALIZING -- ------------------- diff --git a/Scripts/world.lua b/Scripts/world.lua index db0dc70..345a9b4 100644 --- a/Scripts/world.lua +++ b/Scripts/world.lua @@ -32,4 +32,5 @@ world = { end } -world:Generate() +--world:Generate() +game.worldRegister(world) |