Deltarune (Chapter 3) script viewer

← back to main script listing

gml_Object_obj_credits_ch3_Create_0

(view raw script w/o annotations or w/e)
1
if (scr_is_switch_os())
2
    instance_create(0, 0, obj_switchAsyncHelper);
3
con = 0;
4
timer = 0;
5
lyric = stringset(" ");
6
textalpha = 1;
7
creditalpha = 1;
8
trackpos = 0;
9
modifier = 0;
10
song1 = 0;
11
menugray = hexcolor(#949494);
12
y_pos = __view_get(e__VW.YView, 0);
13
x_pos = __view_get(e__VW.XView, 0) + (__view_get(e__VW.WView, 0) / 2);
14
line_height = 20;
15
title_credit[0] = stringsetloc(
DELTARUNE
"DELTARUNE", "obj_credits_ch3_slash_Create_0_gml_18_0"
);
16
title_credit[1] = stringsetloc(
Chapter 3
"Chapter 3", "obj_credits_ch3_slash_Create_0_gml_19_0"
);
17
title_credit[2] = stringset(" ");
18
title_credit[3] = stringsetloc(
by Toby Fox
"by Toby Fox", "obj_credits_ch3_slash_Create_0_gml_21_0"
);
19
continued_text[0] = stringsetloc(
To be continued
"To be continued", "obj_credits_ch3_slash_Create_0_gml_23_0"
);
20
credit_index = -1;
21
credits = generate_credits();
22
paused = false;
23
24
enum e__VW
25
{
26
    XView,
27
    YView,
28
    WView,
29
    HView,
30
    Angle,
31
    HBorder,
32
    VBorder,
33
    HSpeed,
34
    VSpeed,
35
    Object,
36
    Visible,
37
    XPort,
38
    YPort,
39
    WPort,
40
    HPort,
41
    Camera,
42
    SurfaceID
43
}