Ren'Py Transition when using animation

Deleted member 416612

The 'landlord'
Donor
Game Developer
Feb 2, 2018
924
3,913
Hi, forum,

Can anyone help me with a transition question? I have the following code for an image loop/animation:

image scene_name_01:
"images/scene_name.jpg"
0.6

"images/scene_name.jpg"
0.6


repeat

show scene_name_01

How in hell I can add dissolve transition to this?
Thank you in advance
 
  • Like
Reactions: Palanto

Palanto

Active Member
Game Developer
Oct 4, 2017
964
1,835
Well if you want a selfmade dissolve it would always be "D"issolve()

So if you want to have a 2seconds dissolve (instead of the 0.5seconds standart) then do it like that:

Code:
image scene_name_01:
   "images/scene_name.jpg" with Dissolve(2.0)
   2.0
   "images/scene_name.jpg" with Dissolve(2.0)
   2.0
 

Deleted member 416612

The 'landlord'
Donor
Game Developer
Feb 2, 2018
924
3,913
Well if you want a selfmade dissolve it would always be "D"issolve()

So if you want to have a 2seconds dissolve (instead of the 0.5seconds standart) then do it like that:

Code:
image scene_name_01:
   "images/scene_name.jpg" with Dissolve(2.0)
   2.0
   "images/scene_name.jpg" with Dissolve(2.0)
   2.0
Thanks!
 
  • Like
Reactions: Palanto