colour_get_value

Returns the value of the colour given.

Syntax:

colour_get_value(col);


Argument Description
col The colour to check


Returns: Real


Description

This function will return the value (luminosity) of the given colour. This is the amount of the "light" that is mixed into the final colour and is part of the hue, saturation and value method for defining a colour. The following image illustrates how this value corresponds to the HSV scale of colour:


Example:

col = make_colour_hsv(random(255), 255, colour_get_value(c_teal));

The above code gets the value used to make the colour constant "c_teal" and then uses that value to set a random colour to have the same luminosity, storing the resulting colour in the variable "col".


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