commit #14
This commit is contained in:
parent
1b9a83b8ba
commit
12e8cb4993
1 changed files with 59 additions and 14 deletions
|
@ -746,10 +746,11 @@ val show = createShow {
|
|||
|
||||
step(StepCue.MusicStart("Terminhektik", 1.minutes + 30.seconds)) {
|
||||
actors {
|
||||
// TODO: Woher?
|
||||
// TODO: Woher und wer?
|
||||
+"Sven"
|
||||
+"Tina"
|
||||
+"Eva"
|
||||
+"David"
|
||||
}
|
||||
|
||||
onRun {
|
||||
|
@ -762,33 +763,77 @@ val show = createShow {
|
|||
step(StepCue.MusicEnd) {
|
||||
}
|
||||
|
||||
step(StepCue.Custom("Auftritt Paula")) {
|
||||
step(StepCue.MusicStart("Aus dem Schatten treten II", 3.minutes + 30.seconds)) {
|
||||
actors {
|
||||
-"Sven"
|
||||
-"Tina"
|
||||
-"Eva"
|
||||
-"Maria"
|
||||
-"Kathi"
|
||||
-"David"
|
||||
}
|
||||
|
||||
onRun {
|
||||
(FrontLights.right + FrontLights.left).forEach { it.brightness.fade(0.percent, 5.seconds) }
|
||||
// kühle Farben
|
||||
// TODO: Nebel
|
||||
FrontLights.all.forEach { it.brightness.fade(0.percent, 40.seconds) }
|
||||
|
||||
sideLight.colors.forEach { it.static(Color(240.degrees)) }
|
||||
sideLight.brightness.fade(start = 0.percent, end = 100.percent, duration = 30.seconds)
|
||||
}
|
||||
}
|
||||
|
||||
step {
|
||||
trigger = StepCue.Custom("Auftritt weitere Schüler")
|
||||
step(StepCue.Custom("Maria tritt auf")) {
|
||||
actors {
|
||||
+"Maria / durch die Mitte"
|
||||
}
|
||||
|
||||
rightSpotTarget = "Maria"
|
||||
|
||||
onRun {
|
||||
(FrontLights.right + FrontLights.left).forEach { it.brightness.fade(50.percent, 40.seconds) }
|
||||
// buntere Farben
|
||||
spotRight.brightness.fade(100.percent, 20.seconds)
|
||||
|
||||
Tops.both.forEach {
|
||||
it.colorWheelMode.static(FuturelightDmh160.ColorWheelMode.DarkBlue)
|
||||
it.prismMode.static(FuturelightDmh160.PrismMode.FACETS_8)
|
||||
it.prismRotationSpeed.static(20.percent)
|
||||
it.startRoomMovement(8.0)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
step {
|
||||
trigger = StepCue.MusicEnd
|
||||
step(StepCue.Custom("Paula tritt auf")) {
|
||||
actors {
|
||||
+"Paula / durch die Mitte"
|
||||
}
|
||||
|
||||
leftSpotTarget = "Paula"
|
||||
|
||||
onRun {
|
||||
FrontLights.all.forEach { it.brightness.off() }
|
||||
// Vorhang zu, Pause
|
||||
spotLeft.brightness.fade(100.percent, 2.seconds)
|
||||
|
||||
Tops.both.forEach { it.brightness.fade(100.percent, 30.seconds) }
|
||||
sideLight.colors.forEach { it.fade(Color(185.degrees), 30.seconds) }
|
||||
(FrontLights.right + FrontLights.left).forEach { it.brightness.fade(50.percent, 50.seconds) }
|
||||
}
|
||||
}
|
||||
|
||||
lightStep(StepCue.Custom("Schlussschlag")) {
|
||||
(FrontLights.right + FrontLights.left).forEach { it.brightness.off() }
|
||||
Tops.both.forEach { it.brightness.off(1.seconds) }
|
||||
sideLight.colors.forEach { it.fade(Color(185.degrees, brightness = 0.percent), 1.seconds) }
|
||||
spotLeft.brightness.off()
|
||||
spotRight.brightness.off()
|
||||
}
|
||||
|
||||
step(StepCue.MusicEnd) {
|
||||
actors {
|
||||
-"Paula"
|
||||
-"Maria"
|
||||
}
|
||||
|
||||
// Vorhang zu, Pause
|
||||
}
|
||||
}
|
||||
|
||||
// RnR entfällt
|
||||
}
|
||||
|
||||
// Pause
|
||||
|
|
Loading…
Add table
Reference in a new issue