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

25 lines
772 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "ConversationChoiceNode.h"
#include "ConversationTypes.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(ConversationChoiceNode)
bool UConversationChoiceNode::GenerateChoice(const FConversationContext& Context, FClientConversationOptionEntry& ChoiceEntry) const
{
FillChoice(Context, ChoiceEntry);
return true;
}
void UConversationChoiceNode::FillChoice_Implementation(const FConversationContext& Context, FClientConversationOptionEntry& ChoiceEntry) const
{
ChoiceEntry.ChoiceText = DefaultChoiceDisplayText;
ChoiceEntry.ChoiceTags = ChoiceTags;
}
void UConversationChoiceNode::NotifyChoicePickedByUser(const FConversationContext& InContext, const FClientConversationOptionEntry& InClientChoice) const
{
}