UnityEngine.Rect.Rect C# (CSharp) Method

Rect() public method

public Rect ( float left, float top, float width, float height ) : System
left float
top float
width float
height float
return System
        public Rect (float left, float top, float width, float height)
        {
            x = left;
            y = top;
            this.width = width;
            this.height = height;
        }
Rect