Discuss how to use the Ren'Py engine to create visual novels and story-based games. New releases are announced in this section.
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.
-
neometalero
- Regular
- Posts: 181
- Joined: Sun Oct 23, 2016 3:51 am
- Completed: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Projects: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Deviantart: neometalero
-
Contact:
#1
Post
by neometalero » Thu Dec 01, 2016 8:36 pm
I want to remove the text with the name of the project form the main menu
Also additional questions:
-How do I create two splash screens for the PC game. Like one image with the logo and another with the loading image after that one?
-
mard
- Regular
- Posts: 50
- Joined: Thu Nov 03, 2016 3:38 am
- Location: Standing right behind you.
-
Contact:
#2
Post
by mard » Thu Dec 01, 2016 9:06 pm
Open up options.rpy and look for this line.
It will be set to true, if you set it to false it'll hide the text.
Not sure on the splash screens, haven't attempted anything like that yet.
Tend to be a bit quiet, but will help where I can.
Enjoy the drinks folks.
-
indoneko
- Miko-Class Veteran
- Posts: 528
- Joined: Sat Sep 03, 2016 4:00 am
-
Contact:
#3
Post
by indoneko » Thu Dec 01, 2016 9:30 pm
Not sure about what you really want with the splash screen, but I would just add a pause after the logo is shown and then add scene black with dissolve and then show the second image after that with pause and then add another scene black with dissolve again (all in a single splash screen section)
[edited for typo]
Last edited by
indoneko on Thu Dec 01, 2016 11:35 pm, edited 1 time in total.
-
Donmai
- Eileen-Class Veteran
- Posts: 1919
- Joined: Sun Jun 10, 2012 1:45 am
- Completed: Toire No Hanako, Li'l Red [NaNoRenO 2013], The One in LOVE [NaNoRenO 2014], Running Blade [NaNoRenO 2016], The Other Question, To The Girl With Sunflowers
- Projects: Slumberland
- Location: Brazil
-
Contact:
#4
Post
by Donmai » Thu Dec 01, 2016 11:04 pm
mard wrote:Open up options.rpy and look for this line.
It will be set to true, if you set it to false it'll hide the text.
Curiously, you will find that same line on gui.rpy, so set the variable to False there too.
-
neometalero
- Regular
- Posts: 181
- Joined: Sun Oct 23, 2016 3:51 am
- Completed: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Projects: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Deviantart: neometalero
-
Contact:
#5
Post
by neometalero » Fri Dec 02, 2016 3:41 pm
indoneko wrote:Not sure about what you really want with the splash screen, but I would just add a pause after the logo is shown and then add scene black with dissolve and then show the second image after that with pause and then add another scene black with dissolve again (all in a single splash screen section)
[edited for typo]
I just want to know where i need to write the code to display the splash screen.
-
Donmai
- Eileen-Class Veteran
- Posts: 1919
- Joined: Sun Jun 10, 2012 1:45 am
- Completed: Toire No Hanako, Li'l Red [NaNoRenO 2013], The One in LOVE [NaNoRenO 2014], Running Blade [NaNoRenO 2016], The Other Question, To The Girl With Sunflowers
- Projects: Slumberland
- Location: Brazil
-
Contact:
#6
Post
by Donmai » Fri Dec 02, 2016 4:22 pm
Just create a label called splashscreen anywhere. This is one of Ren'Py special labels:
https://www.renpy.org/doc/html/label.ht ... ial-labels
Example:
Code: Select all
label splashscreen:
# your code goes here
return
-
neometalero
- Regular
- Posts: 181
- Joined: Sun Oct 23, 2016 3:51 am
- Completed: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Projects: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Deviantart: neometalero
-
Contact:
#7
Post
by neometalero » Mon Dec 05, 2016 5:54 am
Donmai wrote:mard wrote:Open up options.rpy and look for this line.
It will be set to true, if you set it to false it'll hide the text.
Curiously, you will find that same line on gui.rpy, so set the variable to False there too.
Tks, i was missing it in one place. Now it worked.