mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
15 lines
391 B
C++
15 lines
391 B
C++
#include "SkeletalAudioBoneConfig.h"
|
|
|
|
FSkeletalAudioBoneConfig::FSkeletalAudioBoneConfig() {
|
|
SoundLoop = NULL;
|
|
SoundMediumDelta = NULL;
|
|
SoundHighDelta = NULL;
|
|
ThresholdLoop = 1;
|
|
ThresholdMedium = 1;
|
|
ThresholdHigh = 1;
|
|
RetriggerDelay = 1;
|
|
TrackingSpace = ESkeletalAudioBoneSpace::Relative;
|
|
VelocityTrackingType = ESkeletalAudioBoneVelocityType::Linear;
|
|
}
|
|
|