Files
UnrealEngineUWP/Engine/Source/Editor/AnimGraph/Classes/AnimGraphNode_UseCachedPose.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

32 lines
965 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;
virtual FString GetNodeNativeTitle(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
};