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

27 lines
771 B
C++
Executable file

#include "BeltDrivenWeapon.h"
#include "Net/UnrealNetwork.h"
void ABeltDrivenWeapon::Server_StopBarrel_Implementation() {
}
void ABeltDrivenWeapon::Server_StartBarrel_Implementation() {
}
void ABeltDrivenWeapon::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(ABeltDrivenWeapon, Simulate_SpinBarrel);
}
ABeltDrivenWeapon::ABeltDrivenWeapon() {
this->BarrelAudio = NULL;
this->BarrelSound = NULL;
this->BarrelFadeIn = 0.10f;
this->BarrelFadeOut = 0.10f;
this->BarrelPitchCurve = NULL;
this->BarrelSpinUpTime = 1.00f;
this->BarrelSpinDownTime = 1.00f;
this->CurrentSpinRate = 0.00f;
this->Simulate_SpinBarrel = false;
}