Search found 8 matches
- Mon Mar 14, 2022 12:21 pm
- Forum: Asset Creation: Writing
- Topic: What do you consider a good first-person narrative?
- Replies: 4
- Views: 1699
What do you consider a good first-person narrative?
I'm writing my first story that I intend to turn into a game in the future. The narrative needs to be in first person because it is an Otome game where the player will control the main character. The problem is that I have no inspiration writing in first person. Everything I write looks bad. I don't...
- Mon Mar 14, 2022 10:58 am
- Forum: Ren'Py Questions and Announcements
- Topic: Auto adjust screen resolution
- Replies: 3
- Views: 289
Re: Auto adjust screen resolution
In the game, to play in full screen, there is the shortcut "F" or a setting in the "Preferences" menu. To make the game start up fullscreen initially, open "options.rpy", and add: define config.default_fullscreen = True To make this setting take effect, close the game, use "Delete Persistent" in Re...
- Mon Mar 14, 2022 8:25 am
- Forum: Ren'Py Questions and Announcements
- Topic: Auto adjust screen resolution
- Replies: 3
- Views: 289
Auto adjust screen resolution
I would like to know if Renpy is able to auto adjust to the player's screen resolution. For example, I'm making my game on a1280x720 screen. Let's assume the player's screen resolution is 1920x1080. Is it possible for the game to adjust itself to this resolution without leaving black edges on the sc...
- Sun Mar 13, 2022 4:35 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Show default name on screen
- Replies: 8
- Views: 321
Re: Show default name on screen
add xanchor 0.5 to the input. You will have to change value of xpos since you are changing anchor, but it is trivial. I assume that there is nothing else messing with input styles. If there is, it will be slightly harder. Unfortunately it doesn't seem to have worked. The cursor keeps going to the r...
- Sun Mar 13, 2022 4:18 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Show default name on screen
- Replies: 8
- Views: 321
Re: Show default name on screen
First of all: if you are using InputValue, you cannot use default property, so you can delete it. But it actually make it easier: you just need to set variable player_name to "Jamie". Find, where something like default player_name = "" or something similar. Just repalce the " " part with "Jamie" Wo...
- Sun Mar 13, 2022 3:34 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Show default name on screen
- Replies: 8
- Views: 321
Re: Show default name on screen
This is my code:Ocelot wrote: ↑Sun Mar 13, 2022 1:27 pmInput screen element takes default property, which controls default text present in the input: https://www.renpy.org/doc/html/screens.html#input

- Sun Mar 13, 2022 3:28 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Show default name on screen
- Replies: 8
- Views: 321
Re: Show default name on screen
Input screen element takes default property, which controls default text present in the input: https://www.renpy.org/doc/html/screens.html#input Okay, but can you tell me how to use this? Because I read this page several times, but I don't know how to get what I want. I know zero about coding and o...
- Sun Mar 13, 2022 12:56 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Show default name on screen
- Replies: 8
- Views: 321
Show default name on screen
Hi! I'm practicing how to make a screen for the player to choose their own name and it's been working well, but I'd like to improve this a little bit more. I would like the player to be able to see the character's default name on screen and, if desired, to be able to erase it and write their own. Bu...