Can "skip to next choice" be altered to skip over cut scenes as well?

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.
Post Reply
Message
Author
User avatar
heartfragment
Regular
Posts: 109
Joined: Tue Nov 10, 2015 12:10 am
Projects: Heart Fragment
Tumblr: heartfragment
itch: heartfragment
Contact:

Can "skip to next choice" be altered to skip over cut scenes as well?

#1 Post by heartfragment »

As the title states; trying to figure out a way to make "skip to next choice" also skip over cut scenes. Right now it stops to play cut scenes but I'd like it to go immediately past them instead. Thanks in advance!
Published Project:
Image

User avatar
Ocelot
Lemma-Class Veteran
Posts: 2405
Joined: Tue Aug 23, 2016 10:35 am
Github: MiiNiPaa
Discord: MiiNiPaa#4384
Contact:

Re: Can "skip to next choice" be altered to skip over cut scenes as well?

#2 Post by Ocelot »

Code: Select all

# . . .
if renpy.is_skipping():
    jump .after_cutscene
<show cutscene here>
label .after_cutscene:
# . . .
If you want only to skip cutscenes in fast skipping mode:

Code: Select all

# . . .
if renpy.get_skipping() == "fast":
    jump .after_cutscene
<show cutscene here>
label .after_cutscene:
# . . .
< < insert Rick Cook quote here > >

Post Reply

Who is online

Users browsing this forum: No registered users