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.
AM2R-TimeTrials/scripts/link_surface_tile.gml

7 lines
251 B

/// link_surface_tile(x, y)
var tbg;
if (global.timeofday == 0) tbg = tlSurface1;
if (global.timeofday == 1) tbg = tlSurface1Twilight;
if (global.timeofday == 2) tbg = tlSurface1Night;
tileid = tile_add(tbg, argument0, argument1, 16, 16, x, y, -150);