A Demo Project for the UnrealEngineSDK
Loading...
Searching...
No Matches
NewComment_DialogueGraphSchemaAction.h
Go to the documentation of this file.
1// Copyright Csaba Molnar, Daniel Butum. All Rights Reserved.
2#pragma once
3
4#include "EdGraph/EdGraphSchema.h"
5#include "Templates/SubclassOf.h"
6
7#include "NewComment_DialogueGraphSchemaAction.generated.h"
8
9class UEdGraph;
10
12USTRUCT()
14{
15 GENERATED_USTRUCT_BODY();
16
18 FNewComment_DialogueGraphSchemaAction(const FText& InNodeCategory, const FText& InMenuDesc, const FText& InToolTip, int32 InGrouping)
19 : FEdGraphSchemaAction(InNodeCategory, InMenuDesc, InToolTip, InGrouping) {}
21 //~ Begin FEdGraphSchemaAction Interface
22 UEdGraphNode* PerformAction(UEdGraph* ParentGraph, UEdGraphPin* FromPin, const FVector2D Location, bool bSelectNewNode = true) override;
23 //~ End FEdGraphSchemaAction Interface
24};
FNewComment_DialogueGraphSchemaAction(const FText &InNodeCategory, const FText &InMenuDesc, const FText &InToolTip, int32 InGrouping)
UEdGraphNode * PerformAction(UEdGraph *ParentGraph, UEdGraphPin *FromPin, const FVector2D Location, bool bSelectNewNode=true) override