Phaser 2.4.7 Final.

This commit is contained in:
photonstorm 2016-04-22 15:15:28 +01:00
parent 6cc0a48347
commit a29cc64932
398 changed files with 12073 additions and 3259 deletions

View file

@ -1,5 +1,89 @@
# Change Log
## Version 2.4.7 - "Hinderstap" - 22nd April 2016
### New Features
* Added P2.Body.thrustLeft which will move the Body to the left by the speed given (thanks James Pryor)
* Added P2.Body.thrustRight which will move the Body to the right by the speed given (thanks James Pryor)
* Polygon now takes an array of arrays as a new type when constructing it: `[[x1, y1], [x2, y2]]` (thanks @ShimShamSam #2360)
* Text has a new property `maxLines` which is the maximum number of lines to be shown for wrapped text. If set to 0 (the default) there is limit. This prevents wrapped text from overflowing on a fixed layout (thanks @slashman #2410)
* `outOfCameraBoundsKill` is a new boolean property that all Game Objects with the `InWorld` component has. If `autoCull` and this property are both `true` then the Object will be automatically killed if it leaves the camera bounds (thanks @jakewilson #2402)
* Group.getByName searches the Group for the first instance of a child with the `name` property matching the given argument. Should more than one child have the same name only the first instance is returned.
* BitmapData has a new property `frameData` which is a Phaser.FrameData container instance. It contains a single Frame by default, matching the dimensions of the entire BitmapData, but can be populated with additional frames should you wish to create animations from dynamic BitmapData textures.
* FrameData.destroy will nullify the local arrays used to contain Frame instances.
* SoundManager.muteOnPause is a new boolean that allows you to control if the Sound system gets muted automatically when a Phaser game pauses, such as when it loses focus. You may need to set this to `false` if you wish to control the audio system from outside of your Phaser game, i.e. from DOM buttons or similar (#2382)
* You can now pass a TilemapLayer as a Texture to a TileSprite. A limitation of this is that if you pass it to a TileSprite it will make a fill pattern from the TilemapLayer at that instant it's passed, and it won't keep track of the layer in future should it update (thanks @jdnichollsc #1989)
* Camera has a new property: `lerp`. This is a Point object, that allows you to control the amount of horizontal and vertical smoothing to be applied to the camera when it tracks a Sprite. It works both with and without deadzones, and is turned off by default. Set it to low values such as 0.1 for really smooth motion tracking (thanks to @WombatTurkey for the idea of adding this)
* Camera.shake is a new function that creates a camera shake effect. You can specify the intensity, duration and direction of the effect. You can also set if it should shake the camera out of bounds or not.
* Camera.flash is a new function that makes the camera 'flash' over the top of your game. It works by filling the game with the solid fill color specified, and then fading it away to alpha 0 over the duration given. This is great for things like hit effects. You can listen for the Camera.onflashComplete Signal.
* Camera.fade is a new function that makes the camera fade to the color given, over the course of the duration specified. This is great for things like transitioning from one State to another. You can listen for the Camera.onFadeComplete Signal.
* Camera.resetFX resets any active FX, such as a fade or flash and immediately clears it. Useful for calling after a fade in order to remove the fade from the Stage.
* Phaser.Camera.ENABLE_FX is a const that controls if the Camera FX are available or not. It's `true` by default, but if you set it to `false` before boot then it won't create the Graphics object required to process the effects.
* The Arcade Physics Body has two new properties: `left` and `top`. These are the same as `Body.x` and `Body.y` but allow you to pass the Body to geometry level functions such as Circle.contains.
* World.separate has been optimized to cut down on the number of calls to `intersect` from 3 calls per Game Object collision check, to 2. So if you were colliding 50 sprites it will reduce the call count from 150 to 100 per frame. It also reduces the calls made to `seperateX` and `seperateY` by the same factor.
* Two immovable bodies would never set their overlap data, even if an overlap only check was being made. As this is useful data to have this has been changed. Two immovable bodies will still never separate from each other, but they _will_ have their `overlapX` and `overlapY` properties calculated now.
* P2.Body.offset is now used and applied to the Sprite position during rendering. The values given are normal pixel values, and offset the P2 Body from the center of the Sprite (thanks @Mourtz #2430)
### Updates
* TypeScript definitions fixes and updates (thanks @jamesgroat @kiswa)
* Docs typo fixes (thanks @thiagojobson @hayesmaker @EJanuszewski)
* Removed a `console.log` from the TilingSprite generator.
* Sound.position can no longer become negative, meaning calls to AudioContextNode.start with negative position offsets will no longer throw errors (thanks @Weedshaker #2351 #2368)
* The default state of the internal property `_boundDispatch` in Phaser.Signal is now `false`, which allows for use of boundDispatches (thanks @alvinlao #2346)
* The Tiled parser only supports uncompressed layer data. Previously it would silently fail, now it detects if layer compression is used and displays a console warning instead (thanks @MannyC #2413)
* The Tiled parser now removes the `encoding` parameter so that a subsequent process doesn't try to decode the data again (thanks @MannyC #2412)
* Ensure a parent container is a Group before removing from its hash (thanks @rblopes #2397)
* The Game Object Input Handler now checks to see if the Object was destroyed during the `onInputDown` phase, and bails out early if so (thanks @zeterain #2394)
* The Destroy component will now call TweenManager.removeFrom, removing any active tweens from the TweenManager upon the Game Objects destructions (thanks @PokemonAshLovesMyTurkeyAndILikeYouTwo #2408)
* Tween.update will now return `false` (flagging the Tween for destruction) should the Tween.target property every become falsey. This can happen if the object the Tween was tracking is destroyed, nulled or generally removed.
* TweenData.repeatTotal is a new property that keeps track of the total number of times the Tween should repeat. If TweenData.start is called, as a result of the Tween repeatCount being > 0 then the child tween resets its total before re-starting.
* The Debug canvas now listens for the ScaleManager.onSizeChange signal and resizes itself accordingly when running under WebGL. This means if your game size changes the Debug canvas won't be clipped off (thanks @francisberesford #1919)
* Camera.follow now uses the Targets `world` property to seed the camera coordinates from, rather than its local position. This means Sprites that are members of offset Groups, or transformed display lists, should now be followed more accurately (thanks @rbozan #2106)
* PluginManager.destroy is now called by Game.destroy.
* Game.forceSingleUpdate is now `true` by default.
* Video now uses MediaStreamTrack.stop() instead of MediaStream.stop() where possible, as the later is now deprecated in some browsers (thanks @stoneman1 #2371)
* The Physics Manager will now throw a console warning if you try to enable a physics body using an unknown physics engine type (thanks @jakewilson #2415)
* The Tileset class will tell you the name of the tileset image throwing the uneven size error (thanks @jakewilson #2415)
* Emitter.start when used with a false `explode` parameter would cumulatively add particles to the current total. With quantity 10 the first call would emit 10 particles, the next 20, and so on. Calls to start will now reset the quantity each time. This is a behavior change from earlier versions, so if you relied on the old way please account for it in your code (thanks @BdR76 #2187)
* You can now pass in your own Canvas element to Phaser and it will use that instead of creating one itself. To do so you must pass a Game Configuration object to Phaser when you instantiate it, and set the `canvas` property of the config object to be the DOM element you wish to use, i.e.: `{ canvas: document.getElementById('yourCanvas') }` (thanks @Friksel #2311)
* When loading Video with the `asBlob` argument set it now uses a 'blob' type for the XHR loader, and doesn't cast the resulting file as a Blob upon load. This fixes loading videos as blobs on Chrome for Android (thanks @JuCarr #2433)
* When the Loader loads audio via the Audio tag, instead of Web Audio, it used to use `Phaser.GAMES[_this.game.id].load` as the callback handler, which would stop it from working if you had multiple Loaders set-up within Phaser. It now uses a local reference to `_this` instead (thanks @SBCGames #2435)
### Bug Fixes
* The `mouseoutglobal` event listener wasn't removed when the game was destroyed (thanks @stoneman1 #2345 #2344 #2342)
* Fixed issue with IE crashing on this.context.close in the Sound Manager (thanks @stoneman1 #2349)
* Phaser.World.centerX and Phaser.World.centerY only worked if the bounds had an origin of 0, 0. They now take into account the actual origin (thanks @fillmoreb #2353)
* SoundManager.destroy now validates that context.close is a valid function before calling it (thanks @brianbunch #2355)
* SoundManager.destroy doesn't close the context if it's being stored in PhaserGlobal (thanks @brianbunch #2356)
* Fix typo in p2 BodyDebug.componentToHex that made most debug bodies appear reddish in color (thanks @englercj #2381)
* Previously when a sprite was tinted and a new texture was loaded then the tint did not apply to the texture and the old tinted texture was used (thanks @CptSelewin #2383)
* Negative lineSpacing in Text objects will no longer crop the bottom pixels off lines of text (thanks @gaelenh #2379 #2374)
* BitmapData.copy, and by extension draw, drawFull, drawGroup, etc, would incorrectly handle drawing a tinted Sprite if it was using a frame from a texture atlas (thanks @PhaserDebugger #2405)
* Text that used fonts which had numbers in their names wouldn't be correctly rendered unless you explicitly set the font property after creation. You can now pass font names with numbers in them as the font style object correctly (thanks @And-0 #2390)
* Tween.update wouldn't dispatch an `onLoop` signal for Tweens with just one child, such as those created via Tween.to with -1 as the repeat value (thanks @ForgeableSum #2407)
* Arcade.Body's speed property was only set when the body moved, it now updates regardless (thanks @mark-henry #2417)
* Camera.position would return the view rectangles centerX/Y coordinates, instead of view.x/y (which is what Camera.x/y returns), so it has been updated to return view.x/y instead (thanks @kamparR #2120)
* Passing a BitmapData to a TileSprite as a texture would fail if the BitmapData had not been previously added to the cache. It now uses the new frameData property (thanks @mzamateo @lucap86 #2380)
* When setting a global volume for the SoundManager it would previously incorrectly calculate the volumes of AudioTag based Sound objects that were not played at volume 1. The new approach uses Sound.updateGlobalVolume which adjusts the Sound volume to be a percentage of the global volume. So if the global volume is 0.5 and the Sound volume is 0.5, the Sound will play with an actual volume of 0.25 (thanks @VitaZheltyakov #2325)
* Sound.play when using an AudioTag would ignore the muted state of the SoundManager and play regardless. It now checks the SoundManager.mute state on play, and sets the volume accordingly (thanks @brianbunch #2139)
* Graphics objects can now have a Physics Body directly attached to them, where-as before it would throw an error due to a lack of anchor property (thanks @NLilley #2400)
* A Game Object with `fixedToCamera = true` that was then set for Input, and enabled for dragging from its center (`input.enableDrag(true)`) would throw an error upon being dragged (thanks @solusipse #2367)
* P2.World.updateBoundsCollisionGroup wouldn't use the `boundsCollisionGroup` mask if you passed `true` as the argument, only if it was left undefined.
* P2.World.updateBoundsCollisionGroup didn't set the `_boundsOwnGroup` private var, meaning the `World.setBounds` method wasn't able to restore previously set collision masks automatically (thanks @jmp909 #2183)
* P2.World.setBounds has been re-written completely. If the World is resized it no longer removes the P2 body instances and re-creates them. Instead it checks to see which walls are required and then just moves the position of the shapes instead, or updates them, or creates or destroys them as required. This is far more efficient, especially in a game which sees a lot of world bounds changes (i.e. resizes responsively in browser)
* BitmapText would throw an error if you passed in a number as the text property to the constructor. It worked if you used the text accessor directly because it cast the value to a string, but the constructor missed out this step (thanks @lewispollard #2429)
* Dragging a Sprite while the camera was moving would slowly cause the Sprite position to become out of sync the further the camera moved. A Sprite being dragged now tracks the camera position during the drag update and adjusts accordingly (thanks @jeroenverfallie #1044)
### Pixi Updates
Please note that Phaser uses a custom build of Pixi and always has done. The following changes have been made to our custom build, not to Pixi in general.
* DisplayObjectContainer.getLocalBounds destroys the worldTransforms on children until the next `stage.updateTransform()` call. This can make a number of things break including mouse input if width, height or getLocalBounds methods are called inside of an update or preUpdate method. This is now fixed in our Pixi build (thanks @st0nerhat #2357)
* PIXI.CanvasRenderer.resize now applies the `renderSession.smoothProperty` to the Canvas context when it resizes. This should help with unwanted canvas smoothing (thanks @sergey7c4 #2395 #2317)
## Version 2.4.6 - "Baerlon" - 18th February 2016
2.4.6 is a point release that addresses 2 severe bugs, and should be used in place of 2.4.5 in all instances. The 2.4.5 change log appears after this one.

View file

@ -41,15 +41,21 @@ Thousands of developers worldwide use it. From indies and multi-national digital
<div align="center"><img src="http://phaser.io/images/github/news.jpg"></div>
> TBA
> 22nd April 2016
Phaser 2.4.7 is our second release in 2016 and represents several months of fixes and optimizations. As a point release it's a safe update from a previous 2.4 build, but as always please test first before upgrading, and be sure to skim through the extensive change log. There are some great new features including Dolby Digital sound support, loads of updates to Pixi and a new Webpack bundle.
We're pleased to announce the release of Phaser 2.4.7. This version encompasses another raft of fixes, updates and new features. Many hours of hard work were put in to diligently working through the GitHub issues list, and fixing and closing down as many issues as we possibly could.
Due to on-going development of Lazer (previously known as Phaser 3) Phaser is soon to enter the LTS (long-term support) stage of its life. This is when we impose a feature freeze, locking the API down and responding only to bugs. This is a necessary step to allow us to focus on Lazer while still ensuring Phaser is given the support it deserves. Thousands of developers use Phaser and we've no intention of ignoring that. However with the release of 2.4.5 we will now be moderating issues opened on GitHub to this effect.
My thanks to all those who contributed to this release, either by way of telling us about an issue, providing a fix, or just testing out the release candidate.
As always, keep you eyes on the Phaser web site or [Twitter](https://twitter.com/photonstorm) for the latest news.
There are a few internal changes in 2.4.7, nothing that breaks the public-facing API, but if you do some deep-dive work in Phasers guts then you may want to check out the change log, and commit history, to be sure it doesn't impact your own code.
Finally we'd be extremely grateful if you could get involved with our [Phaser Patreon campaign](https://www.patreon.com/photonstorm). The uptake so far has been fantastic. Thank you to everyone who now supports Phaser development and shares our belief in the future of HTML5 gaming and Phasers role in that.
We are now splitting our time between development of Lazer, and Phaser 2.5. We decided, after much discussion with the community, that we owed it to Phaser to go out on a high, so 2.5 will be the version in which we do just that. After this Phaser will enter the LTS (long-term support) stage of its life.
This is when we impose a feature freeze, locking the API down and responding only to bugs. This is a necessary step to allow us to focus on Lazer while still ensuring Phaser is given the support it deserves.
As always, keep you eyes on the Phaser web site, our weekly newsletter, or follow me on [Twitter](https://twitter.com/photonstorm) for the latest updates.
We'd be extremely grateful if you could get involved with our [Phaser Patreon campaign](https://www.patreon.com/photonstorm). The uptake so far has been fantastic. Thank you to everyone who now supports Phaser development and shares our belief in the future of HTML5 gaming, and Phasers role in that.
Happy coding everyone! See you on the forums.
@ -91,7 +97,7 @@ Abra: [Complete browser based game development](https://aurifexlabs.com/)
<div align="center"><img src="http://phaser.io/images/github/phaser-world.png"></div>
[Phaser World](http://phaser.io/community/newsletter) is our free weekly newsletter published every Friday. It contains a summary of the news posted to the Phaser site that week. This includes new games, lots of tutorials, videos, talks and occasionally special offers.
Every Friday we publish our newsletter: [Phaser World](http://phaser.io/community/newsletter). It's packed full of the latest Phaser games, tutorials, videos, meet-ups, conference talks and more. We also post regular development updates, and occasionally special offers.
![div](http://www.phaser.io/images/github/div.png)
@ -115,6 +121,8 @@ Install via [npm](https://www.npmjs.com)
`npm install phaser`
Using Browserify? Please [read this](#browserify).
### CDN
[jsDelivr](http://www.jsdelivr.com/#!phaser) is a "super-fast CDN for developers". Include the following in your html:
@ -174,6 +182,10 @@ As well as the book you get all the source code, graphics and assets to go with
[Read More](http://phaser.io/interphase)
### Phaser Editor - A complete Phaser Editor
[Phaser Editor](http://phasereditor.boniatillo.com/) is a brand new Eclipse based editor that offers lots of built-in tools specifically for Phaser developers. Handy features include Smart code auto-completion, built-in web server, documentation search, asset management, texture atlas creator, audio sprite creator, asset previews and lots more.
### Game Mechanic Explorer
The [Game Mechanic Explorer](http://gamemechanicexplorer.com) is a great interactive way to learn how to develop specific game mechanics in Phaser. Well worth exploring once you've got your dev environment set-up.
@ -197,6 +209,7 @@ As a result of this work the minimum build size of Phaser is now just 80KB minif
See the [Creating a Custom Phaser Build](http://phaser.io/tutorials/creating-custom-phaser-builds) tutorial for details.
<a name="browserify"></a>
### Browserify / CJS
Phaser was never written to be modular. Everything exists under one single global namespace, and you cannot `require` selected parts of it into your builds. It expects 3 global vars to exist in order to work properly: `Phaser`, `PIXI` and `p2`. The following is one way of doing this:
@ -330,7 +343,7 @@ You can read all about the philosophy behind Lazer [here](http://phaser.io/news/
<a name="change-log"></a>
## Change Log
## Version 2.4.7 - "Hinderstap" - In Development
## Version 2.4.7 - "Hinderstap" - 22nd April 2016
### New Features

View file

@ -7,7 +7,7 @@
*
* Phaser - http://phaser.io
*
* v2.4.7 "Hinderstap" - Built: Fri Apr 22 2016 14:44:10
* v2.4.7 "Hinderstap" - Built: Fri Apr 22 2016 15:08:33
*
* By Richard Davey http://www.photonstorm.com @photonstorm
*
@ -9154,7 +9154,7 @@ var Phaser = Phaser || {
* @constant
* @type {string}
*/
VERSION: '2.4.7 RC2',
VERSION: '2.4.7',
/**
* An array of Phaser game instances.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -7,7 +7,7 @@
*
* Phaser - http://phaser.io
*
* v2.4.7 "Hinderstap" - Built: Fri Apr 22 2016 14:44:28
* v2.4.7 "Hinderstap" - Built: Fri Apr 22 2016 15:08:53
*
* By Richard Davey http://www.photonstorm.com @photonstorm
*
@ -7954,7 +7954,7 @@ var Phaser = Phaser || {
* @constant
* @type {string}
*/
VERSION: '2.4.7 RC2',
VERSION: '2.4.7',
/**
* An array of Phaser game instances.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -7,7 +7,7 @@
*
* Phaser - http://phaser.io
*
* v2.4.7 "Hinderstap" - Built: Fri Apr 22 2016 14:44:19
* v2.4.7 "Hinderstap" - Built: Fri Apr 22 2016 15:08:44
*
* By Richard Davey http://www.photonstorm.com @photonstorm
*
@ -9154,7 +9154,7 @@ var Phaser = Phaser || {
* @constant
* @type {string}
*/
VERSION: '2.4.7 RC2',
VERSION: '2.4.7',
/**
* An array of Phaser game instances.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -7,7 +7,7 @@
*
* Phaser - http://phaser.io
*
* v2.4.7 "Hinderstap" - Built: Fri Apr 22 2016 14:44:37
* v2.4.7 "Hinderstap" - Built: Fri Apr 22 2016 15:09:01
*
* By Richard Davey http://www.photonstorm.com @photonstorm
*
@ -55,7 +55,7 @@ var Phaser = Phaser || {
* @constant
* @type {string}
*/
VERSION: '2.4.7 RC2',
VERSION: '2.4.7',
/**
* An array of Phaser game instances.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -7,7 +7,7 @@
*
* Phaser - http://phaser.io
*
* v2.4.7 "Hinderstap" - Built: Fri Apr 22 2016 14:44:35
* v2.4.7 "Hinderstap" - Built: Fri Apr 22 2016 15:09:00
*
* By Richard Davey http://www.photonstorm.com @photonstorm
*

View file

@ -7,7 +7,7 @@
*
* Phaser - http://phaser.io
*
* v2.4.7 "Hinderstap" - Built: Fri Apr 22 2016 14:43:57
* v2.4.7 "Hinderstap" - Built: Fri Apr 22 2016 15:08:21
*
* By Richard Davey http://www.photonstorm.com @photonstorm
*
@ -22767,7 +22767,7 @@ var Phaser = Phaser || {
* @constant
* @type {string}
*/
VERSION: '2.4.7 RC2',
VERSION: '2.4.7',
/**
* An array of Phaser game instances.

File diff suppressed because one or more lines are too long

2
build/phaser.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -1477,13 +1477,13 @@ If you want to make a custom filter this should be your base class.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:09 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:57 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2693,13 +2693,13 @@ Atexture is still 100% usable and will simply be reuploaded if there is a sprite
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:09 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1738,13 +1738,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:09 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1222,13 +1222,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:09 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1487,13 +1487,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:09 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1969,13 +1969,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:09 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2469,13 +2469,13 @@ Disable this by setting this to false. For example if your game has a canvas fil
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:09 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1975,13 +1975,13 @@ This property is only applicable if using tintWithPerPixel.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:09 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1635,13 +1635,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:09 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -3518,13 +3518,13 @@ This can be quite useful if your displayObject is static / complicated and needs
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:09 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -5141,13 +5141,13 @@ This can be quite useful if your displayObject is static / complicated and needs
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1218,13 +1218,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1695,13 +1695,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2168,13 +2168,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1834,13 +1834,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -8427,13 +8427,13 @@ Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1222,13 +1222,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2363,13 +2363,13 @@ this function is taken from Starling Framework as its pretty neat ;)</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:58 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1691,13 +1691,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1959,13 +1959,13 @@ http://www.khronos.org/registry/gles/specs/2.0/GLSL_ES_Specification_1.0.17.pdf<
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1298,13 +1298,13 @@ Slightly modified by Mat Groves (matgroves.com);</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1635,13 +1635,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2909,13 +2909,13 @@ irrespective of the actual frame size or placement (which can be influenced by t
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -5588,13 +5588,13 @@ This can be quite useful if your displayObject is static / complicated and needs
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -6114,13 +6114,13 @@ texture this Sprite was using.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1281,13 +1281,13 @@ And here you have a hundred sprites that will be renderer at the speed of light<
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -5582,13 +5582,13 @@ This can be quite useful if your displayObject is static / complicated and needs
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:10 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1635,13 +1635,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:11 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -3011,13 +3011,13 @@ If the image is not in the texture cache it will be created and loaded.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:11 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -3197,62 +3197,6 @@ debug the texture being used.</p>
</dl>
</dd>
<dt>
<h4 class="name "
id="width"><span class="type-signature"></span>width<span class="type-signature"> :Number</span></h4>
</dt>
<dd>
<div class="description">
<p>The width of the sprite, setting this will actually modify the scale to achieve the value set</p>
</div>
<dl class="details">
<dt class="tag-source">Source -
<a href="src_pixi_extras_TilingSprite.js.html">pixi/extras/TilingSprite.js</a>, <a href="src_pixi_extras_TilingSprite.js.html#sunlight-1-line-517">line 517</a>
</dt>
</dl>
@ -3309,6 +3253,62 @@ debug the texture being used.</p>
</dl>
</dd>
<dt>
<h4 class="name "
id="width"><span class="type-signature"></span>width<span class="type-signature"> :Number</span></h4>
</dt>
<dd>
<div class="description">
<p>The width of the sprite, setting this will actually modify the scale to achieve the value set</p>
</div>
<dl class="details">
<dt class="tag-source">Source -
<a href="src_pixi_extras_TilingSprite.js.html">pixi/extras/TilingSprite.js</a>, <a href="src_pixi_extras_TilingSprite.js.html#sunlight-1-line-517">line 517</a>
</dt>
</dl>
@ -6552,13 +6552,13 @@ texture this Sprite was using.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:11 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1635,13 +1635,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:11 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2765,13 +2765,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:11 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2156,13 +2156,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:11 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:59 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -3103,13 +3103,13 @@ Disable this by setting this to false. For example: if your game has a canvas fi
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:11 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:12:00 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1526,13 +1526,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:09 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:57 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -4318,13 +4318,13 @@ If <code>dispatchComplete</code> is true it will dispatch the complete events, o
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:58 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:45 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -3570,13 +3570,13 @@ The currentAnim property of the AnimationManager is automatically set to the ani
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:58 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:46 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2254,13 +2254,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:58 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:46 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2827,13 +2827,13 @@ Returns null if not found.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:58 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:46 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2751,13 +2751,13 @@ for forward compatibility make sure to pass in actual numbers.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:58 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:46 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2113,13 +2113,13 @@ The JSON follows the format of that created by https://github.com/tonistiigi/aud
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:58 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:46 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1709,7 +1709,7 @@ Note that this is unavailable in some browsers (such as Epic Browser due to its
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-147">line 147</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-152">line 152</a>
</dt>
@ -1765,7 +1765,63 @@ Note that this is unavailable in some browsers (such as Epic Browser due to its
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-142">line 142</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-147">line 147</a>
</dt>
</dl>
</dd>
<dt>
<h4 class="name "
id="frameData"><span class="type-signature"></span>frameData<span class="type-signature"> :<a href="Phaser.FrameData.html">Phaser.FrameData</a></span></h4>
</dt>
<dd>
<div class="description">
<p>The FrameData container this BitmapData uses for rendering.</p>
</div>
<dl class="details">
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-128">line 128</a>
</dt>
@ -2159,7 +2215,7 @@ This property is updated automatically after the first game loop, according to t
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-129">line 129</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-134">line 134</a>
</dt>
@ -2215,7 +2271,7 @@ This property is updated automatically after the first game loop, according to t
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-137">line 137</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-142">line 142</a>
</dt>
@ -2523,7 +2579,7 @@ This property is updated automatically after the first game loop, according to t
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2246">line 2246</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2254">line 2254</a>
</dt>
@ -2672,7 +2728,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-381">line 381</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-386">line 386</a>
</dt>
@ -3026,7 +3082,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1167">line 1167</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1172">line 1172</a>
</dt>
@ -3310,7 +3366,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1569">line 1569</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1575">line 1575</a>
</dt>
@ -3400,7 +3456,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1996">line 1996</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2004">line 2004</a>
</dt>
@ -3490,7 +3546,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2178">line 2178</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2186">line 2186</a>
</dt>
@ -3580,7 +3636,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2087">line 2087</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2095">line 2095</a>
</dt>
@ -3670,7 +3726,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2074">line 2074</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2082">line 2082</a>
</dt>
@ -3760,7 +3816,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2048">line 2048</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2056">line 2056</a>
</dt>
@ -3850,7 +3906,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1970">line 1970</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1978">line 1978</a>
</dt>
@ -3940,7 +3996,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1944">line 1944</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1952">line 1952</a>
</dt>
@ -4030,7 +4086,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1957">line 1957</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1965">line 1965</a>
</dt>
@ -4120,7 +4176,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1931">line 1931</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1939">line 1939</a>
</dt>
@ -4210,7 +4266,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2126">line 2126</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2134">line 2134</a>
</dt>
@ -4300,7 +4356,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2139">line 2139</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2147">line 2147</a>
</dt>
@ -4390,7 +4446,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2100">line 2100</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2108">line 2108</a>
</dt>
@ -4480,7 +4536,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2152">line 2152</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2160">line 2160</a>
</dt>
@ -4570,7 +4626,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2061">line 2061</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2069">line 2069</a>
</dt>
@ -4660,7 +4716,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2191">line 2191</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2199">line 2199</a>
</dt>
@ -4750,7 +4806,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2009">line 2009</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2017">line 2017</a>
</dt>
@ -4840,7 +4896,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2035">line 2035</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2043">line 2043</a>
</dt>
@ -4930,7 +4986,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1866">line 1866</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1874">line 1874</a>
</dt>
@ -5020,7 +5076,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2165">line 2165</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2173">line 2173</a>
</dt>
@ -5110,7 +5166,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2022">line 2022</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2030">line 2030</a>
</dt>
@ -5200,7 +5256,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2113">line 2113</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-2121">line 2121</a>
</dt>
@ -5290,7 +5346,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1918">line 1918</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1926">line 1926</a>
</dt>
@ -5380,7 +5436,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1892">line 1892</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1900">line 1900</a>
</dt>
@ -5470,7 +5526,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1905">line 1905</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1913">line 1913</a>
</dt>
@ -5560,7 +5616,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1879">line 1879</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1887">line 1887</a>
</dt>
@ -5650,7 +5706,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1983">line 1983</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1991">line 1991</a>
</dt>
@ -5894,7 +5950,7 @@ This will replace any texture they will currently have set.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1720">line 1720</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1726">line 1726</a>
</dt>
@ -6170,7 +6226,7 @@ but Phaser will not do this automatically for you.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-451">line 451</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-456">line 456</a>
</dt>
@ -6240,7 +6296,7 @@ but Phaser will not do this automatically for you.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-445">line 445</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-450">line 450</a>
</dt>
@ -7032,7 +7088,7 @@ You can use the more friendly methods like <code>copyRect</code> and <code>draw<
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1193">line 1193</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1198">line 1198</a>
</dt>
@ -7424,7 +7480,7 @@ You can use the more friendly methods like <code>copyRect</code> and <code>draw<
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1391">line 1391</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1397">line 1397</a>
</dt>
@ -7494,7 +7550,7 @@ You can use the more friendly methods like <code>copyRect</code> and <code>draw<
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1853">line 1853</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1859">line 1859</a>
</dt>
@ -7887,7 +7943,7 @@ When drawing it will take into account the Sprites rotation, scale and alpha val
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1410">line 1410</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1416">line 1416</a>
</dt>
@ -8144,7 +8200,7 @@ trigger an update yourself by calling <code>stage.updateTransform()</code> befor
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1481">line 1481</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1487">line 1487</a>
</dt>
@ -8381,7 +8437,7 @@ No iteration takes place. Groups nested inside other Groups will not be iterated
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1432">line 1432</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1438">line 1438</a>
</dt>
@ -8837,7 +8893,7 @@ the color during extraction.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1603">line 1603</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1609">line 1609</a>
</dt>
@ -9101,7 +9157,7 @@ the color during extraction.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-482">line 482</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-487">line 487</a>
</dt>
@ -9249,7 +9305,7 @@ key or the texture. First call generateTexture:</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-504">line 504</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-509">line 509</a>
</dt>
@ -9401,7 +9457,7 @@ The rectangle returned will extend from the top-left of the image to the bottom-
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1139">line 1139</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1144">line 1144</a>
</dt>
@ -9566,7 +9622,7 @@ It then stops scanning and returns an object containing the color of the pixel i
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1056">line 1056</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1061">line 1061</a>
</dt>
@ -9781,7 +9837,7 @@ otherwise this may return out of date color values, or worse - throw a run-time
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-973">line 973</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-978">line 978</a>
</dt>
@ -9946,7 +10002,7 @@ Note that on little-endian systems the format is 0xAABBGGRR and on big-endian th
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1004">line 1004</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1009">line 1009</a>
</dt>
@ -10253,7 +10309,7 @@ otherwise this may return out of date color values, or worse - throw a run-time
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1024">line 1024</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1029">line 1029</a>
</dt>
@ -10392,7 +10448,7 @@ otherwise this may return out of date color values, or worse - throw a run-time
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1043">line 1043</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1048">line 1048</a>
</dt>
@ -10730,7 +10786,7 @@ otherwise this may return out of date color values, or worse - throw a run-time
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1749">line 1749</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1755">line 1755</a>
</dt>
@ -10890,7 +10946,7 @@ If a string is given it will assume it's a cache key and look in Phaser.Cache fo
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-410">line 410</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-415">line 415</a>
</dt>
@ -11120,7 +11176,7 @@ If a string is given it will assume it's a cache key and look in Phaser.Cache fo
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-228">line 228</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-233">line 233</a>
</dt>
@ -11315,7 +11371,7 @@ If a string is given it will assume it's a cache key and look in Phaser.Cache fo
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-255">line 255</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-260">line 260</a>
</dt>
@ -11510,7 +11566,7 @@ If a string is given it will assume it's a cache key and look in Phaser.Cache fo
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-318">line 318</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-323">line 323</a>
</dt>
@ -11856,7 +11912,7 @@ The callback will also be sent the pixels x and y coordinates respectively.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-688">line 688</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-693">line 693</a>
</dt>
@ -12205,7 +12261,7 @@ If a new color object is returned the pixel will be set to the r, g, b and a col
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-630">line 630</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-635">line 635</a>
</dt>
@ -12480,7 +12536,7 @@ If a new color object is returned the pixel will be set to the r, g, b and a col
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1656">line 1656</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1662">line 1662</a>
</dt>
@ -12572,7 +12628,7 @@ If you wish to suppress this functionality set BitmapData.disableTextureUpload t
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1833">line 1833</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1839">line 1839</a>
</dt>
@ -12972,7 +13028,7 @@ An optional region parameter controls if the replacement happens in just a speci
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-742">line 742</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-747">line 747</a>
</dt>
@ -13134,7 +13190,7 @@ An optional region parameter controls if the replacement happens in just a speci
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-540">line 540</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-545">line 545</a>
</dt>
@ -13408,7 +13464,7 @@ An optional region parameter controls if the replacement happens in just a speci
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-792">line 792</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-797">line 797</a>
</dt>
@ -13742,7 +13798,7 @@ An optional region parameter controls if the replacement happens in just a speci
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-955">line 955</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-960">line 960</a>
</dt>
@ -14111,7 +14167,7 @@ An optional region parameter controls if the replacement happens in just a speci
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-916">line 916</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-921">line 921</a>
</dt>
@ -14385,7 +14441,7 @@ Note: At the time of writing (October 2014) Chrome still doesn't support shadowB
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1539">line 1539</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1545">line 1545</a>
</dt>
@ -14661,7 +14717,7 @@ The hue is wrapped to keep it within the range 0 to 1. Saturation and lightness
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-853">line 853</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-858">line 858</a>
</dt>
@ -15005,7 +15061,7 @@ If you need to do a lot of font work to this BitmapData we'd recommend implement
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1680">line 1680</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1686">line 1686</a>
</dt>
@ -15237,7 +15293,7 @@ If you need to do a lot of font work to this BitmapData we'd recommend implement
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1783">line 1783</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-1789">line 1789</a>
</dt>
@ -15516,7 +15572,7 @@ If not given the dimensions defaults to the full size of the context.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-584">line 584</a>
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-589">line 589</a>
</dt>
@ -15559,13 +15615,13 @@ If not given the dimensions defaults to the full size of the context.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:58 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:46 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2302,7 +2302,7 @@ or you have tested performance and find it acceptable.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-92">line 92</a>
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-98">line 98</a>
</dt>
@ -3601,7 +3601,7 @@ for this Game Object and it will then start to process click / touch events and
<dt class="tag-source">Source -
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-114">line 114</a>
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-129">line 129</a>
</dt>
@ -4187,7 +4187,69 @@ It will only be &gt; 0 if anchor.y is not equal to zero.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-100">line 100</a>
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-106">line 106</a>
</dt>
</dl>
</dd>
<dt>
<h4 class="name "
id="outOfCameraBoundsKill"><span class="type-signature"></span>outOfCameraBoundsKill<span class="type-signature"> :boolean</span></h4>
</dt>
<dd>
<div class="description">
<p>If this and the <code>autoCull</code> property are both set to <code>true</code>, then the <code>kill</code> method
is called as soon as the Game Object leaves the camera bounds.</p>
</div>
<dl class="details">
<dt class="inherited-from">Inherited From:</dt>
<dd class="inherited-from"><ul class="dummy"><li>
<a href="Phaser.Component.InWorld.html#outOfCameraBoundsKill">Phaser.Component.InWorld#outOfCameraBoundsKill</a>
</li></dd>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-115">line 115</a>
</dt>
@ -9644,13 +9706,13 @@ Remember if this Game Object has any children you should call update on those to
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:58 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:46 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -3064,7 +3064,7 @@ for example: <code>player.frame = 4</code>.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-242">line 242</a>
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-254">line 254</a>
</dt>
@ -3130,7 +3130,7 @@ for example: <code>player.frameName = &quot;idle&quot;</code>.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-267">line 267</a>
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-279">line 279</a>
</dt>
@ -8482,6 +8482,7 @@ Doing this then sets the key to be the <code>frame</code> argument (the frame is
<p>This allows you to create sprites using <code>load.image</code> during development, and then change them
to use a Texture Atlas later in development by simply searching your code for 'PENDING_ATLAS'
and swapping it to be the key of the atlas data.</p>
<p>Note: You cannot use a RenderTexture as a texture for a TileSprite.</p>
</div>
@ -8676,7 +8677,7 @@ and swapping it to be the key of the atlas data.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-49">line 49</a>
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-51">line 51</a>
</dt>
@ -10965,7 +10966,7 @@ If you need to reset an already running animation do so directly on the Animatio
<dt class="tag-source">Source -
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-220">line 220</a>
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-232">line 232</a>
</dt>
@ -11137,7 +11138,7 @@ it can be useful to adjust the dimensions directly in this way.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-208">line 208</a>
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-220">line 220</a>
</dt>
@ -11838,7 +11839,7 @@ because the World is the root Group from which all Game Objects descend.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-143">line 143</a>
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-155">line 155</a>
</dt>
@ -14005,13 +14006,13 @@ or the rectangle it references, then you need to update the crop frame by callin
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:46 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -15955,13 +15955,13 @@ then it will persist in memory.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:46 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

File diff suppressed because it is too large Load diff

View file

@ -3452,13 +3452,13 @@ patchy on earlier browsers, especially on mobile.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:46 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -4849,13 +4849,13 @@ This method checks the radius distances between the two Circle objects to see if
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:46 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -11894,13 +11894,13 @@ endian-independent method, use fromRGBA(rgba) and toRGBA(r, g, b, a).</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1287,13 +1287,13 @@ Working in radians is slightly faster as it doesn't have to perform any calculat
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1501,13 +1501,13 @@ If you need to reset an already running animation do so directly on the Animatio
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1344,13 +1344,13 @@ Returns <code>true</code> if they do, otherwise <code>false</code> if fully outs
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1570,13 +1570,13 @@ This is the same as <code>y - offsetY</code>.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1598,13 +1598,13 @@ because the World is the root Group from which all Game Objects descend.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2440,13 +2440,13 @@ Remember if this Game Object has any children you should call update on those to
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1541,13 +1541,13 @@ or the rectangle it references, then you need to update the crop frame by callin
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1396,13 +1396,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1469,13 +1469,13 @@ more than one Game Object sharing the same BaseTexture.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1422,13 +1422,13 @@ Called automatically by the Game Object.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:40:59 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1518,13 +1518,13 @@ Will never exceed the <code>maxHealth</code> value.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1284,13 +1284,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1253,7 +1253,7 @@ or you have tested performance and find it acceptable.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-92">line 92</a>
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-98">line 98</a>
</dt>
@ -1309,7 +1309,7 @@ or you have tested performance and find it acceptable.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-114">line 114</a>
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-129">line 129</a>
</dt>
@ -1365,7 +1365,64 @@ or you have tested performance and find it acceptable.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-100">line 100</a>
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-106">line 106</a>
</dt>
</dl>
</dd>
<dt>
<h4 class="name "
id="outOfCameraBoundsKill"><span class="type-signature"></span>outOfCameraBoundsKill<span class="type-signature"> :boolean</span></h4>
</dt>
<dd>
<div class="description">
<p>If this and the <code>autoCull</code> property are both set to <code>true</code>, then the <code>kill</code> method
is called as soon as the Game Object leaves the camera bounds.</p>
</div>
<dl class="details">
<dt class="tag-source">Source -
<a href="src_gameobjects_components_InWorld.js.html">gameobjects/components/InWorld.js</a>, <a href="src_gameobjects_components_InWorld.js.html#sunlight-1-line-115">line 115</a>
</dt>
@ -1477,13 +1534,13 @@ Called automatically by the Game Object.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1357,13 +1357,13 @@ for this Game Object and it will then start to process click / touch events and
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1679,13 +1679,13 @@ it doesn't destroy the object or free it up from memory.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1250,7 +1250,7 @@ for example: <code>player.frame = 4</code>.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-242">line 242</a>
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-254">line 254</a>
</dt>
@ -1311,7 +1311,7 @@ for example: <code>player.frameName = &quot;idle&quot;</code>.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-267">line 267</a>
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-279">line 279</a>
</dt>
@ -1354,6 +1354,7 @@ Doing this then sets the key to be the <code>frame</code> argument (the frame is
<p>This allows you to create sprites using <code>load.image</code> during development, and then change them
to use a Texture Atlas later in development by simply searching your code for 'PENDING_ATLAS'
and swapping it to be the key of the atlas data.</p>
<p>Note: You cannot use a RenderTexture as a texture for a TileSprite.</p>
</div>
@ -1543,7 +1544,7 @@ and swapping it to be the key of the atlas data.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-49">line 49</a>
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-51">line 51</a>
</dt>
@ -1613,7 +1614,7 @@ and swapping it to be the key of the atlas data.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-220">line 220</a>
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-232">line 232</a>
</dt>
@ -1780,7 +1781,7 @@ it can be useful to adjust the dimensions directly in this way.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-208">line 208</a>
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-220">line 220</a>
</dt>
@ -1900,7 +1901,7 @@ it can be useful to adjust the dimensions directly in this way.</p>
<dt class="tag-source">Source -
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-143">line 143</a>
<a href="src_gameobjects_components_LoadTexture.js.html">gameobjects/components/LoadTexture.js</a>, <a href="src_gameobjects_components_LoadTexture.js.html#sunlight-1-line-155">line 155</a>
</dt>
@ -1943,13 +1944,13 @@ it can be useful to adjust the dimensions directly in this way.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1381,13 +1381,13 @@ It should be fine for low-volume testing where physics isn't required.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1568,13 +1568,13 @@ Called automatically by the Game Object.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1459,13 +1459,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:47 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1668,13 +1668,13 @@ or pass <code>null</code> for the <code>maxX</code> and <code>maxY</code> parame
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1284,13 +1284,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1134,7 +1134,7 @@
<p>The Phaser.Create class is a collection of smaller helper methods that allow you to generate game content
quickly and easily, without the need for any external files. You can create textures for sprites and in
coming releases we'll add dynamic sound effect generation support as well (like sfxr).</p>
<p>Access this via <code>State.create</code> (or <code>this.create</code> from within a State object)</p>
<p>Access this via <code>Game.create</code> (<code>this.game.create</code> from within a State object)</p>
</div>
@ -2465,13 +2465,13 @@ for sprites the same way you use any other texture: <code>game.add.sprite(0, 0,
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -9134,13 +9134,13 @@ Remember if this Game Object has any children you should call update on those to
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -2705,13 +2705,13 @@ inLayoutViewport(element, -100) is <code>true</code> if the element is in the vi
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -6457,13 +6457,13 @@ It used to work in Chrome, but then they removed the ability: <a href="http://sr
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -3227,13 +3227,13 @@ Handles the button up state.</p>
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1643,13 +1643,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1643,13 +1643,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:00 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1643,13 +1643,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:01 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1643,13 +1643,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:01 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1643,13 +1643,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:01 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1643,13 +1643,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:01 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

View file

@ -1365,13 +1365,13 @@
<span class="copyright">
Phaser Copyright © 2012-2015 Photon Storm Ltd.
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
on Thu Feb 18 2016 14:41:01 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
on Fri Apr 22 2016 15:11:48 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>

Some files were not shown because too many files have changed in this diff Show more