You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
SBasicFilterBar in ToolWidgets is the most generic filter bar, usable in non editor buillds as well SAssetFilterBar in EditorWidgets is a complex filter bar with support for the built in asset filters from the content browser SFilterBar in EditorWidgets is the most convinient filter bar to use in editor if you want asset filters and custom filters #jira UE-151904 #rbJulien.StJean, jamie.dale #preflight 628ba0da693c5e1de27cbc30 #ROBOMERGE-OWNER: aditya.ravichandran #ROBOMERGE-AUTHOR: aditya.ravichandran #ROBOMERGE-SOURCE: CL 20330320 via CL 20337158 via CL 20338269 via CL 20338595 #ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v948-20297126) [CL 20340436 by aditya ravichandran in ue5-main branch]
27 lines
520 B
C#
27 lines
520 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class EditorWidgets : ModuleRules
|
|
{
|
|
public EditorWidgets(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePathModuleNames.Add("AssetRegistry");
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"Engine",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"CoreUObject",
|
|
"ToolWidgets",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.Add("AssetRegistry");
|
|
}
|
|
} |