1
0
KF2-Dev-Scripts/Engine/Classes/InterpTrackInstAnimControl.uc

22 lines
631 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
class InterpTrackInstAnimControl extends InterpTrackInst
native(Interpolation);
/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
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);
}
var transient float LastUpdatePosition;
var editoronly transient vector InitPosition;
var editoronly transient rotator InitRotation;