RectConstructor

매뉴얼로 전환
public Rect (float x, float y, float width, float height);

파라미터

xThe X value the rect is measured from.
yThe Y value the rect is measured from.
widthThe width of the rectangle.
heightThe height of the rectangle.

설명

Creates a new rectangle.

          Rect rect = new Rect(0, 0, 10, 10);

Note: Rect represents an abstract rectangle, and can be used in a variety of situations. As such, Rects don't have an explicit top, bottom, left or right. For example, Y values in Camera space are measured from the bottom of the screen, but Y values in Editor GUI space are measured from the top of the window, therefore whether the Y value of a Rect is its "top" or "bottom" will vary depending on where you use the Rect value. You can refer to the corners by using Rect.min and Rect.max.


public Rect (Vector2 position, Vector2 size);

파라미터

positionThe position of the minimum corner of the rect.
sizeThe width and height of the rect.

설명

Creates a rectangle given a size and position.

This form of the constructor is convenient when you are already working with Vector2 values.

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961