Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added ascii8x8.pyc
Binary file not shown.
5 changes: 3 additions & 2 deletions effects.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,8 @@ def run(self):

# Display upper and lower case letters. The break between 90 and 97 is
# for non-letter keyboard characters.
for ord in range(65, 91) + range(97, 123):
hk = [72, 75, 80, 65, 82, 75]
for ord in hk:
self.wall.clear()

# Set every pixel to the background color, since ascii8x8 will only
Expand All @@ -351,7 +352,7 @@ def run(self):
ascii8x8.draw_chr(chr(ord), self.wall, foreground, background,
x_offset, y_offset)
self.wall.draw()
time.sleep(.1)
time.sleep(.5)

class Bouncer(Effect):
class Ball(object):
Expand Down
Binary file added effects.pyc
Binary file not shown.
Binary file added wall.pyc
Binary file not shown.