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
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3104,7 +3104,7 @@ There is an extensive [Migration Guide](https://github.com/photonstorm/phaser/bl
3104
3104
* StateManager.start can now have as many parameters as you like. The order is: start(key, clearWorld, clearCache, ...) - they are passed to State.init() (NOT create!)
3105
3105
* Loader.script now has callback (and callbackContext) parameters, so you can specify a function to run once the JS has been injected into the body.
3106
3106
* Phaser.Timer.stop has a new parameter: clearEvents (default true), if true all the events in Timer will be cleared, otherwise they will remain (fixes #383)
3107
-
* All GameObjects now have a 'destroyChildren' boolean as a parameter to their destroy method. It's default is true and the value propogates down its children.
3107
+
* All GameObjects now have a 'destroyChildren' boolean as a parameter to their destroy method. It's default is true and the value propagates down its children.
3108
3108
* Pixi GrayFilter ported over (thanks nickryall #404)
3109
3109
* Animation.speed added. You can now change the animation speed on the fly, without re-starting the animation (feature request #458)
3110
3110
* Brand new Grunt task - creates each core library as its own file and a combined phaser.js.
@@ -3193,7 +3193,7 @@ There is an extensive [Migration Guide](https://github.com/photonstorm/phaser/bl
3193
3193
* Tweens now resume correctly if the game pauses (focus loss) while they are paused.
3194
3194
* Tweens don't double pause if they were already paused and the game pauses.
3195
3195
* Buttons are now cleanly destroyed if part of a Group without leaving their InputHandler running.
3196
-
* You can now safely destroy a Group and the 'destroyChildren' boolean will propogate fully down the display list.
3196
+
* You can now safely destroy a Group and the 'destroyChildren' boolean will propagate fully down the display list.
3197
3197
* Calling destroy on an already destroyed object would throw a run-time error. Now checked for and aborted.
3198
3198
* Calling destroy while in an Input Event callback now works for either the parent Group or the calling object itself.
3199
3199
* Loader.replaceInFileList wouldn't over-write the previous entry correctly, which caused the Loader.image overwrite parameter to fail (thanks basoko, fixes #493)
@@ -3453,7 +3453,7 @@ There is an extensive [Migration Guide](https://github.com/photonstorm/phaser/bl
3453
3453
* Enhanced renderTexture so it can accept a Phaser.Group object and improved documentation and examples.
3454
3454
* Device.littleEndian boolean added. Only safe to use if the browser supports TypedArrays (which IE9 doesn't, but nearly all others do)
3455
3455
* You can now call game.sound.play() and simply pass it a key. The sound will play if the audio system is unlocked and optionally destroy itself on complete.
3456
-
* Mouse.capture is a boolean. If set to true then DOM mouse events will have event.preventDefault() applied, if false they will propogate fully.
3456
+
* Mouse.capture is a boolean. If set to true then DOM mouse events will have event.preventDefault() applied, if false they will propagate fully.
3457
3457
* The object returned by Math.sinCosGenerator now contains a length property.
0 commit comments