Hi guys. Just like the title, how can I make the image button on the screen only clickable after the character has finished speaking?
Here's a simple demonstration of my code:
I want the image button only able to be toggled when the mc has finished speaking. But the screen need to stay up there when the mc speaks. Is there a way to do that? Thanks.
Here's a simple demonstration of my code:
Python:
label start:
show screen change_conversation
mc "A veeeeeeeeeerrrrrrrrry long dialogue."
return
screen change_conversation:
imagebutton:
# if character is speaking:
# sensitive False
# else:
# sensitive True
auto "image/button_%s.png"
action ToggleScreen("Some_other_screen")