mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
15 lines
517 B
C++
15 lines
517 B
C++
#include "AthenaNavSystemConfig.h"
|
|
|
|
UAthenaNavSystemConfig::UAthenaNavSystemConfig() {
|
|
this->bUseNavDataSetVariants = false;
|
|
this->bUseBuildingGridAsNavigableSpace = true;
|
|
this->bDiscardNavDataFromSublevels = false;
|
|
this->bUseNavigationInvokers = false;
|
|
this->bLazyOctree = false;
|
|
this->bUseNavOctTreeInclusionBounds = false;
|
|
this->bPrioritizeNavigationAroundSpawners = false;
|
|
this->bResetDirtyAreasOnInitialBuildingRelease = true;
|
|
this->bSupportRuntimeNavmeshDisabling = true;
|
|
}
|
|
|