I’m using the fantastic debug-draw library and the really quite splendid rendercam. Problem is I just combined them together, and they are not really cooperating. Anything drawn with messages to @render just ignores the offset that the camera should cause, resulting in the debug text being completely static on screen while the world moves around from the camera movement.
My solution is to use rendercams internal functions to convert screen to world space, and then use that position to draw. It works, it’s not very neat however, as it requires the use of rendercam. Now, is there a way to make draw_debug3d() to render in world space, or a way to get the current viewport / transform of the renderer? Also I have no clue what I’m doing right now, I know quite little about rendering in general, so any advice here is super appreciated :3