Skip to content

Commit 27198da

Browse files
committed
Update "Change Log"
1 parent 631e1a3 commit 27198da

File tree

1 file changed

+23
-18
lines changed

1 file changed

+23
-18
lines changed

README.md

+23-18
Original file line numberDiff line numberDiff line change
@@ -264,34 +264,39 @@ If you code with [TypeScript](http://www.typescriptlang.org/) there are comprehe
264264

265265
### New Features
266266

267-
* Debug#camera shows the camera follow target and deadzone.
268-
* Debug#renderer prints a description of the renderer and render session. In WebGL mode, this includes draw counts, texture limit, and texture batch size.
269-
* Point#setToPolar
270-
* Arcade.Body#blocked.none describes whether a Body is blocked on any edge.
271-
* Group#shuffle orders children randomly.
272-
* PIXI.Sprite.defaultAnchor can be modified to create Sprites with initial anchor values different from (0, 0).
267+
* [Debug#camera](https://photonstorm.github.io/phaser-ce/Phaser.Camera.html) shows the camera [follow target](https://photonstorm.github.io/phaser-ce/Phaser.Camera.html#target) and [deadzone](https://photonstorm.github.io/phaser-ce/Phaser.Camera.html#deadzone).
268+
* [Debug#renderer](https://photonstorm.github.io/phaser-ce/Phaser.Utils.Debug.html) prints some useful properties of the [game renderer](https://photonstorm.github.io/phaser-ce/Phaser.Game.html#renderer). In WebGL mode, this includes draw counts, texture space limit, and texture batch size.
269+
* [Point#setToPolar](https://photonstorm.github.io/phaser-ce/Phaser.Point.html#setToPolar) places a Point from polar coordinates (angle and distance). You can use it to set velocity or acceleration (as `velocity.setToPolar(angle, speed)`), as many of the Arcade Physics helpers now do.
270+
* [Arcade.Body#blocked.none](https://photonstorm.github.io/phaser-ce/Phaser.Physics.Arcade.Body.html#blocked) describes whether a Body is blocked on any edge. `blocked` and [touching](https://photonstorm.github.io/phaser-ce/Phaser.Physics.Arcade.Body.html#touching) now have identical keys.
271+
* [Arcade.Body#stop](https://photonstorm.github.io/phaser-ce/Phaser.Physics.Arcade.Body.html#stop) halts all motion.
272+
* [Emitter#count](https://photonstorm.github.io/phaser-ce/Phaser.Particles.Arcade.Emitter.html#count) records some diagnostic quantities: `count.emitted`, `count.failed`, `count.totalEmitted`, `count.totalFailed`.
273+
* [Group#shuffle](https://photonstorm.github.io/phaser-ce/Phaser.Group.html#shuffle) orders children randomly.
274+
* PIXI.Sprite.defaultAnchor holds the initial anchor values for new Sprites (default: [x=0, y=0]).
273275
* Phaser.Math.HALF_PI is π / 2.
274-
* Emitter#count records some diagnostic quantities: `count.emitted`, `count.failed`, `count.totalEmitted`, `count.totalFailed`.
275-
* Arcade.Body#stop halts all motion.
276276

277277
### Updates
278278

279-
* ScaleManager#forceOrientation warns if you try to force both orientations.
280-
* WebGLRenderer#setTexturePriority warns if maxTextureAvailableSpace is exhausted.
281-
* Debug#cameraInfo now displays the follow target (`target`), `roundPx`, `atLimit`, and `deadzone`.
282-
* Added PIXI.canUseNewCanvasBlendModes to support [Particle Storm Plugin](https://phaser.io/shop/plugins/particlestorm) (photonstorm/phaser#2909). It's equivalent to Phaser.Device.canUseMultiply.
283-
* Phaser.Utils.Debug#isDisabled is now defined in two additional cases: `true` when a new game is created with `enableDebug: false`; and `false` otherwise. As before, it is `true` when Phaser is built without the Debug class.
284-
* Documented an undocumented feature of Phaser.Signal: returning `false` from a callback stops Signal propagation, just as Signal#halt does (#243).
279+
* Added PIXI.canUseNewCanvasBlendModes to support [Particle Storm Plugin](https://phaser.io/shop/plugins/particlestorm) (photonstorm/phaser#2909). It's equivalent to [Phaser.Device.canUseMultiply](https://photonstorm.github.io/phaser-ce/Phaser.Device.html#canUseMultiply).
280+
* [Debug#cameraInfo](https://photonstorm.github.io/phaser-ce/Phaser.Utils.Debug.html#cameraInfo) now displays the follow target (`target`), `roundPx`, `atLimit`, and `deadzone`.
281+
* [Debug#isDisabled](https://photonstorm.github.io/phaser-ce/Phaser.Utils.Debug.html#isDisabled) is now defined in two additional cases: `true` when a new game is created with `enableDebug: false`; and `false` otherwise. As before, it is `true` when Phaser is built without the Debug class.
282+
* [ScaleManager#forceOrientation](https://photonstorm.github.io/phaser-ce/Phaser.ScaleManager.html#forceOrientation) warns if you try to force both orientations.
283+
* [WebGLRenderer#setTexturePriority](https://photonstorm.github.io/phaser-ce/PIXI.WebGLRenderer.html#setTexturePriority) warns if `maxTextureAvailableSpace` is exhausted.
284+
* Documented an undocumented feature of [Phaser.Signal](https://photonstorm.github.io/phaser-ce/Phaser.Signal.html): returning `false` from a callback stops Signal propagation, just as Signal#halt does (#243).
285285

286286
### Bug Fixes
287287

288-
* Fixed WebGLRenderer#setTexturePriority not clearing the current batch.
288+
* Fixed [WebGLRenderer#setTexturePriority](https://photonstorm.github.io/phaser-ce/PIXI.WebGLRenderer.html#setTexturePriority) not clearing the current batch.
289289
* Fixed incorrect `worldRotation` for some objects (#259).
290+
* Fixed `NaN` value for some objects' `worldRotation` and `worldScale` properties. `worldTransform` was still correct.
291+
* Fixed [Phaser.Input#hitTest](https://photonstorm.github.io/phaser-ce/Phaser.Input.html#hitTest) when texture resolution ≠ 1.
292+
* Fixed an incorrect area in [Phaser.Input#hitTest](https://photonstorm.github.io/phaser-ce/Phaser.Input.html#hitTest) when a Creature is reversed on either axis.
293+
* Fixed camera shake failing to be reset to 0 when camera is reset.
290294
* Added some missing TypeScript return values (#255).
291295
* Fixed typo for TypeScript definition of `IGameConfig.multiTexture` property.
292-
* Fixed `NaN` value for some objects' `worldRotation` and `worldScale` properties. `worldTransform` was still correct.
293-
* Fixed camera shake failing to be set to 0 when camera is reset.
294-
* Fixed Phaser.Input#hitTest when texture resolution ≠ 1.
296+
297+
### Thanks
298+
299+
@andrewjb123, @dhashvir, @Formic, @jbpuryear, @noidexe, @pavle-goloskokovic, @photonstorm, @rgk, @samme, stupot
295300

296301
## Version 2.8.0 - 30th May 2017
297302

0 commit comments

Comments
 (0)