RuneI
Class Wagon

source: c:\runehov\RuneI\Classes\Wagon.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.Decoration
         |
         +--RuneI.DecorationRune
            |
            +--RuneI.Wagon
Direct Known Subclasses:None

class Wagon
extends RuneI.DecorationRune

//============================================================================= // Wagon. //=============================================================================

Function Summary
 EMatterType MatterForJoint(int joint)
     
//============================================================
//
// MatterForJoint
//
// Returns what kind of material joint is associated with
//============================================================



Source Code


00001	//=============================================================================
00002	// Wagon.
00003	//=============================================================================
00004	class Wagon expands DecorationRune;
00005	
00006	//============================================================
00007	//
00008	// MatterForJoint
00009	//
00010	// Returns what kind of material joint is associated with
00011	//============================================================
00012	function EMatterType MatterForJoint(int joint)
00013	{
00014		return MATTER_WOOD;
00015	}
00016	
00017	defaultproperties
00018	{
00019	     DrawType=DT_SkeletalMesh
00020	     LODCurve=LOD_CURVE_ULTRA_CONSERVATIVE
00021	     bCollideActors=True
00022	     bCollideWorld=True
00023	     bBlockActors=True
00024	     bBlockPlayers=True
00025	     bJointsBlock=True
00026	     Skeletal=SkelModel'objects.Wagon'
00027	}

End Source Code