Files
UnrealEngineUWP/Engine/Source/Editor/LevelEditor/LevelEditor.Build.cs
julien lheureux 7a2733d861 - Adapted the MergeActors dialog to the new UX style.
- Refactored the MergeActors different panels to reuse the same code.
- Adapted quick merge actions (required some refactoring)
- Fixed some issues with the "replace source actors" feature vs. actual selection
- Fixed crash when using the instancing mode with "replace source actors" enabled.

#rb sebastien.lussier
#jira UETOOL-2808

[CL 15019677 by julien lheureux in ue5-main branch]
2021-01-08 11:22:39 -04:00

120 lines
2.4 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LevelEditor : ModuleRules
{
public LevelEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetTools",
"ClassViewer",
"MainFrame",
"PlacementMode",
"SlateReflector",
"IntroTutorials",
"AppFramework",
"PortalServices",
"Persona",
"DataLayerEditor",
"MergeActors",
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"Settings",
"IntroTutorials",
"HeadMountedDisplay",
"UnrealEd",
"VREditor",
"CommonMenuExtensions"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"LevelSequence",
"Analytics",
"ApplicationCore",
"Core",
"CoreUObject",
"LauncherPlatform",
"InputCore",
"Slate",
"SlateCore",
"EditorStyle",
"Engine",
"MessageLog",
"SourceControl",
"SourceControlWindows",
"StatsViewer",
"EditorFramework",
"UnrealEd",
"DeveloperSettings",
"RenderCore",
"DeviceProfileServices",
"ContentBrowser",
"SceneOutliner",
"ActorPickerMode",
"RHI",
"Projects",
"TargetPlatform",
"TypedElementFramework",
"TypedElementInterfaces",
"EngineSettings",
"PropertyEditor",
"Kismet",
"KismetWidgets",
"Sequencer",
"Foliage",
"HierarchicalLODOutliner",
"HierarchicalLODUtilities",
"MaterialShaderQualitySettings",
"PixelInspectorModule",
"CommonMenuExtensions",
"ToolMenus",
"StatusBar",
"AppFramework",
"EditorSubsystem",
"EnvironmentLightingViewer",
"DesktopPlatform",
"DataLayerEditor",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"MainFrame",
"ClassViewer",
"DeviceManager",
"SettingsEditor",
"SessionFrontend",
"SlateReflector",
"AutomationWindow",
"Layers",
"WorldBrowser",
"WorldPartitionEditor",
"EditorWidgets",
"AssetTools",
"WorkspaceMenuStructure",
"NewLevelDialog",
"DeviceProfileEditor",
"PlacementMode",
"IntroTutorials",
"HeadMountedDisplay",
"VREditor",
"Persona",
"LevelAssetEditor",
"MergeActors",
}
);
if(Target.bWithLiveCoding)
{
PrivateIncludePathModuleNames.Add("LiveCoding");
}
}
}