Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_duel_mark_Step_0

(view raw script w/o annotations or w/e)
1
if (cutscene_key_prompt())
2
{
3
    if (fade_out == false)
4
        fade_out = true;
5
}
6
if (fade_out == true)
7
{
8
    if (image_alpha > 1)
9
        image_alpha -= 0.15;
10
    else
11
        instance_destroy();
12
}