You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Preinfintiy and Postinfinity settings within the Curve Editor of an Animation can not be changed from Constant #feature added API for setting curve attributes (pre/post extrapolation) #misc added tests for new API #jira UE-163181 #preflight 632b346cd747fe52c8df8811 #rb none [CL 22133564 by Jurre deBaare in ue5-main branch]
38 lines
670 B
C#
38 lines
670 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class AnimationDataController : ModuleRules
|
|
{
|
|
public AnimationDataController(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine"
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"MovieScene"
|
|
}
|
|
);
|
|
|
|
if (Target.Type == TargetType.Editor)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"UnrealEd",
|
|
"CurveEditor"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|