Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Rect.center

var center: Vector2;
Vector2 center;
center as Vector2

Description

Center coordinate of the rectangle.

	var rect = Rect (0, 0, 100, 100);
	print(rect.center);
	rect.center = new Vector2 (10, 10);
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public Rect rect = new Rect(0, 0, 100, 100);
    void Example() {
        print(rect.center);
        rect.center = new Vector2(10, 10);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public rect as Rect = Rect(0, 0, 100, 100)

	def Example() as void:
		print(rect.center)
		rect.center = Vector2(10, 10)