-
Notifications
You must be signed in to change notification settings - Fork 0
Background_create_color
hpgDesigns edited this page Aug 8, 2021
·
1 revision
Creates a rectangle background consisting of one color.
- w: width of the new background
- h: height of the new background
- col: color to fill the new background with
int: Returns the index of the new background created from color
//The following example creates a green 400px by 400px background and then draws it
mybg = background_create_color(400, 400, c_green, 1);
draw_background(mybg, 0, 0);NOTOC
This is number 1