| blc2 - Python library and frontend for running theatrical lighting and SFX. Written for the English 2041F fall 2019 theatre production of "The Cenci".
git clone https://benconnors.ca/git-repos/blc2 |
workspace.xml (2044B) - raw
1 <workspace xmlns="http://unsuspicious.services/bxw"> 2 <name>Test Workspace</name> 3 <author>Test Author</author> 4 <version>1</version> 5 <modified>2019-09-24T20:59:37.521229</modified> 6 7 <fixtures> 8 <fixture name="RGB Fixture" id="0"> 9 <channel name="R"> 10 <ola universe="1" address="0"/> 11 </channel> 12 <channel name="G"> 13 <ola universe="1" address="1"/> 14 </channel> 15 <channel name="B"> 16 <ola universe="1" address="2"/> 17 </channel> 18 </fixture> 19 20 <fixture name="Basic Fixture" id="1"> 21 <channel name="Intensity"> 22 <ola universe="1" address="3"/> 23 </channel> 24 </fixture> 25 </fixtures> 26 27 <functions> 28 <function type="Scene" id="0" name="Red"> 29 <value fixture="0" channel="0">255</value> 30 <value fixture="0" channel="1">0</value> 31 <value fixture="0" channel="2">0</value> 32 </function> 33 34 <function type="Scene" id="1" name="Green"> 35 <value fixture="0" channel="0">0</value> 36 <value fixture="0" channel="1">255</value> 37 <value fixture="0" channel="2">0</value> 38 </function> 39 40 <function type="Scene" id="2" name="Blue"> 41 <value fixture="0" channel="0">0</value> 42 <value fixture="0" channel="1">0</value> 43 <value fixture="0" channel="2">255</value> 44 </function> 45 46 <function type="Audio" id="3" name="Intro" fade-in="0" fade-out="0" filename="tests/silence.m4a"/> 47 48 <function type="Chaser" id="4" name="Chaser 1" advance-mode="Loop"> 49 <step id="5" name="Step 1" fade-in="100" fade-out="100" duration-mode="Inherit" function="0"/> 50 <step id="6" name="Step 2" fade-in="100" fade-out="100" duration-mode="Inherit" function="1"/> 51 <step id="7" name="Step 3" fade-in="100" fade-out="100" duration-mode="Inherit" function="2"/> 52 </function> 53 54 </functions> 55 </workspace>