Files
UnrealEngineUWP/Engine/Source/Editor/AnimGraph/Classes/AnimGraphNode_WheelHandler.h
Lina Halper 2259ac978e Vehicle anim instance and wheel handler for vehicle
[CL 2066028 by Lina Halper in Main branch]
2014-05-07 16:36:18 -04:00

31 lines
1.1 KiB
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "AnimGraphNode_SkeletalControlBase.h"
#include "AnimGraphNode_WheelHandler.generated.h"
UCLASS(MinimalAPI)
class UAnimGraphNode_WheelHandler : public UAnimGraphNode_SkeletalControlBase
{
GENERATED_UCLASS_BODY()
UPROPERTY(EditAnywhere, Category=Settings)
FAnimNode_WheelHandler Node;
public:
// UEdGraphNode interface
virtual FText GetNodeTitle(ENodeTitleType::Type TitleType) const OVERRIDE;
virtual FString GetTooltip() const OVERRIDE;
virtual FString GetKeywords() const OVERRIDE;
// validate if this is within VehicleAnimInstance
virtual void ValidateAnimNodePostCompile(class FCompilerResultsLog& MessageLog, class UAnimBlueprintGeneratedClass* CompiledClass, int32 CompiledNodeIndex) OVERRIDE;
virtual void GetMenuEntries(FGraphContextMenuBuilder& ContextMenuBuilder) const OVERRIDE;
// End of UEdGraphNode interface
protected:
// UAnimGraphNode_SkeletalControlBase interface
virtual FText GetControllerDescription() const OVERRIDE;
// End of UAnimGraphNode_SkeletalControlBase interface
};