Files
UnrealEngineUWP/Engine/Source/Editor/AnimGraph/Classes/AnimGraphNode_UseCachedPose.h
Michael Schoell 788de6f349 Removed GetNodeNativeTitle from the editor entirely, now uses BuildSourceString to obtain the source string in a more reliable way.
#codereview Justin.Sargent

[CL 2114371 by Michael Schoell in Main branch]
2014-06-23 15:36:50 -04:00

31 lines
881 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "AnimGraphNode_Base.h"
#include "Animation/AnimNode_UseCachedPose.h"
#include "AnimGraphNode_UseCachedPose.generated.h"
UCLASS(MinimalAPI)
class UAnimGraphNode_UseCachedPose : public UAnimGraphNode_Base
{
GENERATED_UCLASS_BODY()
public:
UPROPERTY(EditAnywhere, Category=Settings)
FAnimNode_UseCachedPose Node;
UPROPERTY(EditAnywhere, Category=CachedPose)
FString NameOfCache;
public:
// UEdGraphNode interface
virtual FString GetTooltip() const override;
virtual FText GetNodeTitle(ENodeTitleType::Type TitleType) const override;
// End of UEdGraphNode interface
// UAnimGraphNode_Base interface
virtual FString GetNodeCategory() const override;
virtual void GetMenuEntries(FGraphContextMenuBuilder& ContextMenuBuilder) const override;
// End of UAnimGraphNode_Base interface
};