Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

is there a way to circumvent an issue like in the following-

label sc1:

show image1

"look at this"

$ renpy.end_replay()

label sc2:

(needs to keep showing image1 during this replay)

"looking at it"

$ renpy.end_replay()

-without having to manually show image1 again, in case there's a scenario you won't be able to?

you could just show the image again there, it won't affect anything or check in they are in a replay and show the image again like this

if _in_replay:
     show image1

thank you!

(+1)

you're welcome

good luck with your project