Skip to content

Commit

Permalink
Merge pull request #6976 from samme/fix/v4.0.0/static-group-refresh
Browse files Browse the repository at this point in the history
Fix Static Physics Group refresh
  • Loading branch information
photonstorm authored Dec 24, 2024
2 parents 07b545f + 46fda1f commit b3b307f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/physics/arcade/StaticPhysicsGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ var StaticPhysicsGroup = new Class({
*/
refresh: function ()
{
var children = this.children.entries;
var children = Array.from(this.children);

for (var i = 0; i < children.length; i++)
{
Expand Down

0 comments on commit b3b307f

Please sign in to comment.