Deltarune (Chapter 4) script viewer

← back to main script listing

gml_GlobalScript_scr_oflash_ext

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

function
scr_oflash_ext(arg0 = sprite_index, arg1 = image_index, arg2 = x, arg3 = y, arg4 = image_xscale, arg5 = image_yscale, arg6 = image_speed, arg7 = 15, arg8 = 0, arg9 = 16777215, arg10 = -4)
{ var _oflash = instance_create(arg2, arg3, obj_oflash_ext); _oflash.sprite_index = arg0; _oflash.image_index = arg1; _oflash.image_xscale = arg4; _oflash.image_yscale = arg5; _oflash.image_speed = arg6; _oflash.fadetime = arg7; _oflash.myblend = arg8; _oflash.image_blend = arg9; _oflash.target = arg10; return _oflash; }
(arg0 = sprite_index, arg1 = image_index, arg2 = x, arg3 = y, arg4 = image_xscale, arg5 = image_yscale, arg6 = image_speed, arg7 = 15, arg8 = 0, arg9 = 16777215, arg10 = -4)
2
{
3
    var _oflash = instance_create(arg2, arg3, obj_oflash_ext);
4
    _oflash.sprite_index = arg0;
5
    _oflash.image_index = arg1;
6
    _oflash.image_xscale = arg4;
7
    _oflash.image_yscale = arg5;
8
    _oflash.image_speed = arg6;
9
    _oflash.fadetime = arg7;
10
    _oflash.myblend = arg8;
11
    _oflash.image_blend = arg9;
12
    _oflash.target = arg10;
13
    return _oflash;
14
}