Deltarune script viewer

← back to main script listing

gml_GlobalScript_scr_move_to_point_over_time

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

function scr_move_to_point_over_time(arg0, arg1, arg2) { _mmm = instance_create(x, y, obj_move_to_point); _mmm.target = id; _mmm.movex = arg0; _mmm.movey = arg1; _mmm.movemax = arg2; return _mmm; }
(arg0, arg1, arg2)
2
{
3
    _mmm = instance_create(x, y, obj_move_to_point);
4
    _mmm.target = id;
5
    _mmm.movex = arg0;
6
    _mmm.movey = arg1;
7
    _mmm.movemax = arg2;
8
    return _mmm;
9
}