We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fd9d30 commit bd36355Copy full SHA for bd36355
2 files changed
v3/src/checksum.js
@@ -1,4 +1,4 @@
1
var CHECKSUM = {
2
-build: '1eea1a70-5b41-11e7-93a3-65e728ed48e6'
+build: '18c0acb0-5b49-11e7-8d14-217ddc0d000b'
3
};
4
module.exports = CHECKSUM;
v3/src/gameobjects/group/Group.js
@@ -19,6 +19,20 @@ var Group = new Class({
19
this.classType = Sprite;
20
},
21
22
+ update: function (time, delta)
23
+ {
24
+ // Because a Group child may mess with the length of the Group during its update
25
+ var temp = this.children.entries.slice();
26
+
27
+ for (var i = 0; i < temp.length; i++)
28
29
+ if (temp[i].update(time, delta) === false)
30
31
+ break;
32
+ }
33
34
+ },
35
36
// Group management methods:
37
38
add: function (child)
0 commit comments