diff options
author | Ben Connors <benconnors@outlook.com> | 2019-09-24 22:20:51 -0400 |
---|---|---|
committer | Ben Connors <benconnors@outlook.com> | 2019-09-24 22:22:19 -0400 |
commit | 7f85bd8ed84b23fc4e683ab90fc7babe288f1a27 (patch) | |
tree | 5d0d7439040ace59388cdbbf8e2fd18408f9aa68 /examples |
Initial commit
- Basic functionality
- Can save/load to XML format (see examples folder)
- Can create and edit fixtures and channels
- Can create and edit Scenes and Audios
- Live updates through callbacks
Diffstat (limited to 'examples')
-rw-r--r-- | examples/workspace.xml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/examples/workspace.xml b/examples/workspace.xml new file mode 100644 index 0000000..8be8bbe --- /dev/null +++ b/examples/workspace.xml @@ -0,0 +1,38 @@ +<workspace xmlns="http://unsuspicious.services/bxw"> + <name>Test Workspace</name> + <author>Test Author</author> + <version>1</version> + <modified>2019-09-24T20:59:37.521229</modified> + + <fixtures> + <fixture name="RGB Fixture" id="0"> + <channel name="R"> + <ola universe="1" address="0"/> + </channel> + <channel name="G"> + <ola universe="1" address="1"/> + </channel> + <channel name="B"> + <ola universe="1" address="2"/> + </channel> + </fixture> + + <fixture name="Basic Fixture" id="1"> + <channel name="Intensity"> + <ola universe="1" address="3"/> + </channel> + </fixture> + </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> + + <function type="Audio" id="1" name="Intro" fade-in="0" fade-out="0"> + <filename>test.wav</filename> + </function> + </functions> +</workspace> |