center
The position of the center of the rectangle.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public Vector2 center { get; set; }
Examples
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); }}