draw_set_color(make_color_rgb(red,green,blue)); draw_set_color(make_color_hsv(hue, saturation,value));
myColor = make_color_rgb(red,green,blue); myColor2 = make_color_hsv(hue, saturation,value); (中略) draw_set_color(myColor); draw_set_color(myColor2);
draw_set_color(make_color_rgb(random(16777215)));