Navigation
Unreal Engine C++ API Reference > Developer > FunctionalTesting
Inheritance Hierarchy
References
Module | FunctionalTesting |
Header | /Engine/Source/Developer/FunctionalTesting/Classes/FunctionalAITest.h |
Include | #include "FunctionalAITest.h" |
Syntax
class AFunctionalAITest : public [AFunctionalAITestBase](API\Developer\FunctionalTesting\AFunctionalAITestBase)
Remarks
FuntionalAITest
Functional AI Test using a regular FAITestSpawnSet as a default SpawnSet class type.
Variables
Overridden from AFunctionalAITestBase
Type | Name | Description |
---|---|---|
void | ForEachSpawnSet ( TFunctionRef< void(const FAITestSpa... ) | Iterate through the list of spawn sets and execute Predicate on each in a const-correct way. |
void | ForEachSpawnSet ( TFunctionRef< void(FAITestSpawnSetB... ) | Iterate through the list of spawn sets and execute Predicate on each. |
const FAITes... | GetSpawnSet ( const int32 SpawnSetIndex ) | Return the SpawnSet at this index of the SpawnSets array. Const-correct version. |
FAITestSpawn... | GetSpawnSet ( const int32 SpawnSetIndex ) | Return the SpawnSet at this index of the SpawnSets array. |
bool | IsValidSpawnSetIndex ( const int32 Index ) | Return whether the index is valid in the SpawnSets array. |
void | RemoveSpawnSetIfPredicate ( TFunctionRef< bool(FAITestSpawnSetB... ) | Iterate through the list of spawn sets and remove the spawn set if Predicate returns true. |