You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "AnimGraphNode_SkeletalControlBase.h"
|
|
#include "Animation/BoneControllers/AnimNode_WheelHandler.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
|
|
};
|