mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
11 lines
264 B
Plaintext
11 lines
264 B
Plaintext
|
function Node_create_Group(_x, _y) {
|
||
|
var node = new Node_Group(_x, _y);
|
||
|
ds_list_add(PANEL_GRAPH.nodes_list, node);
|
||
|
return node;
|
||
|
}
|
||
|
|
||
|
function Node_Group(_x, _y) : Node_Collection(_x, _y) constructor {
|
||
|
name = "Group";
|
||
|
color = c_ui_yellow;
|
||
|
icon = s_group_16;
|
||
|
}
|