Ren'Py renpy.restart_interaction

Evildad

Member
Jan 7, 2019
113
218
Me again.
Got a little understanding problem with renpy.restart_interaction.

I have an inventory where you can select items. If selected, it should be displayed within a screen.
But it is only updated when, for example, I jump between the labels.

here are a few excerpts.
You don't have permission to view the spoiler content. Log in or register now.

I was hoping that I can force an update if I add an additional button before the item can be seen on the screen. But apparently I'm getting something wrong again.
 
Apr 24, 2020
192
257
I've found the simplest solution to simply be to return some instructions from the screens and then move everything else to labels. Inventory screens then gets turned into loops, which are only escaped when the player decides to close the inventory.

You don't have permission to view the spoiler content. Log in or register now.
 
  • Like
Reactions: Evildad

Evildad

Member
Jan 7, 2019
113
218
I've found the simplest solution to simply be to return some instructions from the screens and then move everything else to labels. Inventory screens then gets turned into loops, which are only escaped when the player decides to close the inventory.

You don't have permission to view the spoiler content. Log in or register now.
Thank you very much. I'll try to build it in.