/// <summary>
 /// Draws circle on texture
 /// </summary>
 public static void DrawCircle(this Texture2D texture, int centerX, int centerY, int radius, Color color)
 {
     PTUtils.DrawCircle(centerX, centerY, radius, (x, y) => texture.SetPixel(x, y, color));
 }