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

17 lines
413 B
C++
Executable file

#include "FadeData.h"
FFadeData::FFadeData() {
this->bEnabled = false;
this->bShowDebugOutput = false;
this->WidgetType = NULL;
this->Widget = NULL;
this->CurrentFade = 0.00f;
this->TargetFade = 0.00f;
this->FadeSpeed = 0.00f;
this->Delay = 0.00f;
this->bFadeWorldOnly = false;
this->bCapFramerate = false;
this->bToSpaceRig = false;
this->LoadingImage = NULL;
}