2019-12-26 15:33:43 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-09-17 19:12:19 -04:00
|
|
|
|
|
|
|
|
#include "RigVMModel/Nodes/RigVMCommentNode.h"
|
|
|
|
|
|
2022-09-24 13:31:25 -04:00
|
|
|
#include UE_INLINE_GENERATED_CPP_BY_NAME(RigVMCommentNode)
|
|
|
|
|
|
2019-09-17 19:12:19 -04:00
|
|
|
URigVMCommentNode::URigVMCommentNode()
|
|
|
|
|
{
|
|
|
|
|
Size = FVector2D(400.f, 300.f);
|
2021-10-25 04:25:30 -04:00
|
|
|
FontSize = 18;
|
|
|
|
|
bBubbleVisible = false;
|
|
|
|
|
bColorBubble = false;
|
2019-09-17 19:12:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FString URigVMCommentNode::GetCommentText() const
|
|
|
|
|
{
|
|
|
|
|
return CommentText;
|
|
|
|
|
}
|
2021-10-25 04:25:30 -04:00
|
|
|
|
|
|
|
|
int32 URigVMCommentNode::GetCommentFontSize() const
|
|
|
|
|
{
|
|
|
|
|
return FontSize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool URigVMCommentNode::GetCommentBubbleVisible() const
|
|
|
|
|
{
|
|
|
|
|
return bBubbleVisible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool URigVMCommentNode::GetCommentColorBubble() const
|
|
|
|
|
{
|
|
|
|
|
return bColorBubble;
|
|
|
|
|
}
|
2022-09-24 13:31:25 -04:00
|
|
|
|