You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb aaron.cox Migrating the Animation Warping plugin from Experimental to Beta. #preflight 61ab2d10003ada0304ad2b6a #ROBOMERGE-AUTHOR: koray.hagen #ROBOMERGE-SOURCE: CL 18376688 in //UE5/Release-5.0/... via CL 18376689 via CL 18376691 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Test -> Main) (v895-18170469) [CL 18376692 by koray hagen in ue5-main branch]
21 lines
446 B
C#
21 lines
446 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class AnimationWarpingRuntime : ModuleRules
|
|
{
|
|
public AnimationWarpingRuntime(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"AnimationCore",
|
|
"AnimGraphRuntime",
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
});
|
|
}
|
|
}
|
|
}
|