Deltarune (Chapter 4) script viewer

← back to main script listing

gml_Object_obj_solid_floor_Step_0

(view raw script w/o annotations or w/e)
1
if (active == false && init == 0)
2
{
3
    x = room_width * 2;
4
    y = room_height * 2;
5
    image_xscale = 0.01;
6
    image_yscale = 0.01;
7
    init = 1;
8
}
9
if (active == true && init == 0)
10
{
11
    x = remx;
12
    y = remy;
13
    image_xscale = remsizex;
14
    image_yscale = remsizey;
15
    init = 1;
16
}
17
if (keyboard_check(ord("B")) && global.debug == true)
18
    image_alpha = 0.1;
19
else
20
    image_alpha = 0;