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.
AM2Rogue/Export_Code/gml_Object_oWaterBackground...

15 lines
401 B

if ((view_yview[0] + view_hview[0]) >= global.waterlevel)
{
yi = 0
repeat amt_y
{
xi = 0
repeat (amt_x + 1)
{
draw_background(BG, ((x + (background_get_width(BG) * xi)) + floor(((view_xview[0] * xratio) + xoff))), ((y + (background_get_height(BG) * yi)) + floor(((view_yview[0] * yratio) + yoff))))
xi += 1
}
yi += 1
}
}