mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
13 lines
403 B
C++
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;
|
|
}
|
|
|