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

31 lines
1.0 KiB
Ucode
Raw Permalink Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// KFAISystem
//=============================================================================
//
//=============================================================================
// Killing Floor 2
// Copyright (C) 2015 Tripwire Interactive LLC
//=============================================================================
class KFAISubsystem extends BaseAISubsystem
config(Engine)
native(AI);
// if you want a behavior tree template to get loaded it needs to be in this list
//var array<BTTemplate> BehaviorTreeTemplatesToLoadForThisSystem;
// if you want a Enviromental terain query template to get loaded it needs to be in this list
//var array<ETQTemplate> ETQ_TemplatesToLoadForThisSystem;
/** Used to access the difficulty values from KFGame for BaseAI */
event float GetDifficultyValue(int Index)
{
return class'KFGameDifficultyInfo'.static.GetDifficultyValue( Index );
}
cpptext
{
};
defaultproperties
{
}