Engine
Class Ladder

source: C:\XIII\Engine\Classes\Ladder.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.NavigationPoint
         |
         +--Engine.Ladder
Direct Known Subclasses:AutoLadder

class Ladder
extends Engine.NavigationPoint

// Ladders are associated with the LadderVolume that encompasses them, and provide AI navigation // support for ladder volumes. Direction should be the direction that climbing pawns // should face ============================================================================= */
Variables
 Ladder LadderList
 LadderVolume MyLadder


Source Code


00001	/*=============================================================================
00002	// Ladders are associated with the LadderVolume that encompasses them, and provide AI navigation 
00003	// support for ladder volumes.  Direction should be the direction that climbing pawns
00004	// should face
00005	============================================================================= */
00006	
00007	class Ladder extends NavigationPoint
00008		placeable
00009		native;
00010	
00011	#exec Texture Import File=Textures\Ladder.pcx Name=S_Ladder Mips=Off MASKED=1 COMPRESS=DXT1
00012	
00013	var LadderVolume MyLadder;
00014	var Ladder LadderList;
00015	
00016	defaultproperties
00017	{
00018	     bNotBased=True
00019	     Texture=Texture'Engine.S_Ladder'
00020	     CollisionRadius=35.000000
00021	     CollisionHeight=80.000000
00022	     bDirectional=True
00023	}

End Source Code