Deltarune (Chapter 3) script viewer

← back to main script listing

gml_GlobalScript_scr_oflash

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

function
scr_oflash(arg0 = false)
{ var _oflash = instance_create_depth(x, y, depth - 1, obj_oflash); _oflash.image_xscale = image_xscale; _oflash.image_yscale = image_yscale; _oflash.image_speed = 0; _oflash.image_index = image_index; _oflash.sprite_index = sprite_index; _oflash.target = id; _oflash.follow = arg0; return _oflash; }
(arg0 = false)
2
{
3
    var _oflash = instance_create_depth(x, y, depth - 1, obj_oflash);
4
    _oflash.image_xscale = image_xscale;
5
    _oflash.image_yscale = image_yscale;
6
    _oflash.image_speed = 0;
7
    _oflash.image_index = image_index;
8
    _oflash.sprite_index = sprite_index;
9
    _oflash.target = id;
10
    _oflash.follow = arg0;
11
    return _oflash;
12
}