bzr branch
http://9ix.org/bzr/ld28
3
by Josh C
add a couple other clones that move randomly |
1 |
NotPlayer = Fill:extend { |
2 |
fill = {255,0,0}, |
|
3 |
width = 16, height = 16, |
|
4 |
queue = deque.new(), |
|
5 |
doMove = function(self) |
|
4
by Josh C
more clones, no null movement |
6 |
local dir = math.random(1,4) |
3
by Josh C
add a couple other clones that move randomly |
7 |
|
8 |
if dir == 1 then |
|
9 |
self.x = self.x - self.width |
|
10 |
elseif dir == 2 then |
|
11 |
self.x = self.x + self.width |
|
12 |
elseif dir == 3 then |
|
13 |
self.y = self.y - self.height |
|
14 |
elseif dir == 4 then |
|
15 |
self.y = self.y + self.height |
|
16 |
end |
|
17 |
end |
|
18 |
} |