Hi, I have a question about the Gizmos rendering.
In SceneView all my Gizmos elements are rendered correctly, but in the GameView just the Gizmos elements that are wired are rendered.
Ex.
private void OnDrawGizmos()
{
Gizmos.DrawSphere(Vector2.zero, 1);
Gizmos.DrawWireSphere(Vector2.one, 1);
}
In SceneView both spheres are drawn. In GameView just the WiredSphere.
Does anyone know why?
Is it correct to work like this or is it a changed setting or maybe a bug?
Ok with the test in an empty project I found already out that its not normal. Also in GameView Solid Spheres should be drawn…