Thanks, it works...doinstead ofCode:call screen my_screen
- call transfers focus and wait for interactionCode:show screen my_screen
I can use it to call my_screen from script.rpy but it doesn't let me use it inside a screen definition like:
screen room:
add "room.png"
imagebutton auto "room_%s.png" xpos 744 ypos 85 focus_mask True action Hide("room"), Call("inroom")
Is asking me for a label, it doesn't let me use a screen.
It seems to work fine if I call it from the script.rpy but I'm getting some weird behavior... I think I need to hide the hall before going to another screen.
Maybe if I define the screens and then make labels to handle the call...
Like a new label that would call the screen "room" and then use that new label inside the next screen definition...
Coding logic can be so tiring...