You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
710 B
14 lines
710 B
var i;
|
|
if ((view_yview[0] + view_hview[0]) >= ((global.waterlevel + yoffset) - 9))
|
|
{
|
|
i = 0
|
|
draw_set_blend_mode(bm_add)
|
|
draw_background_ext(bgLava0, (x - (oControl.widescreen_space / 2)), (((y - 9) + background_get_height(bg)) + yoffset), (room_width / (10 - (2 * oControl.widescreen))), (room_height / 10), 0, -1, 0.6)
|
|
for (i = 0; i < (room_width + widescreen_space); i += 32)
|
|
{
|
|
if ((x + i) >= (view_xview[0] - 33) && (x + i) < ((view_xview[0] + 360) + widescreen_space) && ((global.waterlevel + yoffset) + 15) > view_yview[0])
|
|
draw_background_ext(bg, ((x + i) - (widescreen_space / 2)), ((y - 9) + yoffset), 1, 1, 0, -1, 0.8)
|
|
}
|
|
draw_set_blend_mode(bm_normal)
|
|
}
|