Is there a way to draw a debug sphere for an infinite duration ?

Hi everyone,

I would like to draw a debug sphere for an infinite duration. But it seems like the parameters duration does nothing…
Is there a way to do that ? Here is what I have for the moment :

	UWorld* world = GetWorld();
	FVector center = GetCenter();

	for (int i = 0; i < pointsCount; ++i)
	{ 
		DrawDebugSphere(world, points[i], 0.5f, 10, debugColor, true);
	}
1 Like