2021-03-05 19:27:14 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
#include "LevelSequenceProjectSettings.h"
|
|
|
|
|
|
2022-09-24 13:57:58 -04:00
|
|
|
#include UE_INLINE_GENERATED_CPP_BY_NAME(LevelSequenceProjectSettings)
|
|
|
|
|
|
2021-03-05 19:27:14 -04:00
|
|
|
ULevelSequenceProjectSettings::ULevelSequenceProjectSettings()
|
|
|
|
|
: bDefaultLockEngineToDisplayRate(false)
|
|
|
|
|
, DefaultDisplayRate("30fps")
|
|
|
|
|
, DefaultTickResolution("24000fps")
|
|
|
|
|
, DefaultClockSource(EUpdateClockSource::Tick)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ULevelSequenceProjectSettings::PostInitProperties()
|
|
|
|
|
{
|
|
|
|
|
Super::PostInitProperties();
|
|
|
|
|
|
|
|
|
|
#if WITH_EDITOR
|
|
|
|
|
if(IsTemplate())
|
|
|
|
|
{
|
|
|
|
|
ImportConsoleVariableValues();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if WITH_EDITOR
|
|
|
|
|
|
|
|
|
|
void ULevelSequenceProjectSettings::PostEditChangeProperty(struct FPropertyChangedEvent& PropertyChangedEvent)
|
|
|
|
|
{
|
|
|
|
|
Super::PostEditChangeProperty(PropertyChangedEvent);
|
|
|
|
|
|
|
|
|
|
if(PropertyChangedEvent.Property)
|
|
|
|
|
{
|
|
|
|
|
ExportValuesToConsoleVariables(PropertyChangedEvent.Property);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-09-24 13:57:58 -04:00
|
|
|
|