You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Add a generic opaque mesh view interface FLayoutUV::IMeshView to abstract mesh data access and allow FLayoutUV to be used with any mesh type in any module. Replaced few instances of using an old version of overlapping corners data structure (multi-map) with new specialized FOverlappingCorners container. #rb Alexis.Matte #rb Brian.Karis [CL 4242975 by Yuriy ODonnell in Dev-Editor branch]
29 lines
886 B
C#
29 lines
886 B
C#
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class MeshDescriptionOperations : ModuleRules
|
|
{
|
|
public MeshDescriptionOperations(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePaths.Add("Developer/MeshDescriptionOperations/Private");
|
|
PublicIncludePaths.Add("Developer/MeshDescriptionOperations/Public");
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"RenderCore",
|
|
"MeshDescription",
|
|
"MeshUtilitiesCommon",
|
|
"RawMesh",
|
|
"RHI"
|
|
}
|
|
);
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "MikkTSpace");
|
|
}
|
|
}
|
|
}
|