Search found 4 matches

by WildBill
Wed Aug 24, 2022 9:51 am
Forum: Ren'Py Questions and Announcements
Topic: with transition ending ATL transition early
Replies: 2
Views: 387

Re: with transition ending ATL transition early

The pause is needed because changing the widget with another transition doesn't pause the ATL by itself. The main ATL runs parallel to the dissolve, it doesn't wait for it. I figured out one way to make it work using a MultipleTransition , but it feels inelegant, I'd still like to know if there's a ...
by WildBill
Tue Aug 23, 2022 5:21 pm
Forum: Ren'Py Questions and Announcements
Topic: with transition ending ATL transition early
Replies: 2
Views: 387

with transition ending ATL transition early

I'm trying to create a new transition using ATL similar to the default Pixellate transition, but using a blur instead. What I have is this: transform blur(duration=1.5, radius=200.0, new_widget=None, old_widget=None): delay duration old_widget events False easeout (duration * 0.45) blur radius new_w...
by WildBill
Sat Aug 06, 2022 9:25 am
Forum: Ren'Py Questions and Announcements
Topic: wiperight transition, but doesn't speed through transition upon clicked
Replies: 2
Views: 318

Re: wiperight transition, but doesn't speed through transition upon clicked

Try using a dictionary transition instead.

Code: Select all

define wiperight = {"master": CropMove(10.0, "wiperight")}
by WildBill
Sat Aug 06, 2022 8:20 am
Forum: Ren'Py Questions and Announcements
Topic: Make children of button react to hover etc. like imagebutton
Replies: 1
Views: 271

Make children of button react to hover etc. like imagebutton

When using an imagebutton we can use various properties to have the image change based on the hover, insensitive etc. states. When using a button that has an image as a child, is there a clean way to do something similar?