26 lines
434 B
C++
26 lines
434 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "MuR/Settings.h"
|
|
|
|
namespace UE::Mutable::Private
|
|
{
|
|
|
|
void FSettings::SetProfile( bool bEnabled )
|
|
{
|
|
bProfile = bEnabled;
|
|
}
|
|
|
|
|
|
void FSettings::SetWorkingMemoryBytes( uint64 Bytes )
|
|
{
|
|
WorkingMemoryBytes = Bytes;
|
|
}
|
|
|
|
|
|
void FSettings::SetImageCompressionQuality( int32 Quality )
|
|
{
|
|
ImageCompressionQuality = Quality;
|
|
}
|
|
|
|
}
|