Files
UnrealEngineUWP/Engine/Source/Editor/LevelInstanceEditor/LevelInstanceEditor.Build.cs
patrick enfedaque 372d0e046e Level Instance Pivot Picker:
- Preview picker location when changing it from the details panel
- Use Actor Picker which isn't restricted to the Level Instance actors

#jira UE-174434
#rb richard.malo
#preflight 63cfe5fb976daa618c996b60

[CL 23831919 by patrick enfedaque in ue5-main branch]
2023-01-24 11:24:47 -05:00

45 lines
862 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LevelInstanceEditor : ModuleRules
{
public LevelInstanceEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorFramework",
"UnrealEd",
"LevelEditor",
"ToolMenus",
"PropertyEditor",
"NewLevelDialog",
"MainFrame",
"ContentBrowser",
"AssetTools",
"ClassViewer",
"MessageLog",
"EditorWidgets",
"DeveloperSettings",
"SceneOutliner"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
}
);
}
}