-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.lua
87 lines (74 loc) · 1.29 KB
/
init.lua
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
function _init()
--init state--
_update=update_title
_draw=draw_title
--496,50 start
debug=false
p={
sp=1,
x=60,
y=496,
w=8,
h=8,
flp=false,
dx=0,
dy=0,
max_walk_dx=1,
max_dx=2,
max_dy=6,
max_slide=3.5,
acc=1.4,
walk_acc=0.4,
jump_acc=2,
boost=0,
boost_max=4.8,
anim=0,
grounded=false,
running=false,
crouching=false,
jumping=false,
falling=false,
lying=false,
landing=false,
smash=false,
dir=false,
hit=false,
lock_jump=false
}
clouds = {}
for i=0,10 do
add(clouds,{
x=rnd(128),
y=rnd(128),
spd=1+rnd(0.5),
w=32+rnd(32)
})
end
menu_pos=1
blink_c=7
blink_c1=7
blink_c2=6
blink_rate=0
blink_speed=5
frames=0
seconds=0
minutes=0
menu_music=true
game_music=true
show_time=true
max_menu=0
init_lvl=1
s=0
gravity=0.24
friction=0.2
friciton_ice=0.6
air_time=0
jump_counter=0
--camera
cam_x=0
cam_y=0
map_start=0
map_end=1024
--weather--
rain ={}
end