aboutsummaryrefslogtreecommitdiff
path: root/guile/starlet/playback.scm
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2023-04-01 21:39:42 +0200
committerThomas White <taw@physics.org>2023-04-01 21:56:53 +0200
commitc46e52033a8275dc80f7a8db0968c173ee6f25d0 (patch)
tree3f8be0c626571e3eac21f6ecd9efa4bb5b2eb8a7 /guile/starlet/playback.scm
parentfcf8d7c6fdd5b295fff4e5696126336575340f26 (diff)
Separate 'engine' and 'scanout'
The new module "engine" contains everything to do with working out the final attribute values. This module should be referenced for anything that needs to register states, get values etc. Now, "scanout" is only about converting attribute values to DMX values and sending them to OLA. This module only needs to be referenced by fixture definitions, and once by the top level program.
Diffstat (limited to 'guile/starlet/playback.scm')
-rw-r--r--guile/starlet/playback.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guile/starlet/playback.scm b/guile/starlet/playback.scm
index 551c023..2d20137 100644
--- a/guile/starlet/playback.scm
+++ b/guile/starlet/playback.scm
@@ -30,7 +30,7 @@
#:use-module (srfi srfi-43)
#:use-module (starlet fixture)
#:use-module (starlet state)
- #:use-module (starlet scanout)
+ #:use-module (starlet engine)
#:use-module (starlet utils)
#:use-module (starlet clock)
#:use-module (starlet cue-list)