mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 06:30:38 +00:00
2.4.6 Build files + docs + TS Docs.
This commit is contained in:
parent
866994743b
commit
47123c192d
400 changed files with 1988 additions and 1284 deletions
107
README.md
107
README.md
|
@ -41,7 +41,11 @@ 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 2016
|
||||
> 18th February 2016
|
||||
|
||||
Phaser 2.4.6 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.
|
||||
|
||||
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.
|
||||
|
||||
As always, keep you eyes on the Phaser web site or [Twitter](https://twitter.com/photonstorm) for the latest news.
|
||||
|
||||
|
@ -312,8 +316,9 @@ You can read all about the philosophy behind Lazer [here](http://phaser.io/news/
|
|||
<a name="change-log"></a>
|
||||
## Change Log
|
||||
|
||||
## Version 2.4.6 - "Baerlon" - in dev
|
||||
## 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.
|
||||
|
||||
### New Features
|
||||
|
||||
|
@ -321,20 +326,112 @@ You can read all about the philosophy behind Lazer [here](http://phaser.io/news/
|
|||
|
||||
### Updates
|
||||
|
||||
* TypeScript definitions fixes and updates (thanks @clark-stevenson)
|
||||
* Docs typo fixes (thanks )
|
||||
* StateManager.destroy now sets `clearCache` and `clearWorld` internally before clearing the current state, as otherwise they would have been left untouched, such as from Game.destroy (thanks @i-dimitrov #2138)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Groups now check for `child.parent` before calling `removeFromHash` (thanks @spayton #2323 #2338)
|
||||
* BaseTexture.destroy wasn't correctly removing the texture from the BaseTextureCache if it was a cached CanvasPool entry (such as Text objects use), causing drawImage errors in Canvas mode, and just blank textures in WebGL (thanks @civet #2339)
|
||||
* Loader.getAudioURL and Loader.getVideoURL were hardened to support query string file URLs and still work with uri pairs and data/blobs.
|
||||
|
||||
## Version 2.4.5 - "Sienda" - 17th February 2016
|
||||
|
||||
### New Features
|
||||
|
||||
* You can use the new const `Phaser.PENDING_ATLAS` as the texture key for any sprite. Doing this then sets the key to be the `frame` argument (the frame is set to zero). This allows you to create sprites using `load.image` 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.
|
||||
* BitmapText.cleanText is a new method that will scan the given text and either remove or replace all characters that are not present in the font data.
|
||||
* ArcadePhysics.Body.onCeiling is a new complementary method to go with onFloor (thanks @yigitozdemir #1610)
|
||||
* Text.precalculateWordWrap allows you to run your text through the Text word wrap function, which is handy if you need to handle pagination on longer pieces of text (thanks @slashman #2277)
|
||||
* Sprite (and all Game Objects) have a new argument in their destroy method: `destroyTexture`. This boolean (which is false by default) controls if the BaseTexture of the Game Object should be destroyed or not. This is extremely useful in situations where you've got a lot of dynamic assets you no longer need, such as textures created from BitmapDatas. You must set the `destroyTexture` argument yourself. This can be done in a custom Game Object destroy method or as part of your state shutdown (#2261)
|
||||
* The Health Game Object component has a new method: `setHealth` which allows you to set the exact health amount. This is now used by the `revive` function.
|
||||
* Text.useAdvancedWrap allows you to swap between the Basic and the Advanced word wrapping functions. In Advanced it will wrap long-words and condense and trim excess white space (thanks @soldoutactivist #1811)
|
||||
* The Grunt script has been updated to enhance the intro / outro and Pixi defaults. Pixi has been split into intro / outro and main blocks, so you can exclude its intro cleanly. The excludes are now bound, so if you exclude the Phaser UMD it will do the same for Pixi as well (thanks @spayton #2192)
|
||||
* ArcadePhysics.worldAngleToPointer will get the angle (in radians) between a display object and the pointer, taking all parent rotations into account (thanks @mattrick16 #2171)
|
||||
* There is new documentation on building Phaser for Webpack and a new custom build grunt option (thanks @deiga #2331)
|
||||
* Device.safariVersion now holds the major version of the Safari browser.
|
||||
* Device.edge is a boolean that is set if running under the Microsoft Edge browser.
|
||||
* Device.dolby is a boolean that is set if the browser can play EC-3 Dolby Digital Plus files
|
||||
* The Loader and SoundManager can now play Dolby Digital Plus files on supported devices.
|
||||
|
||||
### Updates
|
||||
|
||||
* TypeScript definitions fixes and updates (thanks @clark-stevenson @zimpy @iamfreee @milkey-mouse @juanmirod @danzel @staff0rd @sanchopancho13)
|
||||
* Docs typo fixes (thanks @zeterain @staff0rd @milkey-mouse @dick-clark @nlotz @s4wny @jonjanisch @Alaxe @cdelstad @tsphillips @rblopes @vrecluse)
|
||||
* Emitter methods `at`, `explode`, `flow`, `kill`, `revive`, `setAlpha`, `setRotation`, `setScale`, `setSize`, `setXSpeed`, `setYSpeed` and `start` now return the Emitter instance for better method chaining (thanks @samme #2308)
|
||||
* Tilemap.hasTile will now return `false` if the Tile doesn't exist in the coordinates given (which can happen if the coordinates are out of bounds) (thanks @cy-ryo-fujiwara #2304)
|
||||
* Update FrameData to check if both the numeric index was set and exists. Should fix Phaser Tiled integration as a result (thanks @Weedshaker #2298)
|
||||
* Loader.loadUpdate now gets one final call when the loading is complete (before it would end and then call loadComplete, but if you had a callback bound to loadUpdate you'd never get that final 100% load event). (thanks @nexiuhm @McFarts #2297 #2296)
|
||||
* The TypeScript definitions now have Phaser exported as a module in the header. This allows you to import / require the Phaser TypeScript defs (thanks @PixelWaffles #2255)
|
||||
* BitmapData.setHSL now accepts 0 as a valid parameter (thanks @FracturedShader #2209)
|
||||
* Force the usage of typescript 1.4.1 in the package.json so that the TypeScript defs with comments is rebuilt properly again (thanks @vulvulune #2198)
|
||||
* A tiny logic update in the StateManager (thanks @jaminscript #2151)
|
||||
* The Style object passed in to Phaser.Text is now cloned instead of referenced. This means you can adjust single Text instances without invaliding other Text objects using the same style object (thanks @asyncanup #2267)
|
||||
* Added a typescript section to the bower and npm configs to support `tsd link` (thanks @mjohnsonengr #2189 #2180)
|
||||
* SoundManager.destroy now calls AudioContext.close (thanks @stoneman1 #2237)
|
||||
* Sound.onEndedHandler now sets Sound.currentTime to be Sound.durationMS (thanks @stoneman1 #2237)
|
||||
* BitmapData would always create a private `_swapCanvas` which was a clone of its main canvas used for advanced movement operations. This no longer happens. The swap canvas is created only as needed, by those functions that use it (specifically `moveH` and `moveV`), meaning a BitmapData will now use half the amount of memory it used to, and you'll have half the amount of canvas DOM elements created (unless you make heavy use of the move functions).
|
||||
* Tweens with 'yoyo' set on them couldn't be re-used again because the start and end properties were left in a reversed state. When a yoyo tween ends it now restores the reversed values (thanks @SBCGames #2307)
|
||||
* The width and height values passed to the Game constructor are now passed through Math.floor first. This ensures you can never create a game width non-integer dimensions, which has all kinds of implications - from browser performance to breaking things like TileSprite rendering (#2262)
|
||||
* Tilemap.getObjectIndex has been removed as it didn't work correctly in most cases, and it's easier to just scan the Tilemap.objects object directly anyway (#2242)
|
||||
* GameObject.revive will now set the health amount to 100 instead of 1, bringing it in-line with the `maxHealth` default value.
|
||||
* Moved the Sound.disconnect after the Sound.stop call in Web Audio (#2280)
|
||||
* BitmapData.drawGroup can now handle drawing Emitters and BitmapText objects that are part of the Group.
|
||||
* SoundManager.setTouchLock is no longer set if `SoundManager.noAudio` is true, or if the PhaserGlobal setting `disableAudio` is true (thanks @bcjordan #2206)
|
||||
* Loader.audiosprite is renamed to Loader.audioSprite (the old one still works for legacy reasons) (thanks @epaezrubio #2145)
|
||||
* EarCut now replaces PolyK, which fixes advanced Graphics mask triangulation issues such as #1941
|
||||
* Camera.checkBounds now takes the scale of the Camera into account (thanks @ForGorNorPor #2263)
|
||||
* InputHandler.consumePointerEvent has been removed, as it was never used internally anyway, so was misleading (thanks @GregoryAveryWeir #2227)
|
||||
* Events.onDragUpdate has a new 6th property `fromStart` which is a boolean. You can determine if the event was the result of the start of a drag movement or not by polling it (#2155)
|
||||
* SinglePad.onDownCallback has been moved to the end of the method, so that DeviceButton.start is now called before the callback fires, meaning if you check the status of the button in the onDownCallback it will now be fully activated (thanks @suicidepills #2159)
|
||||
* The `z` property assigned to children of a Group now starts from zero instead of 1, this is an internal change mostly but if you relied on the `z` property for some reason then please be aware of this (thanks pantoninho)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Buttons (or any Sprites) that don't have a texture, but have children, would incorrectly render the children under WebGL due to the baseTexture.skipRender property (thanks @puzzud #2141)
|
||||
* TilemapParser accidentally redeclared `i` when parsing the ImageCollections which would cause an infinite loop (thanks DanHett)
|
||||
* BitmapData.update causes a snowballing memory leak under WebGL due to a Context.getImageData call. BitmapData.clear used to call update automatically but no longer does. This resolves the issue of the Debug class causing excessive memory build-up in Chrome. Firefox and IE were unaffected (thanks @kingjerod #2208)
|
||||
* Pausing a Sound that used a Marker for playback would fire the `onMarkerComplete` signal by mistake as well as stop the fadeTween. This Signal is now only dispatched if Sound.stop is called and the Sound isn't paused (thanks Corin)
|
||||
* BitmapText.text would throw an undefined Texture error if you used a character in your text string that didn't exist in the font data.
|
||||
* Animation.stop will now stop the named animation only if the `name` argument is passed and matches the currently running animation (thanks @samme #2299 #2301)
|
||||
* TilemapParser accidentally redeclared `i` when parsing Tilemap Layers (thanks @ttencate and @aweber1 #2244 #2233 #2281)
|
||||
* Added `removeAll` to TweenManagers stub, so the call from the StageManager doesn't throw an error in a custom build (thanks @RetrocadeNet #2284)
|
||||
* Loader.binary would return a success even if the xhr'd file returned a 404 or similar (thanks @milkey-mouse @mhstar89 #2251 #2250)
|
||||
* When loading audio or video from blob or data URIs, the local variable was replaced too soon, throwing errors in `getAudioURL` and `getVideoURL` (thanks @milkey-mouse @jackfreak #2236 #2234)
|
||||
* Tween.hasStarted parameter was set to `false` when the tween was created, but not set again when the tween was stopped or ends. If `Tween.start` is used more than once the `onStart` callback is called only the first time (thanks @javivi91 #2199)
|
||||
* During a WebGL context loss the Phaser Cache was referencing the wrong local object (thanks @allenevans #2285)
|
||||
* The Video game object used an anonymous bound function for both the 'ended' and 'playing' event listeners, meaning that they were never removed properly (thanks @ramalhovfc #2303)
|
||||
* BitmapData.shiftHSL incorrectly used Math.limitValue, now updated to use Math.clamp (thanks @FracturedShader #2222)
|
||||
* The Loader was deleting the next waiting file from the queue if an asset pack was added after the load had started (thanks @tfelix #2203 #2204)
|
||||
* Specifying Phaser.ScaleManager.EXACT_FIT as the scaleMode in a game config object would fail to use the scale mode (thanks @06wj #2248)
|
||||
* BitmapText would crash if it tried to render a character that didn't exist in the font set. Any character that doesn't exist in the font set now renders a space character instead.
|
||||
* BitmapText would load and parse the kerning data from the font, but would never use it when rendering. The kerning values are now applied on rendering as well (thanks @veu #2165)
|
||||
* SinglePad.callbackContext is now set through addCallbacks method (thanks @puzzud #2161)
|
||||
* Both `transparent` and `antialias` were ignored if set to `false` in a Game configuration object, as the `parseConfig` method didn't check for falsey values (thanks @amadeus #2302)
|
||||
* GameObject.revive used to add the health amount given to the Game Object (via `heal`) instead of setting it as the new health amount. It now calls `setHealth` instead, giving it the exact amount (thanks @netgfx #2231)
|
||||
* Group.add and Group.addAt would forget to remove the child from the hash of its previous Group if it had a physics body enabled, causing unbounded hash increase (thanks @strawlion @McIntozh #2232)
|
||||
* Fixed a really nasty bug in Chrome OS X where a ctrl + click (i.e. simulated right-click) on a trackpad would lock up the Pointer leftButton, causing future clicks to fail. This is now handled by way of a mouseout listener on the window object, sadly the only way to force a mouseup in Chrome (thanks @KyleU #2286)
|
||||
* ctrl + click is now only considered a right-click if event.buttons = 1, this should allow you to use ctrl as a key modifier on Windows (and any device with a multi-button mouse attached) and still use ctrl + click on OS X / trackpads for a right-click (thanks @yuvalsv #2167)
|
||||
* If the Mouse was over a Sprite and you then clicked it, it would dispatch another Over event. This is now surpressed if the Over event has already been dispatched previously (thanks @McFarts #2133)
|
||||
* InputHandler.pointerOver could fail to return anything in some instances, now always returns a boolean.
|
||||
* Tween.onLoop would be fired when a Tween repeated and Tween.onRepeat would be fired when a Tween looped. These are now reversed to fire correctly (thanks @vladkens #2024)
|
||||
* Text with lineSpacing set wouldn't apply the lineSpacing to the final line of text in the Text string, or to text with just single lines. This could lead to incorrect height calculations for further layout and unwanted padding at the bottom of Text objects (thanks @Lopdo #2137)
|
||||
* SpriteBatch incorrectly applied the PIXI SpriteBatch prototype over the top of Phaser.Group meaning that Sprites with animations wouldn't render correctly (thanks @qdrj #1951)
|
||||
* Color.updateColor would pass `color.a` to the `getColor32` method without first putting the value into the range 0 - 255 (thanks @mainpsyhos #2327)
|
||||
|
||||
### 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.
|
||||
|
||||
*
|
||||
* BaseTexture.destroy no longer checks for the `_pixiId` property on the canvas before removing it from the CanvasPool, meaning it's now destroying a lot more canvas elements than it was in the past!
|
||||
* TilingSprite would ignore the `renderable` property, and render it regardless. Now it skips render if `renderable` is false (thanks @Green92 #2214)
|
||||
* We have replaced the PolyK Triangulation calls within Pixi with EarCut 2.0.8. This allows for faster polygon triangulation, and also deals with more complex polygons that PolyK would crash on.
|
||||
* Graphics.arc has a new argument `segments` that allows you to control how many segments are created when the arc is drawn. The default is 40. Use a higher number for more fidelity, i.e. if you find that reversed arcs are not joining up fully (#2064)
|
||||
* PIXI.WebGLMaskManager.pushMask and popMask are now more robust in checking that they have been given valid mask data (#2152)
|
||||
* PIXI.WebGLGraphics.stencilBufferLimit is a new integer that allows you to define how many points exist in a Graphics object before Pixi swaps to using the Stencil Buffer to render it. The default is 6 but can be increased. This fixes issues with things like Quadratic curves not rendering as masks in WebGL.
|
||||
* If a Display Object with a mask contained a child with a Filter, then the child would not render. The WebGLFilterManager now retains state and creates a new stencil buffer as required (thanks @hightopo #1842)
|
||||
* The Filter Texture and GL Viewport are now properly resized, fixing issues with custom resolutions and filters (thanks @englercj @amadeus #2326 #2320)
|
||||
* Graphics.generateTexture has a new argument `padding` which allows you to add extra spacing onto the generated texture. This is useful for small Graphics objects where you find a few pixels getting sliced off the edges due to rounding issues (#1933)
|
||||
* DisplayObject._generateCachedSprite (which is called from `updateCache` or when `cacheAsBitmap` is enabled) would bitwise | 1 the bounds width and height. This would often lead to incorrect rounding (heights of 4 would become 5, while heights of 5 would remain 5). This has now been removed and the width and height are passed through Math.ceil and then checked to make sure they aren't less than 1 pixel in either direction (thanks @alesdotio #2078)
|
||||
|
||||
For changes in previous releases please see the extensive [Version History](https://github.com/photonstorm/phaser/blob/master/CHANGELOG.md).
|
||||
|
||||
|
|
2
build/custom/p2.min.js
vendored
2
build/custom/p2.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
* Phaser - http://phaser.io
|
||||
*
|
||||
* v2.4.5 "Sienda" - Built: Wed Feb 17 2016 13:36:39
|
||||
* v2.4.6 "Baerlon" - Built: Thu Feb 18 2016 14:40:00
|
||||
*
|
||||
* By Richard Davey http://www.photonstorm.com @photonstorm
|
||||
*
|
||||
|
@ -6951,7 +6951,10 @@ PIXI.BaseTexture.prototype.destroy = function()
|
|||
{
|
||||
PIXI.CanvasPool.removeByCanvas(this.source);
|
||||
|
||||
delete PIXI.BaseTextureCache[this.source];
|
||||
if (this.source._pixiId)
|
||||
{
|
||||
delete PIXI.BaseTextureCache[this.source._pixiId];
|
||||
}
|
||||
}
|
||||
|
||||
this.source = null;
|
||||
|
@ -9118,7 +9121,7 @@ var Phaser = Phaser || {
|
|||
* @constant
|
||||
* @type {string}
|
||||
*/
|
||||
VERSION: '2.4.5',
|
||||
VERSION: '2.4.6',
|
||||
|
||||
/**
|
||||
* An array of Phaser game instances.
|
||||
|
@ -15440,7 +15443,7 @@ Phaser.StateManager.prototype = {
|
|||
{
|
||||
this.game.world.shutdown();
|
||||
|
||||
if (this._clearCache === true)
|
||||
if (this._clearCache)
|
||||
{
|
||||
this.game.cache.destroy();
|
||||
}
|
||||
|
@ -15769,6 +15772,9 @@ Phaser.StateManager.prototype = {
|
|||
*/
|
||||
destroy: function () {
|
||||
|
||||
this._clearWorld = true;
|
||||
this._clearCache = true;
|
||||
|
||||
this.clearCurrentState();
|
||||
|
||||
this.callbackContext = null;
|
||||
|
@ -17850,7 +17856,7 @@ Phaser.Group.prototype.add = function (child, silent) {
|
|||
|
||||
if (child.parent !== this)
|
||||
{
|
||||
if (child.body)
|
||||
if (child.body && child.parent)
|
||||
{
|
||||
child.parent.removeFromHash(child);
|
||||
}
|
||||
|
@ -17981,7 +17987,7 @@ Phaser.Group.prototype.addAt = function (child, index, silent) {
|
|||
|
||||
if (child.parent !== this)
|
||||
{
|
||||
if (child.body)
|
||||
if (child.body && child.parent)
|
||||
{
|
||||
child.parent.removeFromHash(child);
|
||||
}
|
||||
|
@ -34119,9 +34125,13 @@ Phaser.SpriteBatch.prototype.constructor = Phaser.SpriteBatch;
|
|||
|
||||
/**
|
||||
* A BitmapData object contains a Canvas element to which you can draw anything you like via normal Canvas context operations.
|
||||
* A single BitmapData can be used as the texture for one or many Images/Sprites.
|
||||
* A single BitmapData can be used as the texture for one or many Images / Sprites.
|
||||
* So if you need to dynamically create a Sprite texture then they are a good choice.
|
||||
*
|
||||
* Important note: Every BitmapData creates its own Canvas element. Because BitmapData's are now Game Objects themselves, and don't
|
||||
* live on the display list, they are NOT automatically cleared when you change State. Therefore you _must_ call BitmapData.destroy
|
||||
* in your State's shutdown method if you wish to free-up the resources the BitmapData used, it will not happen for you.
|
||||
*
|
||||
* @class Phaser.BitmapData
|
||||
* @constructor
|
||||
* @param {Phaser.Game} game - A reference to the currently running game.
|
||||
|
@ -35966,6 +35976,8 @@ Phaser.BitmapData.prototype = {
|
|||
*/
|
||||
destroy: function () {
|
||||
|
||||
this.texture.destroy(true);
|
||||
|
||||
PIXI.CanvasPool.remove(this);
|
||||
|
||||
},
|
||||
|
@ -47169,6 +47181,18 @@ Phaser.RandomDataGenerator.prototype = {
|
|||
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns a sign to be used with multiplication operator.
|
||||
*
|
||||
* @method Phaser.RandomDataGenerator#sign
|
||||
* @return {number} -1 or +1.
|
||||
*/
|
||||
sign: function () {
|
||||
|
||||
return this.pick([-1, 1]);
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns a random member of `array`, favoring the earlier entries.
|
||||
*
|
||||
|
@ -58389,6 +58413,11 @@ Phaser.Loader.prototype = {
|
|||
{
|
||||
videoType = url.type;
|
||||
url = url.uri;
|
||||
|
||||
if (this.game.device.canPlayVideo(videoType))
|
||||
{
|
||||
return url;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -58406,11 +58435,11 @@ Phaser.Loader.prototype = {
|
|||
var extension = url.substr((Math.max(0, url.lastIndexOf(".")) || Infinity) + 1);
|
||||
|
||||
videoType = extension.toLowerCase();
|
||||
}
|
||||
|
||||
if (this.game.device.canPlayVideo(videoType))
|
||||
{
|
||||
return url;
|
||||
return urls[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -58444,6 +58473,11 @@ Phaser.Loader.prototype = {
|
|||
{
|
||||
audioType = url.type;
|
||||
url = url.uri;
|
||||
|
||||
if (this.game.device.canPlayAudio(audioType))
|
||||
{
|
||||
return url;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -58461,11 +58495,11 @@ Phaser.Loader.prototype = {
|
|||
var extension = url.substr((Math.max(0, url.lastIndexOf(".")) || Infinity) + 1);
|
||||
|
||||
audioType = extension.toLowerCase();
|
||||
}
|
||||
|
||||
if (this.game.device.canPlayAudio(audioType))
|
||||
{
|
||||
return url;
|
||||
return urls[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
32
build/custom/phaser-arcade-physics.min.js
vendored
32
build/custom/phaser-arcade-physics.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
* Phaser - http://phaser.io
|
||||
*
|
||||
* v2.4.5 "Sienda" - Built: Wed Feb 17 2016 13:36:56
|
||||
* v2.4.6 "Baerlon" - Built: Thu Feb 18 2016 14:40:18
|
||||
*
|
||||
* By Richard Davey http://www.photonstorm.com @photonstorm
|
||||
*
|
||||
|
@ -6951,7 +6951,10 @@ PIXI.BaseTexture.prototype.destroy = function()
|
|||
{
|
||||
PIXI.CanvasPool.removeByCanvas(this.source);
|
||||
|
||||
delete PIXI.BaseTextureCache[this.source];
|
||||
if (this.source._pixiId)
|
||||
{
|
||||
delete PIXI.BaseTextureCache[this.source._pixiId];
|
||||
}
|
||||
}
|
||||
|
||||
this.source = null;
|
||||
|
@ -7921,7 +7924,7 @@ var Phaser = Phaser || {
|
|||
* @constant
|
||||
* @type {string}
|
||||
*/
|
||||
VERSION: '2.4.5',
|
||||
VERSION: '2.4.6',
|
||||
|
||||
/**
|
||||
* An array of Phaser game instances.
|
||||
|
@ -14243,7 +14246,7 @@ Phaser.StateManager.prototype = {
|
|||
{
|
||||
this.game.world.shutdown();
|
||||
|
||||
if (this._clearCache === true)
|
||||
if (this._clearCache)
|
||||
{
|
||||
this.game.cache.destroy();
|
||||
}
|
||||
|
@ -14572,6 +14575,9 @@ Phaser.StateManager.prototype = {
|
|||
*/
|
||||
destroy: function () {
|
||||
|
||||
this._clearWorld = true;
|
||||
this._clearCache = true;
|
||||
|
||||
this.clearCurrentState();
|
||||
|
||||
this.callbackContext = null;
|
||||
|
@ -16653,7 +16659,7 @@ Phaser.Group.prototype.add = function (child, silent) {
|
|||
|
||||
if (child.parent !== this)
|
||||
{
|
||||
if (child.body)
|
||||
if (child.body && child.parent)
|
||||
{
|
||||
child.parent.removeFromHash(child);
|
||||
}
|
||||
|
@ -16784,7 +16790,7 @@ Phaser.Group.prototype.addAt = function (child, index, silent) {
|
|||
|
||||
if (child.parent !== this)
|
||||
{
|
||||
if (child.body)
|
||||
if (child.body && child.parent)
|
||||
{
|
||||
child.parent.removeFromHash(child);
|
||||
}
|
||||
|
@ -33690,6 +33696,18 @@ Phaser.RandomDataGenerator.prototype = {
|
|||
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns a sign to be used with multiplication operator.
|
||||
*
|
||||
* @method Phaser.RandomDataGenerator#sign
|
||||
* @return {number} -1 or +1.
|
||||
*/
|
||||
sign: function () {
|
||||
|
||||
return this.pick([-1, 1]);
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns a random member of `array`, favoring the earlier entries.
|
||||
*
|
||||
|
@ -42353,6 +42371,11 @@ Phaser.Loader.prototype = {
|
|||
{
|
||||
videoType = url.type;
|
||||
url = url.uri;
|
||||
|
||||
if (this.game.device.canPlayVideo(videoType))
|
||||
{
|
||||
return url;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -42370,11 +42393,11 @@ Phaser.Loader.prototype = {
|
|||
var extension = url.substr((Math.max(0, url.lastIndexOf(".")) || Infinity) + 1);
|
||||
|
||||
videoType = extension.toLowerCase();
|
||||
}
|
||||
|
||||
if (this.game.device.canPlayVideo(videoType))
|
||||
{
|
||||
return url;
|
||||
return urls[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -42408,6 +42431,11 @@ Phaser.Loader.prototype = {
|
|||
{
|
||||
audioType = url.type;
|
||||
url = url.uri;
|
||||
|
||||
if (this.game.device.canPlayAudio(audioType))
|
||||
{
|
||||
return url;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -42425,11 +42453,11 @@ Phaser.Loader.prototype = {
|
|||
var extension = url.substr((Math.max(0, url.lastIndexOf(".")) || Infinity) + 1);
|
||||
|
||||
audioType = extension.toLowerCase();
|
||||
}
|
||||
|
||||
if (this.game.device.canPlayAudio(audioType))
|
||||
{
|
||||
return url;
|
||||
return urls[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
20
build/custom/phaser-minimum.min.js
vendored
20
build/custom/phaser-minimum.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
* Phaser - http://phaser.io
|
||||
*
|
||||
* v2.4.5 "Sienda" - Built: Wed Feb 17 2016 13:36:48
|
||||
* v2.4.6 "Baerlon" - Built: Thu Feb 18 2016 14:40:10
|
||||
*
|
||||
* By Richard Davey http://www.photonstorm.com @photonstorm
|
||||
*
|
||||
|
@ -6951,7 +6951,10 @@ PIXI.BaseTexture.prototype.destroy = function()
|
|||
{
|
||||
PIXI.CanvasPool.removeByCanvas(this.source);
|
||||
|
||||
delete PIXI.BaseTextureCache[this.source];
|
||||
if (this.source._pixiId)
|
||||
{
|
||||
delete PIXI.BaseTextureCache[this.source._pixiId];
|
||||
}
|
||||
}
|
||||
|
||||
this.source = null;
|
||||
|
@ -9118,7 +9121,7 @@ var Phaser = Phaser || {
|
|||
* @constant
|
||||
* @type {string}
|
||||
*/
|
||||
VERSION: '2.4.5',
|
||||
VERSION: '2.4.6',
|
||||
|
||||
/**
|
||||
* An array of Phaser game instances.
|
||||
|
@ -15440,7 +15443,7 @@ Phaser.StateManager.prototype = {
|
|||
{
|
||||
this.game.world.shutdown();
|
||||
|
||||
if (this._clearCache === true)
|
||||
if (this._clearCache)
|
||||
{
|
||||
this.game.cache.destroy();
|
||||
}
|
||||
|
@ -15769,6 +15772,9 @@ Phaser.StateManager.prototype = {
|
|||
*/
|
||||
destroy: function () {
|
||||
|
||||
this._clearWorld = true;
|
||||
this._clearCache = true;
|
||||
|
||||
this.clearCurrentState();
|
||||
|
||||
this.callbackContext = null;
|
||||
|
@ -17850,7 +17856,7 @@ Phaser.Group.prototype.add = function (child, silent) {
|
|||
|
||||
if (child.parent !== this)
|
||||
{
|
||||
if (child.body)
|
||||
if (child.body && child.parent)
|
||||
{
|
||||
child.parent.removeFromHash(child);
|
||||
}
|
||||
|
@ -17981,7 +17987,7 @@ Phaser.Group.prototype.addAt = function (child, index, silent) {
|
|||
|
||||
if (child.parent !== this)
|
||||
{
|
||||
if (child.body)
|
||||
if (child.body && child.parent)
|
||||
{
|
||||
child.parent.removeFromHash(child);
|
||||
}
|
||||
|
@ -34119,9 +34125,13 @@ Phaser.SpriteBatch.prototype.constructor = Phaser.SpriteBatch;
|
|||
|
||||
/**
|
||||
* A BitmapData object contains a Canvas element to which you can draw anything you like via normal Canvas context operations.
|
||||
* A single BitmapData can be used as the texture for one or many Images/Sprites.
|
||||
* A single BitmapData can be used as the texture for one or many Images / Sprites.
|
||||
* So if you need to dynamically create a Sprite texture then they are a good choice.
|
||||
*
|
||||
* Important note: Every BitmapData creates its own Canvas element. Because BitmapData's are now Game Objects themselves, and don't
|
||||
* live on the display list, they are NOT automatically cleared when you change State. Therefore you _must_ call BitmapData.destroy
|
||||
* in your State's shutdown method if you wish to free-up the resources the BitmapData used, it will not happen for you.
|
||||
*
|
||||
* @class Phaser.BitmapData
|
||||
* @constructor
|
||||
* @param {Phaser.Game} game - A reference to the currently running game.
|
||||
|
@ -35966,6 +35976,8 @@ Phaser.BitmapData.prototype = {
|
|||
*/
|
||||
destroy: function () {
|
||||
|
||||
this.texture.destroy(true);
|
||||
|
||||
PIXI.CanvasPool.remove(this);
|
||||
|
||||
},
|
||||
|
@ -47169,6 +47181,18 @@ Phaser.RandomDataGenerator.prototype = {
|
|||
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns a sign to be used with multiplication operator.
|
||||
*
|
||||
* @method Phaser.RandomDataGenerator#sign
|
||||
* @return {number} -1 or +1.
|
||||
*/
|
||||
sign: function () {
|
||||
|
||||
return this.pick([-1, 1]);
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns a random member of `array`, favoring the earlier entries.
|
||||
*
|
||||
|
@ -58389,6 +58413,11 @@ Phaser.Loader.prototype = {
|
|||
{
|
||||
videoType = url.type;
|
||||
url = url.uri;
|
||||
|
||||
if (this.game.device.canPlayVideo(videoType))
|
||||
{
|
||||
return url;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -58406,11 +58435,11 @@ Phaser.Loader.prototype = {
|
|||
var extension = url.substr((Math.max(0, url.lastIndexOf(".")) || Infinity) + 1);
|
||||
|
||||
videoType = extension.toLowerCase();
|
||||
}
|
||||
|
||||
if (this.game.device.canPlayVideo(videoType))
|
||||
{
|
||||
return url;
|
||||
return urls[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -58444,6 +58473,11 @@ Phaser.Loader.prototype = {
|
|||
{
|
||||
audioType = url.type;
|
||||
url = url.uri;
|
||||
|
||||
if (this.game.device.canPlayAudio(audioType))
|
||||
{
|
||||
return url;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -58461,11 +58495,11 @@ Phaser.Loader.prototype = {
|
|||
var extension = url.substr((Math.max(0, url.lastIndexOf(".")) || Infinity) + 1);
|
||||
|
||||
audioType = extension.toLowerCase();
|
||||
}
|
||||
|
||||
if (this.game.device.canPlayAudio(audioType))
|
||||
{
|
||||
return url;
|
||||
return urls[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
28
build/custom/phaser-no-physics.min.js
vendored
28
build/custom/phaser-no-physics.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
* Phaser - http://phaser.io
|
||||
*
|
||||
* v2.4.5 "Sienda" - Built: Wed Feb 17 2016 13:37:04
|
||||
* v2.4.6 "Baerlon" - Built: Thu Feb 18 2016 14:40:27
|
||||
*
|
||||
* By Richard Davey http://www.photonstorm.com @photonstorm
|
||||
*
|
||||
|
@ -55,7 +55,7 @@ var Phaser = Phaser || {
|
|||
* @constant
|
||||
* @type {string}
|
||||
*/
|
||||
VERSION: '2.4.5',
|
||||
VERSION: '2.4.6',
|
||||
|
||||
/**
|
||||
* An array of Phaser game instances.
|
||||
|
@ -6377,7 +6377,7 @@ Phaser.StateManager.prototype = {
|
|||
{
|
||||
this.game.world.shutdown();
|
||||
|
||||
if (this._clearCache === true)
|
||||
if (this._clearCache)
|
||||
{
|
||||
this.game.cache.destroy();
|
||||
}
|
||||
|
@ -6706,6 +6706,9 @@ Phaser.StateManager.prototype = {
|
|||
*/
|
||||
destroy: function () {
|
||||
|
||||
this._clearWorld = true;
|
||||
this._clearCache = true;
|
||||
|
||||
this.clearCurrentState();
|
||||
|
||||
this.callbackContext = null;
|
||||
|
@ -8787,7 +8790,7 @@ Phaser.Group.prototype.add = function (child, silent) {
|
|||
|
||||
if (child.parent !== this)
|
||||
{
|
||||
if (child.body)
|
||||
if (child.body && child.parent)
|
||||
{
|
||||
child.parent.removeFromHash(child);
|
||||
}
|
||||
|
@ -8918,7 +8921,7 @@ Phaser.Group.prototype.addAt = function (child, index, silent) {
|
|||
|
||||
if (child.parent !== this)
|
||||
{
|
||||
if (child.body)
|
||||
if (child.body && child.parent)
|
||||
{
|
||||
child.parent.removeFromHash(child);
|
||||
}
|
||||
|
@ -25056,9 +25059,13 @@ Phaser.SpriteBatch.prototype.constructor = Phaser.SpriteBatch;
|
|||
|
||||
/**
|
||||
* A BitmapData object contains a Canvas element to which you can draw anything you like via normal Canvas context operations.
|
||||
* A single BitmapData can be used as the texture for one or many Images/Sprites.
|
||||
* A single BitmapData can be used as the texture for one or many Images / Sprites.
|
||||
* So if you need to dynamically create a Sprite texture then they are a good choice.
|
||||
*
|
||||
* Important note: Every BitmapData creates its own Canvas element. Because BitmapData's are now Game Objects themselves, and don't
|
||||
* live on the display list, they are NOT automatically cleared when you change State. Therefore you _must_ call BitmapData.destroy
|
||||
* in your State's shutdown method if you wish to free-up the resources the BitmapData used, it will not happen for you.
|
||||
*
|
||||
* @class Phaser.BitmapData
|
||||
* @constructor
|
||||
* @param {Phaser.Game} game - A reference to the currently running game.
|
||||
|
@ -26903,6 +26910,8 @@ Phaser.BitmapData.prototype = {
|
|||
*/
|
||||
destroy: function () {
|
||||
|
||||
this.texture.destroy(true);
|
||||
|
||||
PIXI.CanvasPool.remove(this);
|
||||
|
||||
},
|
||||
|
@ -38106,6 +38115,18 @@ Phaser.RandomDataGenerator.prototype = {
|
|||
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns a sign to be used with multiplication operator.
|
||||
*
|
||||
* @method Phaser.RandomDataGenerator#sign
|
||||
* @return {number} -1 or +1.
|
||||
*/
|
||||
sign: function () {
|
||||
|
||||
return this.pick([-1, 1]);
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns a random member of `array`, favoring the earlier entries.
|
||||
*
|
||||
|
@ -49326,6 +49347,11 @@ Phaser.Loader.prototype = {
|
|||
{
|
||||
videoType = url.type;
|
||||
url = url.uri;
|
||||
|
||||
if (this.game.device.canPlayVideo(videoType))
|
||||
{
|
||||
return url;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -49343,11 +49369,11 @@ Phaser.Loader.prototype = {
|
|||
var extension = url.substr((Math.max(0, url.lastIndexOf(".")) || Infinity) + 1);
|
||||
|
||||
videoType = extension.toLowerCase();
|
||||
}
|
||||
|
||||
if (this.game.device.canPlayVideo(videoType))
|
||||
{
|
||||
return url;
|
||||
return urls[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -49381,6 +49407,11 @@ Phaser.Loader.prototype = {
|
|||
{
|
||||
audioType = url.type;
|
||||
url = url.uri;
|
||||
|
||||
if (this.game.device.canPlayAudio(audioType))
|
||||
{
|
||||
return url;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -49398,11 +49429,11 @@ Phaser.Loader.prototype = {
|
|||
var extension = url.substr((Math.max(0, url.lastIndexOf(".")) || Infinity) + 1);
|
||||
|
||||
audioType = extension.toLowerCase();
|
||||
}
|
||||
|
||||
if (this.game.device.canPlayAudio(audioType))
|
||||
{
|
||||
return url;
|
||||
return urls[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
36
build/custom/phaser-split.min.js
vendored
36
build/custom/phaser-split.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
* Phaser - http://phaser.io
|
||||
*
|
||||
* v2.4.5 "Sienda" - Built: Wed Feb 17 2016 13:37:03
|
||||
* v2.4.6 "Baerlon" - Built: Thu Feb 18 2016 14:40:25
|
||||
*
|
||||
* By Richard Davey http://www.photonstorm.com @photonstorm
|
||||
*
|
||||
|
@ -6951,7 +6951,10 @@ PIXI.BaseTexture.prototype.destroy = function()
|
|||
{
|
||||
PIXI.CanvasPool.removeByCanvas(this.source);
|
||||
|
||||
delete PIXI.BaseTextureCache[this.source];
|
||||
if (this.source._pixiId)
|
||||
{
|
||||
delete PIXI.BaseTextureCache[this.source._pixiId];
|
||||
}
|
||||
}
|
||||
|
||||
this.source = null;
|
||||
|
|
File diff suppressed because one or more lines are too long
4
build/custom/pixi.min.js
vendored
4
build/custom/pixi.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
* Phaser - http://phaser.io
|
||||
*
|
||||
* v2.4.5 "Sienda" - Built: Wed Feb 17 2016 13:36:26
|
||||
* v2.4.6 "Baerlon" - Built: Thu Feb 18 2016 14:39:48
|
||||
*
|
||||
* By Richard Davey http://www.photonstorm.com @photonstorm
|
||||
*
|
||||
|
@ -20564,7 +20564,10 @@ PIXI.BaseTexture.prototype.destroy = function()
|
|||
{
|
||||
PIXI.CanvasPool.removeByCanvas(this.source);
|
||||
|
||||
delete PIXI.BaseTextureCache[this.source];
|
||||
if (this.source._pixiId)
|
||||
{
|
||||
delete PIXI.BaseTextureCache[this.source._pixiId];
|
||||
}
|
||||
}
|
||||
|
||||
this.source = null;
|
||||
|
@ -22731,7 +22734,7 @@ var Phaser = Phaser || {
|
|||
* @constant
|
||||
* @type {string}
|
||||
*/
|
||||
VERSION: '2.4.5',
|
||||
VERSION: '2.4.6',
|
||||
|
||||
/**
|
||||
* An array of Phaser game instances.
|
||||
|
@ -29053,7 +29056,7 @@ Phaser.StateManager.prototype = {
|
|||
{
|
||||
this.game.world.shutdown();
|
||||
|
||||
if (this._clearCache === true)
|
||||
if (this._clearCache)
|
||||
{
|
||||
this.game.cache.destroy();
|
||||
}
|
||||
|
@ -29382,6 +29385,9 @@ Phaser.StateManager.prototype = {
|
|||
*/
|
||||
destroy: function () {
|
||||
|
||||
this._clearWorld = true;
|
||||
this._clearCache = true;
|
||||
|
||||
this.clearCurrentState();
|
||||
|
||||
this.callbackContext = null;
|
||||
|
@ -31463,7 +31469,7 @@ Phaser.Group.prototype.add = function (child, silent) {
|
|||
|
||||
if (child.parent !== this)
|
||||
{
|
||||
if (child.body)
|
||||
if (child.body && child.parent)
|
||||
{
|
||||
child.parent.removeFromHash(child);
|
||||
}
|
||||
|
@ -31594,7 +31600,7 @@ Phaser.Group.prototype.addAt = function (child, index, silent) {
|
|||
|
||||
if (child.parent !== this)
|
||||
{
|
||||
if (child.body)
|
||||
if (child.body && child.parent)
|
||||
{
|
||||
child.parent.removeFromHash(child);
|
||||
}
|
||||
|
@ -47732,9 +47738,13 @@ Phaser.SpriteBatch.prototype.constructor = Phaser.SpriteBatch;
|
|||
|
||||
/**
|
||||
* A BitmapData object contains a Canvas element to which you can draw anything you like via normal Canvas context operations.
|
||||
* A single BitmapData can be used as the texture for one or many Images/Sprites.
|
||||
* A single BitmapData can be used as the texture for one or many Images / Sprites.
|
||||
* So if you need to dynamically create a Sprite texture then they are a good choice.
|
||||
*
|
||||
* Important note: Every BitmapData creates its own Canvas element. Because BitmapData's are now Game Objects themselves, and don't
|
||||
* live on the display list, they are NOT automatically cleared when you change State. Therefore you _must_ call BitmapData.destroy
|
||||
* in your State's shutdown method if you wish to free-up the resources the BitmapData used, it will not happen for you.
|
||||
*
|
||||
* @class Phaser.BitmapData
|
||||
* @constructor
|
||||
* @param {Phaser.Game} game - A reference to the currently running game.
|
||||
|
@ -49579,6 +49589,8 @@ Phaser.BitmapData.prototype = {
|
|||
*/
|
||||
destroy: function () {
|
||||
|
||||
this.texture.destroy(true);
|
||||
|
||||
PIXI.CanvasPool.remove(this);
|
||||
|
||||
},
|
||||
|
@ -60782,6 +60794,18 @@ Phaser.RandomDataGenerator.prototype = {
|
|||
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns a sign to be used with multiplication operator.
|
||||
*
|
||||
* @method Phaser.RandomDataGenerator#sign
|
||||
* @return {number} -1 or +1.
|
||||
*/
|
||||
sign: function () {
|
||||
|
||||
return this.pick([-1, 1]);
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns a random member of `array`, favoring the earlier entries.
|
||||
*
|
||||
|
@ -72002,6 +72026,11 @@ Phaser.Loader.prototype = {
|
|||
{
|
||||
videoType = url.type;
|
||||
url = url.uri;
|
||||
|
||||
if (this.game.device.canPlayVideo(videoType))
|
||||
{
|
||||
return url;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -72019,11 +72048,11 @@ Phaser.Loader.prototype = {
|
|||
var extension = url.substr((Math.max(0, url.lastIndexOf(".")) || Infinity) + 1);
|
||||
|
||||
videoType = extension.toLowerCase();
|
||||
}
|
||||
|
||||
if (this.game.device.canPlayVideo(videoType))
|
||||
{
|
||||
return url;
|
||||
return urls[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -72057,6 +72086,11 @@ Phaser.Loader.prototype = {
|
|||
{
|
||||
audioType = url.type;
|
||||
url = url.uri;
|
||||
|
||||
if (this.game.device.canPlayAudio(audioType))
|
||||
{
|
||||
return url;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -72074,11 +72108,11 @@ Phaser.Loader.prototype = {
|
|||
var extension = url.substr((Math.max(0, url.lastIndexOf(".")) || Infinity) + 1);
|
||||
|
||||
audioType = extension.toLowerCase();
|
||||
}
|
||||
|
||||
if (this.game.device.canPlayAudio(audioType))
|
||||
{
|
||||
return url;
|
||||
return urls[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
40
build/phaser.min.js
vendored
40
build/phaser.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1483,7 +1483,7 @@ If you want to make a custom filter this should be your base class.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1986,7 +1986,7 @@ that has children that you do want to render, without causing a batch flush in t
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_textures_BaseTexture.js.html">pixi/textures/BaseTexture.js</a>, <a href="src_pixi_textures_BaseTexture.js.html#sunlight-1-line-292">line 292</a>
|
||||
<a href="src_pixi_textures_BaseTexture.js.html">pixi/textures/BaseTexture.js</a>, <a href="src_pixi_textures_BaseTexture.js.html#sunlight-1-line-295">line 295</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2172,7 +2172,7 @@ If the image is not in the base texture cache it will be created and loaded.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_textures_BaseTexture.js.html">pixi/textures/BaseTexture.js</a>, <a href="src_pixi_textures_BaseTexture.js.html#sunlight-1-line-249">line 249</a>
|
||||
<a href="src_pixi_textures_BaseTexture.js.html">pixi/textures/BaseTexture.js</a>, <a href="src_pixi_textures_BaseTexture.js.html#sunlight-1-line-252">line 252</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2312,7 +2312,7 @@ If the image is not in the base texture cache it will be created and loaded.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_textures_BaseTexture.js.html">pixi/textures/BaseTexture.js</a>, <a href="src_pixi_textures_BaseTexture.js.html#sunlight-1-line-208">line 208</a>
|
||||
<a href="src_pixi_textures_BaseTexture.js.html">pixi/textures/BaseTexture.js</a>, <a href="src_pixi_textures_BaseTexture.js.html#sunlight-1-line-211">line 211</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2531,7 +2531,7 @@ Atexture is still 100% usable and will simply be reuploaded if there is a sprite
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_textures_BaseTexture.js.html">pixi/textures/BaseTexture.js</a>, <a href="src_pixi_textures_BaseTexture.js.html#sunlight-1-line-221">line 221</a>
|
||||
<a href="src_pixi_textures_BaseTexture.js.html">pixi/textures/BaseTexture.js</a>, <a href="src_pixi_textures_BaseTexture.js.html#sunlight-1-line-224">line 224</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2650,7 +2650,7 @@ Atexture is still 100% usable and will simply be reuploaded if there is a sprite
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_textures_BaseTexture.js.html">pixi/textures/BaseTexture.js</a>, <a href="src_pixi_textures_BaseTexture.js.html#sunlight-1-line-195">line 195</a>
|
||||
<a href="src_pixi_textures_BaseTexture.js.html">pixi/textures/BaseTexture.js</a>, <a href="src_pixi_textures_BaseTexture.js.html#sunlight-1-line-198">line 198</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2699,7 +2699,7 @@ Atexture is still 100% usable and will simply be reuploaded if there is a sprite
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1744,7 +1744,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1228,7 +1228,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1493,7 +1493,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1975,7 +1975,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2475,7 +2475,7 @@ Disable this by setting this to false. For example if your game has a canvas fil
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1981,7 +1981,7 @@ This property is only applicable if using tintWithPerPixel.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1641,7 +1641,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -3524,7 +3524,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -5147,7 +5147,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1224,7 +1224,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1701,7 +1701,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2174,7 +2174,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1840,7 +1840,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -8433,7 +8433,7 @@ Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1228,7 +1228,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2369,7 +2369,7 @@ this function is taken from Starling Framework as its pretty neat ;)</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1697,7 +1697,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1965,7 +1965,7 @@ http://www.khronos.org/registry/gles/specs/2.0/GLSL_ES_Specification_1.0.17.pdf<
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1304,7 +1304,7 @@ Slightly modified by Mat Groves (matgroves.com);</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1641,7 +1641,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2915,7 +2915,7 @@ irrespective of the actual frame size or placement (which can be influenced by t
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -5594,7 +5594,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -6120,7 +6120,7 @@ texture this Sprite was using.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1287,7 +1287,7 @@ And here you have a hundred sprites that will be renderer at the speed of light<
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -5588,7 +5588,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1641,7 +1641,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -3017,7 +3017,7 @@ If the image is not in the texture cache it will be created and loaded.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -6558,7 +6558,7 @@ texture this Sprite was using.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1641,7 +1641,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2771,7 +2771,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2162,7 +2162,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -3109,7 +3109,7 @@ Disable this by setting this to false. For example: if your game has a canvas fi
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:57 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1532,7 +1532,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:56 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -4324,7 +4324,7 @@ If <code>dispatchComplete</code> is true it will dispatch the complete events, o
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:45 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -3576,7 +3576,7 @@ The currentAnim property of the AnimationManager is automatically set to the ani
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:45 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2260,7 +2260,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2833,7 +2833,7 @@ Returns null if not found.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2757,7 +2757,7 @@ for forward compatibility make sure to pass in actual numbers.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2119,7 +2119,7 @@ The JSON follows the format of that created by https://github.com/tonistiigi/aud
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1132,8 +1132,11 @@
|
|||
|
||||
<div class="description">
|
||||
<p>A BitmapData object contains a Canvas element to which you can draw anything you like via normal Canvas context operations.
|
||||
A single BitmapData can be used as the texture for one or many Images/Sprites.
|
||||
A single BitmapData can be used as the texture for one or many Images / Sprites.
|
||||
So if you need to dynamically create a Sprite texture then they are a good choice.</p>
|
||||
<p>Important note: Every BitmapData creates its own Canvas element. Because BitmapData's are now Game Objects themselves, and don't
|
||||
live on the display list, they are NOT automatically cleared when you change State. Therefore you <em>must</em> call BitmapData.destroy
|
||||
in your State's shutdown method if you wish to free-up the resources the BitmapData used, it will not happen for you.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -1345,7 +1348,7 @@ So if you need to dynamically create a Sprite texture then they are a good choic
|
|||
|
||||
|
||||
<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-19">line 19</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-23">line 23</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1425,7 +1428,7 @@ So if you need to dynamically create a Sprite texture then they are a good choic
|
|||
|
||||
|
||||
<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-113">line 113</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-117">line 117</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1481,7 +1484,7 @@ So if you need to dynamically create a Sprite texture then they are a good choic
|
|||
|
||||
|
||||
<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-48">line 48</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-52">line 52</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1537,7 +1540,7 @@ So if you need to dynamically create a Sprite texture then they are a good choic
|
|||
|
||||
|
||||
<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-54">line 54</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-58">line 58</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1593,7 +1596,7 @@ So if you need to dynamically create a Sprite texture then they are a good choic
|
|||
|
||||
|
||||
<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-59">line 59</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-63">line 63</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1650,7 +1653,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-73">line 73</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-77">line 77</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1706,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-143">line 143</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>
|
||||
|
||||
|
||||
|
@ -1762,7 +1765,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-138">line 138</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>
|
||||
|
||||
|
||||
|
@ -1818,7 +1821,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-27">line 27</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-31">line 31</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1874,7 +1877,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-42">line 42</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-46">line 46</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1932,7 +1935,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-66">line 66</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-70">line 70</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1988,7 +1991,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-32">line 32</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-36">line 36</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2044,7 +2047,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-83">line 83</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-87">line 87</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2100,7 +2103,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-119">line 119</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-123">line 123</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2156,7 +2159,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-125">line 125</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2212,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-133">line 133</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2268,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-37">line 37</a>
|
||||
<a href="src_gameobjects_BitmapData.js.html">gameobjects/BitmapData.js</a>, <a href="src_gameobjects_BitmapData.js.html#sunlight-1-line-41">line 41</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2520,7 +2523,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-2240">line 2240</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2669,7 +2672,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-377">line 377</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3023,7 +3026,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-1163">line 1163</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3307,7 +3310,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-1565">line 1565</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3397,7 +3400,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-1990">line 1990</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3487,7 +3490,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-2172">line 2172</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3577,7 +3580,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-2081">line 2081</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3667,7 +3670,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-2068">line 2068</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3757,7 +3760,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-2042">line 2042</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3847,7 +3850,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-1964">line 1964</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3937,7 +3940,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-1938">line 1938</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4027,7 +4030,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-1951">line 1951</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4117,7 +4120,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-1925">line 1925</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4207,7 +4210,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-2120">line 2120</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4297,7 +4300,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-2133">line 2133</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4387,7 +4390,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-2094">line 2094</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4477,7 +4480,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-2146">line 2146</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4567,7 +4570,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-2055">line 2055</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4657,7 +4660,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-2185">line 2185</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4747,7 +4750,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-2003">line 2003</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4837,7 +4840,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-2029">line 2029</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4927,7 +4930,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-1860">line 1860</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5017,7 +5020,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-2159">line 2159</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5107,7 +5110,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-2016">line 2016</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5197,7 +5200,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-2107">line 2107</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5287,7 +5290,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-1912">line 1912</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5377,7 +5380,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-1886">line 1886</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5467,7 +5470,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-1899">line 1899</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5557,7 +5560,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-1873">line 1873</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5647,7 +5650,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-1977">line 1977</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5891,7 +5894,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-1716">line 1716</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -6167,7 +6170,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-447">line 447</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -6237,7 +6240,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-441">line 441</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -7029,7 +7032,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-1189">line 1189</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -7421,7 +7424,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-1387">line 1387</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -7491,7 +7494,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-1849">line 1849</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -7884,7 +7887,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-1406">line 1406</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -8141,7 +8144,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-1477">line 1477</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -8378,7 +8381,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-1428">line 1428</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -8834,7 +8837,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-1599">line 1599</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -9098,7 +9101,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-478">line 478</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -9246,7 +9249,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-500">line 500</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -9398,7 +9401,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-1135">line 1135</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -9563,7 +9566,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-1052">line 1052</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -9778,7 +9781,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-969">line 969</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -9943,7 +9946,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-1000">line 1000</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -10250,7 +10253,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-1020">line 1020</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -10389,7 +10392,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-1039">line 1039</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -10727,7 +10730,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-1745">line 1745</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -10887,7 +10890,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-406">line 406</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -11117,7 +11120,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-224">line 224</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -11312,7 +11315,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-251">line 251</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -11507,7 +11510,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-314">line 314</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -11853,7 +11856,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-684">line 684</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -12202,7 +12205,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-626">line 626</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -12477,7 +12480,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-1652">line 1652</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -12569,7 +12572,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-1829">line 1829</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -12969,7 +12972,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-738">line 738</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -13131,7 +13134,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-536">line 536</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -13405,7 +13408,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-788">line 788</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -13739,7 +13742,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-951">line 951</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -14108,7 +14111,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-912">line 912</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -14382,7 +14385,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-1535">line 1535</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -14658,7 +14661,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-849">line 849</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -15002,7 +15005,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-1676">line 1676</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -15234,7 +15237,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-1779">line 1779</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -15513,7 +15516,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-580">line 580</a>
|
||||
<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>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -15562,7 +15565,7 @@ If not given the dimensions defaults to the full size of the context.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -9650,7 +9650,7 @@ Remember if this Game Object has any children you should call update on those to
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -14011,7 +14011,7 @@ or the rectangle it references, then you need to update the crop frame by callin
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -15961,7 +15961,7 @@ then it will persist in memory.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -3764,7 +3764,7 @@ without having to use game.camera.x and game.camera.y.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -3458,7 +3458,7 @@ patchy on earlier browsers, especially on mobile.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -4855,7 +4855,7 @@ This method checks the radius distances between the two Circle objects to see if
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -11900,7 +11900,7 @@ endian-independent method, use fromRGBA(rgba) and toRGBA(r, g, b, a).</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1293,7 +1293,7 @@ Working in radians is slightly faster as it doesn't have to perform any calculat
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1507,7 +1507,7 @@ If you need to reset an already running animation do so directly on the Animatio
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:46 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1350,7 +1350,7 @@ Returns <code>true</code> if they do, otherwise <code>false</code> if fully outs
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1576,7 +1576,7 @@ This is the same as <code>y - offsetY</code>.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1604,7 +1604,7 @@ because the World is the root Group from which all Game Objects descend.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2446,7 +2446,7 @@ Remember if this Game Object has any children you should call update on those to
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1547,7 +1547,7 @@ or the rectangle it references, then you need to update the crop frame by callin
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1402,7 +1402,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1475,7 +1475,7 @@ more than one Game Object sharing the same BaseTexture.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1428,7 +1428,7 @@ Called automatically by the Game Object.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1524,7 +1524,7 @@ Will never exceed the <code>maxHealth</code> value.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1290,7 +1290,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1483,7 +1483,7 @@ Called automatically by the Game Object.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1363,7 +1363,7 @@ for this Game Object and it will then start to process click / touch events and
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1685,7 +1685,7 @@ it doesn't destroy the object or free it up from memory.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1949,7 +1949,7 @@ it can be useful to adjust the dimensions directly in this way.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1387,7 +1387,7 @@ It should be fine for low-volume testing where physics isn't required.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1574,7 +1574,7 @@ Called automatically by the Game Object.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1465,7 +1465,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1674,7 +1674,7 @@ or pass <code>null</code> for the <code>maxX</code> and <code>maxY</code> parame
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1290,7 +1290,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2471,7 +2471,7 @@ for sprites the same way you use any other texture: <code>game.add.sprite(0, 0,
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -9140,7 +9140,7 @@ Remember if this Game Object has any children you should call update on those to
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -2711,7 +2711,7 @@ inLayoutViewport(element, -100) is <code>true</code> if the element is in the vi
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:48 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -6463,7 +6463,7 @@ It used to work in Chrome, but then they removed the ability: <a href="http://sr
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:47 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -3233,7 +3233,7 @@ Handles the button up state.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:48 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1649,7 +1649,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:48 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1649,7 +1649,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:48 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1649,7 +1649,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:48 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1649,7 +1649,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:48 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -1649,7 +1649,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Wed Feb 17 2016 13:24:48 GMT+0000 (GMT Standard Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</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>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue