I have a script to show 4 Gizmos on an object, and it works exactly as needed, I just want to be able to set the color for each Gizmo. How do I do this?
void OnDrawGizmos(){
Gizmos.DrawWireSphere(leftBounds, gizmoRadius);
Gizmos.DrawWireSphere(rightBounds, gizmoRadius);
Gizmos.DrawWireSphere(topBounds, gizmoRadius);
Gizmos.DrawWireSphere(botBounds, gizmoRadius);
}