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: CHANGELOG.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ A special mention must go to @orblazer for their outstanding assistance in helpi
30
30
* Camera.fadeIn is a new method that will fade the camera in from a given color (black by default) and then optionally invoke a callback. This is the same as using Camera.flash but with an easier to grok method name. Fix #3412 (thanks @Jerenaux)
31
31
* Camera.fadeOut is a new method that will fade the camera out to a given color (black by default) and then optionally invoke a callback. This is the same as using Camera.fade but with an easier to grok method name. Fix #3412 (thanks @Jerenaux)
32
32
* Groups will now listen for a `destroy` event from any Game Object added to them, and if received will automatically remove that GameObject from the Group. Fix #3418 (thanks @hadikcz)
33
-
* MatterGameObject is a new function, available via the Matter Factory in `this.matter.add.gameObject`, that will inject a Matter JS Body into any Game Object, such as a Text object.
33
+
* MatterGameObject is a new function, available via the Matter Factory in `this.matter.add.gameObject`, that will inject a Matter JS Body into any Game Object, such as a Text or TileSprite object.
34
34
* Matter.SetBody and SetExistingBody will now set the origin of the Game Object to be the Matter JS sprite.xOffset and yOffset values, which will auto-center the Game Object to the origin of the body, regardless of shape.
35
35
36
36
### Bug Fixes
@@ -100,7 +100,11 @@ A special mention must go to @orblazer for their outstanding assistance in helpi
100
100
* Triangle.getLineC now returns a Line instead of an untyped object. It also now has an optional argument that allows you to pass a Line in to be populated, rather than creating a new one.
101
101
* The GameObject `destroy` event is now emitted at the start of the destroy process, before things like the body or input managers have been removed, so you're able to use the event handler to extract any information you require from the GameObject before it's actually disposed of. Previously, the event was dispatched at the very end of the process.
102
102
* Phaser 3 is now built with Webpack v4.1.1 and all related packages have been updated (thanks @orblazer)
103
-
103
+
* On WebGL the currentScissor is now updated when the renderer `resize` method is called (thanks @jmcriat)
104
+
* PathFollower.start has been renamed to `startFollow` to avoid conflicting with the Animation component.
105
+
* PathFollower.pause has been renamed to `pauseFollow` to avoid conflicting with the Animation component.
106
+
* PathFollower.resume has been renamed to `resumeFollow` to avoid conflicting with the Animation component.
107
+
* PathFollower.stop has been renamed to `stopFollow` to avoid conflicting with the Animation component.
0 commit comments