Files
UnrealEngineUWP/Engine/Source/Editor/AnimationModifiers/AnimationModifiers.Build.cs
danny chapman 343371096b Analysis for BlendSpace. Also includes:
Tweaks to the rendering of blendspaces, including separating the graph from the buttons
Context menu changes for the sample details
Changes to AnimationBlueprintLibrary and AnimPose from Jurre to help get the poses during analysis

#jira UE-114512
#rb thomas.sarkanen

#ROBOMERGE-SOURCE: CL 16356830 in //UE5/Main/...
#ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v804-16311228)

[CL 16356839 by danny chapman in ue5-release-engine-test branch]
2021-05-17 15:04:09 -04:00

32 lines
770 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",
"EditorStyle",
"EditorFramework",
"UnrealEd",
"MainFrame",
"PropertyEditor",
"Kismet",
"AssetTools",
"ClassViewer",
"AssetRegistry",
"AnimationBlueprintLibrary",
}
);
}
}