home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / Gameplay / Classes / BlockedPath.uc < prev    next >
Text File  |  2003-12-11  |  368b  |  16 lines

  1. //=============================================================================
  2. // BlockedPath.
  3. // 
  4. //=============================================================================
  5. class BlockedPath extends NavigationPoint
  6.     placeable;
  7.  
  8. function Trigger( actor Other, pawn EventInstigator )
  9. {
  10.     bBlocked = !bBlocked;
  11. }
  12.  
  13. defaultproperties
  14. {
  15.     bBlocked=true
  16. }