Docs update.

This commit is contained in:
photonstorm 2015-02-10 14:17:48 +00:00
parent 960383818b
commit 823997744b
2 changed files with 2 additions and 0 deletions

View file

@ -117,6 +117,7 @@ Thanks to @pnstickne for vast majority of this update.
* Loader.XDomainRequest wasn't used for atlas json loading. It has now been moved to the `xhrLoad` method to ensure it's used for all request if required (thanks @draconisNoctis #1601)
* Loader.reset has a new optional 2nd parameter `clearEvents` which if set to `true` (the default is false) will reset all event listeners bound to the Loader.
* If `Body.customSeparateX` or `customSeparateY` is `true` then the Body will no longer be automatically separated from a **Tilemap** collision or exchange any velocity. The amount of pixels that the Body has intersected the tile is available in `Body.overlapX` and `overlapY`, so you can use these values to perform your own separation in your collision callback (#992)
* TilemapParser will now set the `.type` property for ObjectLayer Objects (thanks @mikaturunen #1609)
### Bug Fixes

View file

@ -7,6 +7,7 @@
/**
* An Animation instance contains a single animation and the controls to play it.
* It is created by the AnimationManager, consists of Animation.Frame objects and belongs to a single Game Object such as a Sprite.
* Please note that you can only tint Sprites with animations in WebGL mode.
*
* @class Phaser.Animation
* @constructor