mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
21 lines
601 B
C++
21 lines
601 B
C++
#include "FortWaterBodyActor.h"
|
|
|
|
void AFortWaterBodyActor::SetSwampLocationAndRadius(const FVector& InPosition, float InRadius) {
|
|
}
|
|
|
|
|
|
|
|
|
|
float AFortWaterBodyActor::GetWaterVelocityAtSplineInputKey(float InKey) const {
|
|
return 0.0f;
|
|
}
|
|
|
|
void AFortWaterBodyActor::GetWaterSurfaceInfo(FVector QueryLocation, FVector& WaterPlaneLocation, FVector& WaterPlaneNormal, FVector& WaterSurfacePosition, float& WaterDepth, int32& WaterBodyIdx, FVector& WaterVelocity, bool bIncludeDepth, bool bIncludeWaves) const {
|
|
}
|
|
|
|
AFortWaterBodyActor::AFortWaterBodyActor() {
|
|
WaterPriority = 0;
|
|
bIsSwamp = false;
|
|
}
|
|
|