home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / Engine / Classes / Keypoint.uc < prev    next >
Text File  |  2003-06-23  |  569b  |  21 lines

  1. //=============================================================================
  2. // Keypoint, the base class of invisible actors which mark things.
  3. //=============================================================================
  4. class Keypoint extends Actor
  5.     abstract
  6.     placeable
  7.     native;
  8.  
  9. // Sprite.
  10. #exec Texture Import File=Textures\Keypoint.pcx Name=S_Keypoint Mips=Off MASKED=1
  11.  
  12. defaultproperties
  13. {
  14.      bStatic=True
  15.      bHidden=True
  16.      SoundVolume=0
  17.      CollisionRadius=+00010.000000
  18.      CollisionHeight=+00010.000000
  19.      Texture=S_Keypoint
  20. }
  21.