24 lines
619 B
C++
24 lines
619 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "ConversationGraphNode_SideEffect.h"
|
|
#include "ConversationEditorColors.h"
|
|
|
|
#include UE_INLINE_GENERATED_CPP_BY_NAME(ConversationGraphNode_SideEffect)
|
|
|
|
UConversationGraphNode_SideEffect::UConversationGraphNode_SideEffect(const FObjectInitializer& ObjectInitializer)
|
|
: Super(ObjectInitializer)
|
|
{
|
|
bIsSubNode = true;
|
|
}
|
|
|
|
void UConversationGraphNode_SideEffect::AllocateDefaultPins()
|
|
{
|
|
// No pins for side effects
|
|
}
|
|
|
|
FLinearColor UConversationGraphNode_SideEffect::GetNodeBodyTintColor() const
|
|
{
|
|
return ConversationEditorColors::NodeBody::SideEffectColor;
|
|
}
|
|
|