You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
32 lines
678 B
C
32 lines
678 B
C
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
|
|||
|
|
#include "VisualGraphElement.h"
|
|||
|
|
|
|||
|
|
class VISUALGRAPHUTILS_API FVisualGraphNode : public FVisualGraphElement
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
|
|||
|
|
FVisualGraphNode()
|
|||
|
|
: FVisualGraphElement()
|
|||
|
|
, Shape()
|
|||
|
|
, SubGraphIndex(INDEX_NONE)
|
|||
|
|
{}
|
|||
|
|
|
|||
|
|
virtual ~FVisualGraphNode() override {}
|
|||
|
|
|
|||
|
|
TOptional<EVisualGraphShape> GetShape() const { return Shape; }
|
|||
|
|
void SetShape(EVisualGraphShape InValue) { Shape = InValue; }
|
|||
|
|
|
|||
|
|
protected:
|
|||
|
|
|
|||
|
|
virtual FString DumpDot(const FVisualGraph* InGraph, int32 InIndendation) const override;
|
|||
|
|
|
|||
|
|
TOptional<EVisualGraphShape> Shape;
|
|||
|
|
int32 SubGraphIndex;
|
|||
|
|
|
|||
|
|
friend class FVisualGraph;
|
|||
|
|
friend class FVisualGraphSubGraph;
|
|||
|
|
};
|