I'm getting close to done on Kuroi Games newest project. Yay! It's a manga so I'm dealing with a few problems that I haven't run into before and I was hoping that there might be someone more tallented than myself out there who could give me a hand.
I have a loop which basicly runs like this:
Code: Select all
while result != "end":
Draw_The_Page()
_result = ui.interact()
Handle_User_Input()
I have tried simply calling my Draw_The_Page() functon again when the button to change the read direction is pressed but renpy still waits for ui.interact() to tell it that there has been some user interaction before doing anything...
Is there any way to force Renpy to go past ui.interact() a single time so that the loop can redraw the screen?
Thanks a ton for the help~
Kuroi