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

24 lines
486 B
Ucode

/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class InterpTrackInstVisibility extends InterpTrackInst
native(Interpolation);
var() EVisibilityTrackAction Action;
/**
* 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
{
/**
*/
virtual void InitTrackInst(UInterpTrack* Track);
}
defaultproperties
{
}