ActiveTextureManagement.ColorExtensions.component C# (CSharp) Method

component() public static method

public static component ( this color ) : byte[]
color this
return byte[]
        public static byte[] component(this Color32 color)
        {
            return new byte[4] { color.b, color.g, color.r, color.a };
        }
ColorExtensions