diff options
author | Ben Connors <benconnors@outlook.com> | 2019-09-29 17:58:03 -0400 |
---|---|---|
committer | Ben Connors <benconnors@outlook.com> | 2019-09-29 17:58:19 -0400 |
commit | 08424555f82bad0831e4ffad6cac68950512be8e (patch) | |
tree | c9f59407e87a7e0b8f5b41df439f7120e6044205 /examples/workspace.xml | |
parent | 2255278b0e81fc20faff48536f524e1466046c8a (diff) |
Some fixes
- Remove print statements
- Fix chaser scope and rendering
Diffstat (limited to 'examples/workspace.xml')
-rw-r--r-- | examples/workspace.xml | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/examples/workspace.xml b/examples/workspace.xml index c30e8ef..257c777 100644 --- a/examples/workspace.xml +++ b/examples/workspace.xml @@ -25,17 +25,30 @@ </fixtures> <functions> - <function type="Scene" id="0" name="Middle White"> - <value fixture="0" channel="0">127</value> - <value fixture="0" channel="1">127</value> - <value fixture="0" channel="2">127</value> + <function type="Scene" id="0" name="Red"> + <value fixture="0" channel="0">255</value> + <value fixture="0" channel="1">0</value> + <value fixture="0" channel="2">0</value> </function> - <function type="Audio" id="1" name="Intro" fade-in="0" fade-out="0" filename="tests/silence.m4a"/> + <function type="Scene" id="1" name="Green"> + <value fixture="0" channel="0">0</value> + <value fixture="0" channel="1">255</value> + <value fixture="0" channel="2">0</value> + </function> + + <function type="Scene" id="2" name="Blue"> + <value fixture="0" channel="0">0</value> + <value fixture="0" channel="1">0</value> + <value fixture="0" channel="2">255</value> + </function> + + <function type="Audio" id="3" name="Intro" fade-in="0" fade-out="0" filename="tests/silence.m4a"/> - <function type="Chaser" id="2" name="Chaser 1" advance-mode="Loop"> - <step id="3" name="Step 1" fade-in="10" fade-out="100" duration-mode="Manual" duration="infty" function="0"/> - <step id="4" name="Step 2" fade-in="500" fade-out="500" duration-mode="Inherit" function="1"/> + <function type="Chaser" id="4" name="Chaser 1" advance-mode="Loop"> + <step id="5" name="Step 1" fade-in="100" fade-out="100" duration-mode="Inherit" function="0"/> + <step id="6" name="Step 2" fade-in="100" fade-out="100" duration-mode="Inherit" function="1"/> + <step id="7" name="Step 3" fade-in="100" fade-out="100" duration-mode="Inherit" function="2"/> </function> </functions> |