aboutsummaryrefslogtreecommitdiff
path: root/src/compileAndRun/pythonSupportFiles/LuxcenaNeo/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/compileAndRun/pythonSupportFiles/LuxcenaNeo/__init__.py')
-rw-r--r--src/compileAndRun/pythonSupportFiles/LuxcenaNeo/__init__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/compileAndRun/pythonSupportFiles/LuxcenaNeo/__init__.py b/src/compileAndRun/pythonSupportFiles/LuxcenaNeo/__init__.py
new file mode 100644
index 0000000..40b8e2d
--- /dev/null
+++ b/src/compileAndRun/pythonSupportFiles/LuxcenaNeo/__init__.py
@@ -0,0 +1,10 @@
+from NeoBehaviour import *
+from Strip import *
+
+strip = None # The strip object, should be set in entry.py, and is then accessible in the script-file
+forceStop = False # When set to true, execution of the script will halt
+
+# A function that could be used to halt the script
+def stop():
+ global forceStop
+ forceStop = True