| 3 |     if (scr_camera_movescr_camera_move(220, 180, 2))function scr_camera_move (arg0, arg1, arg2)
{
    if (!instance_exists(obj_camera))
    {
        instance_create(__view_get(e__VW.Object, 0).x, __view_get(e__VW.Object, 0).y, obj_camera);
        __view_set(e__VW.Object, 0, obj_camera);
    }
    else
    {
        obj_camera.x = __view_get(e__VW.Object, 0).x;
        obj_camera.y = __view_get(e__VW.Object, 0).y;
        __view_set(e__VW.Object, 0, obj_camera);
    }
    obj_camera.move = true;
    obj_camera.xx = arg0;
    obj_camera.yy = arg1;
    obj_camera.spd = arg2;
    if (abs(arg0 - obj_camera.x) <= arg2 && abs(arg1 - obj_camera.y) <= arg2)
        return true;
    else
        return false;
}
enum e__VW
{
    XView,
    YView,
    WView,
    HView,
    Angle,
    HBorder,
    VBorder,
    HSpeed,
    VSpeed,
    Object,
    Visible,
    XPort,
    YPort,
    WPort,
    HPort,
    Camera,
    SurfaceID
} | 
    
    
        | 8 |             scr_audio_fade_outscr_audio_fade_out(obj_radio.current_song, 500);function scr_audio_fade_out (arg0, arg1)
{
    var snd = arg0;
    var fade_len = arg1;
    if (!audio_is_playing(snd))
        return false;
    audio_sound_gain(snd, 0, fade_len);
    if (instance_exists(obj_audio_fade_helper))
    {
        with (obj_audio_fade_helper)
        {
            if (audio_to_fade == snd)
                return false;
        }
    }
    with (instance_create(0, 0, obj_audio_fade_helper))
        audio_to_fade = snd;
} |