Tocolor: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
Line 25: Line 25:


==See Also==
==See Also==
{{Drawing_functions}}
{{Client_utility_functions}}
[[Category:Needs_Example]]
[[Category:Needs_Example]]

Revision as of 14:54, 20 June 2009

This function retrieves the hex number of a specified color, useful for the dx functions.

Syntax

int tocolor ( int red, int green, int blue [, int alpha = 255] )

Required Arguments

  • red: The amount of red in the color (0-255).
  • green: The amount of green in the color (0-255).
  • blue: The amount of blue in the color (0-255).

Optional Arguments

  • alpha: The amount of alpha in the color (0-255).

Returns

Returns a single value representing the color.

Example

--TODO

See Also

Shared