mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
43 lines
1.0 KiB
C++
43 lines
1.0 KiB
C++
#include "FortMovieWidget.h"
|
|
|
|
bool UFortMovieWidget::SetMediaSource(UMediaPlayer* InMediaPlayer, UMediaSource* InMediaSource, const FMediaPlayerOptions& PlayerOptions, bool bPlayOnOpen, bool bLooping) {
|
|
return false;
|
|
}
|
|
|
|
void UFortMovieWidget::SendStreamingAnalytics() const {
|
|
}
|
|
|
|
void UFortMovieWidget::RequestStopMovie() {
|
|
}
|
|
|
|
void UFortMovieWidget::RequestPlayMovie(bool bShouldRewind) {
|
|
}
|
|
|
|
void UFortMovieWidget::ReportVideoStreamingError(bool bLocalContentFallback, const FString& LastError) const {
|
|
}
|
|
|
|
|
|
bool UFortMovieWidget::HasPlayerForSource(UMediaSource* InMediaSource) const {
|
|
return false;
|
|
}
|
|
|
|
UMediaTexture* UFortMovieWidget::GetMediaTexture() const {
|
|
return NULL;
|
|
}
|
|
|
|
UMediaSoundComponent* UFortMovieWidget::GetMediaSoundComponent() const {
|
|
return NULL;
|
|
}
|
|
|
|
UMediaPlayer* UFortMovieWidget::GetMediaPlayer() const {
|
|
return NULL;
|
|
}
|
|
|
|
UFortMovieWidget::UFortMovieWidget() {
|
|
this->MediaPlayer = NULL;
|
|
this->MediaTexture = NULL;
|
|
this->bIncludeAudio = true;
|
|
this->SoundComponent = NULL;
|
|
}
|
|
|