RuneI
Class LavaChunk

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

class LavaChunk
extends RuneI.Floater

//============================================================================= // LavaChunk. //=============================================================================

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



Source Code


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

End Source Code