이 페이지가 있는 버전:
이 페이지가 없는 버전:
The position of the center of the rectangle.
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); } }