changeset 297:e76ab8bd4580

more light lists for chase
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 18 Jun 2005 18:12:13 +0000
parents e99bd20dad85
children d0f29e247af4
files light9/Effects.py
diffstat 1 files changed, 7 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/light9/Effects.py	Sat Jun 18 18:09:34 2005 +0000
+++ b/light9/Effects.py	Sat Jun 18 18:12:13 2005 +0000
@@ -2,12 +2,15 @@
 import light9.Submaster as Submaster
 from chase import chase as chase_logic
 
-__all__ = ['chase']
-
 thirds = 'third-l', 'third-c', 'third-r'
 thirds_bounce = 'third-l', 'third-c', 'third-r', 'third-c'
-flutter = ['scoop-l', 'scoop-c', 'scoop-r', 'down-c', 'down-l', 'down-r'] * 5
-random.shuffle(flutter)
+backs = ['back%d' % d for d in range(1, 11)]
+rand_flutter = ['scoop-l', 'scoop-c', 'scoop-r', 'down-c', 'down-l', 'down-r', 'cyc', 'zip_blue', 'zip_red', 'zip_green', 'zip_orange'] + backs
+rand_flutter *= 10
+random.shuffle(rand_flutter)
+
+# don't forget to update this!
+__all__ = ['chase', 'thirds', 'thirds_bounce', 'rand_flutter', 'backs']
 
 def chase(t, ontime=0.5, offset=0.2, onval=1.0, 
           offval=0.0, names=None, combiner=max):