Search found 2 matches

by MelonSandia
Sat Jan 13, 2024 6:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Animation reseting when changing condition
Replies: 2
Views: 10214

Re: Animation reseting when changing condition

m_from_space wrote: Sat Jan 13, 2024 4:42 pm Put the "animation" keyword inside your transform.

Code: Select all

image animation1:
    animation
    "images/Tuto/1.png"
    pause 1.0
    ...
omg, It works perfectly. I'm so dumb. Thanks a lot
by MelonSandia
Sat Jan 13, 2024 1:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Animation reseting when changing condition
Replies: 2
Views: 10214

Animation reseting when changing condition

Hii, so I have an imagebutton and I want that only if the condition canClick is True and you click the button, the action gets executed. I made the following code and it's working fine. The problem is that everytime "canClick" changes from True to False or viceversa, the animation image &q...