aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts/world.lua
blob: db0dc709e012f4acd5a120c384b9c2d824c41d3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
world = {
    Registry = {
        dirt = {
            id = "world0:dirt",
            texture = "Assets/dirt.png",
            normal = "Assets/dirt_normal.png"
        },
        stone = {
            id = "world0:stone",
            texture = "Assets/stone.png",
            normal = "Assets/dirt_normal.png"
        }
    },
    Seed = 5345345,
    Layers = 3,
    Generate = function(self)
        self.data = {}
        for Z = 0,2 do
            self.data[Z] = {}
            for X = 0,250 do
                self.data[Z][X] = {}
                YGen = math.floor(6*math.sin(X/20) + Z) + 64
                for Y = 0,128 do
                    if Y == YGen then
                        self.data[Z][X][Y] = 1
                    elseif Y < YGen then
                        self.data[Z][X][Y] = 2
                    end
                end
            end
        end
    end
}

world:Generate()