You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#UE-13446 - Reference viewer comments allow the user to edit the comment. #Branch UE4 #Proj GraphEditor, ReferenceViewer [CL 2505569 by Ben Cosh in Main branch]
27 lines
574 B
C++
27 lines
574 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class SReferenceNode : public SGraphNode
|
|
{
|
|
public:
|
|
SLATE_BEGIN_ARGS( SReferenceNode ){}
|
|
|
|
SLATE_END_ARGS()
|
|
|
|
/** Constructs this widget with InArgs */
|
|
void Construct( const FArguments& InArgs, UEdGraphNode_Reference* InNode );
|
|
|
|
// SGraphNode implementation
|
|
virtual void UpdateGraphNode() override;
|
|
virtual bool IsNodeEditable() const override { return false; }
|
|
// End SGraphNode implementation
|
|
|
|
private:
|
|
TSharedPtr<class FAssetThumbnail> AssetThumbnail;
|
|
bool bUsesThumbnail;
|
|
};
|