aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts/world.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts/world.lua')
-rw-r--r--Scripts/world.lua17
1 files changed, 11 insertions, 6 deletions
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
}