このページを含むバージョン:
このページを含まないバージョン:
この Rect を適切にフォーマットした文字列を返します
using UnityEngine;public class Example : MonoBehaviour { void Start() { Rect rect = new Rect(0, 0, 10, 10); print(rect); } }