Skip to content

Commit

Permalink
Updated to include latest PRs from samme
Browse files Browse the repository at this point in the history
  • Loading branch information
photonstorm committed Dec 24, 2024
1 parent b3b307f commit 8b9d8fb
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions dist/phaser-arcade-physics.js
Original file line number Diff line number Diff line change
Expand Up @@ -137053,7 +137053,7 @@ var ArcadePhysics = new Class({
{
if (!targets)
{
targets = this.world.bodies.entries;
targets = Array.from(this.world.bodies);
}

var min = Number.MAX_VALUE;
Expand Down Expand Up @@ -137107,7 +137107,7 @@ var ArcadePhysics = new Class({
{
if (!targets)
{
targets = this.world.bodies.entries;
targets = Array.from(this.world.bodies);
}

var max = -1;
Expand Down Expand Up @@ -143715,7 +143715,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 Expand Up @@ -145551,12 +145551,12 @@ var World = new Class({

if (object1.isParent && (object1.physicsType === undefined || object2 === undefined || object1 === object2))
{
object1 = object1.children.entries;
object1 = Array.from(object1.children);
}

if (object2 && object2.isParent && object2.physicsType === undefined)
{
object2 = object2.children.entries;
object2 = Array.from(object2.children);
}

var object1isArray = Array.isArray(object1);
Expand Down
2 changes: 1 addition & 1 deletion dist/phaser-arcade-physics.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/phaser.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -136950,7 +136950,7 @@ var ArcadePhysics = new Class({
{
if (!targets)
{
targets = this.world.bodies.entries;
targets = Array.from(this.world.bodies);
}

var min = Number.MAX_VALUE;
Expand Down Expand Up @@ -137004,7 +137004,7 @@ var ArcadePhysics = new Class({
{
if (!targets)
{
targets = this.world.bodies.entries;
targets = Array.from(this.world.bodies);
}

var max = -1;
Expand Down Expand Up @@ -143612,7 +143612,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 Expand Up @@ -145448,12 +145448,12 @@ var World = new Class({

if (object1.isParent && (object1.physicsType === undefined || object2 === undefined || object1 === object2))
{
object1 = object1.children.entries;
object1 = Array.from(object1.children);
}

if (object2 && object2.isParent && object2.physicsType === undefined)
{
object2 = object2.children.entries;
object2 = Array.from(object2.children);
}

var object1isArray = Array.isArray(object1);
Expand Down
2 changes: 1 addition & 1 deletion dist/phaser.esm.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/phaser.js
Original file line number Diff line number Diff line change
Expand Up @@ -137051,7 +137051,7 @@ var ArcadePhysics = new Class({
{
if (!targets)
{
targets = this.world.bodies.entries;
targets = Array.from(this.world.bodies);
}

var min = Number.MAX_VALUE;
Expand Down Expand Up @@ -137105,7 +137105,7 @@ var ArcadePhysics = new Class({
{
if (!targets)
{
targets = this.world.bodies.entries;
targets = Array.from(this.world.bodies);
}

var max = -1;
Expand Down Expand Up @@ -143713,7 +143713,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 Expand Up @@ -145549,12 +145549,12 @@ var World = new Class({

if (object1.isParent && (object1.physicsType === undefined || object2 === undefined || object1 === object2))
{
object1 = object1.children.entries;
object1 = Array.from(object1.children);
}

if (object2 && object2.isParent && object2.physicsType === undefined)
{
object2 = object2.children.entries;
object2 = Array.from(object2.children);
}

var object1isArray = Array.isArray(object1);
Expand Down
2 changes: 1 addition & 1 deletion dist/phaser.min.js

Large diffs are not rendered by default.

0 comments on commit 8b9d8fb

Please sign in to comment.