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

30 lines
820 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
class InterpGroupDirector extends InterpGroup
native(Interpolation)
collapsecategories
hidecategories(Object);
/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*
* Group for controlling properties of a 'player' in the game. This includes switching the player view between different cameras etc.
*/
cpptext
{
// UInterpGroup interface
virtual void UpdateGroup(FLOAT NewPosition, class UInterpGroupInst* GrInst, UBOOL bPreview, UBOOL bJump);
// UInterpGroupDirector interface
class UInterpTrackDirector* GetDirectorTrack();
class UInterpTrackFade* GetFadeTrack();
class UInterpTrackSlomo* GetSlomoTrack();
class UInterpTrackColorScale* GetColorScaleTrack();
class UInterpTrackAudioMaster* GetAudioMasterTrack();
}
defaultproperties
{
GroupName="DirGroup"
}