Files
UnrealEngine/Engine/Plugins/Experimental/CommonConversation/Source/CommonConversationGraph/Private/ConversationGraphNode_SideEffect.cpp
2025-05-18 13:04:45 +08:00

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;
}