2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
2014-04-24 14:34:01 -04:00
|
|
|
#include "AnimGraphNode_Base.h"
|
2014-05-29 17:24:15 -04:00
|
|
|
#include "Animation/AnimNodeSpaceConversions.h"
|
2014-03-14 14:13:41 -04:00
|
|
|
#include "AnimGraphNode_ComponentToLocalSpace.generated.h"
|
|
|
|
|
|
|
|
|
|
UCLASS(MinimalAPI)
|
|
|
|
|
class UAnimGraphNode_ComponentToLocalSpace : public UAnimGraphNode_Base
|
|
|
|
|
{
|
2015-03-17 05:38:32 -04:00
|
|
|
GENERATED_UCLASS_BODY()
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
UPROPERTY(EditAnywhere, Category=Settings)
|
|
|
|
|
FAnimNode_ConvertComponentToLocalSpace Node;
|
|
|
|
|
|
|
|
|
|
// UEdGraphNode interface
|
2014-06-13 06:14:46 -04:00
|
|
|
virtual FLinearColor GetNodeTitleColor() const override;
|
2014-09-03 18:14:09 -04:00
|
|
|
virtual FText GetTooltipText() const override;
|
2014-06-13 06:14:46 -04:00
|
|
|
virtual FText GetNodeTitle(ENodeTitleType::Type TitleType) const override;
|
2014-03-14 14:13:41 -04:00
|
|
|
// End of UEdGraphNode interface
|
|
|
|
|
|
|
|
|
|
// UAnimGraphNode_Base interface
|
2014-06-13 06:14:46 -04:00
|
|
|
virtual FString GetNodeCategory() const override;
|
|
|
|
|
virtual void PostProcessPinName(const UEdGraphPin* Pin, FString& DisplayName) const override;
|
2014-03-14 14:13:41 -04:00
|
|
|
// End of UAnimGraphNode_Base interface
|
|
|
|
|
};
|