Pixel-Composer/scripts/node_group/node_group.gml

5 lines
171 B
Plaintext
Raw Normal View History

2022-12-13 14:11:39 +01:00
function Node_Group(_x, _y, _group = -1) : Node_Collection(_x, _y, _group) constructor {
2022-01-13 05:24:03 +01:00
name = "Group";
2022-12-10 05:06:01 +01:00
color = COLORS.node_blend_collection;
2022-11-18 03:20:31 +01:00
icon = THEME.group_s;
2022-01-13 05:24:03 +01:00
}