From 2564533a4860a8452abc27ba05115ca11ed4a787 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Thu, 12 Sep 2019 18:16:06 -0400 Subject: Ability to pass world data into Lua --- Scripts/world.lua | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'Scripts/world.lua') diff --git a/Scripts/world.lua b/Scripts/world.lua index a6224ab..54fcdc0 100644 --- a/Scripts/world.lua +++ b/Scripts/world.lua @@ -20,24 +20,29 @@ world = { Layers = 2, Generate = function(self) math.randomseed(self.Seed) - self.data = {} + --self.data = {} for Z = 0,self.Layers do - self.data[Z] = {} + --self.data[Z] = {} for X = 0,250 do - self.data[Z][X] = {} + --self.data[Z][X] = {} YGen = math.floor(6*math.sin(X/20) + Z) + 64 YDepth = math.random(2,5) for Y = 0,128 do if Y == YGen then - self.data[Z][X][Y] = 0 + --self.data[Z][X][Y] = 0 + self:setData(X, Y, Z, 0); elseif Y < YGen and Y > (YGen - YDepth) then - self.data[Z][X][Y] = 1 + --self.data[Z][X][Y] = 1 + self:setData(X, Y, Z, 1); elseif Y < YGen then - self.data[Z][X][Y] = 2 + --self.data[Z][X][Y] = 2 + self:setData(X, Y, Z, 2); end + --print(X..","..Y..","..Z); end end end + print("Done with world gen"); end } -- cgit v1.2.3