Fix regression in debug draw from 4af26a5516

This commit is contained in:
Wojtek Figat
2025-07-14 20:25:49 +02:00
parent 10e9aee8ce
commit bb37f980ed

View File

@@ -374,7 +374,7 @@ namespace FlaxEditor.Viewport
// Draw selected objects debug shapes and visuals
if (DrawDebugDraw && (renderContext.View.Flags & ViewFlags.DebugDraw) == ViewFlags.DebugDraw)
{
_debugDrawData.DrawActors();
_debugDrawData.DrawActors(true);
DebugDraw.Draw(ref renderContext, target.View(), targetDepth.View(), true);
}
}