got the hang of this

okay Now it should be working fine!! i think!! i hope!!
all of the new UI updates, aswell as the script being done up to aoi's route and a bit further (with the start to shiro's route). wahoo
This commit is contained in:
2025-01-05 18:41:37 +02:00
parent 061f9d23c1
commit 8f545fb137
112 changed files with 1762 additions and 86 deletions

View File

@@ -3,7 +3,8 @@
################################################################################
init offset = -1
init python:
renpy.config.rtl = True;
################################################################################
## Styles
@@ -249,14 +250,14 @@ screen quick_menu():
xalign 0.5
yalign 1.0
textbutton _("Back") action Rollback()
textbutton _("History") action ShowMenu('history')
textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True)
textbutton _("Auto") action Preference("auto-forward", "toggle")
textbutton _("Save") action ShowMenu('save')
textbutton _("Q.Save") action QuickSave()
textbutton _("Q.Load") action QuickLoad()
textbutton _("Prefs") action ShowMenu('preferences')
textbutton _("חזור") action Rollback()
textbutton _("היסטוריה") action ShowMenu('history')
textbutton _("דלג") action Skip() alternate Skip(fast=True, confirm=True)
textbutton _("מעבר אוטומטי") action Preference("auto-forward", "toggle")
textbutton _("שמור") action ShowMenu('save')
textbutton _("שמירה מהירה") action QuickSave()
textbutton _("פתיחה מהירה") action QuickLoad()
textbutton _("הגדרות") action ShowMenu('preferences')
## This code ensures that the quick_menu screen is displayed in-game, whenever
@@ -286,7 +287,6 @@ style quick_button_text:
## to other menus, and to start the game.
screen navigation():
vbox:
style_prefix "navigation"
@@ -297,38 +297,38 @@ screen navigation():
if main_menu:
textbutton _("Start") action Start()
textbutton _("התחל") action Start()
else:
textbutton _("History") action ShowMenu("history")
textbutton _("היסטוריה") action ShowMenu("history")
textbutton _("Save") action ShowMenu("save")
textbutton _("שמור") action ShowMenu("save")
textbutton _("Load") action ShowMenu("load")
textbutton _("פתח שמירה") action ShowMenu("load")
textbutton _("Preferences") action ShowMenu("preferences")
textbutton _("הגדרות") action ShowMenu("preferences")
if _in_replay:
textbutton _("End Replay") action EndReplay(confirm=True)
textbutton _("סיום הקלטה") action EndReplay(confirm=True)
elif not main_menu:
textbutton _("Main Menu") action MainMenu()
textbutton _("תפריט ראשי") action MainMenu()
textbutton _("About") action ShowMenu("about")
textbutton _("אודות") action ShowMenu("about")
if renpy.variant("pc") or (renpy.variant("web") and not renpy.variant("mobile")):
## Help isn't necessary or relevant to mobile devices.
textbutton _("Help") action ShowMenu("help")
textbutton _("עזרה") action ShowMenu("help")
if renpy.variant("pc"):
## The quit button is banned on iOS and unnecessary on Android and
## Web.
textbutton _("Quit") action Quit(confirm=not main_menu)
textbutton _("יציאה") action Quit(confirm=not main_menu)
style navigation_button is gui_button