Difference between revisions of "Fadeout"
From Unofficial QEdit Wiki Guide
(No difference)
|
Latest revision as of 07:00, 30 March 2011
Contents
Syntax
Syntax: fadeout
- None
Use
Used to fade out the camera.
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 will create a wait function
subi R1, 00000001 //Subtract 1 from R1
jmpi_> R1, 00000000, 200 //If R1 is greater than 0 jump to function 200
ret