Files
UnrealEngine/Engine/Source/Runtime/AugmentedReality/Private/ARDebugDrawHelpers.h
2025-05-18 13:04:45 +08:00

15 lines
335 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Math/MathFwd.h"
class UWorld;
class FString;
struct FColor;
namespace ARDebugHelpers
{
void DrawDebugString(const UWorld* InWorld, FVector const& TextLocation, const FString& Text, float Scale, FColor const& TextColor, float Duration, bool bDrawShadow);
}