Search found 17 matches

by awsome2464
Wed Aug 29, 2018 2:42 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How do I perform two different transitions at once?
Replies: 3
Views: 570

Re: How do I perform two different transitions at once?

To expand slightly: show sprite1: pos (put starting x,y here) linear 1.0 pos (put ending x,y here) The ATL animating the image doesn’t “count as a transition”, so there isn’t a wait associated with it. Thus, you can do the same thing with sprite2 simultaneously. Gotcha! I figured ATL was going to b...
by awsome2464
Mon Aug 27, 2018 4:29 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How do I perform two different transitions at once?
Replies: 3
Views: 570

[Solved] How do I perform two different transitions at once?

What I'm aiming to do is have two characters spread apart and have a third character dissolve between them, but I'm not sure how to have the two characters move out at the same time. I know to have them perform the same action at the same time, it would be: show sprite1 at right show sprite2 at left...