Fadein

From Unofficial QEdit Wiki Guide
Revision as of 06:53, 30 March 2011 by Tofuman (Talk | contribs)

Jump to: navigation, search

Syntax

Syntax: fadein

  • None

Use

Used to fade in the camera after fadeout is used.

Example


100:     fadeout //Fade camera out
         call 200  //Wait 1 second
         fadein //Fade camera in
         ret 
200:     sync //This function will create a 1 second wait
         addi R1, 00000001
         jmpi_<= R1, 0000001E, 200 //If R1 is less or equal to 30 jump to function 200
         ret 

Also see

fadeout, call, ret, addi, jmpi_<=