Fadein
From Unofficial QEdit Wiki Guide
Contents
Syntax
Syntax: fadein
- None
Use
Used to fade in the camera after fadeout is used.
Example
100: fadeout //Fade camera out
leti R1, 0000001E //Set wait length to 30 frames (1 second)
call 200 //Call wait function
fadein //Fade camera in
ret
200: sync //This function will create a wait function
subi R1, 00000001 //Subtract 1 from R1
jmpi_= R1, 00000000, 200 //If R1 is equal to 0 jump to function 200
ret