You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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]
32 lines
770 B
C#
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",
|
|
}
|
|
);
|
|
}
|
|
}
|