We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de8462e commit 5be5ea8Copy full SHA for 5be5ea8
1 file changed
src/gameobjects/UpdateList.js
@@ -216,7 +216,7 @@ var UpdateList = new Class({
216
{
217
this._list.splice(index, 1);
218
}
219
-
+
220
return child;
221
},
222
@@ -277,6 +277,23 @@ var UpdateList = new Class({
277
278
this.scene = null;
279
this.systems = null;
280
+ },
281
282
+ /**
283
+ * [description]
284
+ *
285
+ * @name Phaser.GameObjects.UpdateList#length
286
+ * @type {integer}
287
+ * @readOnly
288
+ * @since 3.10.0
289
+ */
290
+ length: {
291
292
+ get: function ()
293
+ {
294
+ return this._list.length;
295
+ }
296
297
298
299
});
0 commit comments