make_colour_rgb


描述

GameMaker Studio 2 provides this function (as well as others) to permit the user to make their own colours. This particular function takes three component parts, the red, the green and the blue components of the colour that you wish to make. These values are taken as being between 0 and 255 so you can make 16,777,216 (256*256*256) colours with this! Below you can see an image of how these components look when separated:

The image on the left is a break-down of the individual components of the function, and then on the right is an illustration of how changing these components affects the end colour.


语法:

make_colour_rgb(red, green, blue);

参数 描述
red The red component of the colour
green The green component of the colour
blue The blue component of the colour


返回:

Int(整数值)


例如:

col = make_colour_rgb(100, 145, 255);

The above code uses the function to create a colour and store its value in the variable "col" for later use.