You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Reorganized and consolidated for easier navigation #rb Jurre.deBaare,Lucas.Dower #jira UE-156715 #preflight 62a9ac0f13004691f97cd9da #ROBOMERGE-OWNER: thomas.sarkanen #ROBOMERGE-AUTHOR: thomas.sarkanen #ROBOMERGE-SOURCE: CL 20667777 via CL 20668358 via CL 20668456 via CL 20668474 #ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v955-20579017) [CL 20669758 by thomas sarkanen in ue5-main branch]
37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "AnimGraphNode_ScaleChainLength.h"
|
|
#include "Animation/AnimInstance.h"
|
|
|
|
/////////////////////////////////////////////////////
|
|
// UAnimGraphNode_ScaleChainLength
|
|
|
|
#define LOCTEXT_NAMESPACE "AnimGraph_ScaleChainLength"
|
|
|
|
UAnimGraphNode_ScaleChainLength::UAnimGraphNode_ScaleChainLength(const FObjectInitializer& ObjectInitializer)
|
|
: Super(ObjectInitializer)
|
|
{
|
|
}
|
|
|
|
FLinearColor UAnimGraphNode_ScaleChainLength::GetNodeTitleColor() const
|
|
{
|
|
return FLinearColor(0.7f, 0.7f, 0.7f);
|
|
}
|
|
|
|
FText UAnimGraphNode_ScaleChainLength::GetTooltipText() const
|
|
{
|
|
return LOCTEXT("AnimGraphNode_ScaleChainLength_Tooltip", "Scales a bone chain based on distance from StartBone to TargetLocation");
|
|
}
|
|
|
|
FText UAnimGraphNode_ScaleChainLength::GetNodeTitle(ENodeTitleType::Type TitleType) const
|
|
{
|
|
return LOCTEXT("AnimGraphNode_ScaleChainLength", "Scale Chain Length");
|
|
}
|
|
|
|
FString UAnimGraphNode_ScaleChainLength::GetNodeCategory() const
|
|
{
|
|
return TEXT("Animation|Misc.");
|
|
}
|
|
|
|
#undef LOCTEXT_NAMESPACE
|