Ajouter un message de débogage à l'écran UE4

//include needed
#include "Engine/Engine.h"

//Format
void AddOnScreenDebugMessage(uint64 Key, float TimeToDisplay, FColor DisplayColor, const FString & DebugMessage, bool bNewerOnTop, const FVector2D & TextScale);

//Example Code
Engine->AddOnScreenDebugMessage(0, 2, FColor::Green, TEXT("Example Message"));

//For more information vist "https://docs.unrealengine.com/en-US/API/Runtime/Engine/Engine/UEngine/AddOnScreenDebugMessage/1/index.html"
Old-fashioned Otter