mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
18 lines
483 B
C++
18 lines
483 B
C++
#include "FortBowWeaponAnimInstance.h"
|
|
|
|
UFortBowWeaponAnimInstance::UFortBowWeaponAnimInstance() {
|
|
ChargeBlendSpaceCrouchSpeed = 1;
|
|
ChargePlayRate = 1;
|
|
OutOfAmmoAlpha = 1;
|
|
BowAimYaw = 1;
|
|
BowAimPitch = 1;
|
|
OwnerGender = EFortCustomGender::Invalid;
|
|
bIsBowCharging = false;
|
|
bEnterChargingNormalTransition = false;
|
|
bEnterChargingFastTransition = false;
|
|
bShouldPlayDefaultPose = false;
|
|
bIsBowAtMaxCharge = false;
|
|
bIsCrouchMoving = false;
|
|
}
|
|
|