Deltarune (Chapter Select) script viewer

← back to main script listing

gml_GlobalScript_scr_os_checks

(view raw script w/o annotations or w/e)
1
function scr_is_switch_os()
2
{
3
    return os_type == os_switch;
4
}
5
6
function scr_is_valid_mic_platform()
7
{
8
    return os_type == os_windows || os_type == os_macosx || os_type == os_ps5;
9
}