Files
UnrealEngineUWP/Engine/Plugins/Animation/AnimationWarping/Source/Editor/AnimationWarpingEditor.Build.cs
jose villarroel eb38a91269 Add orientation warping modifier to generate curves for enabling/disabling root offset and pose warping
#jira none
[REVIEW] [at]Aaron.Cox, [at]Fernando.Coello
#preflight 6331d4da7b582f58ab73e0b7

[CL 22191835 by jose villarroel in ue5-main branch]
2022-09-26 15:21:50 -04:00

45 lines
1012 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class AnimationWarpingEditor : ModuleRules
{
public AnimationWarpingEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"AnimationCore",
"AnimationWarpingRuntime",
"AnimGraph",
"AnimGraphRuntime",
"AnimationModifiers",
"AnimationBlueprintLibrary",
"AnimationModifierLibrary",
"Core",
"CoreUObject",
"Engine",
});
PrivateDependencyModuleNames.AddRange(
new string[]
{
"SlateCore",
});
if (Target.bBuildEditor == true)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"BlueprintGraph",
"EditorFramework",
"Kismet",
"UnrealEd",
}
);
}
}
}
}