Mercurial > code > home > repos > light9
changeset 2226:1065c634e4a8
checkpoint show data
author | drewp@bigasterisk.com |
---|---|
date | Tue, 23 May 2023 23:55:06 -0700 |
parents | 9d6c7cab31b0 |
children | fe3543310d34 |
files | show/dance2023/fade.n3 show/dance2023/theaterLightConfig.n3 |
diffstat | 2 files changed, 27 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/show/dance2023/fade.n3 Tue May 23 23:55:06 2023 -0700 @@ -0,0 +1,15 @@ +@prefix : <http://light9.bigasterisk.com/> . +@prefix effect: <http://light9.bigasterisk.com/effect/> . +@prefix show: <http://light9.bigasterisk.com/show/dance2023/> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . + +show:fadePage1f0 rdfs:comment ":strength connects the fader to sub0" . + +show:fadePage1 a :FadePage; rdfs:label "live controls"; :fader show:fadePage1f0, show:fadePage1f1 . +show:fadePage1f0 a :Fader; :column "1"; :effect effect:subyellow; :setting :fs1. :fs1 :effectAttr :strength . +show:fadePage1f1 a :Fader; :column "2"; :effect effect:submagenta; :setting :fs2. :fs2 :effectAttr :strength . + +show:fadePage1f0 :value 0 . +show:fadePage1f1 :value 0.314 . +show:fadePage1f2 :effect effect:subyellow; :value 0.659 .
--- a/show/dance2023/theaterLightConfig.n3 Tue May 23 23:44:13 2023 -0700 +++ b/show/dance2023/theaterLightConfig.n3 Tue May 23 23:55:06 2023 -0700 @@ -13,24 +13,26 @@ Outputs are always a DeviceSettings list which can affect arbitrary devices. """ . -show:fadePage1f0 rdfs:comment ":strength connects the fader to sub0" . -show:fadePage1 a :FadePage; rdfs:label "live controls"; :fader show:fadePage1f0, show:fadePage1f1 . -show:fadePage1f0 - a :Fader; - :column "1"; - :effect effect:sub0; - :setting [ :effectAttr :strength ] . # fader value is applied to this attr. +########## submaster - -effect:sub0 +effect:subyellow a :Effect; :effectFunction effect:scale; :input [ :effectAttr :strength ]; # also put the time here if the func needs it. :setting - [ :device dev:plain1; :deviceAttr :brightness; :value 0.5 ], + [ :device dev:plain1; :deviceAttr :brightness; :value 1.0 ], [ :device dev:par2; :deviceAttr :color; :value "#ff8000" ] . +effect:submagenta + a :Effect; + :effectFunction effect:scale; + :input [ :effectAttr :strength ]; # also put the time here if the func needs it. + :setting + [ :device dev:par2; :deviceAttr :color; :value "#ff00ff" ] . + +######## effectFunction + effect:scale a :EffectFunction; rdfs:label "a submaster- a few devices at specified colors";