You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira none #review-17882783 #robomerge 5.0 [CL 17882855 by mikko mononen in ue5-main branch]
13 lines
333 B
C++
13 lines
333 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "StateTreeTaskBase.h"
|
|
#include "CoreMinimal.h"
|
|
|
|
|
|
#if WITH_GAMEPLAY_DEBUGGER
|
|
void FStateTreeTaskBase::AppendDebugInfoString(FString& DebugString, const FStateTreeExecutionContext& Context) const
|
|
{
|
|
DebugString += FString::Printf(TEXT("[%s]\n"), *Name.ToString());
|
|
}
|
|
#endif
|