Files
FNGameProj/Source/FortniteGame/Private/FortBowWeaponAnimInstance.cpp
2024-01-21 00:41:14 +01:00

18 lines
575 B
C++

#include "FortBowWeaponAnimInstance.h"
UFortBowWeaponAnimInstance::UFortBowWeaponAnimInstance() {
this->ChargeBlendSpaceCrouchSpeed = 0.00f;
this->ChargePlayRate = 0.00f;
this->OutOfAmmoAlpha = 0.00f;
this->BowAimYaw = 0.00f;
this->BowAimPitch = 0.00f;
this->OwnerGender = EFortCustomGender::Invalid;
this->bIsBowCharging = false;
this->bEnterChargingNormalTransition = false;
this->bEnterChargingFastTransition = false;
this->bShouldPlayDefaultPose = false;
this->bIsBowAtMaxCharge = false;
this->bIsCrouchMoving = false;
}