Difference between revisions of "Fadein"
From Unofficial QEdit Wiki Guide
Line 21: | Line 21: | ||
==Also see== | ==Also see== | ||
− | [[fadeout]], [[call]], [[ret]], [[subi]], [[ | + | [[fadeout]], [[call]], [[ret]], [[subi]], [[jmpiug|jmpi_>]] |
Latest revision as of 06:59, 30 March 2011
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 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