Deltarune (Chapter 5) script viewer

← back to main script listing

gml_GlobalScript_scr_plat_barrier

(view raw script w/o annotations or w/e)
1
function scr_plat_barrier_enable()
2
{
3
    with (instance_create(0, 0, obj_plat_barrier))
4
        appear();
5
}
6
7
function scr_plat_barrier_disable()
8
{
9
    with (obj_plat_barrier)
10
        disappear();
11
}
12
13
function scr_plat_barrier_toggle_vertical(arg0)
14
{
15
    with (obj_plat_barrier)
16
        toggle_vertical(arg0);
17
}