First of all, I'd like to apologize for the title, since it doesn't follow guideline:
I do have a series of questions after starting Renpy a couple of days ago. I joined the forum and checked out many threads, especially the ones in here: viewtopic.php?f=51&t=34131When asking questions about Ren'Py, please chose a descriptive subject. Recently, we've been getting a number of topics with titles like:
A couple of Ren'Py questions...
The first thing I want to mention is that a big amount of the links in that thread are using outdated code solutions for specific problems. This means that using the code provided in many of those links are of simply no use for the 2016 Renpy software. Which means a big amount of those threads are nearly useless for nowadays beginners, like myself. Now I'll get to the questions I have. I'll number them to make it easier:
1) How to adjust the vertical postions of in-game Menus? If I go to the The Question project example in it's Options.rpy, I find the following statement:
Code: Select all
## If this is True, in-game menus are placed in the center
## the screen. If False, they are placed inside a window
## at the bottom of the screen.
button_menu = True,
Code: Select all
## Choice Buttons ##############################################################
##
## Choice buttons are used in the in-game menus.
In the gui file, I also found:
Code: Select all
define gui.choice_spacing = 22
Code: Select all
gui.choice_button_width = 1240
2) Talking about the documentation, in this spot (https://www.renpy.org/doc/html/gui.html ... tomization) it mentions:
I went to the gui.rpy file of my project, and didn't find any "gui.font_size" at all. That setting doesn't exist there. You'd think that a place that mentions "editing variables", those variables would already be present in the spot ready to be modified. I think what was really meant was:Many of these changes involve editing variables in gui.rpy. For example, to increase the dialogue font size, find the line that reads:Code: Select all
define gui.font_size = 22
Code: Select all
gui.text_size
3) Is there any intuitive way (or any way at all) to create my own buttons in the Main Menu screen? I see we can reposition and style them, but can we add our own, or even delete existing ones? I'm having a look at this: https://www.renpy.org/doc/html/gui.html ... navigation
Is that it? If so, how exactly do I implement that? Would appreciate if someone helped me.
As a suggestion, I'd recommend there being (way) more Example Scripts (https://www.renpy.org/doc/html/index.ht ... le-scripts), especially having their options and gui files in the same style the Renpy software provides to their user. Non outdated examples that actually show modified GUI Customization on various degrees to help people that are starting using Renpy. I might have more questions in the future, but for now, I'll keep those three.
That's all, thanks in advance for the help.

