Files
UnrealEngineUWP/Engine/Source/Editor/AnimationModifiers/AnimationModifiers.Build.cs
jurre debaare 28d866e5be Undo changelist 21456941
Original description:
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
#preflight 62ff59569835a27d8d9a4a2c
#rb Thomas.Sarkanen

[CL 21499937 by jurre debaare in ue5-main branch]
2022-08-22 21:22:25 -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"
}
);
}
}