Docs update.

This commit is contained in:
photonstorm 2015-02-17 06:01:51 +00:00
parent f2bddfdb1a
commit 1b83674f6d

View file

@ -60,7 +60,9 @@ Happy coding everyone! See you on the forums.
Version 2.3.0 - "Tarabon" - in dev
### Significant Update: Phaser.Loader
### Significant Update
#### Phaser.Loader
The Phaser.Loader has been updated to support parallel downloads which is now enabled by default (you can toggle it via the `Loader.enableParallel` flag) as well as adding future extensibility points with a pack/file unified filelist and an inflight queue.
@ -84,6 +86,10 @@ Loader.resetLocked is a boolean that allows you to control what happens when the
Thanks to @pnstickne for vast majority of this update.
#### Game Objects
All of the core Game Objects have received a small but important restructuring.
### New Features
* `Physics.Arcade.isPaused` allows you to toggle Arcade Physics processing on and off. If `true` the `Body.preUpdate` method will be skipped, halting all motion for all bodies. Note that other methods such as `collide` will still work, so be careful not to call them on paused bodies.