Version: 2018.1
public string ToString ();
public string ToString (string format);

説明

この Rect を適切にフォーマットした文字列を返します

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Rect rect = new Rect(0, 0, 10, 10); void Example() { print(rect); } }