Files
UnrealEngineUWP/Engine/Source/Editor/BlueprintGraph/BlueprintGraph.Build.cs
thomas sarkanen 930c912205 Added BP action DB filtering
Applies optional filtering to the BP context menu and related UIs.

Primarily this is implemented at the BlueprintActionDatabase/Registrar level as permissions are mostly static. One additional filter has been added to BlueprintActionFilter to handle filtering out items from assets that cannot be referenced from *this* blueprint.

Added type filtering to the variable type tree to prevent creating disallowed variable types. This piggybacks on the already-existing FImportedPinTypeSelectorFilter.

Also added some auditing console commands: bp.AuditThreadSafeFunctions and bp.AuditFunctionCallsForBlueprint
Corrected FBlueprintEditorUtils::HasFunctionBlueprintThreadSafeMetaData to not track FUNC_BlueprintEvent flags for native functions.

#jira UE-156715
#rb Phillip.Kavan,Jason.Stasik
#preflight 62b9bedae77151e5996dd658

#ROBOMERGE-OWNER: thomas.sarkanen
#ROBOMERGE-AUTHOR: thomas.sarkanen
#ROBOMERGE-SOURCE: CL 20890474 via CL 20891658 via CL 20892543 via CL 20892549
#ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v971-20777995)

[CL 20896198 by thomas sarkanen in ue5-main branch]
2022-06-30 11:25:52 -04:00

58 lines
1.2 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class BlueprintGraph : ModuleRules
{
public BlueprintGraph(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.AddRange(
new string[] {
"Editor/BlueprintGraph/Private",
"Editor/KismetCompiler/Public",
}
);
OverridePackageType = PackageOverrideType.EngineDeveloper;
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"EditorSubsystem",
"DeveloperSettings"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"KismetCompiler",
"EditorFramework",
"UnrealEd",
"GraphEditor",
"SlateCore",
"Kismet",
"KismetWidgets",
"PropertyEditor",
"ToolMenus",
"AssetTools",
}
);
CircularlyReferencedDependentModules.AddRange(
new string[] {
"KismetCompiler",
"UnrealEd",
"GraphEditor",
"Kismet",
}
);
}
}