Just played it though,
the game is very good, has potential. upbeat,
(the dialogue font could be a little larger)
Really like the J- key function I haven't seen that in other games. I always add the
diologbox_opacity
or the
RenPy_universal_transparent_textbox_mod to the games I play. but the J-key is much better.
ObscureWhistle can you provide the J-Key file to a much appreciative fellow gamer.
Apologies for the late message! Try the below:
init python:
renpy.register_style_preference("txtbox", "on", style.window, "yfill", True)
renpy.register_style_preference("txtbox", "on", style.window, "background", Image("gui/textbox.png", xalign=0.5, yalign=1.0))
renpy.register_style_preference("txtbox", "off", style.window, "yfill", True)
renpy.register_style_preference("txtbox", "off", style.window, "background", Image("gui/textboxblank.png", xalign=0.5, yalign=1.0))
After that, do this:
screen key_stuff():
if not shown:
key "j" action [StylePreference("txtbox", "on"), SetVariable("shown", True)]
else:
key "j" action [StylePreference("txtbox", "off"), SetVariable("shown", False)]
Note: formatting might be off center slightly, so just make sure you account for that.
Hope that works!!