aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts/world.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts/world.lua')
-rw-r--r--Scripts/world.lua35
1 files changed, 35 insertions, 0 deletions
diff --git a/Scripts/world.lua b/Scripts/world.lua
new file mode 100644
index 0000000..db0dc70
--- /dev/null
+++ b/Scripts/world.lua
@@ -0,0 +1,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()