Version: 2022.3
言語: 日本語
public float x ;

説明

矩形のX座標

この値は xMin と同じですが、この値によって矩形の位置が変わります。サイズは変更されません。

using UnityEngine;

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