Update credits and bug fix

This commit is contained in:
LoafyLemon 2024-08-07 19:25:09 +01:00
parent 9383e5d719
commit 9a50a836db
4 changed files with 19 additions and 13 deletions

BIN
game/gui/creamy_pumpkin_pie/studio_logo.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

View File

@ -23,6 +23,7 @@ init python in credits:
return "\n".join(output_lines) return "\n".join(output_lines)
image game_logo = Image("gui/creamy_pumpkin_pie/game_logo.png", oversample=8) image game_logo = Image("gui/creamy_pumpkin_pie/game_logo.png", oversample=8)
image studio_logo = Image("gui/creamy_pumpkin_pie/studio_logo.png", oversample=4)
image engine_logo = Image("gui/creamy_pumpkin_pie/engine_logo.png", oversample=2) image engine_logo = Image("gui/creamy_pumpkin_pie/engine_logo.png", oversample=2)
define credits_images = [] # TODO: Add images once new chibis are in. define credits_images = [] # TODO: Add images once new chibis are in.
@ -229,6 +230,7 @@ define credits = credits.convert(_(f"""{{image=game_logo}}{{vspace=10}}
### Ren'Py Engine v[renpy.version_only] ### Ren'Py Engine v[renpy.version_only]
- [renpy.license!t] - [renpy.license!t]
{{vspace=400}} {{vspace=400}}
{{image=studio_logo}}
# Thank you for playing!{{vspace=400}} # Thank you for playing!{{vspace=400}}
""")) """))

View File

@ -70,6 +70,7 @@ screen inventory():
ypos 32 ypos 32
xalign 0.5 xalign 0.5
for item in menu_items: for item in menu_items:
if item.owned > 0 or config.developer:
button: button:
xysize (48, 48) xysize (48, 48)
if selected_item == item: if selected_item == item: