mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 12:03:27 +00:00
19 lines
765 B
C++
19 lines
765 B
C++
#include "FortQueryGenerator_PointsFromNavGraph.h"
|
|
#include "EnvironmentQuery/Contexts/EnvQueryContext_Querier.h"
|
|
|
|
UFortQueryGenerator_PointsFromNavGraph::UFortQueryGenerator_PointsFromNavGraph() {
|
|
this->ExploreAngleDot = 1;
|
|
this->bLimitExplorationDirection = false;
|
|
this->bOnlyFlatSurface = true;
|
|
this->bUseParameterizedDirection = false;
|
|
this->bUseHeightCheck = true;
|
|
this->bFilterAllowTerrain = true;
|
|
this->bFilterAllowBuildings = false;
|
|
this->bFilterAllowDropdown = false;
|
|
this->bFilterAllowClimbup = true;
|
|
this->bFilterAllowSmash = true;
|
|
this->PathDistanceFilterOperator = EFortPointsFromNavGraphGoalPathDistanceFilterOperator::AllGoalsInRange;
|
|
this->GenerateAround = UEnvQueryContext_Querier::StaticClass();
|
|
}
|
|
|