ActiveTextureManagement.ColorExtensions.u C# (CSharp) Method

u() public static method

public static u ( this color ) : uint
color this
return uint
        public static uint u(this Color32 color)
        {
            return (uint)(color.r | (color.g << 8) | (color.b << 16) | (color.a << 24));
        }
ColorExtensions