You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+38-6Lines changed: 38 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Along with the fantastic open source community, Phaser is actively developed and
11
11
Thousands of developers worldwide use Phaser. From indies and multi-national digital agencies, to schools and Universities. Each creating their own incredible [games](https://phaser.io/games/).
12
12
13
13
**Visit:** The [Phaser website](https://phaser.io) and follow on [Twitter](https://twitter.com/phaser_) (#phaserjs)<br />
14
-
**Learn:**[API Docs](https://phaser.io/docs), [Support Forum][forum] and [StackOverflow](https://stackoverflow.com/questions/tagged/phaser-framework)<br />
14
+
**Learn:**[API Docs](https://github.com/photonstorm/phaser3-docs), [Support Forum][forum] and [StackOverflow](https://stackoverflow.com/questions/tagged/phaser-framework)<br />
15
15
**Code:** 700+ [Examples](https://labs.phaser.io) (source available in this [repo][examples])<br />
**Updated:** Thank you for the amazing response to the 3.0.0 release! We've been hard at work and have now prepared 3.1.0 for you, which is available today. This fixes a few issues that crept in and further speeds up the WebGL rendering. Check out the [Change Log](#changelog) for more details.
28
30
29
31
After 1.5 years in the making, tens of thousands of lines of code, hundreds of examples and countless hours of relentless work: Phaser 3 is finally out. It has been a real labor of love and then some!
30
32
@@ -92,13 +94,13 @@ npm install phaser
92
94
[Phaser is on jsDelivr](http://www.jsdelivr.com/projects/phaser), a "super-fast CDN for developers". Include the following in your html:
@@ -229,8 +231,38 @@ Should you wish to build Phaser 3 from source ensure you have the required packa
229
231
You can then run `webpack` to perform a dev build to the `build` folder, including source maps for local testing, or run `npm run dist` to create a minified packaged build into the `dist` folder.
We have always been meticulous in recording changes to the Phaser code base, and where relevant, giving attribution to those in the community who helped. This is something we'll continue with Phaser 3 and you'll see this section expand as we push through the 3.0.0 releases.
234
+
<aname="changelog"></a>
235
+
236
+
## Version 3.1.0 - Onishi - 16th February 2018
237
+
238
+
### Updates
239
+
240
+
* Vertex resource handling code updated, further optimizing the WebGL batching. You should now see less gl ops per frame across all batches.
241
+
* The `Blitter` game object has been updated to use the `List` structure instead of `DisplayList`.
242
+
* Arcade Physics World `disableBody` has been renamed `disableGameObjectBody` to more accurately reflect what it does.
243
+
* Lots of un-used properties were removed from the Arcade Physics Static Body object.
244
+
* Arcade Physics Static Body can now refresh itself from its parent via `refreshBody`.
245
+
246
+
### Bug Fixes
247
+
248
+
* A couple of accidental uses of `let` existed, which broke Image loading in Safari # (thanks Yat Hin Wong)
249
+
* Added the static property `Graphics.TargetCamera` was added back in which fixed `Graphics.generateTexture`.
250
+
* The SetHitArea Action now calls `setInteractive`, fixing `Group.createMultiple` when a hitArea has been set.
0 commit comments