Deltarune (Chapter 1) script viewer

← back to main script listing

gml_Object_obj_npc_room_Step_1

(view raw script w/o annotations or w/e)
1
if (normalanim == 1)
2
{
3
    if (myinteract > 0 && instance_exists(obj_writer))
4
    {
5
        if (obj_writer.halt > 0)
6
        {
7
            image_speed = 0;
8
            image_index = 0;
9
        }
10
        if (obj_writer.halt == 0)
11
            image_speed = remanimspeed;
12
    }
13
}
14
if (normalanim == 1 || normalanim == 2)
15
{
16
    if (myinteract == 0)
17
    {
18
        image_index = 0;
19
        image_speed = 0;
20
    }
21
}