Files
FNGameProj/Source/FortniteGame/Private/FortAthenaAIBotUnstuckDigestedSkillSet.cpp
T
2024-06-07 01:17:09 +02:00

19 lines
802 B
C++

#include "FortAthenaAIBotUnstuckDigestedSkillSet.h"
UFortAthenaAIBotUnstuckDigestedSkillSet::UFortAthenaAIBotUnstuckDigestedSkillSet() {
bCanTeleportWhenStuck = true;
bCanTeleportWhenStuckWithPlayerAround = true;
MaxDistanceSqToPlayerToTeleport = 1;
PlayerToPhoebeAngleVisibilityConeToTeleport = 1;
TimeBetweenPartialPathToConsiderPathStuck = 1;
ConsecutivePartialPathCountToConsiderPathStuck = 0;
DistanceSqBetweenBlockedPathToConsiderPathStuck = 1;
DistanceBetweenSampleToConsiderPathStuckInWater = 1;
TimeBetweenSampleToConsiderPathStuckInWater = 1;
DistanceBetweenSampleToConsiderPathStuckOnGround = 1;
TimeBetweenSampleToConsiderPathStuckOnGround = 1;
ConsecutiveBlockedPathCountToConsiderPathStuck = 0;
MaxSafeZoneIndexToAllowTeleport = 0;
}