包含此页的版本:
不含此页的版本:
矩形中心的位置。
using UnityEngine;public class Example : MonoBehaviour { void Start() { Rect rect = new Rect(0, 0, 100, 100); print(rect.center); rect.center = new Vector2(10, 10); } }