Files
FNGameProj/Source/FortniteGame/Private/AthenaNavSystemConfig.cpp
2024-01-21 00:41:14 +01:00

13 lines
403 B
C++

#include "AthenaNavSystemConfig.h"
UAthenaNavSystemConfig::UAthenaNavSystemConfig() {
this->SupportedAgents.AddDefaulted(1);
this->bUseBuildingGridAsNavigableSpace = true;
this->bDiscardNavDataFromSublevels = false;
this->bShouldDiscardSubLevelNavData = false;
this->bUseNavigationInvokers = false;
this->bLazyOctree = false;
this->bUseNavOctTreeExclusionBounds = false;
}