SWFProcessing.SWFModeller.Characters.ColorTransform.ColorTransform C# (CSharp) Method

ColorTransform() public method

Initializes a new instance of the ColorTransform class.
public ColorTransform ( HDRColor add, HDRColor mult )
add HDRColor A colour to be added. May be null
mult HDRColor A colour to be multiplied. May be null
        public ColorTransform(HDRColor add, HDRColor mult)
        {
            this.Add = add;
            this.Mult = mult;
        }