mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
19 lines
802 B
C++
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;
|
|
}
|
|
|