You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
ADDED: Set/Get Custom Primitive Data by Parameter Name ADDED: Primitive Index to Material Parameter Metadata for runtime use #ROBOMERGE-AUTHOR: alex.stevens #ROBOMERGE-SOURCE: CL 17603002 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v871-17566257) [CL 17603007 by alex stevens in ue5-release-engine-test branch]
96 lines
2.0 KiB
C#
96 lines
2.0 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class DetailCustomizations : ModuleRules
|
|
{
|
|
public DetailCustomizations(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePaths.Add("Editor/DetailCustomizations/Private"); // For PCH includes (because they don't work with relative paths, yet)
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"AppFramework",
|
|
"Core",
|
|
// "AudioEditor",
|
|
"CoreUObject",
|
|
"ApplicationCore",
|
|
"DesktopWidgets",
|
|
"Engine",
|
|
"Landscape",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorStyle",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"EditorWidgets",
|
|
"Kismet",
|
|
"KismetWidgets",
|
|
"MovieSceneCapture",
|
|
"MovieSceneTools",
|
|
"MovieSceneTracks",
|
|
"Sequencer",
|
|
"MovieScene",
|
|
"TimeManagement",
|
|
"SharedSettingsWidgets",
|
|
"ContentBrowser",
|
|
"BlueprintGraph",
|
|
"GraphEditor",
|
|
"AnimGraph",
|
|
"PropertyEditor",
|
|
"LevelEditor",
|
|
"DesktopPlatform",
|
|
"ClassViewer",
|
|
"TargetPlatform",
|
|
"ExternalImagePicker",
|
|
"MoviePlayer",
|
|
"SourceControl",
|
|
"InternationalizationSettings",
|
|
"SourceCodeAccess",
|
|
"RHI",
|
|
"HardwareTargeting",
|
|
"NavigationSystem",
|
|
"AIModule",
|
|
"ConfigEditor",
|
|
"CinematicCamera",
|
|
"ComponentVisualizers",
|
|
"SkeletonEditor",
|
|
"LevelSequence",
|
|
"AdvancedPreviewScene",
|
|
"AudioSettingsEditor",
|
|
"HeadMountedDisplay",
|
|
"DataTableEditor",
|
|
"ToolMenus",
|
|
"PhysicsCore",
|
|
"RenderCore",
|
|
"MaterialEditor",
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"Engine",
|
|
"Media",
|
|
"Landscape",
|
|
"LandscapeEditor",
|
|
"PropertyEditor",
|
|
"GameProjectGeneration",
|
|
"ComponentVisualizers",
|
|
"GraphEditor",
|
|
"MeshMergeUtilities",
|
|
"MeshReductionInterface",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"Layers",
|
|
"GameProjectGeneration",
|
|
"MeshMergeUtilities",
|
|
"MeshReductionInterface",
|
|
}
|
|
);
|
|
}
|
|
}
|