Skip to content

Commit

Permalink
3.53.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
photonstorm committed Mar 8, 2021
1 parent 11d47d0 commit e2f1961
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 219,058 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG-v3.50.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 3.53.1 - Anastasia - 8th March 2021

* Fixed an issue where Container children were not removed from the display list properly.

## Version 3.53.0 - Anastasia - 8th March 2021

### New Features
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ npm install phaser
[Phaser is on jsDelivr](https://www.jsdelivr.com/package/npm/phaser) which is a "super-fast CDN for developers". Include the following in your html:

```html
<script src="//cdn.jsdelivr.net/npm/[email protected].0/dist/phaser.js"></script>
<script src="//cdn.jsdelivr.net/npm/[email protected].1/dist/phaser.js"></script>
```

or the minified version:

```html
<script src="//cdn.jsdelivr.net/npm/[email protected].0/dist/phaser.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/[email protected].1/dist/phaser.min.js"></script>
```

### API Documentation
Expand Down Expand Up @@ -188,7 +188,7 @@ Create an `index.html` page locally and paste the following code into it:
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/phaser-arcade-physics.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/phaser-arcade-physics.min.js"></script>
</head>
<body>

Expand Down Expand Up @@ -342,8 +342,8 @@ All rights reserved.

"Above all, video games are meant to be just one thing: fun. Fun for everyone." - Satoru Iwata

[get-js]: https://github.com/photonstorm/phaser/releases/download/v3.53.0/phaser.js
[get-minjs]: https://github.com/photonstorm/phaser/releases/download/v3.53.0/phaser.min.js
[get-js]: https://github.com/photonstorm/phaser/releases/download/v3.53.1/phaser.js
[get-minjs]: https://github.com/photonstorm/phaser/releases/download/v3.53.1/phaser.min.js
[clone-http]: https://github.com/photonstorm/phaser.git
[clone-ssh]: [email protected]:photonstorm/phaser.git
[clone-ghwin]: github-windows://openRepo/https://github.com/photonstorm/phaser
Expand Down
8 changes: 1 addition & 7 deletions dist/phaser-arcade-physics.js
Original file line number Diff line number Diff line change
Expand Up @@ -7026,7 +7026,7 @@ var CONST = {
* @type {string}
* @since 3.0.0
*/
VERSION: '3.53.0',
VERSION: '3.53.1',

BlendModes: __webpack_require__(35),

Expand Down Expand Up @@ -46440,10 +46440,6 @@ var Container = new Class({
gameObject.parentContainer.remove(gameObject);
}

var displayList = this.displayList || this.scene.sys.displayList;

gameObject.addToDisplayList(displayList);

gameObject.parentContainer = this;
}
},
Expand All @@ -46463,8 +46459,6 @@ var Container = new Class({

if (this.exclusive)
{
gameObject.removeFromDisplayList();

gameObject.parentContainer = null;

gameObject.addToDisplayList();
Expand Down
2 changes: 1 addition & 1 deletion dist/phaser-arcade-physics.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit e2f1961

Please sign in to comment.