Jump to content
You currently have javascript disabled. Several functions may not work. Please re-enable javascript to access full functionality.
armorraja hasn't added any friends yet.
25 March 2012 - 05:48 PM
Whoops, seems like it was in the draw event after all . draw_surface_ext(surf,0,0,1,1,0,make_color_rgb(0,80,200),1); Just replace make_color_rgb(0,80,200) with your color.
Whoops, seems like it was in the draw event after all .
draw_surface_ext(surf,0,0,1,1,0,make_color_rgb(0,80,200),1);
24 March 2012 - 09:21 PM
draw_sprite(spr_water,0,xx,yy); } } draw_set_blend_mode_ext(bm_inv_dest_color,bm_zero); draw_set_color(c_white); draw_rectangle(0,0,room_width,room_height,0); // c = 1-c draw_set_blend_mode_ext(bm_one,bm_one); draw_set_color(merge_color(c_black,c_white,1-1/8)); draw_set_alpha(1-1/1); draw_rectangle(0,0,room_width,room_height,0); // c = c+1-1/8 draw_set_alpha(1); draw_set_blend_mode_ext(bm_inv_dest_color,bm_zero); draw_set_color(c_white); draw_rectangle(0,0,room_width,room_height,0); // c = 1-c draw_set_blend_mode_ext(bm_dest_color,bm_one); draw_set_color(c_white); draw_rectangle(0,0,room_width,room_height,0); // c = c+c draw_rectangle(0,0,room_width,room_height,0); // c = c+c draw_rectangle(0,0,room_width,room_height,0); // c = c+c draw_set_blend_mode(bm_normal); surface_reset_target();
24 March 2012 - 11:06 AM