2019-12-26 15:33:43 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-09-17 19:12:19 -04:00
|
|
|
|
|
|
|
|
#include "AnimGraphNode_Inertialization.h"
|
|
|
|
|
|
|
|
|
|
#define LOCTEXT_NAMESPACE "AnimGraphNode_Inertialization"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FLinearColor UAnimGraphNode_Inertialization::GetNodeTitleColor() const
|
|
|
|
|
{
|
|
|
|
|
return FLinearColor(0.0f, 0.1f, 0.2f);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FText UAnimGraphNode_Inertialization::GetTooltipText() const
|
|
|
|
|
{
|
|
|
|
|
return LOCTEXT("NodeToolTip", "Inertialization");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FText UAnimGraphNode_Inertialization::GetNodeTitle(ENodeTitleType::Type TitleType) const
|
|
|
|
|
{
|
|
|
|
|
return LOCTEXT("NodeTitle", "Inertialization");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FText UAnimGraphNode_Inertialization::GetMenuCategory() const
|
|
|
|
|
{
|
2022-06-15 10:37:36 -04:00
|
|
|
return LOCTEXT("NodeCategory", "Animation|Misc.");
|
2019-09-17 19:12:19 -04:00
|
|
|
}
|
|
|
|
|
|
2021-01-06 09:11:59 -04:00
|
|
|
void UAnimGraphNode_Inertialization::GetInputLinkAttributes(FNodeAttributeArray& OutAttributes) const
|
|
|
|
|
{
|
|
|
|
|
OutAttributes.Add(UE::Anim::IInertializationRequester::Attribute);
|
|
|
|
|
}
|
2019-09-17 19:12:19 -04:00
|
|
|
|
|
|
|
|
#undef LOCTEXT_NAMESPACE
|