SettingsCompiler.ColorSetting.ColorSetting C# (CSharp) Method

ColorSetting() public method

public ColorSetting ( Color value, FieldInfo field, string group ) : System
value Color
field System.Reflection.FieldInfo
group string
return System
        public ColorSetting(Color value, FieldInfo field, string group)
            : base(field, SettingType.Color, group)
        {
            Value = value;
            HDR = HDRAttribute.HDRColor(field);
            MinValueAttribute.GetMinValue(field, ref MinValue);
            MaxValueAttribute.GetMaxValue(field, ref MaxValue);
            StepSizeAttribute.GetStepSize(field, ref StepSize);
        }