mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
24 lines
886 B
C++
24 lines
886 B
C++
#include "FortMaterialProgressBar.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
void UFortMaterialProgressBar::SetStyle(TSubclassOf<UFortMaterialProgressBarStyle> BarStyle) {
|
|
}
|
|
|
|
void UFortMaterialProgressBar::SetProgressBarSectionPercent(TEnumAsByte<EFortMaterialProgressBarSection::Type> BarSection, float Percent) {
|
|
}
|
|
|
|
void UFortMaterialProgressBar::SetProgressBarSectionColor(TEnumAsByte<EFortMaterialProgressBarSection::Type> BarSection, FLinearColor Color, EFortMaterialProgressBarSectionColorNumber ColorNumber) {
|
|
}
|
|
|
|
void UFortMaterialProgressBar::SetBackgroundColor(FLinearColor Color) {
|
|
}
|
|
|
|
UFortMaterialProgressBar::UFortMaterialProgressBar() {
|
|
this->Style = NULL;
|
|
this->BackgroundColorParamName = TEXT("Background");
|
|
this->OverflowBehavior = EFortMaterialProgressBarSectionOverflowBehavior::PreserveValues;
|
|
this->ProgressBar = NULL;
|
|
this->ProgressBarMID = NULL;
|
|
}
|
|
|