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

  1. // Sets the way the AI holds its weapon.  Right now, it takes effect the next time
  2. // the AI changes animation.
  3.  
  4. start local.weaponpos:
  5.  
  6. switch (local.weaponpos)
  7. {
  8. case down:
  9.     self.weaponpos = down
  10.     break
  11. case up:
  12.     self.weaponpos = up
  13.     break
  14. default:
  15.     println "Illegal weapon pos supplied to setweaponpos.scr"
  16.     println "Legal values are:"
  17.     println "  down"
  18.     println "  up"
  19.     break
  20. }
  21.