Search found 8 matches

by Fruits57
Sun Feb 11, 2018 9:28 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Choice menu animations after picking an option?
Replies: 14
Views: 2418

Re: Choice menu animations after picking an option?

Thanks for all your help. I ended up using the code from https://www.renpy.org/wiki/renpy/doc/co ... the_Window
and it does the job.
by Fruits57
Sun Feb 11, 2018 12:05 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Choice menu animations after picking an option?
Replies: 14
Views: 2418

Re: Choice menu animations after picking an option?

I've tried the first part of your code and it doesn't work. For the second part, where exactly would that go?
by Fruits57
Sat Feb 10, 2018 8:14 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Choice menu animations after picking an option?
Replies: 14
Views: 2418

Re: Choice menu animations after picking an option?

Good news, I've solved it by adding the animations to the window also. window at fadeBG: style "menu_window" add "ui/gm_question.png" at fadeBG label _(str(persistent.questionText)) at fromUp style "question_window" window at fadeBG: style "menu_window" side &...
by Fruits57
Sat Feb 10, 2018 7:19 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Choice menu animations after picking an option?
Replies: 14
Views: 2418

Re: Choice menu animations after picking an option?

I've tried the code, and no notification pops up.
by Fruits57
Fri Feb 09, 2018 6:57 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Choice menu animations after picking an option?
Replies: 14
Views: 2418

Re: Choice menu animations after picking an option?

I tried putting in "on show, start:" for the transforms, and it still has the same problem. transform fromDown: on start: subpixel True alpha 0.0 xalign 0.5 yalign 1.5 yanchor 0.0 easein 2.5 yalign 0.95 alpha 1.0 on hide: easeout 2.5 yalign 1.5 alpha 0.0 transform fromUp: on start: subpixe...
by Fruits57
Thu Feb 08, 2018 11:43 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Choice menu animations after picking an option?
Replies: 14
Views: 2418

[SOLVED] Choice menu animations after picking an option?

Hi, I'd like to know how I would be able to animate the choice menu fading out after picking a choice, since with the current code I have, it just disappears instantly after picking a choice. The code I have is below: ############################################################################## # C...