UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
AnimGraphRuntimeTrace.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
7
8#if ANIM_TRACE_ENABLED
9
13
15{
18
21};
22
23#define TRACE_BLENDSPACE_PLAYER(Context, Node) \
24 FAnimGraphRuntimeTrace::OutputBlendSpacePlayer(Context, Node);
25
26#define TRACE_BLENDSPACE(Context, Node) \
27 FAnimGraphRuntimeTrace::OutputBlendSpace(Context, Node);
28
29#else
30
31#define TRACE_BLENDSPACE_PLAYER(Context, Node)
32#define TRACE_BLENDSPACE(Context, Node)
33
34#endif
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition AnimNode_BlendSpaceGraphBase.h:16
Definition AnimNode_BlendSpacePlayer.h:16
Definition AnimNodeBase.h:159