From 7f85bd8ed84b23fc4e683ab90fc7babe288f1a27 Mon Sep 17 00:00:00 2001 From: Ben Connors Date: Tue, 24 Sep 2019 22:20:51 -0400 Subject: 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 --- constants.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 constants.py (limited to 'constants.py') 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" -- cgit v1.2.3