Deltarune script viewer
← back to main script listing
gml_GlobalScript_hexcolor
(
view raw script w/o annotations or w/e
)
1
function hexcolor(arg0)
2
{
3
return ((arg0 & 255) << 16) | (arg0 & 65280) | ((arg0 >> 16) & 255);
4
}