You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb charles.bloom #preflight 6372ae329e3bea80790a2b3f [CL 23126329 by alexander suvorov in ue5-main branch]
23 lines
665 B
C++
23 lines
665 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Math/Color.h"
|
|
#include "TextureEditorSettings.h"
|
|
#include "UObject/Object.h"
|
|
|
|
class FObjectInitializer;
|
|
|
|
|
|
UTextureEditorSettings::UTextureEditorSettings( const FObjectInitializer& ObjectInitializer )
|
|
: Super(ObjectInitializer)
|
|
, Background(TextureEditorBackground_Checkered)
|
|
, Sampling(TextureEditorSampling_Default)
|
|
, BackgroundColor(FColor::FromHex("242424FF"))
|
|
, CheckerColorOne(FColor(128, 128, 128))
|
|
, CheckerColorTwo(FColor(64, 64, 64))
|
|
, CheckerSize(16)
|
|
, FitToViewport(true)
|
|
, ZoomMode(ETextureEditorZoomMode::Fit)
|
|
, TextureBorderColor(FColor::White)
|
|
, TextureBorderEnabled(true)
|
|
{ }
|