Pixel-Composer/scripts/node_group/node_group.gml
2022-11-18 09:20:31 +07:00

11 lines
283 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 = COLORS.node_blend_interface;
icon = THEME.group_s;
}