mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
21 lines
595 B
C++
21 lines
595 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() {
|
|
bUseNavDataSetVariants = false;
|
|
bUseBuildingGridAsNavigableSpace = false;
|
|
bMarkBuildingFoundationDirty = false;
|
|
bSupportRuntimeNavmeshDisabling = true;
|
|
NavGenerationObserverCheckInterval = 1;
|
|
}
|
|
|