Deltarune script viewer

← back to main script listing

gml_GlobalScript_scr_marker

(view raw script w/o annotations or w/e)
1
function scr_marker
scr_marker

function scr_marker(arg0, arg1, arg2) { thismarker = instance_create(arg0, arg1, obj_marker); with (thismarker) { sprite_index = arg2; image_speed = 0; } return thismarker; }
(arg0, arg1, arg2)
2
{
3
    thismarker = instance_create(arg0, arg1, obj_marker);
4
    with (thismarker)
5
    {
6
        sprite_index = arg2;
7
        image_speed = 0;
8
    }
9
    return thismarker;
10
}