Files
UnrealEngineUWP/Engine/Source/Editor/AnimationModifiers/AnimationModifiers.Build.cs
marc audy cea63473a7 [Backout] - CL22206223
#fyi jurre.debaare
#horde 218123,218081,218073,218063,218057,217995,217831,217939
Original CL Desc
-----------------------------------------------------------------
REDO: UEFN - Users are able to apply Animation Modifiers via the right-click context menu
#fix moved animation modifier menu section into module itself - gated by whether or not AnimationModifier class is allowed
#rb Thomas.Sarkanen
#preflight 6332c289a4769ad714e78a8c

[CL 22217414 by marc audy in ue5-main branch]
2022-09-27 23:06:31 -04:00

33 lines
792 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AnimationModifiers : ModuleRules
{
public AnimationModifiers(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorFramework",
"UnrealEd",
"MainFrame",
"PropertyEditor",
"Kismet",
"AssetTools",
"ClassViewer",
"AssetRegistry",
"AnimationBlueprintLibrary",
"DeveloperSettings"
}
);
}
}