06.06.2015, 22:35
To answer your question: due to operator precedence, first this part is executed:
This shifts 0xFF left by 24 bits. This actually exactly the same as writing 0xFF000000. This value is then OR'd with x. I presume x to be an ARGB color for objects materials, in which case it will make that color completely opaque.
pawn Код:
0xFF << 24