Pixel-Composer/objects/o_process_handler/Create_0.gml
2023-06-17 14:30:49 +02:00

10 lines
384 B
Plaintext

/// @description
#region process management
global.PROC_ID = bool(EnvironmentGetVariableExists("process_id"))? int64(EnvironmentGetVariable("process_id")) : 0;
EnvironmentSetVariable("process_id", string(global.PROC_ID + 1));
if (global.PROC_ID == 1) { // if spawn after the main windows
instance_destroy(o_main, false);
instance_create(0, 0, o_crash_handler);
}
#endregion