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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
bird = {
Player = 0,
Position = {
x = 150,
y = 75
},
Velocity = {
x = 0.0,
y = 0.0
},
Name = "bord",
Render = {
texture = "Assets/player.png",
visible = true
},
Light = {
r = 1.0,
g = 1.0,
b = 1.0,
strength = 1.0
},
Idle = function(self)
--if (self.visibleTick >= 20) then
-- self.Render.visible = not self.Render.visible
-- self.visibleTick = 0
--end
--self.visibleTick = self.visibleTick + 1
end,
PhysicsIdle = function(self)
if self.Velocity.x < 0 then
self.Render.flipx = true
elseif self.Velocity.x > 0 then
self.Render.flipx = false
end
end,
visibleTick = 0
}
cat = {
Velocity = {
x = 0.0,
y = 0.0
},
Position = {
x = 180,
y = -75
},
Render = {
texture = "Assets/cat.png",
normal = "Assets/cat_normal.png",
visible = true
},
counter = 0;
Idle = function(self)
self.Velocity.x = -100 * math.sin(math.rad(self.counter));
self.Velocity.y = 100 * math.cos(math.rad(self.counter));
self.counter = self.counter + 5;
end,
PhysicsIdle = function(self)
if self.Velocity.x < 0 then
self.Render.flipx = true
elseif self.Velocity.x > 0 then
self.Render.flipx = false
end
end
}
animal = {
Name = "animal",
Velocity = { -- This will automatically assign position to (0,0)
x = 0.0,
y = 0.0
},
Render = {
texture = "Assets/rabbit.png",
visible = true
},
Light = {
r = 0.0,
b = 1.0,
g = 0.2,
strength = 1.0
},
Idle = function(self)
self.Velocity.x = -200 * math.sin(math.rad(self.counter));
self.Velocity.y = 500 * math.cos(math.rad(self.counter*5));
self.counter = self.counter + 5;
end,
counter = 0;
}
wall = {
Position = {
y = -100
},
Render = {
texture = "Assets/rock.png",
normal = "Assets/rock_normal.png",
visible = true
}
}
birdSpawn = game.spawn(bird);
dogSpawn = game.spawn(cat);
animalSpawn = game.spawn(animal);
wallSpawn = game.spawn(wall);
game.spawn({
Velocity = {
x = 0,
y = 0
},
Light = {
r = 0.8,
g = 0.1,
b = 0.2,
strength = 0.75
},
counter = 0;
Idle = function(self)
self.Velocity.x = -100 * math.sin(math.rad(self.counter));
self.Velocity.y = 100 * math.cos(math.rad(self.counter));
self.counter = self.counter + 5;
end
});
|