RuneI
Class IceChunk

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

class IceChunk
extends RuneI.Floater

//============================================================================= // IceChunk. //=============================================================================

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



Source Code


00001	//=============================================================================
00002	// IceChunk.
00003	//=============================================================================
00004	class IceChunk expands Floater;
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_ICE;
00016	}
00017	
00018	defaultproperties
00019	{
00020	     CollisionRadius=64.000000
00021	     CollisionHeight=16.000000
00022	     Skeletal=SkelModel'objects.IceChunk'
00023	}

End Source Code