home *** CD-ROM | disk | FTP | other *** search
/ Creative Review 28 / Creative-Review-CD-ROM-28.iso / pc / kungfu / style.dir / 00003_Script_3 < prev    next >
Text File  |  1997-08-08  |  382b  |  26 lines

  1. -- update
  2. global gScrollUgap
  3. global gFigureUgap
  4.  
  5. global gScrollUTime
  6. global gFigureUtime
  7.  
  8.  
  9. on hupdate
  10.   
  11.   if the timer > gScrollUTime then
  12.     set gScrollUTime = the timer + gScrollUgap
  13.     hupdatescroll
  14.   end if
  15.   
  16.   if the timer > gFigureUtime then
  17.     set gFigureUtime = the timer + gFigureUgap
  18.     hupdateFigure
  19.   end if
  20.   
  21.   hUpdateSound
  22.   
  23.   
  24.   
  25. end
  26.