UnityEngine.Rect.Rect C# (CSharp) Метод

Rect() публичный Метод

public Rect ( float left, float top, float width, float height ) : System
left float
top float
width float
height float
Результат System
        public Rect (float left, float top, float width, float height)
        {
            x = left;
            y = top;
            this.width = width;
            this.height = height;
        }
Rect