You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Localization fixes for Find-in-Blueprints so it will again search the current and native language. CallFunction and CustomEvents now store their non-friendly "native" names. These will not actually appear in search results, but will be compared while searching to determine if the node matches the results. Gathering Blueprint search data will now force friendly names to true while it gathers so gathered data does not differ based on the setting. #jira UE-15901 - Right click a custom event to get a list of all blueprints that are calling the custom event [CL 2572814 by Michael Schoell in Main branch]
50 lines
1020 B
C#
50 lines
1020 B
C#
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class BlueprintGraph : ModuleRules
|
|
{
|
|
public BlueprintGraph(TargetInfo Target)
|
|
{
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
"Editor/BlueprintGraph/Private",
|
|
"Editor/KismetCompiler/Public",
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"InputCore",
|
|
"Slate",
|
|
"EditorStyle",
|
|
"AIModule",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"EditorStyle",
|
|
"KismetCompiler",
|
|
"UnrealEd",
|
|
"GraphEditor",
|
|
"SlateCore",
|
|
"Kismet",
|
|
}
|
|
);
|
|
|
|
CircularlyReferencedDependentModules.AddRange(
|
|
new string[] {
|
|
"KismetCompiler",
|
|
"UnrealEd",
|
|
"GraphEditor",
|
|
"Kismet",
|
|
}
|
|
);
|
|
}
|
|
}
|