public float width ;

Descripción

La anchura del rectángulo, medida desde la posición X.

Definir este valor también cambiará xMax.

using UnityEngine;

public class RectExample : MonoBehaviour { // Use this for initialization void Start() { Rect rect = new Rect(10, 10, 50, 30); Debug.Log("width = " + rect.width); // prints: width = 50 rect.width = 20; Debug.Log("new max x = " + rect.xMax); // prints: new max x = 30 } }