DRG-Femboy-Voice/Source/FSD/Private/NoisyPathfinderTest.cpp
2025-04-15 12:39:31 -07:00

19 lines
552 B
C++
Executable file

#include "NoisyPathfinderTest.h"
ANoisyPathfinderTest::ANoisyPathfinderTest() {
this->DirectionDistance = 0.00f;
this->DirectionPenalty = 35000.00f;
this->ZPenaltyPower = 1.10f;
this->ZPenaltyScale = 0.10f;
this->DistancePenaltyScale = 10.00f;
this->RandomPenaltyScale = 1500.00f;
this->TunnelSettings = NULL;
this->TunnelParameters = NULL;
this->StepSize = 1;
this->Realtime = false;
this->CarvePath = false;
this->CanDiagonal = false;
this->FloodFillSettings = NULL;
this->CSGWorld = NULL;
}