System.Windows.Forms.ColorPickerForm.HuePicker.HuePicker C# (CSharp) Method

HuePicker() public method

public HuePicker ( int w, int h ) : System
w int
h int
return System
            public HuePicker(int w, int h)
            {
                Size = new Size(w, h);

                _image = new UnityEngine.Texture2D(w, h);
                _UpdateImage();

                Owner.UpClick += Application_UpClick;
            }