aboutsummaryrefslogtreecommitdiff
path: root/operationscore/Renderer.py
diff options
context:
space:
mode:
Diffstat (limited to 'operationscore/Renderer.py')
-rw-r--r--operationscore/Renderer.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/operationscore/Renderer.py b/operationscore/Renderer.py
index 11fd8ca..8e31f8b 100644
--- a/operationscore/Renderer.py
+++ b/operationscore/Renderer.py
@@ -2,10 +2,12 @@
#Inheriting classes MUST define render which takes a light system and renders it.
#Inheriting classes may define initRenderer which is called after the dictionary
#is pulled from config.
+#TODO: multithreaded-rendering
from operationscore.SmootCoreObject import *
class Renderer(SmootCoreObject):
def init(self):
self.initRenderer()
+ threading.Thread.__init__(self)
def render(lightSystem):
pass
def initRenderer(self):