mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 07:04:31 +00:00
Phaser 2.4.9 release.
This commit is contained in:
parent
9dd745167c
commit
47f0224a40
419 changed files with 75581 additions and 12124 deletions
81
CHANGELOG.md
81
CHANGELOG.md
|
@ -1,5 +1,86 @@
|
|||
# Change Log
|
||||
|
||||
## Version 2.4.9 - "Four Kings" - 16th June 2016
|
||||
|
||||
### New Features
|
||||
|
||||
* Phaser.Line.intersectsRectangle checks for intersection between a Line and a Rectangle, or any Rectangle-like object such as a Sprite or Body.
|
||||
* Group.getClosestTo will return the child closest to the given point (thanks @Nuuf #2504)
|
||||
* Group.getFurthestFrom will return the child farthest away from the given point (thanks @Nuuf #2504)
|
||||
* Animation.reverse will reverse the currently playing animation direction (thanks @gotenxds #2505)
|
||||
* Animation.reverseOnce will reverse the animation direction for the current, or next animation only (thanks @gotenxds #2505)
|
||||
* The way the display list updates and Camera movements are handled has been completely revamped, which should result is significantly smoother motion when the Camera is following tweened or physics controlled sprites. The `Stage.postUpdate` function is now vastly reduced in complexity. It takes control over updating the display list (calling `updateTransform` on itself), rather than letting the Canvas or WebGL renderers do this. Because of this change, the `Camera.updateTarget` function uses the Sprites `worldPosition` property instead, which is now frame accurate (thanks @whig @Upperfoot @Whoisnt @hexus #2482)
|
||||
* Game Objects including Sprite, Image, Particle, TilemapLayer, Text, BitmapText and TileSprite have a new property called `data`. This is an empty Object that Phaser will never touch internally, but your own code, or Phaser Plugins, can store Game Object specific data within it. This allows you to associate data with a Game Object without having to pollute or change its class shape.
|
||||
* TilemapLayers will now collide properly when they have a position that isn't set to 0x0. For example if you're stitching together several maps, one after the other, and manually adjust their `scrollX/Y` properties (thanks @Upperfoot #2522)
|
||||
* There are a bunch of new Phaser consts available to help with setting the angle of a Game Object. They are `Phaser.ANGLE_UP`, `ANGLE_DOWN`, `ANGLE_LEFT`, `ANGLE_RIGHT`, `ANGLE_NORTH_EAST`, `ANGLE_NORTH_WEST`, `ANGLE_SOUTH_EAST` and `ANGLE_SOUTH_WEST`.
|
||||
* Math.between will return a value between the given `min` and `max` values.
|
||||
* InputHandler.dragDistanceThreshold gives you more fine control over when a Sprite Drag event will start. It allows you to specify a distance, in pixels, that the pointer must have moved before the drag will begin.
|
||||
* InputHandler.dragTimeThreshold gives you more fine control over when a Sprite Drag event will start. It allows you to specify a time, in ms that the pointer must have been held down for, before the drag will begin.
|
||||
* InputHandler.downPoint is a new Point object that contains the coordinates of the Pointer when it was first pressed down on the Sprite.
|
||||
* There are two new Phaser consts available, for help with orientation of games or Game Objects. They are `Phaser.HORIZONTAL`, `Phaser.VERTICAL`, `Phaser.LANDSCAPE` and `Phaser.PORTRAIT`.
|
||||
* InputHandler.dragStopBlocksInputUp is a boolean that allows you to control what happens with the input events. If `false` (the default) then both the `onInputUp` and `onDragStop` events will get dispatched when a Sprite stops being dragged. If `true` then only the `onDragStop` event is dispatched, and the `onInputUp` is skipped.
|
||||
* Group.inputEnableChildren is a new property. If set to `true` will automatically call `inputEnabled = true` on any children _added_ to, or _created_ by, the Group.
|
||||
* PIXI.DisplayObjectContainer.ignoreChildInput is a new property. If `true` then the children will _not_ be considered as valid for Input events. Because this has been applied to `DisplayObjectContainer` it means it's available in Group, Sprite and any other display level object. Using this boolean you can disable input events for all children in an entire Group, without having to iterate anything or deep-set flags.
|
||||
* InputHandler._pointerOverHandler and _pointerOutHandler have new arguments `silent` - if `true` then they will not dispatch any Signals from the parent Sprite.
|
||||
* Pointer.interactiveCandidates is a new Array that is erased and re-populated every time this Pointer is updated. It contains references to all of the Game Objects that were considered as being valid for processing by this Pointer, during the most recent update. To be valid they must have suitable a `priorityID`, be Input enabled, be visible and actually have the Pointer over them. You can check the contents of this array in events such as `onInputDown`, but beware: it is reset every update.
|
||||
* Pointer.swapTarget allows you to change the `Pointer.targetObject` object to be the one provided. This allows you to have fine-grained control over which object the Pointer is targeting.
|
||||
* Input.setInteractiveCandidateHandler allows you to add a callback that is fired every time `Pointer.processInteractiveObjects` is called. The purpose of `processInteractiveObjects` is to work out which Game Object the Pointer is going to interact with. It works by polling all of the valid game objects, and then slowly discounting those that don't meet the criteria (i.e. they aren't under the Pointer, are disabled, invisible, etc). Eventually a short-list of 'candidates' is created. These are all of the Game Objects which are valid for input and overlap with the Pointer. If you need fine-grained control over which of the items is selected then you can use this callback to do so. The callback will be sent 3 parameters: 1) A reference to the Phaser.Pointer object that is processing the Items. 2) An array containing all potential interactive candidates. This is an array of `InputHandler` objects, not Sprites. 3) The current 'favorite' candidate, based on its priorityID and position in the display list. Your callback MUST return one of the candidates sent to it.
|
||||
* Group.onChildInputDown is a new Signal that you can listen to. It will be dispatched whenever any immediate child of the Group emits an `onInputDown` signal itself. This allows you to listen for a Signal from the Group, rather than every Sprite within it.
|
||||
* Group.onChildInputUp is a new Signal that you can listen to. It will be dispatched whenever any immediate child of the Group emits an `onInputUp` signal itself. This allows you to listen for a Signal from the Group, rather than every Sprite within it.
|
||||
* Group.onChildInputOver is a new Signal that you can listen to. It will be dispatched whenever any immediate child of the Group emits an `onInputOver` signal itself. This allows you to listen for a Signal from the Group, rather than every Sprite within it.
|
||||
* Group.onChildInputOut is a new Signal that you can listen to. It will be dispatched whenever any immediate child of the Group emits an `onInputOut` signal itself. This allows you to listen for a Signal from the Group, rather than every Sprite within it.
|
||||
* Phaser.Weapon is a brand new plugin that provides the ability to easily create a bullet pool and manager. Weapons fire Phaser.Bullet objects, which are essentially Sprites with a few extra properties. The Bullets are enabled for Arcade Physics. They do not currently work with P2 Physics. The Bullets are created inside of `Weapon.bullets`, which is a Phaser.Group instance. Anything you can usually do with a Group, such as move it around the display list, iterate it, etc can be done to the bullets Group too. Bullets can have textures and even animations. You can control the speed at which they are fired, the firing rate, the firing angle, and even set things like gravity for them. Please see the Documentation for more details, or view the [Weapon examples](https://github.com/photonstorm/phaser-examples/tree/master/examples/weapon) in the Examples repo.
|
||||
* BitmapData.smoothProperty is a new property that holds the string based prefix needed to set image scaling on the BitmapData context.
|
||||
* BitmapData.copyTransform allows you to draw a Game Object to the BitmapData, using its `worldTransform` property to control the location, scaling and rotation of the object. You can optionally provide
|
||||
* BitmapData.drawGroup now uses the new `copyTransform` method, to provide for far more accurate results. Previously nested Game Objects wouldn't render correctly, nor would Sprites added via `addChild` to another Sprite. BitmapText objects also rendered without rotation taken into account, and the Sprites smoothing property was ignored. All of these things are now covered by the new drawGroup method, which also handles full deep iteration down the display list.
|
||||
* Added the following new constants: `Phaser.TOP_LEFT`, `Phaser.TOP_CENTER`, `Phaser.TOP_RIGHT`, `Phaser.LEFT_TOP`, `Phaser.LEFT_CENTER`, `Phaser.LEFT_BOTTOM`, `Phaser.CENTER`, `Phaser.RIGHT_TOP`, `Phaser.RIGHT_CENTER`, `Phaser.RIGHT_BOTTOM`, `Phaser.BOTTOM_LEFT`, `Phaser.BOTTOM_CENTER` and `Phaser.BOTTOM_RIGHT`.
|
||||
* Rectangle.getPoint is a new method that returns a point based on the given position constant, such as `Phaser.BOTTOM_LEFT`. It returns the same result as calling `Rectangle.bottomLeft` (etc) but unlike those getters you are able to provide your own Point object.
|
||||
* The Game Object Bounds component has been updated to include two new properties: `centerX` and `centerY`. This means you can, for example, now get the horizontal center of a Sprite by called `Sprite.centerX`. These properties are also setters, so you can position the Game Objects, and it will take scale and anchor into consideration.
|
||||
* All Game Objects with the Bounds component; which includes Sprites, Images, Text, BitmapText, TileSprites and anything that extend these, now have the new method `alignIn`. It allows you to align the Game Object within another Game Object, or a Rectangle. You can specify one of 9 positions which are the new position constants such as: `Phaser.TOP_LEFT` or `Phaser.CENTER` (see above for the complete list). The Game Objects are positioned based on their Bounds, which takes rotation, scaling and anchor into consideration. You can easily place Sprites into the corners of the screen, or game world, or align them within other Sprites, using this method.
|
||||
* All Game Objects with the Bounds component; which includes Sprites, Images, Text, BitmapText, TileSprites and anything that extend these, now have the new method `alignTo`. It allows you to align a Game Object to the side of another Game Object, or a Rectangle. You can specify one of 11 positions which are the new position constants such as: `Phaser.TOP_LEFT` or `Phaser.LEFT_BOTTOM` (see above for the complete list). The Game Objects are positioned based on their Bounds, which takes rotation, scaling and anchor into consideration. You can easily align Sprites next to other Sprites using this method.
|
||||
* Group.align is a new method that allows you to layout all the children of the Group in a grid formation. You can specify the dimensions of the grid, including the width, height and cell size. You can also control where children are positioned within each grid cell. The grid width and height values can also be set to -1, making them fluid, so the grid expands until all children are aligned. Finally an optional child index argument can be set. This is a great way to quickly and comprehensively align Group children, and has lots of use cases.
|
||||
* The Arcade Physics Body has two new experimental methods: `moveTo` and `moveFrom`. These allow you to move a Physics Body for a given distance, or duration, after which it will stop and emit the `onMoveComplete` Signal. It is still capable of colliding and rebounding like usual.
|
||||
|
||||
### Updates
|
||||
|
||||
* TypeScript definitions fixes and updates (thanks @wingyplus @monagames @marineorganism @obamor @BaroqueEngine @danzel)
|
||||
* Docs typo fixes (thanks @seanirby @johnrees)
|
||||
* The TypeScript defs ambient declaration has been updated to make it compatible with the SystemJS loader (thanks @monagames)
|
||||
* You can no longer intersect check a Body against itself (thanks @VitaZheltyakov #2514)
|
||||
* The mobile template has been updated (thanks @cryptographer #2518)
|
||||
* Video.onComplete wouldn't fire on iOS if the user hit the 'Done' button before the video had finished playing. It now uses the `webkitendfullscreen` event to detect this, and dispatches the `onComplete` signal should that event fire (thanks @kelu-smiley #2498)
|
||||
* Sound.addMarker now has a default value for the `duration` argument (1 second) to avoid the DOM Exception 11 error if you accidentally miss it out (thanks @mari8i #2508)
|
||||
* Removed the `Stage.updateTransform` calls from the main game loop, because it happens automatically as part of `Game.updateLogic` anyway, so was duplicating the workload for no reason.
|
||||
* TilemapLayer.postUpdate could potentially be called several times per frame (depending on device frame rate), which would cause multiple texture redraws, even though only the last texture is used during rendering. This has now been modified so that the local TilemapLayer canvas is only re-rendered once per frame, during the rendering phase, and not during the logic update phase.
|
||||
* Group.preUpdate now iterate through the display list forwards, instead of in reverse, to match it with how `Stage.preUpdate` works.
|
||||
* Stage.postUpdate is now a lot smaller, with no conditional branching if there is a Camera Target or not.
|
||||
* Within RequestAnimationFrame both `updateRAF` and `updateSetTimeout` now only call `game.update` if `isRunning` is true. This should avoid asynchronous Game destroy errors under environments like Angular (thanks @flogvit #2521)
|
||||
* Group.removeAll has a new argument `destroyTexture` which allows you to optionally destroy the BaseTexture of each child, as it is removed from the Group (thanks @stoneman1 #2487)
|
||||
* PluginManager.remove has a new argument `destroy` (defaults to `true`) which will let you optionally called the `destroy` method of the Plugin being removed.
|
||||
* Cache.getJSON used to incorrectly bring back a deep-copy of the Phaser.Utils object, instead of just a clone of the JSON object requested (thanks @drhayes #2524 #2526)
|
||||
* The `DisplayObject.renderOrderID` used to run in reverse. I.e. in a display list with 10 sprites on it, the first sprite (at the bottom of the list, rendering behind all the others) would have a `renderOrderID` of 9, where-as the top-most sprite, rendering above all others, would have a `renderOrderID` of 0. While this didn't cause any side-effects internally, it's arguably illogical. So the process has been reversed, and `renderOrderID`s are now accumulative, starting at zero each frame, and increasing as it iterates down the display list. So the higher the ID, the more "on-top" of the output the object is.
|
||||
* `InputHandler.validForInput` and `Pointer.processInteractiveObjects` have been updated to reflect the new `renderOrderID` sequence (see above).
|
||||
* Group.add has a new optional argument `index` which controls the index within the group to insert the child to. Where 0 is the bottom of the Group.
|
||||
* Group.addAt has been refactored to be a simple call to `Group.add`, removing lots of duplicate code in the process.
|
||||
* Group.create has a new optional argument `index` which controls the index within the group to insert the child to. Where 0 is the bottom of the Group. It also now makes proper use of `Group.add`, cutting down on more duplicate code.
|
||||
* Group.createMultiple now returns an Array containing references to all of the children that the method created.
|
||||
* Cache.getJSON will now return an Array if the `key` you provided points to an array instead of an Object (thanks @drhayes #2552 #2551)
|
||||
* Phaser.Matrix if passed a 0 value would consider it falsy, and replace it with the default by mistake. It now checks if the arguments are `undefined` or `null` and only then sets the defaults (thanks mmcs)
|
||||
* Group.createMultiple can now accept Arrays for both the `key` and `frame` arguments. This allows you to create multiple sprites using each key and/or frame in the arrays, which is a great and quick way to build diverse Groups. See the JSDocs for complete details and code examples.
|
||||
* The Game Object Bounds component has been updated so that it now provides setters for all of the properties, as well as getters. Previously `Sprite.left`, `Sprite.right`, `Sprite.top` and `Sprite.bottom` were read-only, but they are now available to be set as well, and take into consideration the anchor and scale of the Game Objects.
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Arcade Physics Body incorrectly positioned if the Sprite had a negative scale (see http://www.html5gamedevs.com/topic/22695-247-248-body-anchoring-any-migration-tips/) (thanks @SBCGames @icameron @Nuuf @EvolViper #2488 #2490)
|
||||
* InputHandler.checkPointerDown had an incorrect single pipe character |, instead of an OR check ||, and an `isDown` check, causing Button Over events to fail (thanks @pengchuan #2486)
|
||||
* BitmapText objects with lines greater than `maxWidth` now handle alignment values correctly, causing them to properly center align (thanks @kevinleedrum #2499 @crippledcactus #2496)
|
||||
* Text has a new private method `measureLine` which is used to calculate the final Text line length, after factoring in color stops and other style changes. This should prevent characters from becoming truncated (thanks @TadejZupancic #2519 #2512)
|
||||
* Sometimes the browser would cause a race condition where any connected Game Pads were being detected before the callback had a chance to be established. Also sometimes the rawPad references would become stale, and are now checked constantly (thanks @cwleonard #2471)
|
||||
* Sound.isPlaying was set to false when doing an audio loop, but never set back to true if it's a sound not using a marker (thanks @TheJasonReynolds #2529)
|
||||
* Phaser.Rectangle.aabb would fail if the Rectangles used negative offsets. It now calculates the bounds accurately (thanks @fillmoreb #2545)
|
||||
* The `DisplayObject.worldRotation` value didn't sign the `wt.c` value correctly, meaning the rotation would be wrong.
|
||||
* The `DisplayObject.worldScale` value didn't multiply the local objects scale into the calculation, meaning the value wasn't a true representation of the objects world scale.
|
||||
|
||||
## Version 2.4.8 - "Watch Hill" - 19th May 2016
|
||||
|
||||
### New Features
|
||||
|
|
|
@ -44,12 +44,15 @@ Phaser 2.4.9 is the latest version of Phaser, and represents another significant
|
|||
|
||||
As well as fixing a number of issues, there are some genuinely useful new features added in this release. Not least of which includes the new Weapons Plugin, making creating bullet pools a couple lines of code. Don't worry, it's also easy to exclude from custom builds too.
|
||||
|
||||
There are also some subtle but significant updates to Groups. The `createMultiple` method has had a nice overhaul, now able to take Arrays of image keys and frames. `Group.align` allows you to align the children of a Group in a grid formation, with the dimensions and spacing of the grid under your control. Continuing on that theme, all Game Objects (such as Sprites) now have a new method `alignIn`, which allows you to easily align them within another Game Object, or Rectangle. Making it now trivial to do things like placing sprites into the corners of the game world, or each other.
|
||||
There are also some subtle but significant updates to Groups. The `createMultiple` method has had a nice overhaul, now able to take Arrays of image keys and frames. `Group.align` allows you to align the children of a Group in a grid formation, with the dimensions and spacing of the grid under your control.
|
||||
|
||||
Continuing from that theme: all Game Objects (such as Sprites and Text) now have a two new methods. `alignIn` allows you to easily align Game Objects within another Game Object or Rectangle. This is a great way to easily align a Sprite into the corner of the world, or another Sprite. To go with this is `alignTo`. It works in a similar way, but lets you align Game Objects next to each other.
|
||||
|
||||
As always, keep you eyes on the Phaser web site and read our weekly [newsletter](#newsletter). You can also follow me on [Twitter](https://twitter.com/photonstorm) or chat to me in the Phaser [Slack](http://phaser.io/news/2015/08/phaser-slack-channel) channel.
|
||||
It's small changes like this that reduce the overall code of your game, and let you focus on just building it quicker. Of course there are _lots_ of other enhancements in this release, so be sure to check the [Change Log](#change-log) to see what else is in store.
|
||||
|
||||
We'd be extremely grateful if you could get involved with our [Phaser Patreon campaign](https://www.patreon.com/photonstorm). The uptake so far has been fantastic. Thank you to everyone who now supports Phaser development and shares our belief in the future of HTML5 gaming, and Phasers role in that.
|
||||
As always, keep you eyes on the Phaser web site, and subscribe to our weekly [newsletter](#newsletter). You can also follow me on [Twitter](https://twitter.com/photonstorm) or chat to me in the Phaser [Slack](http://phaser.io/community/slack) channel.
|
||||
|
||||
There are also now more ways than before to help [support](#support) the development of Phaser. The uptake so far has been fantastic, but this is an on-going mission. Thank you to everyone who supports our development. Who shares our belief in the future of HTML5 gaming, and Phasers role in that.
|
||||
|
||||
Happy coding everyone! See you on the forums.
|
||||
|
||||
|
|
|
@ -36,8 +36,8 @@
|
|||
"typescript": {
|
||||
"definitions": [
|
||||
"typescript/p2.d.ts",
|
||||
"typescript/phaser.comments.d.ts",
|
||||
"typescript/pixi.comments.d.ts"
|
||||
"typescript/phaser.d.ts",
|
||||
"typescript/pixi.d.ts"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
39
build/custom/phaser-arcade-physics.min.js
vendored
39
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.9 "Four Kings" - Built: Fri Jun 10 2016 16:18:29
|
||||
* v2.4.9 "Four Kings" - Built: Thu Jun 16 2016 23:03:02
|
||||
*
|
||||
* By Richard Davey http://www.photonstorm.com @photonstorm
|
||||
*
|
||||
|
@ -631,12 +631,11 @@ PIXI.DisplayObject.prototype.updateTransform = function(parent)
|
|||
wt.ty = tx * pt.b + ty * pt.d + pt.ty;
|
||||
}
|
||||
|
||||
// multiply the alphas..
|
||||
// Set the World values
|
||||
this.worldAlpha = this.alpha * p.worldAlpha;
|
||||
|
||||
this.worldPosition.set(wt.tx, wt.ty);
|
||||
this.worldScale.set(Math.sqrt(wt.a * wt.a + wt.b * wt.b), Math.sqrt(wt.c * wt.c + wt.d * wt.d));
|
||||
this.worldRotation = Math.atan2(wt.c, wt.d);
|
||||
this.worldScale.set(this.scale.x * Math.sqrt(wt.a * wt.a + wt.c * wt.c), this.scale.y * Math.sqrt(wt.b * wt.b + wt.d * wt.d));
|
||||
this.worldRotation = Math.atan2(-wt.c, wt.d);
|
||||
|
||||
// reset the bounds each time this is called!
|
||||
this._currentBounds = null;
|
||||
|
@ -1551,6 +1550,15 @@ PIXI.Sprite = function(texture)
|
|||
*/
|
||||
this.shader = null;
|
||||
|
||||
/**
|
||||
* Controls if this Sprite is processed by the core Phaser game loops and Group loops.
|
||||
*
|
||||
* @property exists
|
||||
* @type Boolean
|
||||
* @default true
|
||||
*/
|
||||
this.exists = true;
|
||||
|
||||
if (this.texture.baseTexture.hasLoaded)
|
||||
{
|
||||
this.onTextureUpdate();
|
||||
|
@ -7963,7 +7971,7 @@ var Phaser = Phaser || {
|
|||
* @constant
|
||||
* @type {string}
|
||||
*/
|
||||
VERSION: '2.4.9 RC4',
|
||||
VERSION: '2.4.9',
|
||||
|
||||
/**
|
||||
* An array of Phaser game instances.
|
||||
|
@ -8329,6 +8337,97 @@ var Phaser = Phaser || {
|
|||
*/
|
||||
ANGLE_SOUTH_WEST: 135,
|
||||
|
||||
/**
|
||||
* A constant representing a top-left alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
TOP_LEFT: 0,
|
||||
|
||||
/**
|
||||
* A constant representing a top-center alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
TOP_CENTER: 1,
|
||||
|
||||
/**
|
||||
* A constant representing a top-right alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
TOP_RIGHT: 2,
|
||||
|
||||
/**
|
||||
* A constant representing a left-top alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
LEFT_TOP: 3,
|
||||
|
||||
/**
|
||||
* A constant representing a left-center alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
LEFT_CENTER: 4,
|
||||
|
||||
/**
|
||||
* A constant representing a left-bottom alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
LEFT_BOTTOM: 5,
|
||||
|
||||
/**
|
||||
* A constant representing a center alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
CENTER: 6,
|
||||
|
||||
/**
|
||||
* A constant representing a right-top alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
RIGHT_TOP: 7,
|
||||
|
||||
/**
|
||||
* A constant representing a right-center alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
RIGHT_CENTER: 8,
|
||||
|
||||
/**
|
||||
* A constant representing a right-bottom alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
RIGHT_BOTTOM: 9,
|
||||
|
||||
/**
|
||||
* A constant representing a bottom-left alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
BOTTOM_LEFT: 10,
|
||||
|
||||
/**
|
||||
* A constant representing a bottom-center alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
BOTTOM_CENTER: 11,
|
||||
|
||||
/**
|
||||
* A constant representing a bottom-right alignment or position.
|
||||
* @constant
|
||||
* @type {integer}
|
||||
*/
|
||||
BOTTOM_RIGHT: 12,
|
||||
|
||||
/**
|
||||
* Various blend modes supported by Pixi.
|
||||
*
|
||||
|
@ -10613,21 +10712,21 @@ Phaser.Line.reflect = function (a, b) {
|
|||
*
|
||||
* @class Phaser.Matrix
|
||||
* @constructor
|
||||
* @param {number} [a=1]
|
||||
* @param {number} [b=0]
|
||||
* @param {number} [c=0]
|
||||
* @param {number} [d=1]
|
||||
* @param {number} [tx=0]
|
||||
* @param {number} [ty=0]
|
||||
* @param {number} [a=1] - Horizontal scaling
|
||||
* @param {number} [b=0] - Horizontal skewing
|
||||
* @param {number} [c=0] - Vertical skewing
|
||||
* @param {number} [d=1] - Vertical scaling
|
||||
* @param {number} [tx=0] - Horizontal translation
|
||||
* @param {number} [ty=0] - Vertical translation
|
||||
*/
|
||||
Phaser.Matrix = function (a, b, c, d, tx, ty) {
|
||||
|
||||
a = a || 1;
|
||||
b = b || 0;
|
||||
c = c || 0;
|
||||
d = d || 1;
|
||||
tx = tx || 0;
|
||||
ty = ty || 0;
|
||||
if (a === undefined || a === null) { a = 1; }
|
||||
if (b === undefined || b === null) { b = 0; }
|
||||
if (c === undefined || c === null) { c = 0; }
|
||||
if (d === undefined || d === null) { d = 1; }
|
||||
if (tx === undefined || tx === null) { tx = 0; }
|
||||
if (ty === undefined || ty === null) { ty = 0; }
|
||||
|
||||
/**
|
||||
* @property {number} a
|
||||
|
@ -10701,12 +10800,12 @@ Phaser.Matrix.prototype = {
|
|||
* Sets the values of this Matrix to the given values.
|
||||
*
|
||||
* @method Phaser.Matrix#setTo
|
||||
* @param {number} a
|
||||
* @param {number} b
|
||||
* @param {number} c
|
||||
* @param {number} d
|
||||
* @param {number} tx
|
||||
* @param {number} ty
|
||||
* @param {number} a - Horizontal scaling
|
||||
* @param {number} b - Horizontal skewing
|
||||
* @param {number} c - Vertical skewing
|
||||
* @param {number} d - Vertical scaling
|
||||
* @param {number} tx - Horizontal translation
|
||||
* @param {number} ty - Vertical translation
|
||||
* @return {Phaser.Matrix} This Matrix object.
|
||||
*/
|
||||
setTo: function (a, b, c, d, tx, ty) {
|
||||
|
@ -12576,6 +12675,59 @@ Phaser.Rectangle.prototype = {
|
|||
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns a point based on the given position constant, which can be one of:
|
||||
*
|
||||
* `Phaser.TOP_LEFT`, `Phaser.TOP_CENTER`, `Phaser.TOP_RIGHT`, `Phaser.LEFT_CENTER`,
|
||||
* `Phaser.CENTER`, `Phaser.RIGHT_CENTER`, `Phaser.BOTTOM_LEFT`, `Phaser.BOTTOM_CENTER`
|
||||
* and `Phaser.BOTTOM_RIGHT`.
|
||||
*
|
||||
* This method returns the same values as calling Rectangle.bottomLeft, etc, but those
|
||||
* calls always create a new Point object, where-as this one allows you to use your own.
|
||||
*
|
||||
* @method Phaser.Rectangle#getPoint
|
||||
* @param {integer} [position] - One of the Phaser position constants, such as `Phaser.TOP_RIGHT`.
|
||||
* @param {Phaser.Point} [out] - A Phaser.Point that the values will be set in.
|
||||
* If no object is provided a new Phaser.Point object will be created. In high performance areas avoid this by re-using an existing object.
|
||||
* @return {Phaser.Point} An object containing the point in its `x` and `y` properties.
|
||||
*/
|
||||
getPoint: function (position, out) {
|
||||
|
||||
if (out === undefined) { out = new Phaser.Point(); }
|
||||
|
||||
switch (position)
|
||||
{
|
||||
default:
|
||||
case Phaser.TOP_LEFT:
|
||||
return out.set(this.x, this.y);
|
||||
|
||||
case Phaser.TOP_CENTER:
|
||||
return out.set(this.centerX, this.y);
|
||||
|
||||
case Phaser.TOP_RIGHT:
|
||||
return out.set(this.right, this.y);
|
||||
|
||||
case Phaser.LEFT_CENTER:
|
||||
return out.set(this.x, this.centerY);
|
||||
|
||||
case Phaser.CENTER:
|
||||
return out.set(this.centerX, this.centerY);
|
||||
|
||||
case Phaser.RIGHT_CENTER:
|
||||
return out.set(this.right, this.centerY);
|
||||
|
||||
case Phaser.BOTTOM_LEFT:
|
||||
return out.set(this.x, this.bottom);
|
||||
|
||||
case Phaser.BOTTOM_CENTER:
|
||||
return out.set(this.centerX, this.bottom);
|
||||
|
||||
case Phaser.BOTTOM_RIGHT:
|
||||
return out.set(this.right, this.bottom);
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns a string representation of this object.
|
||||
* @method Phaser.Rectangle#toString
|
||||
|
@ -17634,10 +17786,36 @@ Phaser.Group.prototype.create = function (x, y, key, frame, exists, index) {
|
|||
|
||||
/**
|
||||
* Creates multiple Phaser.Sprite objects and adds them to the top of this Group.
|
||||
*
|
||||
* This method is useful if you need to quickly generate a pool of sprites, such as bullets.
|
||||
*
|
||||
* Use {@link #classType} to change the type of object created.
|
||||
*
|
||||
* This method is useful if you need to quickly generate a pool of identical sprites, such as bullets.
|
||||
* You can provide an array as the `key` and / or `frame` arguments. When you do this
|
||||
* it will create `quantity` Sprites for every key (and frame) in the arrays.
|
||||
*
|
||||
* For example:
|
||||
*
|
||||
* `createMultiple(25, ['ball', 'carrot'])`
|
||||
*
|
||||
* In the above code there are 2 keys (ball and carrot) which means that 50 sprites will be
|
||||
* created in total, 25 of each. You can also have the `frame` as an array:
|
||||
*
|
||||
* `createMultiple(5, 'bricks', [0, 1, 2, 3])`
|
||||
*
|
||||
* In the above there is one key (bricks), which is a sprite sheet. The frames array tells
|
||||
* this method to use frames 0, 1, 2 and 3. So in total it will create 20 sprites, because
|
||||
* the quantity was set to 5, so that is 5 brick sprites of frame 0, 5 brick sprites with
|
||||
* frame 1, and so on.
|
||||
*
|
||||
* If you set both the key and frame arguments to be arrays then understand it will create
|
||||
* a total quantity of sprites equal to the size of both arrays times each other. I.e.:
|
||||
*
|
||||
* `createMultiple(20, ['diamonds', 'balls'], [0, 1, 2])`
|
||||
*
|
||||
* The above will create 20 'diamonds' of frame 0, 20 with frame 1 and 20 with frame 2.
|
||||
* It will then create 20 'balls' of frame 0, 20 with frame 1 and 20 with frame 2.
|
||||
* In total it will have created 120 sprites.
|
||||
*
|
||||
* By default the Sprites will have their `exists` property set to `false`, and they will be
|
||||
* positioned at 0x0, relative to the `Group.x / y` values.
|
||||
|
@ -17648,21 +17826,41 @@ Phaser.Group.prototype.create = function (x, y, key, frame, exists, index) {
|
|||
*
|
||||
* @method Phaser.Group#createMultiple
|
||||
* @param {integer} quantity - The number of Sprites to create.
|
||||
* @param {string} key - The Game.cache key of the image that this Sprite will use.
|
||||
* @param {integer|string} [frame] - If the Sprite image contains multiple frames you can specify which one to use here.
|
||||
* @param {string|array} key - The Cache key of the image that the Sprites will use. Or an Array of keys. See the description for details on how the quantity applies when arrays are used.
|
||||
* @param {integer|string|array} [frame=0] - If the Sprite image contains multiple frames you can specify which one to use here. Or an Array of frames. See the description for details on how the quantity applies when arrays are used.
|
||||
* @param {boolean} [exists=false] - The default exists state of the Sprite.
|
||||
* @return {array} An array containing all of the Sprites that were created.
|
||||
*/
|
||||
Phaser.Group.prototype.createMultiple = function (quantity, key, frame, exists) {
|
||||
|
||||
if (frame === undefined) { frame = 0; }
|
||||
if (exists === undefined) { exists = false; }
|
||||
|
||||
if (!Array.isArray(key))
|
||||
{
|
||||
key = [ key ];
|
||||
}
|
||||
|
||||
if (!Array.isArray(frame))
|
||||
{
|
||||
frame = [ frame ];
|
||||
}
|
||||
|
||||
var _this = this;
|
||||
var children = [];
|
||||
|
||||
for (var i = 0; i < quantity; i++)
|
||||
{
|
||||
children.push(this.create(0, 0, key, frame, exists));
|
||||
}
|
||||
key.forEach(function(singleKey) {
|
||||
|
||||
frame.forEach(function(singleFrame) {
|
||||
|
||||
for (var i = 0; i < quantity; i++)
|
||||
{
|
||||
children.push(_this.create(0, 0, singleKey, singleFrame, exists));
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
return children;
|
||||
|
||||
|
@ -17687,6 +17885,125 @@ Phaser.Group.prototype.updateZ = function () {
|
|||
|
||||
};
|
||||
|
||||
/**
|
||||
* This method iterates through all children in the Group (regardless if they are visible or exist)
|
||||
* and then changes their position so they are arranged in a Grid formation. Children must have
|
||||
* the `alignTo` method in order to be positioned by this call. All default Phaser Game Objects have
|
||||
* this.
|
||||
*
|
||||
* The grid dimensions are determined by the first four arguments. The `rows` and `columns` arguments
|
||||
* relate to the width and height of the grid respectively.
|
||||
*
|
||||
* For example if the Group had 100 children in it:
|
||||
*
|
||||
* `Group.align(10, 10, 32, 32)`
|
||||
*
|
||||
* This will align all of the children into a grid formation of 10x10, using 32 pixels per
|
||||
* grid cell. If you want a wider grid, you could do:
|
||||
*
|
||||
* `Group.align(25, 4, 32, 32)`
|
||||
*
|
||||
* This will align the children into a grid of 25x4, again using 32 pixels per grid cell.
|
||||
*
|
||||
* You can choose to set _either_ the `rows` or `columns` value to -1. Doing so tells the method
|
||||
* to keep on aligning children until there are no children left. For example if this Group had
|
||||
* 48 children in it, the following:
|
||||
*
|
||||
* `Group.align(-1, 8, 32, 32)`
|
||||
*
|
||||
* ... will align the children so that there are 8 columns vertically (the second argument),
|
||||
* and each row will contain 6 sprites, except the last one, which will contain 5 (totaling 48)
|
||||
*
|
||||
* You can also do:
|
||||
*
|
||||
* `Group.align(10, -1, 32, 32)`
|
||||
*
|
||||
* In this case it will create a grid 10 wide, and as tall as it needs to be in order to fit
|
||||
* all of the children in.
|
||||
*
|
||||
* The `position` property allows you to control where in each grid cell the child is positioned.
|
||||
* This is a constant and can be one of `Phaser.TOP_LEFT` (default), `Phaser.TOP_CENTER`,
|
||||
* `Phaser.TOP_RIGHT`, `Phaser.LEFT_CENTER`, `Phaser.CENTER`, `Phaser.RIGHT_CENTER`,
|
||||
* `Phaser.BOTTOM_LEFT`, `Phaser.BOTTOM_CENTER` or `Phaser.BOTTOM_RIGHT`.
|
||||
*
|
||||
* The final argument; `offset` lets you start the alignment from a specific child index.
|
||||
*
|
||||
* @method Phaser.Group#align
|
||||
* @param {integer} rows - The number of rows, or width, of the grid. Set to -1 for a dynamic width.
|
||||
* @param {integer} columns - The number of columns, or height, of the grid. Set to -1 for a dynamic height.
|
||||
* @param {integer} cellWidth - The width of each grid cell, in pixels.
|
||||
* @param {integer} cellHeight - The height of each grid cell, in pixels.
|
||||
* @param {integer} [position] - The position constant. One of `Phaser.TOP_LEFT` (default), `Phaser.TOP_CENTER`, `Phaser.TOP_RIGHT`, `Phaser.LEFT_CENTER`, `Phaser.CENTER`, `Phaser.RIGHT_CENTER`, `Phaser.BOTTOM_LEFT`, `Phaser.BOTTOM_CENTER` or `Phaser.BOTTOM_RIGHT`.
|
||||
* @param {integer} [offset=0] - Optional index to start the alignment from. Defaults to zero, the first child in the Group, but can be set to any valid child index value.
|
||||
*/
|
||||
Phaser.Group.prototype.align = function (rows, columns, cellWidth, cellHeight, position, offset) {
|
||||
|
||||
if (position === undefined) { position = Phaser.TOP_LEFT; }
|
||||
if (offset === undefined) { offset = 0; }
|
||||
|
||||
if (this.children.length === 0 || offset > this.children.length || (rows === -1 && columns === -1))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var r = new Phaser.Rectangle(0, 0, cellWidth, cellHeight);
|
||||
var w = (rows * cellWidth);
|
||||
var h = (columns * cellHeight);
|
||||
|
||||
for (var i = offset; i < this.children.length; i++)
|
||||
{
|
||||
var child = this.children[i];
|
||||
|
||||
if (child['alignIn'])
|
||||
{
|
||||
child.alignIn(r, position);
|
||||
}
|
||||
else
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (rows === -1)
|
||||
{
|
||||
// We keep laying them out horizontally until we've done them all
|
||||
r.y += cellHeight;
|
||||
|
||||
if (r.y === h)
|
||||
{
|
||||
r.x += cellWidth;
|
||||
r.y = 0;
|
||||
}
|
||||
}
|
||||
else if (columns === -1)
|
||||
{
|
||||
// We keep laying them out vertically until we've done them all
|
||||
r.x += cellWidth;
|
||||
|
||||
if (r.x === w)
|
||||
{
|
||||
r.x = 0;
|
||||
r.y += cellHeight;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// We keep laying them out until we hit the column limit
|
||||
if (r.x === w)
|
||||
{
|
||||
r.x = 0;
|
||||
r.y += cellHeight;
|
||||
|
||||
if (r.y === h)
|
||||
{
|
||||
// We've hit the column limit, so return, even if there are children left
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Sets the group cursor to the first child in the group.
|
||||
*
|
||||
|
@ -27439,12 +27756,55 @@ Phaser.Component.Bounds.prototype = {
|
|||
|
||||
},
|
||||
|
||||
/**
|
||||
* The center x coordinate of the Game Object.
|
||||
* This is the same as `(x - offsetX) + (width / 2)`.
|
||||
*
|
||||
* @property {number} centerX
|
||||
*/
|
||||
centerX: {
|
||||
|
||||
get: function () {
|
||||
|
||||
return (this.x - this.offsetX) + (this.width * 0.5);
|
||||
|
||||
},
|
||||
|
||||
set: function (value) {
|
||||
|
||||
this.x = (value + this.offsetX) - (this.width * 0.5);
|
||||
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* The center y coordinate of the Game Object.
|
||||
* This is the same as `(y - offsetY) + (height / 2)`.
|
||||
*
|
||||
* @property {number} centerY
|
||||
*/
|
||||
centerY: {
|
||||
|
||||
get: function () {
|
||||
|
||||
return (this.y - this.offsetY) + (this.height * 0.5);
|
||||
|
||||
},
|
||||
|
||||
set: function (value) {
|
||||
|
||||
this.y = (value + this.offsetY) - (this.height * 0.5);
|
||||
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* The left coordinate of the Game Object.
|
||||
* This is the same as `x - offsetX`.
|
||||
*
|
||||
* @property {number} left
|
||||
* @readOnly
|
||||
*/
|
||||
left: {
|
||||
|
||||
|
@ -27452,6 +27812,12 @@ Phaser.Component.Bounds.prototype = {
|
|||
|
||||
return this.x - this.offsetX;
|
||||
|
||||
},
|
||||
|
||||
set: function (value) {
|
||||
|
||||
this.x = value + this.offsetX;
|
||||
|
||||
}
|
||||
|
||||
},
|
||||
|
@ -27461,7 +27827,6 @@ Phaser.Component.Bounds.prototype = {
|
|||
* This is the same as `x + width - offsetX`.
|
||||
*
|
||||
* @property {number} right
|
||||
* @readOnly
|
||||
*/
|
||||
right: {
|
||||
|
||||
|
@ -27469,6 +27834,12 @@ Phaser.Component.Bounds.prototype = {
|
|||
|
||||
return (this.x + this.width) - this.offsetX;
|
||||
|
||||
},
|
||||
|
||||
set: function (value) {
|
||||
|
||||
this.x = value - (this.width) + this.offsetX;
|
||||
|
||||
}
|
||||
|
||||
},
|
||||
|
@ -27478,7 +27849,6 @@ Phaser.Component.Bounds.prototype = {
|
|||
* This is the same as `y - offsetY`.
|
||||
*
|
||||
* @property {number} top
|
||||
* @readOnly
|
||||
*/
|
||||
top: {
|
||||
|
||||
|
@ -27486,6 +27856,12 @@ Phaser.Component.Bounds.prototype = {
|
|||
|
||||
return this.y - this.offsetY;
|
||||
|
||||
},
|
||||
|
||||
set: function (value) {
|
||||
|
||||
this.y = value + this.offsetY;
|
||||
|
||||
}
|
||||
|
||||
},
|
||||
|
@ -27495,7 +27871,6 @@ Phaser.Component.Bounds.prototype = {
|
|||
* This is the same as `y + height - offsetY`.
|
||||
*
|
||||
* @property {number} bottom
|
||||
* @readOnly
|
||||
*/
|
||||
bottom: {
|
||||
|
||||
|
@ -27503,8 +27878,224 @@ Phaser.Component.Bounds.prototype = {
|
|||
|
||||
return (this.y + this.height) - this.offsetY;
|
||||
|
||||
},
|
||||
|
||||
set: function (value) {
|
||||
|
||||
this.y = value - (this.height) + this.offsetY;
|
||||
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* Aligns this Game Object within another Game Object, or Rectangle, known as the
|
||||
* 'container', to one of 9 possible positions.
|
||||
*
|
||||
* The container must be a Game Object, or Phaser.Rectangle object. This can include properties
|
||||
* such as `World.bounds` or `Camera.view`, for aligning Game Objects within the world
|
||||
* and camera bounds. Or it can include other Sprites, Images, Text objects, BitmapText,
|
||||
* TileSprites or Buttons.
|
||||
*
|
||||
* Please note that aligning a Sprite to another Game Object does **not** make it a child of
|
||||
* the container. It simply modifies its position coordinates so it aligns with it.
|
||||
*
|
||||
* The position constants you can use are:
|
||||
*
|
||||
* `Phaser.TOP_LEFT`, `Phaser.TOP_CENTER`, `Phaser.TOP_RIGHT`, `Phaser.LEFT_CENTER`,
|
||||
* `Phaser.CENTER`, `Phaser.RIGHT_CENTER`, `Phaser.BOTTOM_LEFT`,
|
||||
* `Phaser.BOTTOM_CENTER` and `Phaser.BOTTOM_RIGHT`.
|
||||
*
|
||||
* The Game Objects are placed in such a way that their _bounds_ align with the
|
||||
* container, taking into consideration rotation, scale and the anchor property.
|
||||
* This allows you to neatly align Game Objects, irrespective of their position value.
|
||||
*
|
||||
* The optional `offsetX` and `offsetY` arguments allow you to apply extra spacing to the final
|
||||
* aligned position of the Game Object. For example:
|
||||
*
|
||||
* `sprite.alignIn(background, Phaser.BOTTOM_RIGHT, -20, -20)`
|
||||
*
|
||||
* Would align the `sprite` to the bottom-right, but moved 20 pixels in from the corner.
|
||||
* Think of the offsets as applying an adjustment to the containers bounds before the alignment takes place.
|
||||
* So providing a negative offset will 'shrink' the container bounds by that amount, and providing a positive
|
||||
* one expands it.
|
||||
*
|
||||
* @method
|
||||
* @param {Phaser.Rectangle|Phaser.Sprite|Phaser.Image|Phaser.Text|Phaser.BitmapText|Phaser.Button|Phaser.Graphics|Phaser.TileSprite} container - The Game Object or Rectangle with which to align this Game Object to. Can also include properties such as `World.bounds` or `Camera.view`.
|
||||
* @param {integer} [position] - The position constant. One of `Phaser.TOP_LEFT` (default), `Phaser.TOP_CENTER`, `Phaser.TOP_RIGHT`, `Phaser.LEFT_CENTER`, `Phaser.CENTER`, `Phaser.RIGHT_CENTER`, `Phaser.BOTTOM_LEFT`, `Phaser.BOTTOM_CENTER` or `Phaser.BOTTOM_RIGHT`.
|
||||
* @param {integer} [offsetX=0] - A horizontal adjustment of the Containers bounds, applied to the aligned position of the Game Object. Use a negative value to shrink the bounds, positive to increase it.
|
||||
* @param {integer} [offsetY=0] - A vertical adjustment of the Containers bounds, applied to the aligned position of the Game Object. Use a negative value to shrink the bounds, positive to increase it.
|
||||
* @return {Object} This Game Object.
|
||||
*/
|
||||
alignIn: function (container, position, offsetX, offsetY) {
|
||||
|
||||
if (offsetX === undefined) { offsetX = 0; }
|
||||
if (offsetY === undefined) { offsetY = 0; }
|
||||
|
||||
switch (position)
|
||||
{
|
||||
default:
|
||||
case Phaser.TOP_LEFT:
|
||||
this.left = container.left - offsetX;
|
||||
this.top = container.top - offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.TOP_CENTER:
|
||||
this.centerX = container.centerX + offsetX;
|
||||
this.top = container.top - offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.TOP_RIGHT:
|
||||
this.right = container.right + offsetX;
|
||||
this.top = container.top - offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.LEFT_CENTER:
|
||||
this.left = container.left - offsetX;
|
||||
this.centerY = container.centerY + offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.CENTER:
|
||||
this.centerX = container.centerX + offsetX;
|
||||
this.centerY = container.centerY + offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.RIGHT_CENTER:
|
||||
this.right = container.right + offsetX;
|
||||
this.centerY = container.centerY + offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.BOTTOM_LEFT:
|
||||
this.left = container.left - offsetX;
|
||||
this.bottom = container.bottom + offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.BOTTOM_CENTER:
|
||||
this.centerX = container.centerX + offsetX;
|
||||
this.bottom = container.bottom + offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.BOTTOM_RIGHT:
|
||||
this.right = container.right + offsetX;
|
||||
this.bottom = container.bottom + offsetY;
|
||||
break;
|
||||
}
|
||||
|
||||
return this;
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* Aligns this Game Object to the side of another Game Object, or Rectangle, known as the
|
||||
* 'parent', in one of 11 possible positions.
|
||||
*
|
||||
* The parent must be a Game Object, or Phaser.Rectangle object. This can include properties
|
||||
* such as `World.bounds` or `Camera.view`, for aligning Game Objects within the world
|
||||
* and camera bounds. Or it can include other Sprites, Images, Text objects, BitmapText,
|
||||
* TileSprites or Buttons.
|
||||
*
|
||||
* Please note that aligning a Sprite to another Game Object does **not** make it a child of
|
||||
* the parent. It simply modifies its position coordinates so it aligns with it.
|
||||
*
|
||||
* The position constants you can use are:
|
||||
*
|
||||
* `Phaser.TOP_LEFT` (default), `Phaser.TOP_CENTER`, `Phaser.TOP_RIGHT`, `Phaser.LEFT_TOP`,
|
||||
* `Phaser.LEFT_CENTER`, `Phaser.LEFT_BOTTOM`, `Phaser.RIGHT_TOP`, `Phaser.RIGHT_CENTER`,
|
||||
* `Phaser.RIGHT_BOTTOM`, `Phaser.BOTTOM_LEFT`, `Phaser.BOTTOM_CENTER`
|
||||
* and `Phaser.BOTTOM_RIGHT`.
|
||||
*
|
||||
* The Game Objects are placed in such a way that their _bounds_ align with the
|
||||
* parent, taking into consideration rotation, scale and the anchor property.
|
||||
* This allows you to neatly align Game Objects, irrespective of their position value.
|
||||
*
|
||||
* The optional `offsetX` and `offsetY` arguments allow you to apply extra spacing to the final
|
||||
* aligned position of the Game Object. For example:
|
||||
*
|
||||
* `sprite.alignTo(background, Phaser.BOTTOM_RIGHT, -20, -20)`
|
||||
*
|
||||
* Would align the `sprite` to the bottom-right, but moved 20 pixels in from the corner.
|
||||
* Think of the offsets as applying an adjustment to the parents bounds before the alignment takes place.
|
||||
* So providing a negative offset will 'shrink' the parent bounds by that amount, and providing a positive
|
||||
* one expands it.
|
||||
*
|
||||
* @method
|
||||
* @param {Phaser.Rectangle|Phaser.Sprite|Phaser.Image|Phaser.Text|Phaser.BitmapText|Phaser.Button|Phaser.Graphics|Phaser.TileSprite} parent - The Game Object or Rectangle with which to align this Game Object to. Can also include properties such as `World.bounds` or `Camera.view`.
|
||||
* @param {integer} [position] - The position constant. One of `Phaser.TOP_LEFT`, `Phaser.TOP_CENTER`, `Phaser.TOP_RIGHT`, `Phaser.LEFT_TOP`, `Phaser.LEFT_CENTER`, `Phaser.LEFT_BOTTOM`, `Phaser.RIGHT_TOP`, `Phaser.RIGHT_CENTER`, `Phaser.RIGHT_BOTTOM`, `Phaser.BOTTOM_LEFT`, `Phaser.BOTTOM_CENTER` or `Phaser.BOTTOM_RIGHT`.
|
||||
* @param {integer} [offsetX=0] - A horizontal adjustment of the Containers bounds, applied to the aligned position of the Game Object. Use a negative value to shrink the bounds, positive to increase it.
|
||||
* @param {integer} [offsetY=0] - A vertical adjustment of the Containers bounds, applied to the aligned position of the Game Object. Use a negative value to shrink the bounds, positive to increase it.
|
||||
* @return {Object} This Game Object.
|
||||
*/
|
||||
alignTo: function (parent, position, offsetX, offsetY) {
|
||||
|
||||
if (offsetX === undefined) { offsetX = 0; }
|
||||
if (offsetY === undefined) { offsetY = 0; }
|
||||
|
||||
switch (position)
|
||||
{
|
||||
default:
|
||||
case Phaser.TOP_LEFT:
|
||||
this.left = parent.left - offsetX;
|
||||
this.bottom = parent.top - offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.TOP_CENTER:
|
||||
this.centerX = parent.centerX + offsetX;
|
||||
this.bottom = parent.top - offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.TOP_RIGHT:
|
||||
this.right = parent.right + offsetX;
|
||||
this.bottom = parent.top - offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.LEFT_TOP:
|
||||
this.right = parent.left - offsetX;
|
||||
this.top = parent.top - offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.LEFT_CENTER:
|
||||
this.right = parent.left - offsetX;
|
||||
this.centerY = parent.centerY + offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.LEFT_BOTTOM:
|
||||
this.right = parent.left - offsetX;
|
||||
this.bottom = parent.bottom + offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.RIGHT_TOP:
|
||||
this.left = parent.right + offsetX;
|
||||
this.top = parent.top - offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.RIGHT_CENTER:
|
||||
this.left = parent.right + offsetX;
|
||||
this.centerY = parent.centerY + offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.RIGHT_BOTTOM:
|
||||
this.left = parent.right + offsetX;
|
||||
this.bottom = parent.bottom + offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.BOTTOM_LEFT:
|
||||
this.left = parent.left - offsetX;
|
||||
this.top = parent.bottom + offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.BOTTOM_CENTER:
|
||||
this.centerX = parent.centerX + offsetX;
|
||||
this.top = parent.bottom + offsetY;
|
||||
break;
|
||||
|
||||
case Phaser.BOTTOM_RIGHT:
|
||||
this.right = parent.right + offsetX;
|
||||
this.top = parent.bottom + offsetY;
|
||||
break;
|
||||
}
|
||||
|
||||
return this;
|
||||
|
||||
}
|
||||
|
||||
};
|
||||
|
@ -40486,7 +41077,7 @@ Phaser.Cache.prototype = {
|
|||
* @method Phaser.Cache#getJSON
|
||||
* @param {string} key - The key of the asset to retrieve from the cache.
|
||||
* @param {boolean} [clone=false] - Return a clone of the original object (true) or a reference to it? (false)
|
||||
* @return {object} The JSON object.
|
||||
* @return {object} The JSON object, or an Array if the key points to an Array property. If the property wasn't found, it returns null.
|
||||
*/
|
||||
getJSON: function (key, clone) {
|
||||
|
||||
|
@ -40496,7 +41087,7 @@ Phaser.Cache.prototype = {
|
|||
{
|
||||
if (clone)
|
||||
{
|
||||
return Phaser.Utils.extend(true, {}, data);
|
||||
return Phaser.Utils.extend(true, Array.isArray(data) ? [] : {}, data);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
File diff suppressed because one or more lines are too long
24
build/custom/phaser-minimum.min.js
vendored
24
build/custom/phaser-minimum.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
34
build/custom/phaser-no-physics.min.js
vendored
34
build/custom/phaser-no-physics.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
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.9 "Four Kings" - Built: Fri Jun 10 2016 16:18:37
|
||||
* v2.4.9 "Four Kings" - Built: Thu Jun 16 2016 23:03:10
|
||||
*
|
||||
* By Richard Davey http://www.photonstorm.com @photonstorm
|
||||
*
|
||||
|
@ -631,12 +631,11 @@ PIXI.DisplayObject.prototype.updateTransform = function(parent)
|
|||
wt.ty = tx * pt.b + ty * pt.d + pt.ty;
|
||||
}
|
||||
|
||||
// multiply the alphas..
|
||||
// Set the World values
|
||||
this.worldAlpha = this.alpha * p.worldAlpha;
|
||||
|
||||
this.worldPosition.set(wt.tx, wt.ty);
|
||||
this.worldScale.set(Math.sqrt(wt.a * wt.a + wt.b * wt.b), Math.sqrt(wt.c * wt.c + wt.d * wt.d));
|
||||
this.worldRotation = Math.atan2(wt.c, wt.d);
|
||||
this.worldScale.set(this.scale.x * Math.sqrt(wt.a * wt.a + wt.c * wt.c), this.scale.y * Math.sqrt(wt.b * wt.b + wt.d * wt.d));
|
||||
this.worldRotation = Math.atan2(-wt.c, wt.d);
|
||||
|
||||
// reset the bounds each time this is called!
|
||||
this._currentBounds = null;
|
||||
|
@ -1551,6 +1550,15 @@ PIXI.Sprite = function(texture)
|
|||
*/
|
||||
this.shader = null;
|
||||
|
||||
/**
|
||||
* Controls if this Sprite is processed by the core Phaser game loops and Group loops.
|
||||
*
|
||||
* @property exists
|
||||
* @type Boolean
|
||||
* @default true
|
||||
*/
|
||||
this.exists = true;
|
||||
|
||||
if (this.texture.baseTexture.hasLoaded)
|
||||
{
|
||||
this.onTextureUpdate();
|
||||
|
|
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
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
37
build/phaser-creature.min.js
vendored
37
build/phaser-creature.min.js
vendored
File diff suppressed because one or more lines are too long
2445
build/phaser.js
2445
build/phaser.js
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
43
build/phaser.min.js
vendored
43
build/phaser.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
* Phaser - http://phaser.io
|
||||
*
|
||||
* v2.4.9 "Four Kings" - Built: Fri Jun 10 2016 16:18:51
|
||||
* v2.4.9 "Four Kings" - Built: Thu Jun 16 2016 23:03:25
|
||||
*
|
||||
* By Richard Davey http://www.photonstorm.com @photonstorm
|
||||
*
|
||||
|
@ -631,12 +631,11 @@ PIXI.DisplayObject.prototype.updateTransform = function(parent)
|
|||
wt.ty = tx * pt.b + ty * pt.d + pt.ty;
|
||||
}
|
||||
|
||||
// multiply the alphas..
|
||||
// Set the World values
|
||||
this.worldAlpha = this.alpha * p.worldAlpha;
|
||||
|
||||
this.worldPosition.set(wt.tx, wt.ty);
|
||||
this.worldScale.set(Math.sqrt(wt.a * wt.a + wt.b * wt.b), Math.sqrt(wt.c * wt.c + wt.d * wt.d));
|
||||
this.worldRotation = Math.atan2(wt.c, wt.d);
|
||||
this.worldScale.set(this.scale.x * Math.sqrt(wt.a * wt.a + wt.c * wt.c), this.scale.y * Math.sqrt(wt.b * wt.b + wt.d * wt.d));
|
||||
this.worldRotation = Math.atan2(-wt.c, wt.d);
|
||||
|
||||
// reset the bounds each time this is called!
|
||||
this._currentBounds = null;
|
||||
|
@ -1551,6 +1550,15 @@ PIXI.Sprite = function(texture)
|
|||
*/
|
||||
this.shader = null;
|
||||
|
||||
/**
|
||||
* Controls if this Sprite is processed by the core Phaser game loops and Group loops.
|
||||
*
|
||||
* @property exists
|
||||
* @type Boolean
|
||||
* @default true
|
||||
*/
|
||||
this.exists = true;
|
||||
|
||||
if (this.texture.baseTexture.hasLoaded)
|
||||
{
|
||||
this.onTextureUpdate();
|
||||
|
|
File diff suppressed because one or more lines are too long
4
build/pixi.min.js
vendored
4
build/pixi.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1539,7 +1601,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 Fri Jun 10 2016 16:19:29 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:49 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2755,7 +2817,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 Fri Jun 10 2016 16:19:29 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:49 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1800,7 +1862,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:29 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:49 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1284,7 +1346,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:29 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:49 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1549,7 +1611,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:29 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:49 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2031,7 +2093,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:29 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:49 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2531,7 +2593,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 Fri Jun 10 2016 16:19:29 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:49 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2037,7 +2099,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 Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:49 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1697,7 +1759,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:49 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2408,7 +2470,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-723">line 723</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-722">line 722</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2464,7 +2526,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-741">line 741</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-740">line 740</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2722,7 +2784,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-542">line 542</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-541">line 541</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2861,7 +2923,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-498">line 498</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-497">line 497</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2951,7 +3013,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-511">line 511</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-510">line 510</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3021,7 +3083,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-533">line 533</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-532">line 532</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3140,7 +3202,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-522">line 522</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-521">line 521</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3279,7 +3341,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-576">line 576</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-575">line 575</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3461,7 +3523,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-590">line 590</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-589">line 589</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3531,7 +3593,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-566">line 566</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-565">line 565</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3580,7 +3642,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 Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:49 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2750,7 +2812,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-723">line 723</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-722">line 722</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2811,7 +2873,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-741">line 741</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-740">line 740</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3380,7 +3442,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-542">line 542</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-541">line 541</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3913,7 +3975,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-533">line 533</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-532">line 532</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4950,7 +5012,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-576">line 576</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-575">line 575</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5137,7 +5199,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-590">line 590</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-589">line 589</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5212,7 +5274,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-566">line 566</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-565">line 565</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5261,7 +5323,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 Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1280,7 +1342,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1757,7 +1819,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2230,7 +2292,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1896,7 +1958,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -3107,7 +3169,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-723">line 723</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-722">line 722</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3168,7 +3230,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-741">line 741</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-740">line 740</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -6890,7 +6952,7 @@ The current drawing position is then set to (x, y).</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-533">line 533</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-532">line 532</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -8171,7 +8233,7 @@ Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-576">line 576</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-575">line 575</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -8358,7 +8420,7 @@ Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-590">line 590</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-589">line 589</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -8433,7 +8495,7 @@ Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-566">line 566</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-565">line 565</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -8552,7 +8614,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 Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1284,7 +1346,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2425,7 +2487,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 Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1753,7 +1815,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2021,7 +2083,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 Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1360,7 +1422,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 Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1697,7 +1759,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2971,7 +3033,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 Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -3088,7 +3150,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-723">line 723</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-722">line 722</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3149,7 +3211,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-741">line 741</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-740">line 740</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3728,7 +3790,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-542">line 542</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-541">line 541</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4330,7 +4392,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-533">line 533</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-532">line 532</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5402,7 +5464,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-576">line 576</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-575">line 575</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5589,7 +5651,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-590">line 590</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-589">line 589</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5664,7 +5726,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-566">line 566</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-565">line 565</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5713,7 +5775,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 Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1627,6 +1689,65 @@ To remove simply set this property to 'null'</p>
|
|||
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
</dd>
|
||||
|
||||
|
||||
|
||||
<dt>
|
||||
<h4 class="name "
|
||||
id="exists"><span class="type-signature"></span>exists<span class="type-signature"> :Boolean</span></h4>
|
||||
|
||||
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
|
||||
|
||||
<div class="description">
|
||||
<p>Controls if this Sprite is processed by the core Phaser game loops and Group loops.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dl class="details">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dt class="tag-default">Default Value:</dt>
|
||||
<dd class="tag-default"><ul class="dummy"><li>true</li></ul></dd>
|
||||
|
||||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-107">line 107</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
@ -1811,7 +1932,7 @@ this objects blend mode to NORMAL.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-139">line 139</a>
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-148">line 148</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -2795,7 +2916,7 @@ To remove a mask, set this property to null.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-120">line 120</a>
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-129">line 129</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3164,7 +3285,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-723">line 723</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-722">line 722</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3225,7 +3346,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-741">line 741</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-740">line 740</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3363,7 +3484,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-488">line 488</a>
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-497">line 497</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3503,7 +3624,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-507">line 507</a>
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-516">line 516</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4084,7 +4205,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-542">line 542</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-541">line 541</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4230,7 +4351,7 @@ on the root most object in this Sprites display list first.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-194">line 194</a>
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-203">line 203</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4688,7 +4809,7 @@ on the root most object in this Sprites display list first.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-533">line 533</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-532">line 532</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5644,7 +5765,7 @@ texture this Sprite was using.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-158">line 158</a>
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-167">line 167</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5935,7 +6056,7 @@ texture this Sprite was using.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-576">line 576</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-575">line 575</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -6122,7 +6243,7 @@ texture this Sprite was using.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-590">line 590</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-589">line 589</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -6197,7 +6318,7 @@ texture this Sprite was using.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-566">line 566</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-565">line 565</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -6246,7 +6367,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 Fri Jun 10 2016 16:19:30 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1343,7 +1405,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 Fri Jun 10 2016 16:19:31 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -3087,7 +3149,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-723">line 723</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-722">line 722</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3148,7 +3210,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-741">line 741</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-740">line 740</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3727,7 +3789,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-542">line 542</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-541">line 541</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4324,7 +4386,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-533">line 533</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-532">line 532</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5396,7 +5458,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-576">line 576</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-575">line 575</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5583,7 +5645,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-590">line 590</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-589">line 589</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5658,7 +5720,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-566">line 566</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-565">line 565</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5707,7 +5769,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 Fri Jun 10 2016 16:19:31 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:50 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1697,7 +1759,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:31 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:51 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -3073,7 +3135,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 Fri Jun 10 2016 16:19:31 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:51 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1729,6 +1791,70 @@ To remove simply set this property to 'null'</p>
|
|||
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
</dd>
|
||||
|
||||
|
||||
|
||||
<dt>
|
||||
<h4 class="name "
|
||||
id="exists"><span class="type-signature"></span>exists<span class="type-signature"> :Boolean</span></h4>
|
||||
|
||||
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
|
||||
|
||||
<div class="description">
|
||||
<p>Controls if this Sprite is processed by the core Phaser game loops and Group loops.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dl class="details">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dt class="inherited-from">Inherited From:</dt>
|
||||
<dd class="inherited-from"><ul class="dummy"><li>
|
||||
<a href="PIXI.Sprite.html#exists">PIXI.Sprite#exists</a>
|
||||
</li></dd>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dt class="tag-default">Default Value:</dt>
|
||||
<dd class="tag-default"><ul class="dummy"><li>true</li></ul></dd>
|
||||
|
||||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-107">line 107</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
@ -3788,7 +3914,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-723">line 723</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-722">line 722</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -3849,7 +3975,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-741">line 741</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-740">line 740</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -4428,7 +4554,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-542">line 542</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-541">line 541</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5114,7 +5240,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-533">line 533</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-532">line 532</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -6075,7 +6201,7 @@ texture this Sprite was using.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-158">line 158</a>
|
||||
<a href="src_pixi_display_Sprite.js.html">pixi/display/Sprite.js</a>, <a href="src_pixi_display_Sprite.js.html#sunlight-1-line-167">line 167</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -6366,7 +6492,7 @@ texture this Sprite was using.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-576">line 576</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-575">line 575</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -6553,7 +6679,7 @@ texture this Sprite was using.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-590">line 590</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-589">line 589</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -6628,7 +6754,7 @@ texture this Sprite was using.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-566">line 566</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-565">line 565</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -6677,7 +6803,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 Fri Jun 10 2016 16:19:31 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:51 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1697,7 +1759,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:31 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:51 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2827,7 +2889,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:31 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:51 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2218,7 +2280,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:31 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:51 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -3165,7 +3227,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 Fri Jun 10 2016 16:19:31 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:51 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1588,7 +1650,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:29 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:49 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -4674,7 +4736,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 Fri Jun 10 2016 16:19:18 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:38 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -3632,7 +3694,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 Fri Jun 10 2016 16:19:18 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:38 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2316,7 +2378,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:18 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:38 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2889,7 +2951,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 Fri Jun 10 2016 16:19:18 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:38 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2813,7 +2875,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 Fri Jun 10 2016 16:19:19 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:38 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2175,7 +2237,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 Fri Jun 10 2016 16:19:19 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:38 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
13177
docs/Phaser.Bullet.html
Normal file
13177
docs/Phaser.Bullet.html
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -10801,7 +10863,7 @@ of it by setting the <code>clone</code> argument to <code>true</code>.</p>
|
|||
</div>
|
||||
|
||||
<div class="returns-desc param-desc">
|
||||
<p>The JSON object.</p>
|
||||
<p>The JSON object, or an Array if the key points to an Array property. If the property wasn't found, it returns null.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -16017,7 +16079,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 Fri Jun 10 2016 16:19:19 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -5358,7 +5420,7 @@ of the effect, and if it should effect both axis or just one.</p>
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:19 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -3514,7 +3576,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 Fri Jun 10 2016 16:19:19 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -4911,7 +4973,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 Fri Jun 10 2016 16:19:19 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -11956,7 +12018,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 Fri Jun 10 2016 16:19:19 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1349,7 +1411,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 Fri Jun 10 2016 16:19:19 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1563,7 +1625,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 Fri Jun 10 2016 16:19:19 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1406,7 +1468,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 Fri Jun 10 2016 16:19:19 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1264,7 +1326,7 @@
|
|||
|
||||
<dt>
|
||||
<h4 class="name "
|
||||
id="bottom"><span class="type-signature"><readonly> </span>bottom<span class="type-signature"> :number</span></h4>
|
||||
id="bottom"><span class="type-signature"></span>bottom<span class="type-signature"> :number</span></h4>
|
||||
|
||||
|
||||
</dt>
|
||||
|
@ -1302,7 +1364,7 @@ This is the same as <code>y + height - offsetY</code>.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_gameobjects_components_Bounds.js.html">gameobjects/components/Bounds.js</a>, <a href="src_gameobjects_components_Bounds.js.html#sunlight-1-line-110">line 110</a>
|
||||
<a href="src_gameobjects_components_Bounds.js.html">gameobjects/components/Bounds.js</a>, <a href="src_gameobjects_components_Bounds.js.html#sunlight-1-line-168">line 168</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1321,7 +1383,121 @@ This is the same as <code>y + height - offsetY</code>.</p>
|
|||
|
||||
<dt>
|
||||
<h4 class="name "
|
||||
id="left"><span class="type-signature"><readonly> </span>left<span class="type-signature"> :number</span></h4>
|
||||
id="centerX"><span class="type-signature"></span>centerX<span class="type-signature"> :number</span></h4>
|
||||
|
||||
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
|
||||
|
||||
<div class="description">
|
||||
<p>The center x coordinate of the Game Object.
|
||||
This is the same as <code>(x - offsetX) + (width / 2)</code>.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dl class="details">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_gameobjects_components_Bounds.js.html">gameobjects/components/Bounds.js</a>, <a href="src_gameobjects_components_Bounds.js.html#sunlight-1-line-58">line 58</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
</dd>
|
||||
|
||||
|
||||
|
||||
<dt>
|
||||
<h4 class="name "
|
||||
id="centerY"><span class="type-signature"></span>centerY<span class="type-signature"> :number</span></h4>
|
||||
|
||||
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
|
||||
|
||||
<div class="description">
|
||||
<p>The center y coordinate of the Game Object.
|
||||
This is the same as <code>(y - offsetY) + (height / 2)</code>.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dl class="details">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_gameobjects_components_Bounds.js.html">gameobjects/components/Bounds.js</a>, <a href="src_gameobjects_components_Bounds.js.html#sunlight-1-line-80">line 80</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
</dd>
|
||||
|
||||
|
||||
|
||||
<dt>
|
||||
<h4 class="name "
|
||||
id="left"><span class="type-signature"></span>left<span class="type-signature"> :number</span></h4>
|
||||
|
||||
|
||||
</dt>
|
||||
|
@ -1359,7 +1535,7 @@ This is the same as <code>x - offsetX</code>.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_gameobjects_components_Bounds.js.html">gameobjects/components/Bounds.js</a>, <a href="src_gameobjects_components_Bounds.js.html#sunlight-1-line-59">line 59</a>
|
||||
<a href="src_gameobjects_components_Bounds.js.html">gameobjects/components/Bounds.js</a>, <a href="src_gameobjects_components_Bounds.js.html#sunlight-1-line-102">line 102</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1494,7 +1670,7 @@ It will only be > 0 if anchor.y is not equal to zero.</p>
|
|||
|
||||
<dt>
|
||||
<h4 class="name "
|
||||
id="right"><span class="type-signature"><readonly> </span>right<span class="type-signature"> :number</span></h4>
|
||||
id="right"><span class="type-signature"></span>right<span class="type-signature"> :number</span></h4>
|
||||
|
||||
|
||||
</dt>
|
||||
|
@ -1532,7 +1708,7 @@ This is the same as <code>x + width - offsetX</code>.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_gameobjects_components_Bounds.js.html">gameobjects/components/Bounds.js</a>, <a href="src_gameobjects_components_Bounds.js.html#sunlight-1-line-76">line 76</a>
|
||||
<a href="src_gameobjects_components_Bounds.js.html">gameobjects/components/Bounds.js</a>, <a href="src_gameobjects_components_Bounds.js.html#sunlight-1-line-124">line 124</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1551,7 +1727,7 @@ This is the same as <code>x + width - offsetX</code>.</p>
|
|||
|
||||
<dt>
|
||||
<h4 class="name "
|
||||
id="top"><span class="type-signature"><readonly> </span>top<span class="type-signature"> :number</span></h4>
|
||||
id="top"><span class="type-signature"></span>top<span class="type-signature"> :number</span></h4>
|
||||
|
||||
|
||||
</dt>
|
||||
|
@ -1589,7 +1765,7 @@ This is the same as <code>y - offsetY</code>.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_gameobjects_components_Bounds.js.html">gameobjects/components/Bounds.js</a>, <a href="src_gameobjects_components_Bounds.js.html#sunlight-1-line-93">line 93</a>
|
||||
<a href="src_gameobjects_components_Bounds.js.html">gameobjects/components/Bounds.js</a>, <a href="src_gameobjects_components_Bounds.js.html#sunlight-1-line-146">line 146</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -1608,6 +1784,635 @@ This is the same as <code>y - offsetY</code>.</p>
|
|||
|
||||
|
||||
|
||||
<h3 class="subsection-title">Methods</h3>
|
||||
|
||||
<dl>
|
||||
|
||||
<dt>
|
||||
<h4 class="name "
|
||||
id="alignIn"><span class="type-signature"></span>alignIn<span class="signature">(container, <span class="optional">position</span>, <span class="optional">offsetX</span>, <span class="optional">offsetY</span>)</span><span class="type-signature"> → {Object}</span></h4>
|
||||
|
||||
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
|
||||
|
||||
<div class="description">
|
||||
<p>Aligns this Game Object within another Game Object, or Rectangle, known as the
|
||||
'container', to one of 9 possible positions.</p>
|
||||
<p>The container must be a Game Object, or Phaser.Rectangle object. This can include properties
|
||||
such as <code>World.bounds</code> or <code>Camera.view</code>, for aligning Game Objects within the world
|
||||
and camera bounds. Or it can include other Sprites, Images, Text objects, BitmapText,
|
||||
TileSprites or Buttons.</p>
|
||||
<p>Please note that aligning a Sprite to another Game Object does <strong>not</strong> make it a child of
|
||||
the container. It simply modifies its position coordinates so it aligns with it.</p>
|
||||
<p>The position constants you can use are:</p>
|
||||
<p><code>Phaser.TOP_LEFT</code>, <code>Phaser.TOP_CENTER</code>, <code>Phaser.TOP_RIGHT</code>, <code>Phaser.LEFT_CENTER</code>,
|
||||
<code>Phaser.CENTER</code>, <code>Phaser.RIGHT_CENTER</code>, <code>Phaser.BOTTOM_LEFT</code>,
|
||||
<code>Phaser.BOTTOM_CENTER</code> and <code>Phaser.BOTTOM_RIGHT</code>.</p>
|
||||
<p>The Game Objects are placed in such a way that their <em>bounds</em> align with the
|
||||
container, taking into consideration rotation, scale and the anchor property.
|
||||
This allows you to neatly align Game Objects, irrespective of their position value.</p>
|
||||
<p>The optional <code>offsetX</code> and <code>offsetY</code> arguments allow you to apply extra spacing to the final
|
||||
aligned position of the Game Object. For example:</p>
|
||||
<p><code>sprite.alignIn(background, Phaser.BOTTOM_RIGHT, -20, -20)</code></p>
|
||||
<p>Would align the <code>sprite</code> to the bottom-right, but moved 20 pixels in from the corner.
|
||||
Think of the offsets as applying an adjustment to the containers bounds before the alignment takes place.
|
||||
So providing a negative offset will 'shrink' the container bounds by that amount, and providing a positive
|
||||
one expands it.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h5>Parameters:</h5>
|
||||
|
||||
|
||||
<table class="params table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
<th>Name</th>
|
||||
|
||||
|
||||
<th>Type</th>
|
||||
|
||||
|
||||
<th>Argument</th>
|
||||
|
||||
|
||||
|
||||
<th>Default</th>
|
||||
|
||||
|
||||
<th class="last">Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="name"><code>container</code></td>
|
||||
|
||||
|
||||
<td class="type">
|
||||
|
||||
|
||||
<span class="param-type"><a href="Phaser.Rectangle.html">Phaser.Rectangle</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.Sprite.html">Phaser.Sprite</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.Image.html">Phaser.Image</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.Text.html">Phaser.Text</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.BitmapText.html">Phaser.BitmapText</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.Button.html">Phaser.Button</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.Graphics.html">Phaser.Graphics</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.TileSprite.html">Phaser.TileSprite</a></span>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="attributes">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
<td class="default">
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="description last"><p>The Game Object or Rectangle with which to align this Game Object to. Can also include properties such as <code>World.bounds</code> or <code>Camera.view</code>.</p></td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="name"><code>position</code></td>
|
||||
|
||||
|
||||
<td class="type">
|
||||
|
||||
|
||||
<span class="param-type">integer</span>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="attributes">
|
||||
|
||||
<optional><br>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
<td class="default">
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="description last"><p>The position constant. One of <code>Phaser.TOP_LEFT</code> (default), <code>Phaser.TOP_CENTER</code>, <code>Phaser.TOP_RIGHT</code>, <code>Phaser.LEFT_CENTER</code>, <code>Phaser.CENTER</code>, <code>Phaser.RIGHT_CENTER</code>, <code>Phaser.BOTTOM_LEFT</code>, <code>Phaser.BOTTOM_CENTER</code> or <code>Phaser.BOTTOM_RIGHT</code>.</p></td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="name"><code>offsetX</code></td>
|
||||
|
||||
|
||||
<td class="type">
|
||||
|
||||
|
||||
<span class="param-type">integer</span>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="attributes">
|
||||
|
||||
<optional><br>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
<td class="default">
|
||||
|
||||
0
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="description last"><p>A horizontal adjustment of the Containers bounds, applied to the aligned position of the Game Object. Use a negative value to shrink the bounds, positive to increase it.</p></td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="name"><code>offsetY</code></td>
|
||||
|
||||
|
||||
<td class="type">
|
||||
|
||||
|
||||
<span class="param-type">integer</span>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="attributes">
|
||||
|
||||
<optional><br>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
<td class="default">
|
||||
|
||||
0
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="description last"><p>A vertical adjustment of the Containers bounds, applied to the aligned position of the Game Object. Use a negative value to shrink the bounds, positive to increase it.</p></td>
|
||||
</tr>
|
||||
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
<h5>Returns:</h5>
|
||||
<div class="returns">
|
||||
|
||||
|
||||
|
||||
<div class="returns-type">
|
||||
|
||||
<span class="param-type">Object</span>
|
||||
|
||||
-
|
||||
</div>
|
||||
|
||||
<div class="returns-desc param-desc">
|
||||
<p>This Game Object.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<dl class="details">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_gameobjects_components_Bounds.js.html">gameobjects/components/Bounds.js</a>, <a href="src_gameobjects_components_Bounds.js.html#sunlight-1-line-223">line 223</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</dd>
|
||||
|
||||
|
||||
|
||||
<dt>
|
||||
<h4 class="name "
|
||||
id="alignTo"><span class="type-signature"></span>alignTo<span class="signature">(parent, <span class="optional">position</span>, <span class="optional">offsetX</span>, <span class="optional">offsetY</span>)</span><span class="type-signature"> → {Object}</span></h4>
|
||||
|
||||
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
|
||||
|
||||
<div class="description">
|
||||
<p>Aligns this Game Object to the side of another Game Object, or Rectangle, known as the
|
||||
'parent', in one of 11 possible positions.</p>
|
||||
<p>The parent must be a Game Object, or Phaser.Rectangle object. This can include properties
|
||||
such as <code>World.bounds</code> or <code>Camera.view</code>, for aligning Game Objects within the world
|
||||
and camera bounds. Or it can include other Sprites, Images, Text objects, BitmapText,
|
||||
TileSprites or Buttons.</p>
|
||||
<p>Please note that aligning a Sprite to another Game Object does <strong>not</strong> make it a child of
|
||||
the parent. It simply modifies its position coordinates so it aligns with it.</p>
|
||||
<p>The position constants you can use are:</p>
|
||||
<p><code>Phaser.TOP_LEFT</code> (default), <code>Phaser.TOP_CENTER</code>, <code>Phaser.TOP_RIGHT</code>, <code>Phaser.LEFT_TOP</code>,
|
||||
<code>Phaser.LEFT_CENTER</code>, <code>Phaser.LEFT_BOTTOM</code>, <code>Phaser.RIGHT_TOP</code>, <code>Phaser.RIGHT_CENTER</code>,
|
||||
<code>Phaser.RIGHT_BOTTOM</code>, <code>Phaser.BOTTOM_LEFT</code>, <code>Phaser.BOTTOM_CENTER</code>
|
||||
and <code>Phaser.BOTTOM_RIGHT</code>.</p>
|
||||
<p>The Game Objects are placed in such a way that their <em>bounds</em> align with the
|
||||
parent, taking into consideration rotation, scale and the anchor property.
|
||||
This allows you to neatly align Game Objects, irrespective of their position value.</p>
|
||||
<p>The optional <code>offsetX</code> and <code>offsetY</code> arguments allow you to apply extra spacing to the final
|
||||
aligned position of the Game Object. For example:</p>
|
||||
<p><code>sprite.alignTo(background, Phaser.BOTTOM_RIGHT, -20, -20)</code></p>
|
||||
<p>Would align the <code>sprite</code> to the bottom-right, but moved 20 pixels in from the corner.
|
||||
Think of the offsets as applying an adjustment to the parents bounds before the alignment takes place.
|
||||
So providing a negative offset will 'shrink' the parent bounds by that amount, and providing a positive
|
||||
one expands it.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h5>Parameters:</h5>
|
||||
|
||||
|
||||
<table class="params table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
<th>Name</th>
|
||||
|
||||
|
||||
<th>Type</th>
|
||||
|
||||
|
||||
<th>Argument</th>
|
||||
|
||||
|
||||
|
||||
<th>Default</th>
|
||||
|
||||
|
||||
<th class="last">Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="name"><code>parent</code></td>
|
||||
|
||||
|
||||
<td class="type">
|
||||
|
||||
|
||||
<span class="param-type"><a href="Phaser.Rectangle.html">Phaser.Rectangle</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.Sprite.html">Phaser.Sprite</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.Image.html">Phaser.Image</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.Text.html">Phaser.Text</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.BitmapText.html">Phaser.BitmapText</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.Button.html">Phaser.Button</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.Graphics.html">Phaser.Graphics</a></span>
|
||||
|
|
||||
|
||||
<span class="param-type"><a href="Phaser.TileSprite.html">Phaser.TileSprite</a></span>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="attributes">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
<td class="default">
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="description last"><p>The Game Object or Rectangle with which to align this Game Object to. Can also include properties such as <code>World.bounds</code> or <code>Camera.view</code>.</p></td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="name"><code>position</code></td>
|
||||
|
||||
|
||||
<td class="type">
|
||||
|
||||
|
||||
<span class="param-type">integer</span>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="attributes">
|
||||
|
||||
<optional><br>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
<td class="default">
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="description last"><p>The position constant. One of <code>Phaser.TOP_LEFT</code>, <code>Phaser.TOP_CENTER</code>, <code>Phaser.TOP_RIGHT</code>, <code>Phaser.LEFT_TOP</code>, <code>Phaser.LEFT_CENTER</code>, <code>Phaser.LEFT_BOTTOM</code>, <code>Phaser.RIGHT_TOP</code>, <code>Phaser.RIGHT_CENTER</code>, <code>Phaser.RIGHT_BOTTOM</code>, <code>Phaser.BOTTOM_LEFT</code>, <code>Phaser.BOTTOM_CENTER</code> or <code>Phaser.BOTTOM_RIGHT</code>.</p></td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="name"><code>offsetX</code></td>
|
||||
|
||||
|
||||
<td class="type">
|
||||
|
||||
|
||||
<span class="param-type">integer</span>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="attributes">
|
||||
|
||||
<optional><br>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
<td class="default">
|
||||
|
||||
0
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="description last"><p>A horizontal adjustment of the Containers bounds, applied to the aligned position of the Game Object. Use a negative value to shrink the bounds, positive to increase it.</p></td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="name"><code>offsetY</code></td>
|
||||
|
||||
|
||||
<td class="type">
|
||||
|
||||
|
||||
<span class="param-type">integer</span>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="attributes">
|
||||
|
||||
<optional><br>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
<td class="default">
|
||||
|
||||
0
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<td class="description last"><p>A vertical adjustment of the Containers bounds, applied to the aligned position of the Game Object. Use a negative value to shrink the bounds, positive to increase it.</p></td>
|
||||
</tr>
|
||||
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
<h5>Returns:</h5>
|
||||
<div class="returns">
|
||||
|
||||
|
||||
|
||||
<div class="returns-type">
|
||||
|
||||
<span class="param-type">Object</span>
|
||||
|
||||
-
|
||||
</div>
|
||||
|
||||
<div class="returns-desc param-desc">
|
||||
<p>This Game Object.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<dl class="details">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_gameobjects_components_Bounds.js.html">gameobjects/components/Bounds.js</a>, <a href="src_gameobjects_components_Bounds.js.html#sunlight-1-line-321">line 321</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1632,7 +2437,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1660,7 +1722,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2564,7 +2626,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1603,7 +1665,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1458,7 +1520,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1531,7 +1593,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:39 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1484,7 +1546,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1580,7 +1642,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1346,7 +1408,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1596,7 +1658,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1419,7 +1481,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1741,7 +1803,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2006,7 +2068,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1443,7 +1505,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1630,7 +1692,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1521,7 +1583,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1730,7 +1792,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -1346,7 +1408,7 @@
|
|||
|
||||
<span class="jsdoc-message">
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a>
|
||||
on Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -2527,7 +2589,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
@ -88,6 +88,10 @@
|
|||
<a href="Phaser.BitmapText.html">BitmapText</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Bullet.html">Bullet</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Button.html">Button</a>
|
||||
</li>
|
||||
|
@ -660,6 +664,10 @@
|
|||
<a href="Phaser.Video.html">Video</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.Weapon.html">Weapon</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-1">
|
||||
<a href="Phaser.World.html">World</a>
|
||||
</li>
|
||||
|
@ -858,6 +866,18 @@
|
|||
<a href="global.html#blendModes">blendModes</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#BUTTON">BUTTON</a>
|
||||
</li>
|
||||
|
@ -870,6 +890,10 @@
|
|||
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CENTER">CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#CIRCLE">CIRCLE</a>
|
||||
</li>
|
||||
|
@ -930,6 +954,18 @@
|
|||
<a href="global.html#LEFT">LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#LINE">LINE</a>
|
||||
</li>
|
||||
|
@ -978,6 +1014,18 @@
|
|||
<a href="global.html#RIGHT">RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#ROPE">ROPE</a>
|
||||
</li>
|
||||
|
@ -1014,6 +1062,18 @@
|
|||
<a href="global.html#TILESPRITE">TILESPRITE</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
|
||||
</li>
|
||||
|
||||
<li class="class-depth-0">
|
||||
<a href="global.html#UP">UP</a>
|
||||
</li>
|
||||
|
@ -1105,6 +1165,7 @@
|
|||
<ul class="dropdown-menu ">
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
|
||||
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
|
||||
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
|
||||
|
@ -1140,7 +1201,8 @@
|
|||
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/news/2015/08/phaser-slack-channel">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
|
||||
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
|
||||
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -5309,7 +5371,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-723">line 723</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-722">line 722</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -5370,7 +5432,7 @@ This value is updated at the end of updateTransform and takes all parent transfo
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-741">line 741</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-740">line 740</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -6111,7 +6173,7 @@ This can be quite useful if your displayObject is static / complicated and needs
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-542">line 542</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-541">line 541</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -8938,7 +9000,7 @@ because the World is the root Group from which all Game Objects descend.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-576">line 576</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-575">line 575</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -9125,7 +9187,7 @@ because the World is the root Group from which all Game Objects descend.</p>
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-590">line 590</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-589">line 589</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -9277,7 +9339,7 @@ Remember if this Game Object has any children you should call update on those to
|
|||
|
||||
|
||||
<dt class="tag-source">Source -
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-566">line 566</a>
|
||||
<a href="src_pixi_display_DisplayObject.js.html">pixi/display/DisplayObject.js</a>, <a href="src_pixi_display_DisplayObject.js.html#sunlight-1-line-565">line 565</a>
|
||||
</dt>
|
||||
|
||||
|
||||
|
@ -9326,7 +9388,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 Fri Jun 10 2016 16:19:20 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
on Thu Jun 16 2016 23:20:40 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue