mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 12:03:27 +00:00
21 lines
625 B
C++
21 lines
625 B
C++
#include "AthenaNavSystem.h"
|
|
|
|
void UAthenaNavSystem::UnregisterNavGenerationObserver(USceneComponent* Component) {
|
|
}
|
|
|
|
void UAthenaNavSystem::RegisterNavGenerationObserver(USceneComponent* Component, FOnNavGenerationFinished Event) {
|
|
}
|
|
|
|
bool UAthenaNavSystem::IsInitialNavigationLockActive(UObject* WorldContextObject) {
|
|
return false;
|
|
}
|
|
|
|
UAthenaNavSystem::UAthenaNavSystem() {
|
|
this->bUseNavDataSetVariants = false;
|
|
this->bUseBuildingGridAsNavigableSpace = false;
|
|
this->bMarkBuildingFoundationDirty = false;
|
|
this->bSupportRuntimeNavmeshDisabling = true;
|
|
this->NavGenerationObserverCheckInterval = 1;
|
|
}
|
|
|