You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
19 lines
447 B
C++
19 lines
447 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "MovieSceneToolsProjectSettings.h"
|
|
|
|
|
|
UMovieSceneToolsProjectSettings::UMovieSceneToolsProjectSettings()
|
|
: DefaultStartTime(0.f)
|
|
, DefaultDuration(5.f)
|
|
, ShotDirectory(TEXT("shots"))
|
|
, ShotPrefix(TEXT("shot"))
|
|
, FirstShotNumber(10)
|
|
, ShotIncrement(10)
|
|
, ShotNumDigits(4)
|
|
, TakeNumDigits(2)
|
|
, FirstTakeNumber(1)
|
|
, TakeSeparator(TEXT("_"))
|
|
, SubSequenceSeparator(TEXT("_"))
|
|
{ }
|