Undertale Yellow script viewer

← back to main script listing

gml_GlobalScript_scr_path_jump_end

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

function scr_path_jump_end() { if (path_position >= 1) { path_delete(jump_path); return true; } return false; }
()
2
{
3
    if (path_position >= 1)
4
    {
5
        path_delete(jump_path);
6
        return true;
7
    }
8
    return false;
9
}