buttsecks Timide


Nombre de messages: 46 Age: 17 Loisirs: yaoi yaoi yaoi yaoi yaoi yaoi yaoi eat at joe's yaoi yaoi yaoi yaoi yaoi Date d'inscription: 10/10/2007
 | Sujet: make_color_rgb(R,G,B) Ven 16 Nov - 17:00 | |
| Retourne une couleur avex les valeur R rouge G vert B blue compises entre 0 et 255 exemple d'utilisation :| Code: | { draw_set_color(make_color_rgb(0,255,0)); } |
exemple variables de couleurs :
| Code: | { ocre_jaune=make_color_rgb(240,156,0) draw_set_color(ocre_jaune) } |
encore un autre exemple :
| Code: | { ocre_jaune=make_color_rgb(240,156,0); draw_sprite_ext(sprite0,0,x,y,1,1,0,ocre_jaune,1); } |
exemple couleurs aléatoires :
| Code: | { couleur_aleatoire=make_color_rgb(random(255),random(255),random(255)); draw_sprite_ext(sprite0,0,x,y,1,1,0,couleur_aleatoire,1); } |
|
|