diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-14 00:30:05 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-14 00:30:05 -0400 |
commit | 0e19992b820158f8e9c0fc16ddc372a5ea596f53 (patch) | |
tree | 222d9256992f0107db694a8246aed471b1d7301b /Scripts/world.lua | |
parent | c89b9aad8eadb3bfebaf4e6ae65ee6650e313fc7 (diff) |
Lua can now modify world size and world data
Diffstat (limited to 'Scripts/world.lua')
-rw-r--r-- | Scripts/world.lua | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Scripts/world.lua b/Scripts/world.lua index 655cdab..f87f108 100644 --- a/Scripts/world.lua +++ b/Scripts/world.lua @@ -26,14 +26,15 @@ world = { Generate = function(self) math.randomseed(self.Seed) + xsize, ysize, zsize = self:setSize(250, 128, 3) --self.data = {} - for Z = 0,self.Layers do + for Z = 0,zsize-1 do --self.data[Z] = {} - for X = 0,250 do + for X = 0,xsize-1 do --self.data[Z][X] = {} YGen = math.floor(6*math.sin(X/20) + Z) + 64 YDepth = math.random(2,5) - for Y = 0,128 do + for Y = 0,ysize-1 do if Y == YGen then --self.data[Z][X][Y] = 0 self:setData(X, Y, Z, "grass"); @@ -48,6 +49,7 @@ world = { end end end + self:setData(1000, 1345, 5, "grass"); -- Test error checking print("Done with world gen"); end } |