Undertale script viewer

← back to main script listing

gml_Object_obj_alphysconveyor_Create_0

(view raw script w/o annotations or w/e)
1
image_yscale = 4.8;
2
col = -1;
3
if (x < (room_width / 2))
4
{
5
    sprite_index = spr_conveyorbelt_d_blue;
6
    image_speed = 1;
7
}
8
if (x > (room_width / 2))
9
{
10
    sprite_index = spr_conveyorbelt_d_blue;
11
    image_speed = -1;
12
}