Desenhe a unidade de Gizmo Sphere
void OnDrawGizmos()
{
// Draw a yellow sphere at the transform's position
Gizmos.color = Color.yellow;
Gizmos.DrawSphere(transform.position, 1);
}
MunchDuster