Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: testingstuff on Wed 09/08/2006 22:12:22

Title: Fade in won't work.
Post by: testingstuff on Wed 09/08/2006 22:12:22
test
Title: Re: Fade in won't work.
Post by: Alynn on Wed 09/08/2006 22:21:54
First, the "Appearance" of the GUI is most likely because you have GUIS set to turn off

When Interface Disabled [Turn GUI's Off]

For the fade, try using an object, you can turn the object on before fadein and then change it's transparency after fadein.

while (oBlack.Transparency < 100) {
    oBlack.Transparency++;
    Wait(15);
  }
Title: Re: Fade in won't work.
Post by: testingstuff on Wed 09/08/2006 22:31:35
That did work, and very well, but, how can I make this object visible "over" characters?
Title: Re: Fade in won't work.
Post by: Khris on Thu 10/08/2006 00:25:20
In the Room Editor, set the object's baseline to the very bottom of the room.
Title: Re: Fade in won't work.
Post by: testingstuff on Thu 10/08/2006 01:49:11
Thanks a lot. The cutscene is looking a lot better now.