mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
24 lines
614 B
C++
24 lines
614 B
C++
#include "BacchusButton.h"
|
|
|
|
void UBacchusButton::SetButtonSprite_Implementation(UPaperSprite* NewSprite) {
|
|
}
|
|
|
|
void UBacchusButton::SetButtonSize_Implementation(float NewButtonSize) {
|
|
}
|
|
|
|
void UBacchusButton::SetButtonDisplayScale_Implementation(float NewDisplayScale) {
|
|
}
|
|
|
|
void UBacchusButton::OnClicked_Implementation() {
|
|
}
|
|
|
|
UBacchusButton::UBacchusButton() {
|
|
this->ClickMethod = EButtonClickMethod::DownAndUp;
|
|
this->TouchMethod = EButtonTouchMethod::DownAndUp;
|
|
this->ButtonSize = 200.00f;
|
|
this->ButtonDisplayScale = 1.00f;
|
|
this->ShowRadialProgress = false;
|
|
this->InternalButton = NULL;
|
|
}
|
|
|