1
0
KF2-Dev-Scripts/Engine/Classes/InterpTrackInstDirector.uc
2020-12-13 18:01:13 +03:00

24 lines
710 B
Ucode

/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class InterpTrackInstDirector extends InterpTrackInst
native(Interpolation);
var Actor OldViewTarget;
/** Rendering overrides that were active on the player camera, used to restore settings when the director track ends in game. */
var RenderingPerformanceOverrides OldRenderingOverrides;
cpptext
{
/** Initialise this Track instance. Called in-game before doing any interpolation. */
virtual void InitTrackInst(UInterpTrack* Track);
/** Called when interpolation is done. Should not do anything else with this TrackInst after this. */
virtual void TermTrackInst(UInterpTrack* Track);
}
defaultproperties
{
}