Pixel-Composer/scripts/node_group/node_group.gml

5 lines
174 B
Text
Raw Normal View History

2023-02-28 15:43:01 +07:00
function Node_Group(_x, _y, _group = noone) : Node_Collection(_x, _y, _group) constructor {
2022-01-13 11:24:03 +07:00
name = "Group";
2022-12-10 11:06:01 +07:00
color = COLORS.node_blend_collection;
2022-11-18 09:20:31 +07:00
icon = THEME.group_s;
2022-01-13 11:24:03 +07:00
}