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 /constants.py |
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 'constants.py')
-rw-r--r-- | constants.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/constants.py b/constants.py new file mode 100644 index 0000000..7008ffc --- /dev/null +++ b/constants.py @@ -0,0 +1,13 @@ +"""Constants module. + +Contains some constants used throughout. +""" + +INFTY = -1 +AUTO = -2 + +BXW = "{http://unsuspicious.services/bxw}" + +SCENE = "Scene" +AUDIO = "Audio" +CHASER = "Chaser" |