(sorry for my english!)
I have some problems with the save menu
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
-
celes91
- Newbie
- Posts: 22
- Joined: Sun Jul 14, 2013 2:24 pm
- Completed: Affection, Yuri Affection
- Projects: Pure Affection
- Tumblr: celeschere91
- Deviantart: celes91
- Location: Pastaland (Italy)
- Contact:
I have some problems with the save menu
I changed the size of the text (of dialogues) but menu text is too big. And the save boxes are too big, I can't click on "preferences", or "save" cause it's "covered" by these boxes. What can I do?
(sorry for my english!)
(sorry for my english!)
- chocoberrie
- Veteran
- Posts: 254
- Joined: Wed Jun 19, 2013 10:34 pm
- Projects: Marshmallow Days
- Contact:
Re: I have some problems with the save menu
If you want to make a custom save menu with your own images and your own font, I highly recommend making an imagemap! I wrote a thorough tutorial series for making imagemaps for all of the game menus in Ren'Py (main menu, preferences menu, save/load menu, etc.). You can find it here! 
In my opinion, using imagemap coding is much easier than trying to change the default coding. Imagemaps allow you to completely customize the menu, so you get exactly the look you want. Give it a try!
In my opinion, using imagemap coding is much easier than trying to change the default coding. Imagemaps allow you to completely customize the menu, so you get exactly the look you want. Give it a try!
-
celes91
- Newbie
- Posts: 22
- Joined: Sun Jul 14, 2013 2:24 pm
- Completed: Affection, Yuri Affection
- Projects: Pure Affection
- Tumblr: celeschere91
- Deviantart: celes91
- Location: Pastaland (Italy)
- Contact:
Re: I have some problems with the save menu
I'm sorry but it seems pretty hard to do! I like the menu style, I just want to adjust save boxes size!
(I'm a beginner with this program and don't know much about codes!)
(I'm a beginner with this program and don't know much about codes!)
- IrinaLazareva
- Veteran
- Posts: 399
- Joined: Wed Jun 08, 2016 1:49 pm
- Projects: Legacy
- Organization: SunShI
- Location: St.Petersburg, Russia
- Contact:
Re: I have some problems with the save menu
in file screen.rpy find screen navigation():
and try to change:
(where instead of 10 it is possible to set any size)
OR (!)
in screen file_picker():
replace:
to
Code: Select all
textbutton _("Return") action Return()
textbutton _("Preferences") action ShowMenu("preferences")
textbutton _("Save Game") action ShowMenu("save")
textbutton _("Load Game") action ShowMenu("load")
textbutton _("Main Menu") action MainMenu()
textbutton _("Help") action Help()
textbutton _("Quit") action Quit()Code: Select all
textbutton _("Return") text_size (10) action Return()
textbutton _("Preferences") text_size (10) action ShowMenu("preferences")
textbutton _("Save Game") text_size (10) action ShowMenu("save")
textbutton _("Load Game") text_size (10) action ShowMenu("load")
textbutton _("Main Menu") text_size (10) action MainMenu()
textbutton _("Help") text_size (10) action Help()
textbutton _("Quit") text_size (10) action Quit()OR (!)
in screen file_picker():
replace:
Code: Select all
$ rows = 5Code: Select all
$ rows = 2-
celes91
- Newbie
- Posts: 22
- Joined: Sun Jul 14, 2013 2:24 pm
- Completed: Affection, Yuri Affection
- Projects: Pure Affection
- Tumblr: celeschere91
- Deviantart: celes91
- Location: Pastaland (Italy)
- Contact:
Re: I have some problems with the save menu
ok, thanks!
Who is online
Users browsing this forum: No registered users