mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
19 lines
547 B
C++
19 lines
547 B
C++
#include "FortLOSComponent.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
void UFortLOSComponent::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(UFortLOSComponent, bHasBeenFound);
|
|
}
|
|
|
|
UFortLOSComponent::UFortLOSComponent() {
|
|
this->LOSMaxDistance = 4000.00f;
|
|
this->FOVInDegrees = 90.00f;
|
|
this->TimeBetweenChecks = 1.25f;
|
|
this->bStopAfterHasBeenFound = true;
|
|
this->bDistanceCheckOnly = false;
|
|
this->bHasBeenFound = false;
|
|
}
|
|
|