We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 011ebb5 commit 8a2ea67Copy full SHA for 8a2ea67
1 file changed
v3/src/gameobjects/group/Group.js
@@ -38,6 +38,7 @@ var Group = new Class({
38
39
this.createCallback = GetFastValue(config, 'createCallback', null);
40
this.removeCallback = GetFastValue(config, 'removeCallback', null);
41
+ this.createMultipleCallback = GetFastValue(config, 'createMultipleCallback', null);
42
43
if (config)
44
{
@@ -186,6 +187,11 @@ var Group = new Class({
186
187
Actions.GridAlign(entries, grid);
188
}
189
190
+ if (this.createMultipleCallback)
191
+ {
192
+ this.createMultipleCallback.call(this, entries);
193
+ }
194
+
195
return entries;
196
},
197
0 commit comments