mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
426 B
C++
15 lines
426 B
C++
#include "FortReplayPlaybackState.h"
|
|
|
|
FFortReplayPlaybackState::FFortReplayPlaybackState() {
|
|
this->StartTime = 0.00f;
|
|
this->EndTime = 0.00f;
|
|
this->TimeNow = 0.00f;
|
|
this->bIsPaused = false;
|
|
this->PlaybackSpeedMultiplier = 0.00f;
|
|
this->bTimelineHasInputFocus = false;
|
|
this->HUDVisibility = EHudVisibilityState::FullyVisible;
|
|
this->bLevelStreaming = false;
|
|
this->bHasRelevancyZone = false;
|
|
}
|
|
|