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

17 lines
445 B
C++
Executable file

#include "WeaponImpactComponent.h"
void UWeaponImpactComponent::EnableImpactCheckhing(USkeletalMeshComponent* cmp) {
}
void UWeaponImpactComponent::DisableImpactChecking() {
}
UWeaponImpactComponent::UWeaponImpactComponent() {
this->DebugText = false;
this->ActiveMesh = NULL;
this->TrackAcceleration = false;
this->TrackVelocity = true;
this->TriggerHighAccelAt = 0.00f;
this->TriggerAtVelocityDifference = 2.50f;
}