Search found 4 matches
- Thu Sep 03, 2020 3:54 am
- Forum: Ren'Py Questions and Announcements
- Topic: Create two splash screens
- Replies: 6
- Views: 585
Re: Create two splash screens
use $ renpy.pause() instead of pause # The "splashscreen" label automatically plays before the main menu. label splashscreen : scene black_screen show splashscreen1 with dissolve $ renpy.pause(12.0) hide splashscreen1 with dissolve show splashscreen2 with dissolve $ renpy.pause(6.0) hide splashscre...
- Mon Aug 10, 2020 4:26 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Create two splash screens
- Replies: 6
- Views: 585
Re: Create two splash screens
As a temporary solution, I may put splashscreen1 before the main menu (after "label splashscreen") and splashscreen2 after starting a new game (after "label start").
- Mon Aug 10, 2020 4:20 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Create two splash screens
- Replies: 6
- Views: 585
Re: Create two splash screens
Sorry, I confused splashscreen1 and splashscreen2 in my original post (see my edit). I tried your solutions but I still have the same problem : when the player clicks while the first splashscreen is displayed, it skips the second splashscreen. if the splashscreens have pattern like they just all dis...
- Sun Aug 09, 2020 7:29 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Create two splash screens
- Replies: 6
- Views: 585
Create two splash screens
Hello, I would like to start my game with two splash screens. For example, one saying "this game is under a XXX license". And the second one saying "Special thanks to XXX". (...) I've searched where is the "skip the splashscreen" option, but I didn't find it. Thank you for your help. Edit : Sorry, I...