Page 1 of 1

Temporarily change history screen behavior during game

Posted: Fri Sep 03, 2021 2:15 pm
by CyDementia
Good day. Sometimes in a novel I have text that is shown in a middle of a screen. I want this text to appear in history screen in a middle as well, but history screen won't show it in a middle, showing it left-justified (like any other dialogues in history). What I want to do is temporarily change history screen behavior during game, something like writing

Code: Select all

$ _history = False
"text text text"
$ _history = False
in a script file to temporarily stop writing history, but with positioning. Something like that (it won't work, just trying to show what I want to do):

Code: Select all

$ _history.text.xalign = 0.5
"text text text"
$ _history.text.xalign = 0.0
I doubt that there will be such an easy solution to it, so I'll be grateful for any way to solve this. Thank you in advance.