You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-13391 - Delete old BP menu system (is causing confusion) #codereview Mike.Beach [CL 2514361 by Michael Schoell in Main branch]
26 lines
933 B
C++
26 lines
933 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
#include "AnimGraphNode_Base.h"
|
|
#include "Animation/BlendSpaceBase.h"
|
|
#include "AnimGraphNode_BlendSpaceBase.generated.h"
|
|
|
|
UCLASS(Abstract, MinimalAPI)
|
|
class UAnimGraphNode_BlendSpaceBase : public UAnimGraphNode_Base
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
// UEdGraphNode interface
|
|
ANIMGRAPH_API virtual FLinearColor GetNodeTitleColor() const override;
|
|
// End of UEdGraphNode interface
|
|
|
|
// UAnimGraphNode_Base interface
|
|
ANIMGRAPH_API virtual void CustomizePinData(UEdGraphPin* Pin, FName SourcePropertyName, int32 ArrayIndex) const override;
|
|
ANIMGRAPH_API virtual void PreloadRequiredAssets() override;
|
|
ANIMGRAPH_API virtual void PostProcessPinName(const UEdGraphPin* Pin, FString& DisplayName) const override;
|
|
// End of UAnimGraphNode_Base interface
|
|
|
|
protected:
|
|
UBlendSpaceBase* GetBlendSpace() const { return Cast<UBlendSpaceBase>(GetAnimationAsset()); }
|
|
};
|