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

25 lines
632 B
Ucode
Raw Permalink Normal View History

2020-12-13 15:01:13 +00:00
/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class InterpTrackInstParticleReplay extends InterpTrackInst
native(Interpolation);
/**
* Position we were in last time we evaluated.
* During UpdateTrack, events between this time and the current time will be processed.
*/
var float LastUpdatePosition;
cpptext
{
/** Initialise this Track instance. Called in-game before doing any interpolation. */
virtual void InitTrackInst(UInterpTrack* Track);
/** Restore the saved state of this Actor. */
virtual void RestoreActorState(UInterpTrack* Track);
}
defaultproperties
{
}