DRG-Femboy-Voice/Source/FSD/Private/FlyingBugAnimInstance.cpp
2025-04-15 12:39:31 -07:00

19 lines
486 B
C++
Executable file

#include "FlyingBugAnimInstance.h"
void UFlyingBugAnimInstance::SetDeathAnimation(EFlyingBugDeathAnimationCategory deathAnim) {
}
bool UFlyingBugAnimInstance::IsNotStaggered() const {
return false;
}
bool UFlyingBugAnimInstance::IsNotInAttackMode() const {
return false;
}
UFlyingBugAnimInstance::UFlyingBugAnimInstance() {
this->IsInAttackMode = false;
this->IsStaggered = false;
this->DeathAnimationCategory = EFlyingBugDeathAnimationCategory::NoAnimation;
}