I have a custom transform that I'd like to apply in such a way that my textbox and side sprite slowly dissolve out at the same time. The problem is that "window hide" and "hide myimage" don't appear to work in the same way. I can use something like this with no problems:
Code: Select all
hide image1
hide image2
with dissolveslow
The transform I defined applies to both images and they are hidden at my custom dissolve speed at the same time.
But if I use this:
Code: Select all
hide player irritated
window hide
with dissolveslow
The default dissolve is applied to both instead of my custom dissolve. They do hide at the same time, but at the normal dissolve speed. I can apply the custom dissolve to either one separately without issue (using "hide player irritated with dissolveslow" and "window hide dissolveslow"), but of course that means they would hide in sequence instead of at the same time.
How would I go about getting both to hide simultaneously WITH my custom dissolve?
Here's my transition code, by the by:
Code: Select all
define dissolveslow = Dissolve(1.0, alpha=False)
SIDE NOTE: I'm not currently using the built-in "side image" feature because I could not figure out how to get my side sprites to appear and hide with dissolve.