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

16 lines
527 B
C++
Executable file

#include "ImpactAudioComponent.h"
#include "Templates/SubclassOf.h"
void UImpactAudioComponent::OnOwnerDeath(UHealthComponentBase* HealthComponent) {
}
UImpactAudioComponent* UImpactAudioComponent::AddImpactAudioToActor(AActor* Actor, USceneComponent* AttachToComponent, TSubclassOf<UImpactAudioComponent> ComponentClass) {
return NULL;
}
UImpactAudioComponent::UImpactAudioComponent() {
this->AudioParameterSpeed = TEXT("Impact_Speed");
this->DecelerationThreshold = 40.00f;
this->ListenForDeath = true;
}