You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Also removed initialization functions as they are no longer needed with channels #rb Jurre.deBaare [CL 11042967 by Thomas Sarkanen in Dev-Core branch]
26 lines
639 B
C
26 lines
639 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Animation/AnimTrace.h"
|
|
|
|
#if ANIM_TRACE_ENABLED
|
|
|
|
struct FAnimationBaseContext;
|
|
struct FAnimNode_BlendSpacePlayer;
|
|
|
|
struct FAnimGraphRuntimeTrace
|
|
{
|
|
/** Helper function to output debug info for blendspace player nodes */
|
|
ANIMGRAPHRUNTIME_API static void OutputBlendSpacePlayer(const FAnimationBaseContext& InContext, const FAnimNode_BlendSpacePlayer& InNode);
|
|
};
|
|
|
|
#define TRACE_BLENDSPACE_PLAYER(Context, Node) \
|
|
FAnimGraphRuntimeTrace::OutputBlendSpacePlayer(Context, Node);
|
|
|
|
#else
|
|
|
|
#define TRACE_BLENDSPACE_PLAYER(Context, Node)
|
|
|
|
#endif |