colour_get_red

Returns the red component of the colour given.

Syntax:

colour_get_red(col);


Argument Description
col The colour to check


Returns: Real


Description

This function returns the amount of red used to make the given colour, with the value being between 0 and 255, where 0 is no red and 255 is all red. The following image illustrates this:


Example:

r_comp = colour_get_red(c_teal);

The above code will get the red component of the colour constant "c_teal" and store the value in the variable "r_comp".


Back: colour And Blending
Next: colour_get_hue
© Copyright YoYo Games Ltd. 2018 All Rights Reserved