You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
fix ExternalImagePicker image loading code to use modern method fix IcoImageWrapper was not setting BitDepth #preflight 6331bf11b20e73a09833dfa9 #rb fabian.giesen [CL 22191984 by charles bloom in ue5-main branch]
25 lines
483 B
C#
25 lines
483 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class ExternalImagePicker : ModuleRules
|
|
{
|
|
public ExternalImagePicker(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"Slate",
|
|
"SlateCore",
|
|
"DesktopPlatform",
|
|
"ImageWrapper",
|
|
"ImageCore",
|
|
|
|
"InputCore",
|
|
"PropertyEditor", // for 'reset to default'
|
|
}
|
|
);
|
|
}
|
|
}
|