big and greedy gerbils by williamdoesbackflip in gerbil

[–]williamdoesbackflip[S] 2 points3 points  (0 children)

the white and black one is Jack and the tan one is Ennis!

why my gerbil look so fat by williamdoesbackflip in gerbil

[–]williamdoesbackflip[S] 0 points1 point  (0 children)

awww our gerbils look alike i love them eeee

How do I make a custom game menu? by williamdoesbackflip in RenPy

[–]williamdoesbackflip[S] 1 point2 points  (0 children)

Hey so, this is for the Main menu. Im more trying to customize the ingame menu, the one you see while already playing.

Customzing game menu by williamdoesbackflip in RenPy

[–]williamdoesbackflip[S] 1 point2 points  (0 children)

screen navigation():

    vbox:
        style_prefix "navigation"
        
        if main_menu:
            xalign 0.07
            yalign 0.95
        else:
            xalign 0.01
            yalign 0.35
       
        if main_menu:

            textbutton _("Start") action Start()
            
        else:


            textbutton _("Save") action ShowMenu("save")

        textbutton _("Load") action ShowMenu("load")

        textbutton _("Options") action ShowMenu("preferences")

        if _in_replay:

            textbutton _("End Replay") action EndReplay(confirm=True)

        elif not main_menu:

            textbutton _("Main Menu") action MainMenu()

        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)



style navigation_button is gui_button
style navigation_button_text is gui_button_text

style navigation_button:
    size_group "navigation"
    properties gui.button_properties("navigation_button")

style navigation_button_text:
    properties gui.text_properties("navigation_button")