commit 75
This commit is contained in:
parent
e910df9d7e
commit
b90f897123
2 changed files with 11 additions and 1 deletions
|
@ -43,13 +43,15 @@ fun ShowBuilderContext.act2() = act("Zweiter Akt") {
|
|||
scene("Tanz mit einem Vampir") {
|
||||
songDuettDraculaMina()
|
||||
|
||||
step(StepCue.Text("Ascot", "Mina präsentiert Dracula ihren Hals")) {
|
||||
step(StepCue.Custom("Mina präsentiert Dracula ihren Hals")) {
|
||||
actors {
|
||||
+"Ascot / durch Mitte"
|
||||
+"Oberschwester / durch Mitte"
|
||||
+"Lucy / durch Mitte"
|
||||
}
|
||||
|
||||
rightSpotTarget = null
|
||||
|
||||
onRun {
|
||||
Washs.both { it.brightness.off(0.4.seconds) }
|
||||
backlightBar.brightness.off(0.4.seconds)
|
||||
|
@ -338,6 +340,7 @@ fun ShowBuilderContext.act2() = act("Zweiter Akt") {
|
|||
}
|
||||
|
||||
FrontLights.all { it.brightness.fade(100.percent, 2.seconds) }
|
||||
Spots.right.brightness.off(5.seconds)
|
||||
|
||||
Washs.both {
|
||||
it.pointAtAudience(2.seconds)
|
||||
|
@ -351,6 +354,8 @@ fun ShowBuilderContext.act2() = act("Zweiter Akt") {
|
|||
-"Mina"
|
||||
}
|
||||
|
||||
rightSpotTarget = null
|
||||
|
||||
onRun {
|
||||
BlinderBars.all { it.brightness.off(1.seconds) }
|
||||
Tops.both { it.brightness.off() }
|
||||
|
|
|
@ -2,6 +2,7 @@ package de.moritzruth.dracula_musical.song
|
|||
|
||||
import de.moritzruth.dracula_musical.device.*
|
||||
import de.moritzruth.theaterdsl.show.CurtainState
|
||||
import de.moritzruth.theaterdsl.show.PropPosition
|
||||
import de.moritzruth.theaterdsl.show.SceneBuilderContext
|
||||
import de.moritzruth.theaterdsl.show.StepCue
|
||||
import de.moritzruth.theaterdsl.value.Color
|
||||
|
@ -23,6 +24,10 @@ fun SceneBuilderContext.songMaskenball() {
|
|||
|
||||
curtainState = CurtainState.OPEN
|
||||
|
||||
props {
|
||||
it[PropPosition.BACKDROP] = "Dorfplatz"
|
||||
}
|
||||
|
||||
onRun {
|
||||
backlightBar.color.static(Color(hue = 310.degrees, saturation = 80.percent))
|
||||
backlightBar.brightness.fade(40.percent, 5.seconds)
|
||||
|
|
Loading…
Add table
Reference in a new issue