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