Mercurial > code > home > repos > light9
comparison light8/Config.py @ 55:5e8c505bcc2c
bad cues replaced with bogus ones that can't harm things
author | dmcc |
---|---|
date | Mon, 08 Jul 2002 15:53:29 +0000 |
parents | 032b2b67bc10 |
children | 871da71fc254 |
comparison
equal
deleted
inserted
replaced
54:3011c1028eb7 | 55:5e8c505bcc2c |
---|---|
2 from time import time | 2 from time import time |
3 from __future__ import generators,division | 3 from __future__ import generators,division |
4 from Subs import * | 4 from Subs import * |
5 from Cue import * | 5 from Cue import * |
6 | 6 |
7 f1 = Fade('col blue', 0, 2, 100) | 7 f1 = Fade('bogus sub, i hope', 0, 2, 0.1) |
8 f2 = Fade('god', 1, 3, 50) | 8 |
9 f3 = Fade('house', 0, 4, 0) | 9 cues = [ |
10 f4 = Fade('col gree', 0, 8, 75) | 10 Cue("Seat filler", 0, 10, f1), |
11 | 11 ] |
12 g1 = Fade('edges', 1, 2, 20) | |
13 g2 = Fade('sidepost', 0, 4, 50) | |
14 g3 = Fade('cyc', 1, 5, 20) | |
15 g4 = Fade('*curtain', 0, 8, 15) | |
16 | |
17 c1 = Cue("This", 0, 10, f1, f2, f3, f4) | |
18 c2 = Cue("That", 0, 5, g1, g2, g3, g4) | |
19 c3 = Cue("The other", 1, 7, f1, g2, g3, f4) | |
20 | |
21 cues = [c1, c2, c3] | |
22 | 12 |
23 patch = { | 13 patch = { |
24 | 14 |
25 ('side l','sidepost1') : 45, # posts | 15 ('side l','sidepost1') : 45, # posts |
26 ('side r','sidepost2') : 46, | 16 ('side r','sidepost2') : 46, |