mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
432 B
C++
14 lines
432 B
C++
#include "FortPetAnimInstance_AnimDynamics.h"
|
|
|
|
UFortPetAnimInstance_AnimDynamics::UFortPetAnimInstance_AnimDynamics() {
|
|
this->PawnSpeedForAnimDynamics = 0.00f;
|
|
this->PawnSpeedForPlayingEmote = 0.00f;
|
|
this->PawnSpeedForDBNO = 0.00f;
|
|
this->bIsJoggingOrSprinting = false;
|
|
this->bPetWantsAnimDynamics = false;
|
|
this->bIsPlayingEmote = false;
|
|
this->bIsDBNO = false;
|
|
this->bIsPlayingEmoteOrDBNO = false;
|
|
}
|
|
|