blob: 40b8e2d4c331e025507ab2c46dd19b65f826d799 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
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
|