Files
UnrealEngineUWP/Engine/Source/Editor/TextureEditor/Private/TextureEditorClasses.cpp
Matt Kuhlenschmidt e618c65937 Texture editor reskin
[CL 14599258 by Matt Kuhlenschmidt in ue5-main branch]
2020-10-28 10:59:23 -04:00

19 lines
568 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "CoreMinimal.h"
#include "TextureEditorSettings.h"
UTextureEditorSettings::UTextureEditorSettings( const FObjectInitializer& ObjectInitializer )
: Super(ObjectInitializer)
, Background(TextureEditorBackground_Checkered)
, 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)
{ }