Inheritance: OpenRA.Widgets.Widget
Esempio n. 1
0
		public ColorMixerWidget(ColorMixerWidget other)
			: base(other)
		{
			OnChange = other.OnChange;
			H = other.H;
			S = other.S;
			V = other.V;
		}
Esempio n. 2
0
 public ColorMixerWidget(ColorMixerWidget other)
     : base(other)
 {
     OnChange = other.OnChange;
     H        = other.H;
     S        = other.S;
     V        = other.V;
 }
Esempio n. 3
0
 public ColorMixerWidget(ColorMixerWidget other)
     : base(other)
 {
     OnChange = other.OnChange;
     H        = other.H;
     S        = other.S;
     V        = other.V;
     minSat   = other.minSat;
     maxSat   = other.maxSat;
 }
Esempio n. 4
0
 public ColorMixerWidget(ColorMixerWidget other)
     : base(other)
 {
     modRules   = other.modRules;
     ClickSound = other.ClickSound;
     OnChange   = other.OnChange;
     H          = other.H;
     S          = other.S;
     V          = other.V;
     minSat     = other.minSat;
     maxSat     = other.maxSat;
 }
Esempio n. 5
0
        public ColorMixerWidget(ColorMixerWidget other)
            : base(other)
        {
            OnChange = other.OnChange;
            H        = other.H;
            S        = other.S;
            V        = other.V;

            sRange = (float[])other.sRange.Clone();
            vRange = (float[])other.vRange.Clone();

            STrim = other.STrim;
            VTrim = other.VTrim;
        }
Esempio n. 6
0
		public ColorMixerWidget(ColorMixerWidget other)
			: base(other)
		{
			OnChange = other.OnChange;
			H = other.H;
			S = other.S;
			V = other.V;

			sRange = (float[])other.sRange.Clone();
			vRange = (float[])other.vRange.Clone();

			STrim = other.STrim;
			VTrim = other.VTrim;
		}