Deltarune (Chapter 5) script viewer

← back to main script listing

gml_GlobalScript_scr_custom_marker

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

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