Search found 7 matches

by lFeedYoul
Mon Oct 08, 2018 12:01 am
Forum: Ren'Py Questions and Announcements
Topic: Change the position of the text in the "Settings", "Help", etc.
Replies: 5
Views: 625

Change the position of the text in the "Settings", "Help", etc.

Hello everybody! I need to change the location of the text and buttons in the "Settings", "Help", "About", etc. But I don`t know how to do it. I tried to write xalign after the hbox: screen help(): tag menu default device = "keyboard" use game_menu3(_("По...
by lFeedYoul
Sun Oct 07, 2018 5:43 am
Forum: Ren'Py Questions and Announcements
Topic: Main menu centered buttons
Replies: 7
Views: 1055

Re: Main menu centered buttons

Thank you so much! I created a second screen game_menu2 completely copying screen game_menu, only deleted use navigation. And in the screens where I needed to have no buttons, I just fixed the use game_menu instead on use game_menu2 and it all worked. Спасибо.
by lFeedYoul
Sun Oct 07, 2018 2:40 am
Forum: Ren'Py Questions and Announcements
Topic: Main menu centered buttons
Replies: 7
Views: 1055

Re: Main menu centered buttons

This is a new project with a standard code, only the position of the buttons in the main menu has been changed using

Code: Select all

screen navigation():
    tag menu

    vbox:
        style_prefix "navigation"

        xalign 0.5
        yalign 0.5
by lFeedYoul
Sun Oct 07, 2018 12:50 am
Forum: Ren'Py Questions and Announcements
Topic: Main menu centered buttons
Replies: 7
Views: 1055

Re: Main menu centered buttons

Hmm... Everything is in place screen main_menu(): tag menu style_prefix "main_menu" add gui.main_menu_background frame: pass use navigation if gui.show_name: vbox: text "[config.name!t]": style "main_menu_title" text "[config.version]": style "main_menu_v...
by lFeedYoul
Sat Oct 06, 2018 3:50 am
Forum: Ren'Py Questions and Announcements
Topic: Main menu centered buttons
Replies: 7
Views: 1055

Main menu centered buttons

Hello everybody! I need help. How to remove the main menu buttons when you click on them? I placed the buttons in the center, but when I clicked on them, naturally, the menu of this button pops up, but at the same time the buttons of the main menu are not hidden.