Files
UnrealEngineUWP/Engine/Plugins/Runtime/StateTree/Source/StateTreeModule/Private/StateTreeTaskBase.cpp

15 lines
370 B
C++
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
#include "StateTreeTaskBase.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(StateTreeTaskBase)
#if WITH_GAMEPLAY_DEBUGGER
void FStateTreeTaskBase::AppendDebugInfoString(FString& DebugString, const FStateTreeExecutionContext& Context) const
{
DebugString += FString::Printf(TEXT("[%s]\n"), *Name.ToString());
}
#endif