Files
UnrealEvent/Project/Source/FortniteGame/Private/FortQueryGenerator_PointsFromNavGraph.cpp
T
2026-04-22 15:51:07 +02:00

18 lines
735 B
C++

#include "FortQueryGenerator_PointsFromNavGraph.h"
#include "EnvironmentQuery/Contexts/EnvQueryContext_Querier.h"
UFortQueryGenerator_PointsFromNavGraph::UFortQueryGenerator_PointsFromNavGraph() {
this->ExploreAngleDot = 0.70f;
this->bLimitExplorationDirection = false;
this->bOnlyFlatSurface = true;
this->bUseParameterizedDirection = false;
this->bFilterAllowTerrain = true;
this->bFilterAllowBuildings = false;
this->bFilterAllowDropdown = false;
this->bFilterAllowClimbup = true;
this->bFilterAllowSmash = true;
this->PathDistanceFilterOperator = EFortPointsFromNavGraphGoalPathDistanceFilterOperator::AllGoalsInRange;
this->GenerateAround = UEnvQueryContext_Querier::StaticClass();
}