You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Added FAnimPose, a script-friendly helper structure to generate/read/write evaluated anim poses - Added API to populate AnimPose from AnimationSequenceBase, USkeleton (ref pose) and AnimBlueprint #jira none #rb Thomas.Sarkanen, Danny.Chapman #preflight 609bb27f2032ee00016b253a [CL 16297653 by Jurre deBaare in ue5-main branch]
34 lines
839 B
C#
34 lines
839 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",
|
|
"AnimationEditor",
|
|
"SkeletonEditor",
|
|
"AssetRegistry",
|
|
"AnimationBlueprintLibrary",
|
|
}
|
|
);
|
|
}
|
|
}
|