Engine
Class InterpolationPoint

source: C:\XIII\Engine\Classes\InterpolationPoint.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.Keypoint
         |
         +--Engine.InterpolationPoint
Direct Known Subclasses:None

class InterpolationPoint
extends Engine.Keypoint

//============================================================================= // InterpolationPoint. // Used as destinations to move the camera to in Matinee scenes. //=============================================================================

Source Code


00001	//=============================================================================
00002	// InterpolationPoint.
00003	// Used as destinations to move the camera to in Matinee scenes.
00004	//=============================================================================
00005	class InterpolationPoint extends Keypoint
00006		native;
00007	
00008	#exec Texture Import File=Textures\IntrpPnt.pcx Name=S_Interp Mips=Off MASKED=1 COMPRESS=DXT1
00009	
00010	defaultproperties
00011	{
00012	     Texture=Texture'Engine.S_Interp'
00013	     bDirectional=True
00014	}

End Source Code