Files
UnrealEngineUWP/Engine/Source/Editor/DataLayerEditor/DataLayerEditor.Build.cs
philippe deseve 176c650249 Add an outliner to display content bundle infos.
The outliner currently only displays content bundle from the editor world.
The outliner displays the client status and the amount of actors in the content bundle
It allows to toggle editing on content bundle and start adding actors
A context menu on the tree items allow to (de)select and (un)load actors of the content bundle

#rb richard.malo
#preflight 63113a45942c45ff454eead6

[CL 22008216 by philippe deseve in ue5-main branch]
2022-09-14 11:35:43 -04:00

30 lines
555 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class DataLayerEditor : ModuleRules
{
public DataLayerEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"EditorFramework",
"EditorWidgets",
"EditorSubsystem",
"PropertyEditor",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"UnrealEd",
"SceneOutliner",
"ToolMenus",
"AssetTools",
"ContentBrowserData"
}
);
}
}