Deltarune (Chapter 5) script viewer

← back to main script listing

gml_Object_obj_border_controller_Step_0

(view raw script w/o annotations or w/e)
1
if (_custom_show)
2
{
3
    if (room == room_dw_garden_floradinnencounter)
4
    {
5
        var border_show = false;
6
        with (obj_sakurafubuki_new)
7
        {
8
            if (transition_stage == 1)
9
                border_show = true;
10
        }
11
        if (border_show)
12
        {
13
            _custom_show = false;
14
            show_border(0.011111111111111112);
15
        }
16
    }
17
}