mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
18 lines
575 B
C++
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;
|
|
}
|
|
|