mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
9 lines
286 B
Plaintext
9 lines
286 B
Plaintext
/// @description
|
|
var port = async_load[? "port"];
|
|
|
|
if(!ds_map_exists(PORT_MAP, port)) exit;
|
|
var nodeTarget = PORT_MAP[? port];
|
|
for( var i = 0, n = array_length(nodeTarget); i < n; i++ ) {
|
|
if(is_struct(nodeTarget[i]) && nodeTarget[i].active)
|
|
nodeTarget[i].asyncPackets(async_load);
|
|
} |