mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
22 lines
662 B
C++
22 lines
662 B
C++
#include "BuildingGameplayActorLockOnConsumable.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
void ABuildingGameplayActorLockOnConsumable::OnRep_InteractingPawn() {
|
|
}
|
|
|
|
|
|
void ABuildingGameplayActorLockOnConsumable::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(ABuildingGameplayActorLockOnConsumable, InteractingPawn);
|
|
}
|
|
|
|
ABuildingGameplayActorLockOnConsumable::ABuildingGameplayActorLockOnConsumable() {
|
|
SecondsBeforeDeathAfterPickup = 1;
|
|
InteractRadius = 1;
|
|
PawnInterpSpeed = 1;
|
|
PawnDisableRotationSeconds = 1;
|
|
InteractingPawn = NULL;
|
|
}
|
|
|