I tried this:
Code: Select all
on "show" action With(Dissolve(1.0))The screen is called from within a python function with
Code: Select all
renpy.call_screen('hackinggrid', self)Also,
Code: Select all
on "show" action With(Dissolve(1.0))Code: Select all
renpy.call_screen('hackinggrid', self)Code: Select all
renpy.transition(dissolve)
self.result = renpy.call_screen('hackinggrid', self)
Code: Select all
on "hide" action With(Dissolve(1.0))
Code: Select all
show X with Tran(1.0)Code: Select all
show X
$renpy.transition(Tran(1.0)) # it queues how to show.
$renpy.pause(1.0) # this line execute transitionCode: Select all
screen:
window at show_hide_dissolve
transform show_hide_dissolve:
on show:
alpha .0
linear .5 alpha 1.0
on hide:
alpha 1.0
linear .5 alpha .0Users browsing this forum: _ticlock_