What I want it to do is fade an image into the screen after an end of cluster message. It does that.
Then I want the image that faded on to screen to be the first image in a reversed bunny-scroller (i.e. the pics scroll from the right). The pictures should scroll and the ending image should be left on screen for a few seconds. It also does that.
Then I want a final picture to fade in over the second scroller image. It kind of does that.
It's the last bit that is mildly problematic. Ideally, I would like the image to fade through the final picture of the scroller, but it doesn't. When the fade section starts, the screen goes blank for an instant (i.e. the previous image disappears) and the fade starts. I'd like the screen to not go blank before the fade. Is this possible?
An acceptable solution that I could do would be to fade the second scroller image to black, and then fade in the final picture, but it would be nicer if the images faded through each other.
Here's what I have at the moment.
Code: Select all
////////////////////////////////////////////////////////////////////////////////
// Intermissions.
////////////////////////////////////////////////////////////////////////////////
//Wombat ending
Intermission EndWombat1
{
Fader
{
Background = "WOMBAT1"
Music = "N_0010"
FadeType = FadeIn
Time = 2
}
Link = EndWombat2
}
Intermission EndWombat2
{
Scroller
{
ScrollDirection = Right
Background = "WOMBAT1"
Background2 = "WOMBAT2"
Music = "N_0010"
InitialDelay = -35
Scrolltime = -320
Time = -700
}
Link = LogoFade
}
//Logo fade in
Intermission LogoFade
{
Fader
{
Background = "LogoNarw"
FadeType = FadeIn
Time = 4
//Music = "D_RUNNIN" - No music, keep whatever is playing
}
}
**LogoNarw is nothing to do with narwhals. Disappointingly, it's "logo narrow".