mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
10 lines
373 B
Plaintext
10 lines
373 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 == 0)
|
|
instance_create(0, 0, o_main);
|
|
else if (global.PROC_ID == 1)
|
|
instance_create(0, 0, o_crash_handler);
|
|
#endregion |