Bug fixes
* Fixed fake credits * Fixed hotkeys overlap with Ren'py hotkeys * Fixed overflowing character names
This commit is contained in:
parent
ae54668efb
commit
c7df99e4b0
@ -55,9 +55,9 @@ define abe = Character(_("Aberforth"))
|
||||
define fem = Character(_("Female Student"))
|
||||
define femv = Character(_("Female Voice"))
|
||||
define mal = Character(_("Male Student"))
|
||||
define mal2 = Character(_("Another Male Student"))
|
||||
define mal2 = Character(_("{size=-12}Another Male Student{/size}"))
|
||||
define sly1 = Character(_("Slytherin student"))
|
||||
define sly2 = Character(_("Another Slytherin student"))
|
||||
define sly2 = Character(_("{size=-12}Another Slytherin student{/size}"))
|
||||
define qcr = Character(_("Quidditch Crowd"))
|
||||
|
||||
# Special
|
||||
|
@ -37,7 +37,7 @@ define credits_images = [] # TODO: Add images once new chibis are in.
|
||||
|
||||
define credits_mods = _("\n\n## Game Mods\n\n") + "\n\n".join(["### " + i[1]["Name"] + "\n- " + i[1]["Author"] for i in mods_list.items()]) if mods_list else ""
|
||||
|
||||
define credits = credits.convert(_(f"""{{image=game_logo}}{{vspace=10}}
|
||||
define credits_text = credits.convert(_(f"""{{image=game_logo}}{{vspace=10}}
|
||||
## Development Team
|
||||
|
||||
### Project Lead
|
||||
@ -295,15 +295,15 @@ transform credits_fade_image(start, duration):
|
||||
pause duration
|
||||
linear 0.5 alpha 0.0
|
||||
|
||||
screen credits():
|
||||
screen credits(credits=credits_text, duration=180, pauses=13):
|
||||
layer "interface"
|
||||
zorder 0
|
||||
modal True
|
||||
predict False
|
||||
style_prefix "credits"
|
||||
|
||||
default duration = 180
|
||||
default pauses = 13
|
||||
default duration = duration
|
||||
default pauses = pauses
|
||||
|
||||
add "gui_fade_both" at gui_fade
|
||||
|
||||
|
@ -68,12 +68,15 @@ screen say(who, what, side_doll=None, side_image=None, icon=None):
|
||||
# the ``myflag`` variable in the screen. (The ``myflag`` variable isn't
|
||||
# used by default, but can be used by a custom say screen.)
|
||||
|
||||
# Note: For some reason the side image flickers on resolutions other than native
|
||||
# during hide events. This is a possible issue with mipmapping in Ren'Py.
|
||||
|
||||
if side_doll:
|
||||
add side_doll
|
||||
elif side_image: # Compat
|
||||
add side_image zoom 0.5 align (0.0, 1.0) xoffset 16
|
||||
else:
|
||||
add SideImage()
|
||||
add SideImage() # Proxy for _side_image
|
||||
|
||||
screen say_centered(who, what, icon=None):
|
||||
style_prefix "say"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -6,14 +6,14 @@ init 1 python:
|
||||
|
||||
# Custom
|
||||
|
||||
map = ["K_m"],
|
||||
work = ["K_w"],
|
||||
stats = ["K_c"],
|
||||
inventory = ["K_i"],
|
||||
sleep = ["K_s"],
|
||||
fap = ["K_f"],
|
||||
summon = ["K_d"],
|
||||
achievements = ["K_o"],
|
||||
map = ["noshift_K_m"],
|
||||
work = ["noshift_K_w"],
|
||||
stats = ["noshift_K_c"],
|
||||
inventory = ["noshift_K_i"],
|
||||
sleep = ["noshift_K_s"],
|
||||
fap = ["noshift_K_f"],
|
||||
summon = ["noshift_K_d"],
|
||||
achievements = ["noshift_K_o"],
|
||||
|
||||
# Bindings present almost everywhere, unless explicitly disabled.
|
||||
rollback = ["K_PAGEUP", "repeat_K_PAGEUP", "K_AC_BACK", "mousedown_4"],
|
||||
|
Loading…
Reference in New Issue
Block a user