Changeset - 1065c634e4a8
[Not reviewed]
default
0 1 1
drewp@bigasterisk.com - 20 months ago 2023-05-24 06:55:06
drewp@bigasterisk.com
checkpoint show data
2 files changed with 27 insertions and 10 deletions:
0 comments (0 inline, 0 general)
show/dance2023/fade.n3
Show inline comments
 
new file 100644
 
@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 .
show/dance2023/theaterLightConfig.n3
Show inline comments
 
@@ -13,24 +13,26 @@ 2) the effectAttrs listed under (?effect
 

	
 
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";
0 comments (0 inline, 0 general)