blob: 3f0c187800dd024f8d92c38cef8d5d874b2626d9 (
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
|
<?xml version="1.0"?>
<World>
<style bgm="assets/music/town.ogg" folder="assets/style/winter/">
<layer path="bg/bg.png"/>
<layer path="bg/bgFarMountain.png"/>
<layer path="bg/dirt.png"/>
<layer path="bg/grass.png"/>
</style>
<generation>
x = 0
ground = function()
if (x == 600) then
height = -1
else
height = math.sin(x * 3.14 / 90) * 50 + 60
end
x = x + 1
end
grass = function()
height = math.random(2, 4)
end
</generation>
<weather>Rainy</weather>
<time>10000</time>
</World>
|