You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Expand texture build workers to all current platform specific texture formats, or added build functions to the base build worker. Workers are buildable, but not discoverable yet as discovery will be refactored soon to use Target Receipts. Reduce boilerplate involved in setup of build worker. #rb devin.doucette [CL 16853856 by Zousar Shaker in ue5-main branch]
28 lines
565 B
C#
28 lines
565 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class BaseTextureBuildWorker : TextureBuildWorker
|
|
{
|
|
public BaseTextureBuildWorker(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePathModuleNames.AddRange(new string[]
|
|
{
|
|
"CoreUObject",
|
|
"Engine",
|
|
});
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[]
|
|
{
|
|
"Core",
|
|
"TextureBuild",
|
|
"TextureFormat",
|
|
"TextureFormatASTC",
|
|
"TextureFormatDXT",
|
|
"TextureFormatETC2",
|
|
"TextureFormatIntelISPCTexComp",
|
|
"TextureFormatUncompressed",
|
|
});
|
|
}
|
|
}
|