Files
helge mathee 674587096a #rb na
#jira UE-180113

[CL 26286053 by helge mathee in 5.3 branch]
2023-06-28 11:19:42 -04:00

38 lines
989 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ControlRigGraphNode.h"
#include "GraphEditorDragDropAction.h"
#include "RigVMModel/RigVMGraph.h"
#include "EdGraphSchema_K2_Actions.h"
#include "EdGraph/RigVMEdGraphSchema.h"
#include "ControlRigGraphSchema.generated.h"
class UControlRigBlueprint;
class UControlRigGraph;
class UControlRigGraphNode;
class UControlRigGraphNode_Unit;
class UControlRigGraphNode_Property;
UCLASS()
class CONTROLRIGDEVELOPER_API UControlRigGraphSchema : public URigVMEdGraphSchema
{
GENERATED_BODY()
public:
/** Name constants */
static const FName GraphName_ControlRig;
public:
UControlRigGraphSchema();
// UEdGraphSchema interface
virtual FLinearColor GetPinTypeColor(const FEdGraphPinType& PinType) const override;
// URigVMEdGraphSchema interface
virtual const FName& GetRootGraphName() const override { return GraphName_ControlRig; }
virtual bool IsRigVMDefaultEvent(const FName& InEventName) const override;
};