conversion and method for offscreen speech

This commit is contained in:
2021-12-30 12:25:46 -07:00
parent b1eedbbc28
commit a5d4d60b77
2 changed files with 4 additions and 0 deletions

View File

@@ -25,6 +25,7 @@
(specialSpeech "On Phone Speech" "O.P." "ONPHONESPEECH")
(specialSpeech "VoiceOver Speech" "V.O." "VOICEOVER")
(specialSpeech "Off-Screen Speech" "O.S." "OFFSCREENSPEECH")
(registerConversion
(new ktxt2.StreamConversion "Normal Speech" "fountain" "hollywoo"

View File

@@ -239,6 +239,9 @@
(hollywooMethod normalSpeech true [actorName wryly text :Continuation cc]
(showDialog actorName (OnScreen (dictGet .characters (_currentScene) actorName)) wryly text cc))
(hollywooMethod offScreenSpeech true [actorName wryly text :Continuation cc]
(showDialog actorName (OffScreen (dictGet actors actorName)) wryly text cc))
(hollywooMethod voiceOver true [actorName wryly text :Continuation cc]
(showDialog actorName (VoiceOver (dictGet actors actorName)) wryly text cc))