time travel, side convo progress, itch page, etc

Word count: 8,847 words
This commit is contained in:
Jacoder23 2024-04-11 03:04:59 +08:00
parent 218e052b39
commit 6a344b5d79
5 changed files with 1087 additions and 114 deletions

BIN
game/audio/teleport.opus Normal file

Binary file not shown.

BIN
game/audio/time travel.mp3 Normal file

Binary file not shown.

BIN
game/images/bg white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -33,21 +33,24 @@ screen history():
frame:
has hbox
if h.who:
label h.who style 'history_name':
substitute False
## Take the color of the who text
## from the Character, if set
if "color" in h.who_args:
text_color h.who_args["color"]
xsize 200 # this number and the null width
# number should be the same
else:
null width 200
vbox:
if h.who:
label h.who style 'history_name':
substitute False
## Take the color of the who text
## from the Character, if set
if "color" in h.who_args:
text_color h.who_args["color"]
xsize 200 # this number and the null width
# number should be the same
else:
null width 200
$ what = renpy.filter_text_tags(h.what, allow=gui.history_allow_tags)
text what:
substitute False
$ what = renpy.filter_text_tags(h.what, allow=gui.history_allow_tags)
text what:
substitute False
textbutton "Copy to Clipboard" action CopyToClipboard(what)
if not _history_list:
label _("The dialogue history is empty.")

File diff suppressed because it is too large Load Diff