-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
This issue succeeds READ add PARROT, HIDE, REVEAL #262.
Allow story mode to change sentence by sentence, so that we can, e.g., insert spoken prompts.
Which is easier to implement and use?
a. Treat story mode as a variable that storydata.json can assign a new value.
+: simple
+: concise
-: context-dependent because its scope lasts until the next assignment
b. Treat story mode as a nestable modifier to wrap around one or more pages or sentences.
+: context-independent insofar as it's not affected by changing the mode of the preceding text
-: verbose
-: modifier could nest around multiple pages, which might be awkward
Reactions are currently unavailable