home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2003 June / macformat-130.iso / mac / Reviewed⁄Demos / Spearhead Demo / demota / pak1.pk3 / anim / surprise.scr < prev    next >
Encoding:
Text File  |  2002-10-21  |  378 b   |  23 lines

  1. //-------
  2. // Surprise
  3. //-------
  4.  
  5. //println "Entering surprise.scr"
  6. waitexec "anim/default_inithandler.scr"
  7.  
  8. self.blendtime = 0.25
  9.  
  10. switch (self.position)
  11. {
  12.     stand:
  13.     walk:
  14.     run:
  15.         self setmotionanim (self.weapongroup + "_stand_surprise")
  16.         self waittill flaggedanimdone
  17.         break
  18.  
  19.     default:
  20.         println "Invalid position for stand surprise animation"
  21.         break
  22. }
  23.