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

17 lines
470 B
Ucode

/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class AnimNotify_Scripted extends AnimNotify
native(Anim)
abstract;
event Notify( Actor Owner, AnimNodeSequence AnimSeqInstigator );
event NotifyEnd( Actor Owner, AnimNodeSequence AnimSeqInstigator );
cpptext
{
// AnimNotify interface.
virtual void Notify( class UAnimNodeSequence* NodeSeq );
virtual void NotifyEnd( class UAnimNodeSequence* NodeSeq, FLOAT AnimCurrentTime );
}