You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @17911760, Release-5.0 @17915875 and Dev-PerfTest @17914035 [CL 17949667 by aurel cordonnier in ue5-main branch]
36 lines
1023 B
C++
36 lines
1023 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
#include "Engine/EngineTypes.h"
|
|
#include "Engine/DeveloperSettings.h"
|
|
|
|
#include "TextureImportSettings.generated.h"
|
|
|
|
struct FPropertyChangedEvent;
|
|
|
|
UCLASS(config=Editor, defaultconfig, meta=(DisplayName="Texture Import"))
|
|
class TEXTUREUTILITIESCOMMON_API UTextureImportSettings : public UDeveloperSettings
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
UPROPERTY(config, EditAnywhere, Category = VirtualTextures, meta = (
|
|
DisplayName = "Auto Virtual Texturing Size",
|
|
ToolTip = "Automatically enable the 'Virtual Texture Streaming' texture setting for textures larger than or equal to this size. This setting will not affect existing textures in the project."))
|
|
int32 AutoVTSize;
|
|
|
|
public:
|
|
|
|
//~ Begin UObject Interface
|
|
|
|
virtual void PostInitProperties() override;
|
|
|
|
#if WITH_EDITOR
|
|
virtual void PostEditChangeProperty(FPropertyChangedEvent& PropertyChangedEvent) override;
|
|
#endif
|
|
|
|
//~ End UObject Interface
|
|
};
|