RuneI
Class CineInterpolationPointTemp

source: c:\runehov\RuneI\Classes\CineInterpolationPointTemp.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.Keypoint
         |
         +--Engine.InterpolationPoint
            |
            +--RuneI.CineInterpolationPoint
               |
               +--RuneI.CineInterpolationPointTemp
Direct Known Subclasses:None

class CineInterpolationPointTemp
extends RuneI.CineInterpolationPoint

//============================================================================= // CineInterpolationPointTemp. // // RUNE: A Dummy CineInterpolation point. Identical, with the exception // that this doesn't setup the next/prev stuff in BeginPlay. // Therefore, next and prev MUST be set up after this actor has been spawned. // // This class is used in the CineCamera to ease the CineCamera to/from the // real behind-camera point. //=============================================================================

Function Summary
 void BeginPlay()



Source Code


00001	//=============================================================================
00002	// CineInterpolationPointTemp.
00003	//
00004	// RUNE: A Dummy CineInterpolation point.  Identical, with the exception
00005	// that this doesn't setup the next/prev stuff in BeginPlay.
00006	// Therefore, next and prev MUST be set up after this actor has been spawned.
00007	//
00008	// This class is used in the CineCamera to ease the CineCamera to/from the 
00009	// real behind-camera point.
00010	//=============================================================================
00011	class CineInterpolationPointTemp expands CineInterpolationPoint;
00012	
00013	function BeginPlay()
00014	{
00015		Super(KeyPoint).BeginPlay();
00016	}
00017	
00018	defaultproperties
00019	{
00020	}

End Source Code