RuneI
Class AnimalTrough

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

class AnimalTrough
extends RuneI.DecorationRune

//============================================================================= // AnimalTrough. //=============================================================================

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



Source Code


00001	//=============================================================================
00002	// AnimalTrough.
00003	//=============================================================================
00004	class AnimalTrough expands DecorationRune;
00005	
00006	
00007	//============================================================
00008	//
00009	// MatterForJoint
00010	//
00011	// Returns what kind of material joint is associated with
00012	//============================================================
00013	function EMatterType MatterForJoint(int joint)
00014	{
00015		return MATTER_WOOD;
00016	}
00017	
00018	defaultproperties
00019	{
00020	     bDestroyable=True
00021	     bBurnable=True
00022	     bStatic=False
00023	     DrawType=DT_SkeletalMesh
00024	     LODCurve=LOD_CURVE_NONE
00025	     CollisionRadius=52.000000
00026	     CollisionHeight=15.000000
00027	     bCollideActors=True
00028	     bCollideWorld=True
00029	     bBlockActors=True
00030	     bBlockPlayers=True
00031	     bJointsBlock=True
00032	     Skeletal=SkelModel'objects.AnimalTrough'
00033	}

End Source Code