Using Dialogue system for a fade to white

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
dragonlord3989
Posts: 8
Joined: Sat Jan 02, 2016 3:31 pm

Using Dialogue system for a fade to white

Post by dragonlord3989 »

This may have been asked already and if it has sorry for the double post, but is it possible to have

Code: Select all

Fade(stay,1)@1;
SetActive(City, false);
SetActive(jail);
Fade(in,1.5)@3;
instead of having it fade to black make it fade to white as if you got hit with a Stun grenade?
CricketSaysChill
Posts: 5
Joined: Tue Sep 11, 2018 10:54 am

Re: Using Dialogue system for a fade to white

Post by CricketSaysChill »

Just some random guy here so not an offical answer. :)

"Fade(stay, 1, #ffffffff);" to fade out to white over 1 second(s) and stay white

and

"Fade(in, 1.5, #ffffffff); " to fade in from White over 1.5 seconds.

The #ffffffff is the hex color code for more or less plain White. You can change the color code if you want to fade in or out using different colors.
User avatar
Tony Li
Posts: 21079
Joined: Thu Jul 18, 2013 1:27 pm

Re: Using Dialogue system for a fade to white

Post by Tony Li »

^ Perfect answer.
Post Reply