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/get_floor_material.gml

9 lines
276 B

/// get_floor_material()
// leaks `bl_id`
bl_id = instance_position(x, y + 8, oSolid);
if (bl_id < 0) bl_id = instance_position(x + 6, y + 2, oSolid);
if (bl_id < 0) bl_id = instance_position(x - 6, y + 2, oSolid);
if (bl_id > 0) {
return bl_id.material;
} else return 0;