mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
21 lines
551 B
C++
21 lines
551 B
C++
#include "FortVideoPlayerWidget.h"
|
|
|
|
void UFortVideoPlayerWidget::DynamicHandleOnOpenMediaFailed(const FString& FailedUrl) {
|
|
}
|
|
|
|
void UFortVideoPlayerWidget::DynamicHandleOnMediaOpened(const FString& OpenedUrl) {
|
|
}
|
|
|
|
UFortVideoPlayerWidget::UFortVideoPlayerWidget() {
|
|
this->bAutoPlayOnOpen = false;
|
|
this->bLoop = false;
|
|
this->bShowSubtitles = false;
|
|
this->bNoAudio = false;
|
|
this->VideoPlayer = NULL;
|
|
this->SoundComponent = NULL;
|
|
this->SubtitlePlayer = NULL;
|
|
this->Image_VideoTexture = NULL;
|
|
this->Subtitles = NULL;
|
|
}
|
|
|