1
0
KF2-Dev-Scripts/KFGame/Classes/KFAnim_Random.uc

25 lines
756 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// KFAnim_Random
//=============================================================================
// Same as AnimNodeRandom with a few optional settings
//=============================================================================
// Killing Floor 2
// Copyright (C) 2015 Tripwire Interactive LLC
//=============================================================================
class KFAnim_Random extends AnimNodeRandom
native(Anim);
/** If set, select a new random child instead of resuming */
var() bool bNoResumeOnRelevant;
cpptext
{
/** Notification when node becomes relevant. */
virtual void OnBecomeRelevant();
}
defaultproperties
{
}