FairyGUI.GearSizeValue.GearSizeValue C# (CSharp) Method

GearSizeValue() public method

public GearSizeValue ( float width, float height, float scaleX, float scaleY ) : System.Collections.Generic
width float
height float
scaleX float
scaleY float
return System.Collections.Generic
        public GearSizeValue(float width, float height, float scaleX, float scaleY)
        {
            this.width = width;
            this.height = height;
            this.scaleX = scaleX;
            this.scaleY = scaleY;
        }
GearSizeValue