Files
UnrealEngineUWP/Engine/Source/Editor/AnimGraph/Classes/AnimGraphNode_LayeredBoneBlend.h
James Golding 0acc73086d Engine.h trimming (AnimNode classes, SkeletalMeshActor.h)
Remove unused AnimationTypes.h/.cpp

[CL 2086878 by James Golding in Main branch]
2014-05-29 17:24:15 -04:00

35 lines
1.1 KiB
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "AnimGraphNode_BlendListBase.h"
#include "Animation/AnimNode_LayeredBoneBlend.h"
#include "AnimGraphNode_LayeredBoneBlend.generated.h"
UCLASS(MinimalAPI)
class UAnimGraphNode_LayeredBoneBlend : public UAnimGraphNode_BlendListBase
{
GENERATED_UCLASS_BODY()
UPROPERTY(EditAnywhere, Category=Settings)
FAnimNode_LayeredBoneBlend Node;
// Adds a new pose pin
//@TODO: Generalize this behavior (returning a list of actions/delegates maybe?)
ANIMGRAPH_API virtual void AddPinToBlendByFilter();
ANIMGRAPH_API virtual void RemovePinFromBlendByFilter(UEdGraphPin* Pin);
// UEdGraphNode interface
virtual FLinearColor GetNodeTitleColor() const OVERRIDE;
virtual FString GetTooltip() const OVERRIDE;
virtual FText GetNodeTitle(ENodeTitleType::Type TitleType) const OVERRIDE;
// End of UEdGraphNode interface
// UK2Node interface
virtual void GetContextMenuActions(const FGraphNodeContextMenuBuilder& Context) const OVERRIDE;
// End of UK2Node interface
// UAnimGraphNode_Base interface
virtual FString GetNodeCategory() const OVERRIDE;
// End of UAnimGraphNode_Base interface
};