For example DrawDebugDirectionalArrow() takes a DepthPriority as a parameter, but I don’t know how to use it. When I give 1 or (uint8)('\001') it does not appear on the screen ; and when I give (uint8)('\002') or greater I can see it but not in front of other objects (same as with the default value (uint8)('\000')).
How can I have my debug drawings in front of anything else?
Have you tried SDPG_Foreground and SDPG_MAX from ESceneDepthPriorityGroup? (API) Inspecting DrawDebugHelpers.cpp makes me think they are the original enum values. That said, SDPG_Foreground should be equal to 1 and SDPG_MAX to 2, so it may give the same results…