You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Provided a path for building MeshDescriptions for static meshes at runtime, and supporting API. Clarified use of attributes for static meshes; now some attributes may be considered optional. Added FStaticMeshAttributes, used for fetching and registering all the attributes required by a static mesh. Added Blueprint interface for building meshes. Deprecated a number of existing APIs: - FMeshDescription methods which referred explicitly to static mesh specific attributes - StaticMesh attribute registration has been moved to FStaticMeshAttributes #rb none [CL 9123037 by Richard TalbotWatkin in Dev-Editor branch]
30 lines
706 B
C#
30 lines
706 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
public class MaterialBaking : ModuleRules
|
|
{
|
|
public MaterialBaking(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string [] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"RenderCore",
|
|
"RHI",
|
|
"UnrealEd",
|
|
"MainFrame",
|
|
"SlateCore",
|
|
"Slate",
|
|
"InputCore",
|
|
"PropertyEditor",
|
|
"EditorStyle",
|
|
"Renderer",
|
|
"MeshDescription",
|
|
"StaticMeshDescription"
|
|
}
|
|
);
|
|
}
|
|
}
|