Deltarune (Chapter 4) script viewer

← back to main script listing

gml_GlobalScript_setxy

(view raw script w/o annotations or w/e)
1
function setxy(arg0, arg1, arg2 = id)
2
{
3
    with (arg2)
4
    {
5
        x = arg0;
6
        y = arg1;
7
    }
8
}