Files
UnrealEngineUWP/Engine/Source/Editor/LevelEditor/LevelEditor.Build.cs
Jared Therriault d3d00234f2 Object Mixer/ Light Mixer
-Fix crash when adding lights
-Fix Circular References
-Update tree view on next tick rather than an immediate update
-Make Filter object instance a TStrongObjectPtr
-Make property value widgets take up the whole column width
-Object Lists now update when levels are loaded or actors/components are added/removed

#rb None

#jira UE-160165
#jira UE-160166
#jira UE-160167
#jira UE-160168
#jira UE-160169

#preflight https://horde.devtools.epicgames.com/job/62da044e185da2495f755617

[CL 21237255 by Jared Therriault in ue5-main branch]
2022-07-25 19:29:19 -04:00

128 lines
2.5 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",
"AppFramework",
"PortalServices",
"Persona",
"DataLayerEditor",
"MergeActors",
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"Settings",
"HeadMountedDisplay",
"UnrealEd",
"VREditor",
"CommonMenuExtensions"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"LevelSequence",
"Analytics",
"ApplicationCore",
"Core",
"CoreUObject",
"LauncherPlatform",
"InputCore",
"Slate",
"SlateCore",
"Engine",
"MessageLog",
"SourceControl",
"SourceControlWindows",
"StatsViewer",
"EditorFramework",
"UnrealEd",
"DeveloperSettings",
"RenderCore",
"DeviceProfileServices",
"ContentBrowser",
"SceneOutliner",
"ActorPickerMode",
"RHI",
"Projects",
"TargetPlatform",
"TypedElementFramework",
"TypedElementRuntime",
"EngineSettings",
"LightMixer",
"ObjectMixerEditor",
"PropertyEditor",
"Kismet",
"KismetWidgets",
"Sequencer",
"Foliage",
"HierarchicalLODOutliner",
"HierarchicalLODUtilities",
"MaterialShaderQualitySettings",
"PixelInspectorModule",
"CommonMenuExtensions",
"ToolMenus",
"StatusBar",
"AppFramework",
"EditorSubsystem",
"EnvironmentLightingViewer",
"DesktopPlatform",
"DataLayerEditor",
"TranslationEditor",
"SubobjectEditor",
"SubobjectDataInterface",
"DerivedDataEditor",
"EditorWidgets",
"ToolWidgets",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"MainFrame",
"ClassViewer",
"DeviceManager",
"SettingsEditor",
"SlateReflector",
"AutomationWindow",
"Layers",
"WorldBrowser",
"WorldPartitionEditor",
"AssetTools",
"WorkspaceMenuStructure",
"NewLevelDialog",
"DeviceProfileEditor",
"PlacementMode",
"HeadMountedDisplay",
"VREditor",
"Persona",
"LevelAssetEditor",
"MergeActors"
}
);
if (Target.bBuildTargetDeveloperTools)
{
DynamicallyLoadedModuleNames.Add("SessionFrontend");
}
if (Target.bWithLiveCoding)
{
PrivateIncludePathModuleNames.Add("LiveCoding");
}
}
}