mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
21 lines
597 B
C++
21 lines
597 B
C++
#include "FortVoiceChannelSpeakerWidget.h"
|
|
|
|
|
|
|
|
void UFortVoiceChannelSpeakerWidget::HandleAnimationFinished() {
|
|
}
|
|
|
|
UFortVoiceChannelSpeakerWidget::UFortVoiceChannelSpeakerWidget() : UUserWidget(FObjectInitializer::Get()) {
|
|
this->ToleratedSilenceDelay = 1.00f;
|
|
this->PerfUpdateIntervalInSecs = 0.06f;
|
|
this->OpenCloseAnimProxyDuration = 0.15f;
|
|
this->TalkingAnimProxyDuration = 0.25f;
|
|
this->Anim_Close = NULL;
|
|
this->Anim_Open = NULL;
|
|
this->Text_DisplayName = NULL;
|
|
this->Border_ScaleBound = NULL;
|
|
this->AvatarIcon = NULL;
|
|
this->Image_ActiveVoiceIcon = NULL;
|
|
}
|
|
|