Files
UnrealEngineUWP/Engine/Source/Editor/TextureEditor/TextureEditor.Build.cs
dan thompson 471244fa08 Undoing backout - this was depending on the original issue, not an issue in and of itself. This does also correct a separate issue with the texture editor using the removed metadata information.
Removing texture build metadata due to ddc complexities. It will be added to the metadata system in the new build flow SoonTM. Additionally, the alpha information for the source mips is no longer necessary as that is computed elsewhere now.
#rb fabian.giesen
#jira UE-183750

[CL 30895383 by dan thompson in 5.4 branch]
2024-01-25 14:28:31 -05:00

44 lines
791 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class TextureEditor : ModuleRules
{
public TextureEditor(ReadOnlyTargetRules Target) : base(Target)
{
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"MainFrame",
"WorkspaceMenuStructure"
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Settings",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"ImageCore",
"InputCore",
"Engine",
"RenderCore",
"RHI",
"Slate",
"SlateCore",
"EditorFramework",
"UnrealEd",
"PropertyEditor",
"EditorWidgets",
"MediaAssets",
"DerivedDataCache",
"DeveloperToolSettings"
}
);
}
}