Files
UnrealEngineUWP/Engine/Plugins/Experimental/CommonConversation/Source/CommonConversationGraph/Private/ConversationGraphNode_SideEffect.cpp
Marc Audy 8f73cd7fa9 Merge UE5/Release-Engine-Staging @ 15630841 to UE5/Main
This represents UE4/Main @ 15601601

[CL 15631170 by Marc Audy in ue5-main branch]
2021-03-05 19:27:14 -04:00

21 lines
542 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "ConversationGraphNode_SideEffect.h"
#include "ConversationEditorColors.h"
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;
}