diff --git a/ascii8x8.pyc b/ascii8x8.pyc new file mode 100644 index 0000000..d11c710 Binary files /dev/null and b/ascii8x8.pyc differ diff --git a/effects.py b/effects.py index c5d251e..a2f5120 100644 --- a/effects.py +++ b/effects.py @@ -339,8 +339,9 @@ 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): + mine = [74, 89, 83] + for ord in mine: self.wall.clear() - # Set every pixel to the background color, since ascii8x8 will only # color an 8x8 section. for x in range(self.wall.width): @@ -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): diff --git a/effects.pyc b/effects.pyc new file mode 100644 index 0000000..ad3247b Binary files /dev/null and b/effects.pyc differ diff --git a/wall.pyc b/wall.pyc new file mode 100644 index 0000000..8ed701f Binary files /dev/null and b/wall.pyc differ