mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
514 B
C++
15 lines
514 B
C++
#include "MountedWeaponInfo.h"
|
|
|
|
FMountedWeaponInfo::FMountedWeaponInfo() {
|
|
this->ThirdPersonDistanceCorrection = 0.00f;
|
|
this->ThirdPersonDistanceCorrectionPawn = 0.00f;
|
|
this->bDamageStartFromWeaponTowardFocus = false;
|
|
this->bTargetSourceFromVehicleMuzzle = false;
|
|
this->MinReticleAlphaForAimInterpolation = 0.00f;
|
|
this->MinAimAngleDiffForReticleAlpha = 0.00f;
|
|
this->MaxAimAngleDiffForReticleAlpha = 0.00f;
|
|
this->bNeedsVehicleAttachment = false;
|
|
this->AttachAttemptCount = 0;
|
|
}
|
|
|