Invert GMLscripts.com

color_to_hex

NOTE: Depends on dec_to_hex().

color_to_hex(color)
Returns a given color as a hexadecimal string in RRGGBB format.
COPY/// color_to_hex(color)
//
//  Returns a given color as a hexadecimal string in RRGGBB format.
//  Depends on dec_to_hex().
//
//      color       RGB color, real
//
/// GMLscripts.com/license
{
    var color,dec;
    color = argument0;
    dec = (color & 16711680) >> 16 | (color & 65280) | (color & 255) << 16;
    return dec_to_hex(dec);
}

Contributors: xot

GitHub: View · Commits · Blame · Raw