From c1f645e5d22abf7683ee6abc739f76f37d5bc23c Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Tue, 3 Sep 2024 14:37:23 +0100 Subject: [PATCH] Defs build --- types/phaser.d.ts | 261 +- types/phaser.json | 43631 ++++++++++++++++++++++++-------------------- 2 files changed, 23756 insertions(+), 20136 deletions(-) diff --git a/types/phaser.d.ts b/types/phaser.d.ts index 9a02194bc..3c4a5fbe3 100644 --- a/types/phaser.d.ts +++ b/types/phaser.d.ts @@ -5825,7 +5825,7 @@ declare namespace Phaser { readonly audio: Phaser.Types.Core.AudioConfig; /** - * Don't write the banner line to the console.log. + * Don't write the banner line to the console.log. See `Phaser.Types.Core.BannerConfig` for details of this object. */ readonly hideBanner: boolean; @@ -5862,7 +5862,7 @@ declare namespace Phaser { /** * An object mapping WebGL names to WebGLPipeline classes. These should be class constructors, not instances. */ - readonly pipeline: Phaser.Types.Core.PipelineConfig | Phaser.Renderer.WebGL.WebGLPipeline[]; + readonly pipeline: Phaser.Types.Core.PipelineConfig; /** * Automatically enable the Mobile Pipeline if iOS or Android detected? @@ -6019,6 +6019,11 @@ declare namespace Phaser { */ readonly loaderTimeout: number; + /** + * The number of times to retry a file load if it fails. + */ + readonly loaderMaxRetries: number; + /** * Optional XHR withCredentials value. */ @@ -16961,6 +16966,7 @@ declare namespace Phaser { /** * Moves a Game Object above another one within this Container. + * If the Game Object is already above the other, it isn't moved. * * These 2 Game Objects must already be children of this Container. * @param child1 The Game Object to move above base Game Object. @@ -16970,6 +16976,7 @@ declare namespace Phaser { /** * Moves a Game Object below another one within this Container. + * If the Game Object is already below the other, it isn't moved. * * These 2 Game Objects must already be children of this Container. * @param child1 The Game Object to move below base Game Object. @@ -19948,8 +19955,9 @@ declare namespace Phaser { * `setInteractive()` with no arguments provided. * * If want to completely remove interaction from this Game Object then use `removeInteractive` instead. + * @param resetCursor Should the currently active Input cursor, if any, be reset to the default cursor? Default false. */ - disableInteractive(): this; + disableInteractive(resetCursor?: boolean): this; /** * If this Game Object has previously been enabled for input, this will queue it @@ -19970,8 +19978,9 @@ declare namespace Phaser { * interactive. Instead, access the hitarea object directly and resize the shape * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the * shape is a Rectangle, which it is by default.) + * @param resetCursor Should the currently active Input cursor, if any, be reset to the default cursor? Default false. */ - removeInteractive(): this; + removeInteractive(resetCursor?: boolean): this; /** * This callback is invoked when this Game Object is added to a Scene. @@ -24485,7 +24494,7 @@ declare namespace Phaser { * However, you can set the Alpha, Blend Mode, Depth, Mask and Visible state of a Layer. These settings * will impact all children being rendered by the Layer. */ - class Layer extends Phaser.Structs.List implements Phaser.GameObjects.Components.AlphaSingle, Phaser.GameObjects.Components.BlendMode, Phaser.GameObjects.Components.Depth, Phaser.GameObjects.Components.Mask, Phaser.GameObjects.Components.PostPipeline, Phaser.GameObjects.Components.Visible { + class Layer extends Phaser.Events.EventEmitter implements Phaser.GameObjects.Components.AlphaSingle, Phaser.GameObjects.Components.BlendMode, Phaser.GameObjects.Components.Depth, Phaser.GameObjects.Components.Mask, Phaser.GameObjects.Components.PostPipeline, Phaser.GameObjects.Components.Visible { /** * * @param scene The Scene to which this Game Object belongs. A Game Object can only belong to one Scene at a time. @@ -53574,6 +53583,15 @@ declare namespace Phaser { */ play(loop?: boolean, markerIn?: number, markerOut?: number): this; + /** + * Attempts to get the first frame of the video by running the `requestVideoFrame` callback once, + * then stopping. This is useful if you need to grab the first frame of the video to display behind + * a 'play' button, without actually calling the 'play' method. + * + * If the video is already playing, or has been queued to play with `changeSource` then this method just returns. + */ + getFirstFrame(): this; + /** * Adds the loading specific event handlers to the video element. */ @@ -60530,10 +60548,27 @@ declare namespace Phaser { dragTimeThreshold: number; /** - * Checks to see if both this plugin and the Scene to which it belongs is active. + * Checks to see if the Input Manager, this plugin and the Scene to which it belongs are all active and input enabled. */ isActive(): boolean; + /** + * Sets a custom cursor on the parent canvas element of the game, based on the `cursor` + * setting of the given Interactive Object (i.e. a Sprite). + * + * See the CSS property `cursor` for more information on MDN: + * + * https://developer.mozilla.org/en-US/docs/Web/CSS/cursor + * @param interactiveObject The Interactive Object that will set the cursor on the canvas. + */ + setCursor(interactiveObject: Phaser.Types.Input.InteractiveObject): void; + + /** + * Forces the Input Manager to clear the custom or hand cursor, regardless of the + * interactive state of any Game Objects. + */ + resetCursor(): void; + /** * This is called automatically by the Input Manager. * It emits events for plugins to listen to and also handles polling updates, if enabled. @@ -60556,8 +60591,9 @@ declare namespace Phaser { * An input disabled Game Object still retains its Interactive Object component and can be re-enabled * at any time, by passing it to `InputPlugin.enable`. * @param gameObject The Game Object to have its input system disabled. + * @param resetCursor Reset the cursor to the default? Default false. */ - disable(gameObject: Phaser.GameObjects.GameObject): this; + disable(gameObject: Phaser.GameObjects.GameObject, resetCursor?: boolean): this; /** * Enable a Game Object for interaction. @@ -60623,6 +60659,72 @@ declare namespace Phaser { */ setDragState(pointer: Phaser.Input.Pointer, state: number): void; + /** + * This method will force the given Game Object into the 'down' input state. + * + * This will check to see if the Game Object is enabled for input, and if so, + * it will emit the `GAMEOBJECT_POINTER_DOWN` event for it. If that doesn't change + * the input state, it will then emit the `GAMEOBJECT_DOWN` event. + * + * The Game Object is not checked against the Pointer to see if it can enter this state, + * that is up to you to do before calling this method. + * @param pointer The pointer to use when setting the state. + * @param gameObject The Game Object to have its state set. + */ + forceDownState(pointer: Phaser.Input.Pointer, gameObject: Phaser.GameObjects.GameObject): void; + + /** + * This method will force the given Game Object into the 'up' input state. + * + * This will check to see if the Game Object is enabled for input, and if so, + * it will emit the `GAMEOBJECT_POINTER_UP` event for it. If that doesn't change + * the input state, it will then emit the `GAMEOBJECT_UP` event. + * + * The Game Object is not checked against the Pointer to see if it can enter this state, + * that is up to you to do before calling this method. + * @param pointer The pointer to use when setting the state. + * @param gameObject The Game Object to have its state set. + */ + forceUpState(pointer: Phaser.Input.Pointer, gameObject: Phaser.GameObjects.GameObject): void; + + /** + * This method will force the given Game Object into the 'over' input state. + * + * This will check to see if the Game Object is enabled for input, and if so, + * it will emit the `GAMEOBJECT_POINTER_OVER` event for it. If that doesn't change + * the input state, it will then emit the `GAMEOBJECT_OVER` event. + * + * The Game Object is not checked against the Pointer to see if it can enter this state, + * that is up to you to do before calling this method. + * @param pointer The pointer to use when setting the state. + * @param gameObject The Game Object to have its state set. + */ + forceOverState(pointer: Phaser.Input.Pointer, gameObject: Phaser.GameObjects.GameObject): void; + + /** + * This method will force the given Game Object into the 'out' input state. + * + * This will check to see if the Game Object is enabled for input, and if so, + * it will emit the `GAMEOBJECT_POINTER_OUT` event for it. If that doesn't change + * the input state, it will then emit the `GAMEOBJECT_OUT` event. + * + * The Game Object is not checked against the Pointer to see if it can enter this state, + * that is up to you to do before calling this method. + * @param pointer The pointer to use when setting the state. + * @param gameObject The Game Object to have its state set. + */ + forceOutState(pointer: Phaser.Input.Pointer, gameObject: Phaser.GameObjects.GameObject): void; + + /** + * This method will force the given Game Object into the given input state. + * @param pointer The pointer to use when setting the state. + * @param gameObject The Game Object to have its state set. + * @param gameObjectEvent The event to emit on the Game Object. + * @param inputPluginEvent The event to emit on the Input Plugin. + * @param setCursor Should the cursor be set to the Game Object's cursor? Default false. + */ + forceState(pointer: Phaser.Input.Pointer, gameObject: Phaser.GameObjects.GameObject, gameObjectEvent: string, inputPluginEvent: string, setCursor?: boolean): void; + /** * Sets the draggable state of the given array of Game Objects. * @@ -62933,27 +63035,27 @@ declare namespace Phaser { forwardButtonDown(): boolean; /** - * Checks to see if the left button was just released on this Pointer. + * Checks to see if the release of the left button was the most recent activity on this Pointer. */ leftButtonReleased(): boolean; /** - * Checks to see if the right button was just released on this Pointer. + * Checks to see if the release of the right button was the most recent activity on this Pointer. */ rightButtonReleased(): boolean; /** - * Checks to see if the middle button was just released on this Pointer. + * Checks to see if the release of the middle button was the most recent activity on this Pointer. */ middleButtonReleased(): boolean; /** - * Checks to see if the back button was just released on this Pointer. + * Checks to see if the release of the back button was the most recent activity on this Pointer. */ backButtonReleased(): boolean; /** - * Checks to see if the forward button was just released on this Pointer. + * Checks to see if the release of the forward button was the most recent activity on this Pointer. */ forwardButtonReleased(): boolean; @@ -63524,6 +63626,20 @@ declare namespace Phaser { */ base64: boolean; + /** + * The counter for the number of times to retry loading this file before it fails. + * + * You can set this property value in the FileConfig object. If not present, + * this property is read from the `LoaderPlugin.maxRetries` property when + * this File instance is created. + * + * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property + * at any point after the Loader has started. However, it will not apply to files + * that have already been added to the Loader, only those added after this value + * is changed. + */ + retryAttempts: number; + /** * Links this File with another, so they depend upon each other for loading and processing. * @param fileB The file to link to this one. @@ -67363,6 +67479,19 @@ declare namespace Phaser { */ readonly state: number; + /** + * The number of times to retry loading a single file before it fails. + * + * This property is read by the `File` object when it is created and set to + * the internal property of the same name. It's not used by the Loader itself. + * + * You can set this value via the Game Config, or you can adjust this property + * at any point after the Loader has started. However, it will not apply to files + * that have already been added to the Loader, only those added after this value + * is changed. + */ + maxRetries: number; + /** * If you want to append a URL before the path of any asset you can set this here. * @@ -67501,7 +67630,7 @@ declare namespace Phaser { update(): void; /** - * An internal method called automatically by the XHRLoader belong to a File. + * An internal method called automatically by the XHRLoader belonging to a File. * * This method will remove the given file from the inflight Set and update the load progress. * If the file was successful its `onProcess` method is called, otherwise it is added to the delete queue. @@ -70738,7 +70867,7 @@ declare namespace Phaser { */ rotation: number; /** - * The round pixels st status of camera + * The round pixels indicate the status of the camera */ roundPixels: boolean; /** @@ -71098,7 +71227,7 @@ declare namespace Phaser { */ audio?: Phaser.Types.Core.AudioConfig; /** - * A WebGL Pipeline configuration object. Can also be part of the `RenderConfig`. + * The WebGL Pipeline configuration object. Can also be part of the `RenderConfig`. */ pipeline?: Phaser.Types.Core.PipelineConfig; /** @@ -71328,6 +71457,10 @@ declare namespace Phaser { * Optional load type for image, `XHR` is default, or `HTMLImageElement` for a lightweight way. */ imageLoadType?: string; + /** + * The number of times to retry the file load if it fails. + */ + maxRetries?: number; }; type MouseInputConfig = { @@ -71373,20 +71506,7 @@ declare namespace Phaser { matter?: Phaser.Types.Physics.Matter.MatterWorldConfig; }; - type PipelineConfig = { - /** - * The name of the pipeline. Must be unique within the Pipeline Manager. - */ - name: string; - /** - * The pipeline class. This should be a constructable object, **not** an instance of a class. - */ - pipeline: Phaser.Renderer.WebGL.WebGLPipeline; - /** - * Sets the `PipelineManager.frameInc` value to control the dimension increase in the Render Targets. - */ - frameInc?: number; - }; + type PipelineConfig = Phaser.Renderer.WebGL.WebGLPipeline[] | {[key: string]: typeof Phaser.Renderer.WebGL.WebGLPipeline}; type PluginObject = { /** @@ -71502,7 +71622,7 @@ declare namespace Phaser { /** * The WebGL Pipeline configuration object. */ - pipeline?: Phaser.Types.Core.PipelineConfig | Phaser.Renderer.WebGL.WebGLPipeline[]; + pipeline?: Phaser.Types.Core.PipelineConfig; /** * Automatically enable the Mobile Pipeline if iOS or Android detected? */ @@ -73727,7 +73847,7 @@ declare namespace Phaser { */ fontSize?: number | string; /** - * Any addition font styles, such as 'strong'. + * Any addition font styles, such as 'bold'. */ fontStyle?: string; /** @@ -75638,6 +75758,10 @@ declare namespace Phaser { * The svg size configuration object. */ svgConfig?: Phaser.Types.Loader.FileTypes.SVGSizeConfig; + /** + * The number of times to retry the file load if it fails. + */ + maxRetries?: number; }; type XHRSettingsObject = { @@ -75823,9 +75947,9 @@ declare namespace Phaser { /** * An Arcade Physics Collider Type. */ - type ArcadeColliderType = Phaser.GameObjects.GameObject | Phaser.GameObjects.Group | Phaser.Physics.Arcade.Sprite | Phaser.Physics.Arcade.Image | Phaser.Physics.Arcade.StaticGroup | Phaser.Physics.Arcade.Group | Phaser.Tilemaps.TilemapLayer | Phaser.GameObjects.GameObject[] | Phaser.Physics.Arcade.Sprite[] | Phaser.Physics.Arcade.Image[] | Phaser.Physics.Arcade.StaticGroup[] | Phaser.Physics.Arcade.Group[] | Phaser.Tilemaps.TilemapLayer[]; + type ArcadeColliderType = Phaser.Physics.Arcade.Body | Phaser.GameObjects.GameObject | Phaser.GameObjects.Group | Phaser.Physics.Arcade.Sprite | Phaser.Physics.Arcade.Image | Phaser.Physics.Arcade.StaticGroup | Phaser.Physics.Arcade.Group | Phaser.Tilemaps.TilemapLayer | Phaser.Physics.Arcade.Body[] | Phaser.GameObjects.GameObject[] | Phaser.Physics.Arcade.Sprite[] | Phaser.Physics.Arcade.Image[] | Phaser.Physics.Arcade.StaticGroup[] | Phaser.Physics.Arcade.Group[] | Phaser.Tilemaps.TilemapLayer[]; - type ArcadePhysicsCallback = (object1: Phaser.Types.Physics.Arcade.GameObjectWithBody | Phaser.Tilemaps.Tile, object2: Phaser.Types.Physics.Arcade.GameObjectWithBody | Phaser.Tilemaps.Tile)=>void; + type ArcadePhysicsCallback = (object1: Phaser.Types.Physics.Arcade.GameObjectWithBody | Phaser.Physics.Arcade.Body | Phaser.Tilemaps.Tile, object2: Phaser.Types.Physics.Arcade.GameObjectWithBody | Phaser.Physics.Arcade.Body | Phaser.Tilemaps.Tile)=>void; type ArcadeWorldConfig = { /** @@ -93219,6 +93343,23 @@ declare namespace Phaser { */ const POST_RENDER: string; + /** + * The Pre-Render Clear Event. + * + * This event is dispatched by the Phaser Renderer. It happens at the start of the render step, before + * the WebGL gl.clear function has been called. This allows you to toggle the `config.clearBeforeRender` property + * as required, to have fine-grained control over when the canvas is cleared during rendering. + * + * Listen to it from within a Scene using: `this.renderer.events.on('prerenderclear', listener)`. + * + * It's very important to understand that this event is called _before_ the scissor and mask stacks are cleared. + * This means you should not use this event to modify the scissor or mask. Instead, use the `prerender` event for that. + * + * If using the Canvas Renderer, this event is dispatched before the canvas is cleared, but after the context globalAlpha + * and transform have been reset. + */ + const PRE_RENDER_CLEAR: string; + /** * The Pre-Render Event. * @@ -96613,12 +96754,16 @@ declare namespace Phaser { setAutoResize(autoResize: boolean): this; /** - * Resizes this Render Target. + * Resizes this Render Target as long as the given width and height are different + * to the current width and height. * * Deletes both the frame buffer and texture, if they exist and then re-creates * them using the new sizes. * * This method is called automatically by the pipeline during its resize handler. + * + * Previous to Phaser v3.85 this method would only run if `autoResize` was `true`, + * it will now run regardless. * @param width The new width of this Render Target. * @param height The new height of this Render Target. */ @@ -100556,6 +100701,11 @@ declare namespace Phaser { */ stopFullscreen(): void; + /** + * The browser has successfully left fullscreen mode. + */ + leaveFullScreenSuccessHandler(): void; + /** * Toggles the fullscreen mode. If already in fullscreen, calling this will cancel it. * If not in fullscreen, this will request the browser to enter fullscreen mode. @@ -101283,7 +101433,7 @@ declare namespace Phaser { * its currently within the Scene Manager, or not. * @param key The key of the Scene to retrieve. */ - getScene(key: (T|string)): T; + getScene(key: (T|string)): Phaser.Scene | null; /** * Determines whether a Scene is running. @@ -101370,8 +101520,9 @@ declare namespace Phaser { * Sleeps one one Scene and starts the other. * @param from The Scene to sleep. * @param to The Scene to start. + * @param data Optional data object to pass to `Scene.Settings` and `Scene.init`, and `Scene.create`. It is only passed when the scene starts for the first time. */ - switch(from: (T|string), to: (T|string)): this; + switch(from: (T|string), to: (T|string), data?: object): this; /** * Retrieves a Scene by numeric index. @@ -101415,6 +101566,7 @@ declare namespace Phaser { /** * Moves a Scene so it is immediately above another Scene in the Scenes list. + * If the Scene is already above the other, it isn't moved. * * This means it will render over the top of the other Scene. * @param keyA The Scene that Scene B will be moved above. @@ -101424,6 +101576,7 @@ declare namespace Phaser { /** * Moves a Scene so it is immediately below another Scene in the Scenes list. + * If the Scene is already below the other, it isn't moved. * * This means it will render behind the other Scene. * @param keyA The Scene that Scene B will be moved below. @@ -101629,8 +101782,9 @@ declare namespace Phaser { * * This will happen at the next Scene Manager update, not immediately. * @param key The Scene to start. + * @param data Optional data object to pass to either the Scene `wake` or `start` method. */ - switch(key: (T|string)): this; + switch(key: (T|string), data?: any): this; /** * Shutdown the Scene, clearing display list, timers, etc. @@ -101690,18 +101844,20 @@ declare namespace Phaser { swapPosition(keyA: (T|string), keyB?: (T|string)): this; /** - * Swaps the position of two scenes in the Scenes list, so that Scene B is directly above Scene A. + * Moves a Scene so it is immediately above another Scene in the Scenes list. + * If the Scene is already above the other, it isn't moved. * - * This controls the order in which they are rendered and updated. + * This means it will render over the top of the other Scene. * @param keyA The Scene that Scene B will be moved to be above. * @param keyB The Scene to be moved. If none is given it defaults to this Scene. */ moveAbove(keyA: (T|string), keyB?: (T|string)): this; /** - * Swaps the position of two scenes in the Scenes list, so that Scene B is directly below Scene A. + * Moves a Scene so it is immediately below another Scene in the Scenes list. + * If the Scene is already below the other, it isn't moved. * - * This controls the order in which they are rendered and updated. + * This means it will render behind the other Scene. * @param keyA The Scene that Scene B will be moved to be below. * @param keyB The Scene to be moved. If none is given it defaults to this Scene. */ @@ -101748,10 +101904,13 @@ declare namespace Phaser { sendToBack(key?: (T|string)): this; /** - * Retrieve a Scene. + * Retrieves a Scene based on the given key. + * + * If an actual Scene is passed to this method, it can be used to check if + * its currently within the Scene Manager, or not. * @param key The Scene to retrieve. */ - get(key: (T|string)): T; + get(key: (T|string)): Phaser.Scene; /** * Return the status of the Scene. @@ -104387,14 +104546,18 @@ declare namespace Phaser { moveTo(child: T, index: number): T; /** - * Moves the given array element above another one in the array. + * Moves an item above another one in the List. + * If the given item is already above the other, it isn't moved. + * Above means toward the end of the List. * @param child1 The element to move above base element. * @param child2 The base element. */ moveAbove(child1: T, child2: T): void; /** - * Moves the given array element below another one in the array. + * Moves an item below another one in the List. + * If the given item is already below the other, it isn't moved. + * Below means toward the start of the List. * @param child1 The element to move below base element. * @param child2 The base element. */ @@ -113532,9 +113695,7 @@ declare namespace Phaser { * or they will retain references you may no longer require and waste memory. * * By default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by - * the Tween Manager. But `TweenChains` _do_ persist by default, unless overridden in their - * config. This is because the type of situations you use a chain for is far more likely to - * need to be replayed again in the future, rather than disposed of. + * the Tween Manager. */ persist: boolean; @@ -115616,6 +115777,8 @@ declare namespace Phaser { /** * Moves the given array element above another one in the array. + * If the given element is already above the other, it isn't moved. + * Above means toward the end of the array. * The array is modified in-place. * @param array The input array. * @param item1 The element to move above base element. @@ -115625,6 +115788,8 @@ declare namespace Phaser { /** * Moves the given array element below another one in the array. + * If the given element is already below the other, it isn't moved. + * Below means toward the start of the array. * The array is modified in-place. * @param array The input array. * @param item1 The element to move below base element. diff --git a/types/phaser.json b/types/phaser.json index d3d25f0d2..0435e518d 100644 --- a/types/phaser.json +++ b/types/phaser.json @@ -22021,7 +22021,7 @@ "comment": "/**\r\n * Sets the linear interpolation value to use when following a target.\r\n *\r\n * The default values of 1 means the camera will instantly snap to the target coordinates.\r\n * A lower value, such as 0.1 means the camera will more slowly track the target, giving\r\n * a smooth transition. You can set the horizontal and vertical values independently, and also\r\n * adjust this value in real-time during your game.\r\n *\r\n * Be sure to keep the value between 0 and 1. A value of zero will disable tracking on that axis.\r\n *\r\n * @method Phaser.Cameras.Scene2D.Camera#setLerp\r\n * @since 3.9.0\r\n *\r\n * @param {number} [x=1] - The amount added to the horizontal linear interpolation of the follow target.\r\n * @param {number} [y=1] - The amount added to the vertical linear interpolation of the follow target.\r\n *\r\n * @return {this} This Camera instance.\r\n */", "meta": { "filename": "Camera.js", - "lineno": 599, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\cameras\\2d", "code": {} @@ -22087,7 +22087,7 @@ "comment": "/**\r\n * Sets the horizontal and vertical offset of the camera from its follow target.\r\n * The values are subtracted from the targets position during the Cameras update step.\r\n *\r\n * @method Phaser.Cameras.Scene2D.Camera#setFollowOffset\r\n * @since 3.9.0\r\n *\r\n * @param {number} [x=0] - The horizontal offset from the camera follow target.x position.\r\n * @param {number} [y=0] - The vertical offset from the camera follow target.y position.\r\n *\r\n * @return {this} This Camera instance.\r\n */", "meta": { "filename": "Camera.js", - "lineno": 627, + "lineno": 632, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\cameras\\2d", "code": {} @@ -22153,7 +22153,7 @@ "comment": "/**\r\n * Sets the Camera to follow a Game Object.\r\n *\r\n * When enabled the Camera will automatically adjust its scroll position to keep the target Game Object\r\n * in its center.\r\n *\r\n * You can set the linear interpolation value used in the follow code.\r\n * Use low lerp values (such as 0.1) to automatically smooth the camera motion.\r\n *\r\n * If you find you're getting a slight \"jitter\" effect when following an object it's probably to do with sub-pixel\r\n * rendering of the targets position. This can be rounded by setting the `roundPixels` argument to `true` to\r\n * force full pixel rounding rendering. Note that this can still be broken if you have specified a non-integer zoom\r\n * value on the camera. So be sure to keep the camera zoom to integers.\r\n *\r\n * @method Phaser.Cameras.Scene2D.Camera#startFollow\r\n * @since 3.0.0\r\n *\r\n * @param {(Phaser.GameObjects.GameObject|object)} target - The target for the Camera to follow.\r\n * @param {boolean} [roundPixels=false] - Round the camera position to whole integers to avoid sub-pixel rendering?\r\n * @param {number} [lerpX=1] - A value between 0 and 1. This value specifies the amount of linear interpolation to use when horizontally tracking the target. The closer the value to 1, the faster the camera will track.\r\n * @param {number} [lerpY=1] - A value between 0 and 1. This value specifies the amount of linear interpolation to use when vertically tracking the target. The closer the value to 1, the faster the camera will track.\r\n * @param {number} [offsetX=0] - The horizontal offset from the camera follow target.x position.\r\n * @param {number} [offsetY=0] - The vertical offset from the camera follow target.y position.\r\n *\r\n * @return {this} This Camera instance.\r\n */", "meta": { "filename": "Camera.js", - "lineno": 649, + "lineno": 654, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\cameras\\2d", "code": {} @@ -22287,7 +22287,7 @@ "comment": "/**\r\n * Stops a Camera from following a Game Object, if previously set via `Camera.startFollow`.\r\n *\r\n * @method Phaser.Cameras.Scene2D.Camera#stopFollow\r\n * @since 3.0.0\r\n *\r\n * @return {this} This Camera instance.\r\n */", "meta": { "filename": "Camera.js", - "lineno": 714, + "lineno": 719, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\cameras\\2d", "code": {} @@ -22321,7 +22321,7 @@ "comment": "/**\r\n * Resets any active FX, such as a fade, flash or shake. Useful to call after a fade in order to\r\n * remove the fade.\r\n *\r\n * @method Phaser.Cameras.Scene2D.Camera#resetFX\r\n * @since 3.0.0\r\n *\r\n * @return {this} This Camera instance.\r\n */", "meta": { "filename": "Camera.js", - "lineno": 729, + "lineno": 734, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\cameras\\2d", "code": {} @@ -22355,7 +22355,7 @@ "comment": "/**\r\n * Internal method called automatically by the Camera Manager.\r\n *\r\n * @method Phaser.Cameras.Scene2D.Camera#update\r\n * @protected\r\n * @since 3.0.0\r\n *\r\n * @param {number} time - The current timestamp as generated by the Request Animation Frame or SetTimeout.\r\n * @param {number} delta - The delta time, in ms, elapsed since the last frame.\r\n */", "meta": { "filename": "Camera.js", - "lineno": 749, + "lineno": 754, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\cameras\\2d", "code": {} @@ -22404,7 +22404,7 @@ "comment": "/**\r\n * Destroys this Camera instance. You rarely need to call this directly.\r\n *\r\n * Called by the Camera Manager. If you wish to destroy a Camera please use `CameraManager.remove` as\r\n * cameras are stored in a pool, ready for recycling later, and calling this directly will prevent that.\r\n *\r\n * @method Phaser.Cameras.Scene2D.Camera#destroy\r\n * @fires Phaser.Cameras.Scene2D.Events#DESTROY\r\n * @since 3.0.0\r\n */", "meta": { "filename": "Camera.js", - "lineno": 772, + "lineno": 777, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\cameras\\2d", "code": {} @@ -28501,7 +28501,7 @@ "___s": true }, { - "comment": "/**\r\n * @typedef {object} Phaser.Types.Cameras.Scene2D.JSONCamera\r\n * @since 3.0.0\r\n *\r\n * @property {string} name - The name of the camera\r\n * @property {number} x - The horizontal position of camera\r\n * @property {number} y - The vertical position of camera\r\n * @property {number} width - The width size of camera\r\n * @property {number} height - The height size of camera\r\n * @property {number} zoom - The zoom of camera\r\n * @property {number} rotation - The rotation of camera\r\n * @property {boolean} roundPixels - The round pixels st status of camera\r\n * @property {number} scrollX - The horizontal scroll of camera\r\n * @property {number} scrollY - The vertical scroll of camera\r\n * @property {string} backgroundColor - The background color of camera\r\n * @property {(Phaser.Types.Cameras.Scene2D.JSONCameraBounds|undefined)} [bounds] - The bounds of camera\r\n */", + "comment": "/**\r\n * @typedef {object} Phaser.Types.Cameras.Scene2D.JSONCamera\r\n * @since 3.0.0\r\n *\r\n * @property {string} name - The name of the camera\r\n * @property {number} x - The horizontal position of camera\r\n * @property {number} y - The vertical position of camera\r\n * @property {number} width - The width size of camera\r\n * @property {number} height - The height size of camera\r\n * @property {number} zoom - The zoom of camera\r\n * @property {number} rotation - The rotation of camera\r\n * @property {boolean} roundPixels - The round pixels indicate the status of the camera\r\n * @property {number} scrollX - The horizontal scroll of camera\r\n * @property {number} scrollY - The vertical scroll of camera\r\n * @property {string} backgroundColor - The background color of camera\r\n * @property {(Phaser.Types.Cameras.Scene2D.JSONCameraBounds|undefined)} [bounds] - The bounds of camera\r\n */", "meta": { "filename": "JSONCamera.js", "lineno": 1, @@ -28623,7 +28623,7 @@ "name": "boolean" } }, - "description": "The round pixels st status of camera", + "description": "The round pixels indicate the status of the camera", "name": "roundPixels" }, { @@ -32427,7 +32427,7 @@ "___s": true }, { - "comment": "/**\r\n * @const {boolean} Phaser.Core.Config#hideBanner - Don't write the banner line to the console.log.\r\n */", + "comment": "/**\r\n * @const {boolean} Phaser.Core.Config#hideBanner - Don't write the banner line to the console.log. See `Phaser.Types.Core.BannerConfig` for details of this object.\r\n */", "meta": { "filename": "Config.js", "lineno": 314, @@ -32446,7 +32446,7 @@ "name": "boolean" } }, - "description": "Don't write the banner line to the console.log.", + "description": "Don't write the banner line to the console.log. See `Phaser.Types.Core.BannerConfig` for details of this object.", "memberof": "Phaser.Core.Config", "longname": "Phaser.Core.Config#hideBanner", "scope": "instance", @@ -32625,7 +32625,7 @@ "___s": true }, { - "comment": "/**\r\n * @const {(Phaser.Types.Core.PipelineConfig|Phaser.Renderer.WebGL.WebGLPipeline[])} Phaser.Core.Config#pipeline - An object mapping WebGL names to WebGLPipeline classes. These should be class constructors, not instances.\r\n */", + "comment": "/**\r\n * @const {Phaser.Types.Core.PipelineConfig} Phaser.Core.Config#pipeline - An object mapping WebGL names to WebGLPipeline classes. These should be class constructors, not instances.\r\n */", "meta": { "filename": "Config.js", "lineno": 358, @@ -32637,30 +32637,11 @@ "name": "pipeline", "type": { "names": [ - "Phaser.Types.Core.PipelineConfig", - "Array." + "Phaser.Types.Core.PipelineConfig" ], "parsedType": { - "type": "TypeUnion", - "elements": [ - { - "type": "NameExpression", - "name": "Phaser.Types.Core.PipelineConfig" - }, - { - "type": "TypeApplication", - "expression": { - "type": "NameExpression", - "name": "Array" - }, - "applications": [ - { - "name": "Phaser.Renderer.WebGL.WebGLPipeline", - "type": "NameExpression" - } - ] - } - ] + "type": "NameExpression", + "name": "Phaser.Types.Core.PipelineConfig" } }, "description": "An object mapping WebGL names to WebGLPipeline classes. These should be class constructors, not instances.", @@ -33527,7 +33508,7 @@ "___s": true }, { - "comment": "/**\r\n * @const {boolean} Phaser.Core.Config#loaderWithCredentials - Optional XHR withCredentials value.\r\n */", + "comment": "/**\r\n * @const {number} Phaser.Core.Config#loaderMaxRetries - The number of times to retry a file load if it fails.\r\n */", "meta": { "filename": "Config.js", "lineno": 533, @@ -33536,6 +33517,33 @@ "code": {} }, "kind": "constant", + "name": "loaderMaxRetries", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "description": "The number of times to retry a file load if it fails.", + "memberof": "Phaser.Core.Config", + "longname": "Phaser.Core.Config#loaderMaxRetries", + "scope": "instance", + "___id": "T000002R003009", + "___s": true + }, + { + "comment": "/**\r\n * @const {boolean} Phaser.Core.Config#loaderWithCredentials - Optional XHR withCredentials value.\r\n */", + "meta": { + "filename": "Config.js", + "lineno": 538, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\core", + "code": {} + }, + "kind": "constant", "name": "loaderWithCredentials", "type": { "names": [ @@ -33550,14 +33558,14 @@ "memberof": "Phaser.Core.Config", "longname": "Phaser.Core.Config#loaderWithCredentials", "scope": "instance", - "___id": "T000002R003009", + "___id": "T000002R003011", "___s": true }, { "comment": "/**\r\n * @const {string} Phaser.Core.Config#loaderImageLoadType - Optional load type for image, `XHR` is default, or `HTMLImageElement` for a lightweight way.\r\n */", "meta": { "filename": "Config.js", - "lineno": 538, + "lineno": 543, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\core", "code": {} @@ -33577,14 +33585,14 @@ "memberof": "Phaser.Core.Config", "longname": "Phaser.Core.Config#loaderImageLoadType", "scope": "instance", - "___id": "T000002R003011", + "___id": "T000002R003013", "___s": true }, { "comment": "/**\r\n * @const {string[]} Phaser.Core.Config#loaderLocalScheme - An array of schemes that the Loader considers as being 'local' files. Defaults to: `[ 'file://', 'capacitor://' ]`.\r\n */", "meta": { "filename": "Config.js", - "lineno": 546, + "lineno": 551, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\core", "code": {} @@ -33613,14 +33621,14 @@ "memberof": "Phaser.Core.Config", "longname": "Phaser.Core.Config#loaderLocalScheme", "scope": "instance", - "___id": "T000002R003013", + "___id": "T000002R003015", "___s": true }, { "comment": "/**\r\n * @const {number} Phaser.Core.Config#glowFXQuality - The quality of the Glow FX (defaults to 0.1)\r\n */", "meta": { "filename": "Config.js", - "lineno": 551, + "lineno": 556, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\core", "code": {} @@ -33640,14 +33648,14 @@ "memberof": "Phaser.Core.Config", "longname": "Phaser.Core.Config#glowFXQuality", "scope": "instance", - "___id": "T000002R003015", + "___id": "T000002R003017", "___s": true }, { "comment": "/**\r\n * @const {number} Phaser.Core.Config#glowFXDistance - The distance of the Glow FX (defaults to 10)\r\n */", "meta": { "filename": "Config.js", - "lineno": 556, + "lineno": 561, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\core", "code": {} @@ -33667,14 +33675,14 @@ "memberof": "Phaser.Core.Config", "longname": "Phaser.Core.Config#glowFXDistance", "scope": "instance", - "___id": "T000002R003017", + "___id": "T000002R003019", "___s": true }, { "comment": "/**\r\n * @const {any} Phaser.Core.Config#installGlobalPlugins - An array of global plugins to be installed.\r\n */", "meta": { "filename": "Config.js", - "lineno": 579, + "lineno": 584, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\core", "code": {} @@ -33694,14 +33702,14 @@ "memberof": "Phaser.Core.Config", "longname": "Phaser.Core.Config#installGlobalPlugins", "scope": "instance", - "___id": "T000002R003019", + "___id": "T000002R003021", "___s": true }, { "comment": "/**\r\n * @const {any} Phaser.Core.Config#installScenePlugins - An array of Scene level plugins to be installed.\r\n */", "meta": { "filename": "Config.js", - "lineno": 584, + "lineno": 589, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\core", "code": {} @@ -33721,14 +33729,14 @@ "memberof": "Phaser.Core.Config", "longname": "Phaser.Core.Config#installScenePlugins", "scope": "instance", - "___id": "T000002R003021", + "___id": "T000002R003023", "___s": true }, { "comment": "/**\r\n * @const {any} Phaser.Core.Config#defaultPlugins - The plugins installed into every Scene (in addition to CoreScene and Global).\r\n */", "meta": { "filename": "Config.js", - "lineno": 615, + "lineno": 620, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\core", "code": {} @@ -33748,14 +33756,14 @@ "memberof": "Phaser.Core.Config", "longname": "Phaser.Core.Config#defaultPlugins", "scope": "instance", - "___id": "T000002R003030", + "___id": "T000002R003032", "___s": true }, { "comment": "/**\r\n * @const {string} Phaser.Core.Config#defaultImage - A base64 encoded PNG that will be used as the default blank texture.\r\n */", "meta": { "filename": "Config.js", - "lineno": 623, + "lineno": 628, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\core", "code": {} @@ -33775,14 +33783,14 @@ "memberof": "Phaser.Core.Config", "longname": "Phaser.Core.Config#defaultImage", "scope": "instance", - "___id": "T000002R003033", + "___id": "T000002R003035", "___s": true }, { "comment": "/**\r\n * @const {string} Phaser.Core.Config#missingImage - A base64 encoded PNG that will be used as the default texture when a texture is assigned that is missing or not loaded.\r\n */", "meta": { "filename": "Config.js", - "lineno": 628, + "lineno": 633, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\core", "code": {} @@ -33802,14 +33810,14 @@ "memberof": "Phaser.Core.Config", "longname": "Phaser.Core.Config#missingImage", "scope": "instance", - "___id": "T000002R003035", + "___id": "T000002R003037", "___s": true }, { "comment": "/**\r\n * @const {string} Phaser.Core.Config#whiteImage - A base64 encoded PNG that will be used as the default texture when a texture is assigned that is white or not loaded.\r\n */", "meta": { "filename": "Config.js", - "lineno": 633, + "lineno": 638, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\core", "code": {} @@ -33829,7 +33837,7 @@ "memberof": "Phaser.Core.Config", "longname": "Phaser.Core.Config#whiteImage", "scope": "instance", - "___id": "T000002R003037", + "___id": "T000002R003039", "___s": true }, { @@ -33863,7 +33871,7 @@ "memberof": "Phaser.Core", "longname": "Phaser.Core.CreateRenderer", "scope": "static", - "___id": "T000002R003046", + "___id": "T000002R003048", "___s": true }, { @@ -33897,7 +33905,7 @@ "memberof": "Phaser.Core", "longname": "Phaser.Core.DebugHeader", "scope": "static", - "___id": "T000002R003074", + "___id": "T000002R003076", "___s": true }, { @@ -33925,7 +33933,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:BLUR", "scope": "instance", - "___id": "T000002R003101", + "___id": "T000002R003103", "___s": true }, { @@ -33953,7 +33961,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:BOOT", "scope": "instance", - "___id": "T000002R003103", + "___id": "T000002R003105", "___s": true }, { @@ -33981,7 +33989,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:CONTEXT_LOST", "scope": "instance", - "___id": "T000002R003105", + "___id": "T000002R003107", "___s": true }, { @@ -34009,7 +34017,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:DESTROY", "scope": "instance", - "___id": "T000002R003107", + "___id": "T000002R003109", "___s": true }, { @@ -34037,7 +34045,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:FOCUS", "scope": "instance", - "___id": "T000002R003109", + "___id": "T000002R003111", "___s": true }, { @@ -34065,7 +34073,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:HIDDEN", "scope": "instance", - "___id": "T000002R003111", + "___id": "T000002R003113", "___s": true }, { @@ -34082,7 +34090,7 @@ "memberof": "Phaser.Core", "longname": "Phaser.Core.Events", "scope": "static", - "___id": "T000002R003113", + "___id": "T000002R003115", "___s": true }, { @@ -34110,7 +34118,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:PAUSE", "scope": "instance", - "___id": "T000002R003131", + "___id": "T000002R003133", "___s": true }, { @@ -34163,7 +34171,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:POST_RENDER", "scope": "instance", - "___id": "T000002R003133", + "___id": "T000002R003135", "___s": true }, { @@ -34219,7 +34227,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:POST_STEP", "scope": "instance", - "___id": "T000002R003135", + "___id": "T000002R003137", "___s": true }, { @@ -34272,7 +34280,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:PRE_RENDER", "scope": "instance", - "___id": "T000002R003137", + "___id": "T000002R003139", "___s": true }, { @@ -34328,7 +34336,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:PRE_STEP", "scope": "instance", - "___id": "T000002R003139", + "___id": "T000002R003141", "___s": true }, { @@ -34356,7 +34364,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:READY", "scope": "instance", - "___id": "T000002R003141", + "___id": "T000002R003143", "___s": true }, { @@ -34399,7 +34407,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:RESUME", "scope": "instance", - "___id": "T000002R003143", + "___id": "T000002R003145", "___s": true }, { @@ -34455,7 +34463,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:STEP", "scope": "instance", - "___id": "T000002R003145", + "___id": "T000002R003147", "___s": true }, { @@ -34498,7 +34506,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:SYSTEM_READY", "scope": "instance", - "___id": "T000002R003147", + "___id": "T000002R003149", "___s": true }, { @@ -34526,7 +34534,7 @@ "memberof": "Phaser.Core.Events", "longname": "Phaser.Core.Events#event:VISIBLE", "scope": "instance", - "___id": "T000002R003149", + "___id": "T000002R003151", "___s": true }, { @@ -34567,7 +34575,7 @@ ], "scope": "static", "longname": "Phaser.Game", - "___id": "T000002R003176", + "___id": "T000002R003178", "___s": true }, { @@ -34596,7 +34604,7 @@ "longname": "Phaser.Game#config", "scope": "instance", "kind": "member", - "___id": "T000002R003179", + "___id": "T000002R003181", "___s": true }, { @@ -34634,7 +34642,7 @@ "longname": "Phaser.Game#renderer", "scope": "instance", "kind": "member", - "___id": "T000002R003181", + "___id": "T000002R003183", "___s": true }, { @@ -34662,7 +34670,7 @@ "longname": "Phaser.Game#domContainer", "scope": "instance", "kind": "member", - "___id": "T000002R003183", + "___id": "T000002R003185", "___s": true }, { @@ -34690,7 +34698,7 @@ "longname": "Phaser.Game#canvas", "scope": "instance", "kind": "member", - "___id": "T000002R003185", + "___id": "T000002R003187", "___s": true }, { @@ -34728,7 +34736,7 @@ "longname": "Phaser.Game#context", "scope": "instance", "kind": "member", - "___id": "T000002R003187", + "___id": "T000002R003189", "___s": true }, { @@ -34757,7 +34765,7 @@ "longname": "Phaser.Game#isBooted", "scope": "instance", "kind": "member", - "___id": "T000002R003189", + "___id": "T000002R003191", "___s": true }, { @@ -34786,7 +34794,7 @@ "longname": "Phaser.Game#isRunning", "scope": "instance", "kind": "member", - "___id": "T000002R003191", + "___id": "T000002R003193", "___s": true }, { @@ -34814,7 +34822,7 @@ "longname": "Phaser.Game#events", "scope": "instance", "kind": "member", - "___id": "T000002R003193", + "___id": "T000002R003195", "___s": true }, { @@ -34842,7 +34850,7 @@ "longname": "Phaser.Game#anims", "scope": "instance", "kind": "member", - "___id": "T000002R003195", + "___id": "T000002R003197", "___s": true }, { @@ -34870,7 +34878,7 @@ "longname": "Phaser.Game#textures", "scope": "instance", "kind": "member", - "___id": "T000002R003197", + "___id": "T000002R003199", "___s": true }, { @@ -34898,7 +34906,7 @@ "longname": "Phaser.Game#cache", "scope": "instance", "kind": "member", - "___id": "T000002R003199", + "___id": "T000002R003201", "___s": true }, { @@ -34926,7 +34934,7 @@ "longname": "Phaser.Game#registry", "scope": "instance", "kind": "member", - "___id": "T000002R003201", + "___id": "T000002R003203", "___s": true }, { @@ -34954,7 +34962,7 @@ "longname": "Phaser.Game#input", "scope": "instance", "kind": "member", - "___id": "T000002R003203", + "___id": "T000002R003205", "___s": true }, { @@ -34982,7 +34990,7 @@ "longname": "Phaser.Game#scene", "scope": "instance", "kind": "member", - "___id": "T000002R003205", + "___id": "T000002R003207", "___s": true }, { @@ -35010,7 +35018,7 @@ "longname": "Phaser.Game#device", "scope": "instance", "kind": "member", - "___id": "T000002R003207", + "___id": "T000002R003209", "___s": true }, { @@ -35038,7 +35046,7 @@ "longname": "Phaser.Game#scale", "scope": "instance", "kind": "member", - "___id": "T000002R003209", + "___id": "T000002R003211", "___s": true }, { @@ -35081,7 +35089,7 @@ "longname": "Phaser.Game#sound", "scope": "instance", "kind": "member", - "___id": "T000002R003211", + "___id": "T000002R003213", "___s": true }, { @@ -35109,7 +35117,7 @@ "longname": "Phaser.Game#loop", "scope": "instance", "kind": "member", - "___id": "T000002R003214", + "___id": "T000002R003216", "___s": true }, { @@ -35137,7 +35145,7 @@ "longname": "Phaser.Game#plugins", "scope": "instance", "kind": "member", - "___id": "T000002R003216", + "___id": "T000002R003218", "___s": true }, { @@ -35165,7 +35173,7 @@ "longname": "Phaser.Game#facebook", "scope": "instance", "kind": "member", - "___id": "T000002R003218", + "___id": "T000002R003220", "___s": true }, { @@ -35194,7 +35202,7 @@ "longname": "Phaser.Game#hasFocus", "scope": "instance", "kind": "member", - "___id": "T000002R003226", + "___id": "T000002R003228", "___s": true }, { @@ -35222,7 +35230,7 @@ "longname": "Phaser.Game#isPaused", "scope": "instance", "kind": "member", - "___id": "T000002R003228", + "___id": "T000002R003230", "___s": true }, { @@ -35248,7 +35256,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#boot", "scope": "instance", - "___id": "T000002R003230", + "___id": "T000002R003232", "___s": true }, { @@ -35268,7 +35276,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#start", "scope": "instance", - "___id": "T000002R003236", + "___id": "T000002R003238", "___s": true }, { @@ -35322,7 +35330,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#step", "scope": "instance", - "___id": "T000002R003240", + "___id": "T000002R003242", "___s": true }, { @@ -35373,7 +35381,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#headlessStep", "scope": "instance", - "___id": "T000002R003244", + "___id": "T000002R003246", "___s": true }, { @@ -35396,7 +35404,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#onHidden", "scope": "instance", - "___id": "T000002R003248", + "___id": "T000002R003250", "___s": true }, { @@ -35418,7 +35426,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#pause", "scope": "instance", - "___id": "T000002R003250", + "___id": "T000002R003252", "___s": true }, { @@ -35441,7 +35449,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#onVisible", "scope": "instance", - "___id": "T000002R003254", + "___id": "T000002R003256", "___s": true }, { @@ -35463,7 +35471,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#resume", "scope": "instance", - "___id": "T000002R003256", + "___id": "T000002R003258", "___s": true }, { @@ -35483,7 +35491,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#onBlur", "scope": "instance", - "___id": "T000002R003260", + "___id": "T000002R003262", "___s": true }, { @@ -35503,7 +35511,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#onFocus", "scope": "instance", - "___id": "T000002R003263", + "___id": "T000002R003265", "___s": true }, { @@ -35536,7 +35544,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#getFrame", "scope": "instance", - "___id": "T000002R003266", + "___id": "T000002R003268", "___s": true }, { @@ -35569,7 +35577,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#getTime", "scope": "instance", - "___id": "T000002R003268", + "___id": "T000002R003270", "___s": true }, { @@ -35621,7 +35629,7 @@ "memberof": "Phaser.Game", "longname": "Phaser.Game#destroy", "scope": "instance", - "___id": "T000002R003270", + "___id": "T000002R003272", "___s": true }, { @@ -35638,7 +35646,7 @@ "memberof": "Phaser", "longname": "Phaser.Core", "scope": "static", - "___id": "T000002R003280", + "___id": "T000002R003282", "___s": true }, { @@ -35684,7 +35692,7 @@ ], "scope": "static", "longname": "Phaser.Core.TimeStep", - "___id": "T000002R003292", + "___id": "T000002R003294", "___s": true }, { @@ -35713,7 +35721,7 @@ "longname": "Phaser.Core.TimeStep#game", "scope": "instance", "kind": "member", - "___id": "T000002R003295", + "___id": "T000002R003297", "___s": true }, { @@ -35742,7 +35750,7 @@ "longname": "Phaser.Core.TimeStep#raf", "scope": "instance", "kind": "member", - "___id": "T000002R003297", + "___id": "T000002R003299", "___s": true }, { @@ -35772,7 +35780,7 @@ "longname": "Phaser.Core.TimeStep#started", "scope": "instance", "kind": "member", - "___id": "T000002R003299", + "___id": "T000002R003301", "___s": true }, { @@ -35802,7 +35810,7 @@ "longname": "Phaser.Core.TimeStep#running", "scope": "instance", "kind": "member", - "___id": "T000002R003301", + "___id": "T000002R003303", "___s": true }, { @@ -35831,7 +35839,7 @@ "longname": "Phaser.Core.TimeStep#minFps", "scope": "instance", "kind": "member", - "___id": "T000002R003303", + "___id": "T000002R003305", "___s": true }, { @@ -35860,7 +35868,7 @@ "longname": "Phaser.Core.TimeStep#targetFps", "scope": "instance", "kind": "member", - "___id": "T000002R003305", + "___id": "T000002R003307", "___s": true }, { @@ -35889,7 +35897,7 @@ "longname": "Phaser.Core.TimeStep#fpsLimit", "scope": "instance", "kind": "member", - "___id": "T000002R003307", + "___id": "T000002R003309", "___s": true }, { @@ -35918,7 +35926,7 @@ "longname": "Phaser.Core.TimeStep#hasFpsLimit", "scope": "instance", "kind": "member", - "___id": "T000002R003309", + "___id": "T000002R003311", "___s": true }, { @@ -35948,7 +35956,7 @@ "longname": "Phaser.Core.TimeStep#actualFps", "scope": "instance", "kind": "member", - "___id": "T000002R003317", + "___id": "T000002R003319", "___s": true }, { @@ -35978,7 +35986,7 @@ "longname": "Phaser.Core.TimeStep#nextFpsUpdate", "scope": "instance", "kind": "member", - "___id": "T000002R003319", + "___id": "T000002R003321", "___s": true }, { @@ -36008,7 +36016,7 @@ "longname": "Phaser.Core.TimeStep#framesThisSecond", "scope": "instance", "kind": "member", - "___id": "T000002R003321", + "___id": "T000002R003323", "___s": true }, { @@ -36037,7 +36045,7 @@ "longname": "Phaser.Core.TimeStep#callback", "scope": "instance", "kind": "member", - "___id": "T000002R003323", + "___id": "T000002R003325", "___s": true }, { @@ -36067,7 +36075,7 @@ "longname": "Phaser.Core.TimeStep#forceSetTimeOut", "scope": "instance", "kind": "member", - "___id": "T000002R003325", + "___id": "T000002R003327", "___s": true }, { @@ -36096,7 +36104,7 @@ "longname": "Phaser.Core.TimeStep#time", "scope": "instance", "kind": "member", - "___id": "T000002R003327", + "___id": "T000002R003329", "___s": true }, { @@ -36125,7 +36133,7 @@ "longname": "Phaser.Core.TimeStep#startTime", "scope": "instance", "kind": "member", - "___id": "T000002R003329", + "___id": "T000002R003331", "___s": true }, { @@ -36154,7 +36162,7 @@ "longname": "Phaser.Core.TimeStep#lastTime", "scope": "instance", "kind": "member", - "___id": "T000002R003331", + "___id": "T000002R003333", "___s": true }, { @@ -36184,7 +36192,7 @@ "longname": "Phaser.Core.TimeStep#frame", "scope": "instance", "kind": "member", - "___id": "T000002R003333", + "___id": "T000002R003335", "___s": true }, { @@ -36214,7 +36222,7 @@ "longname": "Phaser.Core.TimeStep#inFocus", "scope": "instance", "kind": "member", - "___id": "T000002R003335", + "___id": "T000002R003337", "___s": true }, { @@ -36244,7 +36252,7 @@ "longname": "Phaser.Core.TimeStep#pauseDuration", "scope": "instance", "kind": "member", - "___id": "T000002R003337", + "___id": "T000002R003339", "___s": true }, { @@ -36273,7 +36281,7 @@ "longname": "Phaser.Core.TimeStep#delta", "scope": "instance", "kind": "member", - "___id": "T000002R003343", + "___id": "T000002R003345", "___s": true }, { @@ -36302,7 +36310,7 @@ "longname": "Phaser.Core.TimeStep#deltaIndex", "scope": "instance", "kind": "member", - "___id": "T000002R003345", + "___id": "T000002R003347", "___s": true }, { @@ -36339,7 +36347,7 @@ "longname": "Phaser.Core.TimeStep#deltaHistory", "scope": "instance", "kind": "member", - "___id": "T000002R003347", + "___id": "T000002R003349", "___s": true }, { @@ -36368,7 +36376,7 @@ "longname": "Phaser.Core.TimeStep#deltaSmoothingMax", "scope": "instance", "kind": "member", - "___id": "T000002R003349", + "___id": "T000002R003351", "___s": true }, { @@ -36397,7 +36405,7 @@ "longname": "Phaser.Core.TimeStep#panicMax", "scope": "instance", "kind": "member", - "___id": "T000002R003351", + "___id": "T000002R003353", "___s": true }, { @@ -36426,7 +36434,7 @@ "longname": "Phaser.Core.TimeStep#rawDelta", "scope": "instance", "kind": "member", - "___id": "T000002R003353", + "___id": "T000002R003355", "___s": true }, { @@ -36455,7 +36463,7 @@ "longname": "Phaser.Core.TimeStep#now", "scope": "instance", "kind": "member", - "___id": "T000002R003355", + "___id": "T000002R003357", "___s": true }, { @@ -36483,7 +36491,7 @@ "longname": "Phaser.Core.TimeStep#smoothStep", "scope": "instance", "kind": "member", - "___id": "T000002R003357", + "___id": "T000002R003359", "___s": true }, { @@ -36502,7 +36510,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#blur", "scope": "instance", - "___id": "T000002R003359", + "___id": "T000002R003361", "___s": true }, { @@ -36521,7 +36529,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#focus", "scope": "instance", - "___id": "T000002R003362", + "___id": "T000002R003364", "___s": true }, { @@ -36540,7 +36548,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#pause", "scope": "instance", - "___id": "T000002R003365", + "___id": "T000002R003367", "___s": true }, { @@ -36559,7 +36567,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#resume", "scope": "instance", - "___id": "T000002R003368", + "___id": "T000002R003370", "___s": true }, { @@ -36578,7 +36586,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#resetDelta", "scope": "instance", - "___id": "T000002R003372", + "___id": "T000002R003374", "___s": true }, { @@ -36612,7 +36620,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#start", "scope": "instance", - "___id": "T000002R003384", + "___id": "T000002R003386", "___s": true }, { @@ -36660,7 +36668,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#smoothDelta", "scope": "instance", - "___id": "T000002R003393", + "___id": "T000002R003395", "___s": true }, { @@ -36694,7 +36702,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#updateFPS", "scope": "instance", - "___id": "T000002R003407", + "___id": "T000002R003409", "___s": true }, { @@ -36728,7 +36736,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#stepLimitFPS", "scope": "instance", - "___id": "T000002R003412", + "___id": "T000002R003414", "___s": true }, { @@ -36762,7 +36770,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#step", "scope": "instance", - "___id": "T000002R003422", + "___id": "T000002R003424", "___s": true }, { @@ -36781,7 +36789,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#tick", "scope": "instance", - "___id": "T000002R003431", + "___id": "T000002R003433", "___s": true }, { @@ -36800,7 +36808,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#sleep", "scope": "instance", - "___id": "T000002R003434", + "___id": "T000002R003436", "___s": true }, { @@ -36836,7 +36844,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#wake", "scope": "instance", - "___id": "T000002R003437", + "___id": "T000002R003439", "___s": true }, { @@ -36869,7 +36877,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#getDuration", "scope": "instance", - "___id": "T000002R003447", + "___id": "T000002R003449", "___s": true }, { @@ -36902,7 +36910,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#getDurationMS", "scope": "instance", - "___id": "T000002R003449", + "___id": "T000002R003451", "___s": true }, { @@ -36936,7 +36944,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#stop", "scope": "instance", - "___id": "T000002R003451", + "___id": "T000002R003453", "___s": true }, { @@ -36955,7 +36963,7 @@ "memberof": "Phaser.Core.TimeStep", "longname": "Phaser.Core.TimeStep#destroy", "scope": "instance", - "___id": "T000002R003455", + "___id": "T000002R003457", "___s": true }, { @@ -37032,7 +37040,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.AudioConfig", "scope": "static", - "___id": "T000002R003461", + "___id": "T000002R003463", "___s": true }, { @@ -37114,7 +37122,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.BannerConfig", "scope": "static", - "___id": "T000002R003462", + "___id": "T000002R003464", "___s": true }, { @@ -37152,7 +37160,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.BootCallback", "scope": "static", - "___id": "T000002R003463", + "___id": "T000002R003465", "___s": true }, { @@ -37211,7 +37219,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.CallbacksConfig", "scope": "static", - "___id": "T000002R003464", + "___id": "T000002R003466", "___s": true }, { @@ -37285,7 +37293,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.DOMContainerConfig", "scope": "static", - "___id": "T000002R003465", + "___id": "T000002R003467", "___s": true }, { @@ -37419,11 +37427,11 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.FPSConfig", "scope": "static", - "___id": "T000002R003466", + "___id": "T000002R003468", "___s": true }, { - "comment": "/**\r\n * @typedef {object} Phaser.Types.Core.GameConfig\r\n * @since 3.0.0\r\n *\r\n * @property {(number|string)} [width=1024] - The width of the game, in game pixels.\r\n * @property {(number|string)} [height=768] - The height of the game, in game pixels.\r\n * @property {number} [zoom=1] - Simple scale applied to the game canvas. 2 is double size, 0.5 is half size, etc.\r\n * @property {number} [type=CONST.AUTO] - Which renderer to use. Phaser.AUTO, Phaser.CANVAS, Phaser.HEADLESS, or Phaser.WEBGL. AUTO picks WEBGL if available, otherwise CANVAS.\r\n * @property {(number|boolean)} [stableSort=-1] - `true` or `1` = Use the built-in StableSort (needed for older browsers), `false` or `0` = Rely on ES2019 Array.sort being stable (modern browsers only), or `-1` = Try and determine this automatically based on browser inspection (not guaranteed to work, errs on side of caution).\r\n * @property {(HTMLElement|string|null)} [parent=undefined] - The DOM element that will contain the game canvas, or its `id`. If undefined, or if the named element doesn't exist, the game canvas is appended to the document body. If `null` no parent will be used and you are responsible for adding the canvas to the dom.\r\n * @property {HTMLCanvasElement} [canvas=null] - Provide your own Canvas element for Phaser to use instead of creating one.\r\n * @property {string} [canvasStyle=null] - CSS styles to apply to the game canvas instead of Phasers default styles.\r\n * @property {boolean}[customEnvironment=false] - Is Phaser running under a custom (non-native web) environment? If so, set this to `true` to skip internal Feature detection. If `true` the `renderType` cannot be left as `AUTO`.\r\n * @property {CanvasRenderingContext2D} [context] - Provide your own Canvas Context for Phaser to use, instead of creating one.\r\n * @property {(Phaser.Types.Scenes.SceneType|Phaser.Types.Scenes.SceneType[])} [scene=null] - A scene or scenes to add to the game. If several are given, the first is started; the remainder are started only if they have `{ active: true }`. See the `sceneConfig` argument in `Phaser.Scenes.SceneManager#add`.\r\n * @property {string[]} [seed] - Seed for the random number generator.\r\n * @property {string} [title=''] - The title of the game. Shown in the browser console.\r\n * @property {string} [url='https://phaser.io'] - The URL of the game. Shown in the browser console.\r\n * @property {string} [version=''] - The version of the game. Shown in the browser console.\r\n * @property {boolean} [autoFocus=true] - Automatically call window.focus() when the game boots. Usually necessary to capture input events if the game is in a separate frame.\r\n * @property {(boolean|Phaser.Types.Core.InputConfig)} [input] - Input configuration, or `false` to disable all game input.\r\n * @property {boolean} [disableContextMenu=false] - Disable the browser's default 'contextmenu' event (usually triggered by a right-button mouse click).\r\n * @property {(boolean|Phaser.Types.Core.BannerConfig)} [banner=false] - Configuration for the banner printed in the browser console when the game starts.\r\n * @property {Phaser.Types.Core.DOMContainerConfig} [dom] - The DOM Container configuration object.\r\n * @property {Phaser.Types.Core.FPSConfig} [fps] - Game loop configuration.\r\n * @property {Phaser.Types.Core.RenderConfig} [render] - Game renderer configuration.\r\n * @property {Phaser.Types.Core.CallbacksConfig} [callbacks] - Optional callbacks to run before or after game boot.\r\n * @property {Phaser.Types.Core.LoaderConfig} [loader] - Loader configuration.\r\n * @property {Phaser.Types.Core.ImagesConfig} [images] - Images configuration.\r\n * @property {Phaser.Types.Core.PhysicsConfig} [physics] - Physics configuration.\r\n * @property {Phaser.Types.Core.PluginObject|Phaser.Types.Core.PluginObjectItem[]} [plugins] - Plugins to install.\r\n * @property {Phaser.Types.Core.ScaleConfig} [scale] - The Scale Manager configuration.\r\n * @property {Phaser.Types.Core.AudioConfig} [audio] - The Audio Configuration object.\r\n * @property {Phaser.Types.Core.PipelineConfig} [pipeline] - A WebGL Pipeline configuration object. Can also be part of the `RenderConfig`.\r\n * @property {(string|number)} [backgroundColor=0x000000] - The background color of the game canvas. The default is black.\r\n * @property {boolean} [antialias=true] - When set to `true`, WebGL uses linear interpolation to draw scaled or rotated textures, giving a smooth appearance. When set to `false`, WebGL uses nearest-neighbor interpolation, giving a crisper appearance. `false` also disables antialiasing of the game canvas itself, if the browser supports it, when the game canvas is scaled.\r\n * @property {boolean} [antialiasGL=true] - Sets the `antialias` property when the WebGL context is created. Setting this value does not impact any subsequent textures that are created, or the canvas style attributes.\r\n * @property {boolean} [desynchronized=false] - When set to `true` it will create a desynchronized context for both 2D and WebGL. See https://developers.google.com/web/updates/2019/05/desynchronized for details.\r\n * @property {boolean} [pixelArt=false] - Sets `antialias` to false and `roundPixels` to true. This is the best setting for pixel-art games.\r\n * @property {boolean} [roundPixels=false] - Draw texture-based Game Objects at only whole-integer positions. Game Objects without textures, like Graphics, ignore this property.\r\n * @property {boolean} [transparent=false] - Whether the game canvas will be transparent. Boolean that indicates if the canvas contains an alpha channel. If set to false, the browser now knows that the backdrop is always opaque, which can speed up drawing of transparent content and images.\r\n * @property {boolean} [clearBeforeRender=true] - Whether the game canvas will be cleared between each rendering frame.\r\n * @property {boolean} [preserveDrawingBuffer=false] - If the value is true the WebGL buffers will not be cleared and will preserve their values until cleared or overwritten by the author.\r\n * @property {boolean} [premultipliedAlpha=true] - In WebGL mode, the drawing buffer contains colors with pre-multiplied alpha.\r\n * @property {boolean} [failIfMajorPerformanceCaveat=false] - Let the browser abort creating a WebGL context if it judges performance would be unacceptable.\r\n * @property {string} [powerPreference='default'] - \"high-performance\", \"low-power\" or \"default\". A hint to the browser on how much device power the game might use.\r\n * @property {number} [batchSize=4096] - The default WebGL batch size. Represents the number of _quads_ that can be added to a single batch.\r\n * @property {number} [maxLights=10] - The maximum number of lights allowed to be visible within range of a single Camera in the LightManager.\r\n * @property {number} [maxTextures=-1] - When in WebGL mode, this sets the maximum number of GPU Textures to use. The default, -1, will use all available units. The WebGL1 spec says all browsers should provide a minimum of 8.\r\n * @property {string} [mipmapFilter='LINEAR'] - The mipmap magFilter to be used when creating WebGL textures.\r\n * @property {boolean} [autoMobilePipeline=true] - Automatically enable the Mobile Pipeline if iOS or Android detected?\r\n * @property {string} [defaultPipeline='MultiPipeline'] - The WebGL Pipeline that Game Objects will use by default. Set to 'MultiPipeline' as standard.\r\n * @property {boolean} [expandParent=true] - Is the Scale Manager allowed to adjust the CSS height property of the parent and/or document body to be 100%?\r\n * @property {Phaser.Scale.ScaleModeType} [mode=Phaser.Scale.ScaleModes.NONE] - The scale mode.\r\n * @property {WidthHeight} [min] - The minimum width and height the canvas can be scaled down to.\r\n * @property {WidthHeight} [max] - The maximum width the canvas can be scaled up to.\r\n * @property {boolean} [autoRound=false] - Automatically round the display and style sizes of the canvas. This can help with performance in lower-powered devices.\r\n * @property {Phaser.Scale.CenterType} [autoCenter=Phaser.Scale.Center.NO_CENTER] - Automatically center the canvas within the parent?\r\n * @property {number} [resizeInterval=500] - How many ms should elapse before checking if the browser size has changed?\r\n * @property {?(HTMLElement|string)} [fullscreenTarget] - The DOM element that will be sent into full screen mode, or its `id`. If undefined Phaser will create its own div and insert the canvas into it when entering fullscreen mode.\r\n * @property {boolean} [disablePreFX=false] - Disables the automatic creation of the Pre FX Pipelines. If disabled, you cannot use the built-in Pre FX on Game Objects.\r\n * @property {boolean} [disablePostFX=false] - Disables the automatic creation of the Post FX Pipelines. If disabled, you cannot use the built-in Post FX on Game Objects.\r\n */", + "comment": "/**\r\n * @typedef {object} Phaser.Types.Core.GameConfig\r\n * @since 3.0.0\r\n *\r\n * @property {(number|string)} [width=1024] - The width of the game, in game pixels.\r\n * @property {(number|string)} [height=768] - The height of the game, in game pixels.\r\n * @property {number} [zoom=1] - Simple scale applied to the game canvas. 2 is double size, 0.5 is half size, etc.\r\n * @property {number} [type=CONST.AUTO] - Which renderer to use. Phaser.AUTO, Phaser.CANVAS, Phaser.HEADLESS, or Phaser.WEBGL. AUTO picks WEBGL if available, otherwise CANVAS.\r\n * @property {(number|boolean)} [stableSort=-1] - `true` or `1` = Use the built-in StableSort (needed for older browsers), `false` or `0` = Rely on ES2019 Array.sort being stable (modern browsers only), or `-1` = Try and determine this automatically based on browser inspection (not guaranteed to work, errs on side of caution).\r\n * @property {(HTMLElement|string|null)} [parent=undefined] - The DOM element that will contain the game canvas, or its `id`. If undefined, or if the named element doesn't exist, the game canvas is appended to the document body. If `null` no parent will be used and you are responsible for adding the canvas to the dom.\r\n * @property {HTMLCanvasElement} [canvas=null] - Provide your own Canvas element for Phaser to use instead of creating one.\r\n * @property {string} [canvasStyle=null] - CSS styles to apply to the game canvas instead of Phasers default styles.\r\n * @property {boolean}[customEnvironment=false] - Is Phaser running under a custom (non-native web) environment? If so, set this to `true` to skip internal Feature detection. If `true` the `renderType` cannot be left as `AUTO`.\r\n * @property {CanvasRenderingContext2D} [context] - Provide your own Canvas Context for Phaser to use, instead of creating one.\r\n * @property {(Phaser.Types.Scenes.SceneType|Phaser.Types.Scenes.SceneType[])} [scene=null] - A scene or scenes to add to the game. If several are given, the first is started; the remainder are started only if they have `{ active: true }`. See the `sceneConfig` argument in `Phaser.Scenes.SceneManager#add`.\r\n * @property {string[]} [seed] - Seed for the random number generator.\r\n * @property {string} [title=''] - The title of the game. Shown in the browser console.\r\n * @property {string} [url='https://phaser.io'] - The URL of the game. Shown in the browser console.\r\n * @property {string} [version=''] - The version of the game. Shown in the browser console.\r\n * @property {boolean} [autoFocus=true] - Automatically call window.focus() when the game boots. Usually necessary to capture input events if the game is in a separate frame.\r\n * @property {(boolean|Phaser.Types.Core.InputConfig)} [input] - Input configuration, or `false` to disable all game input.\r\n * @property {boolean} [disableContextMenu=false] - Disable the browser's default 'contextmenu' event (usually triggered by a right-button mouse click).\r\n * @property {(boolean|Phaser.Types.Core.BannerConfig)} [banner=false] - Configuration for the banner printed in the browser console when the game starts.\r\n * @property {Phaser.Types.Core.DOMContainerConfig} [dom] - The DOM Container configuration object.\r\n * @property {Phaser.Types.Core.FPSConfig} [fps] - Game loop configuration.\r\n * @property {Phaser.Types.Core.RenderConfig} [render] - Game renderer configuration.\r\n * @property {Phaser.Types.Core.CallbacksConfig} [callbacks] - Optional callbacks to run before or after game boot.\r\n * @property {Phaser.Types.Core.LoaderConfig} [loader] - Loader configuration.\r\n * @property {Phaser.Types.Core.ImagesConfig} [images] - Images configuration.\r\n * @property {Phaser.Types.Core.PhysicsConfig} [physics] - Physics configuration.\r\n * @property {Phaser.Types.Core.PluginObject|Phaser.Types.Core.PluginObjectItem[]} [plugins] - Plugins to install.\r\n * @property {Phaser.Types.Core.ScaleConfig} [scale] - The Scale Manager configuration.\r\n * @property {Phaser.Types.Core.AudioConfig} [audio] - The Audio Configuration object.\r\n * @property {Phaser.Types.Core.PipelineConfig} [pipeline] - The WebGL Pipeline configuration object. Can also be part of the `RenderConfig`.\r\n * @property {(string|number)} [backgroundColor=0x000000] - The background color of the game canvas. The default is black.\r\n * @property {boolean} [antialias=true] - When set to `true`, WebGL uses linear interpolation to draw scaled or rotated textures, giving a smooth appearance. When set to `false`, WebGL uses nearest-neighbor interpolation, giving a crisper appearance. `false` also disables antialiasing of the game canvas itself, if the browser supports it, when the game canvas is scaled.\r\n * @property {boolean} [antialiasGL=true] - Sets the `antialias` property when the WebGL context is created. Setting this value does not impact any subsequent textures that are created, or the canvas style attributes.\r\n * @property {boolean} [desynchronized=false] - When set to `true` it will create a desynchronized context for both 2D and WebGL. See https://developers.google.com/web/updates/2019/05/desynchronized for details.\r\n * @property {boolean} [pixelArt=false] - Sets `antialias` to false and `roundPixels` to true. This is the best setting for pixel-art games.\r\n * @property {boolean} [roundPixels=false] - Draw texture-based Game Objects at only whole-integer positions. Game Objects without textures, like Graphics, ignore this property.\r\n * @property {boolean} [transparent=false] - Whether the game canvas will be transparent. Boolean that indicates if the canvas contains an alpha channel. If set to false, the browser now knows that the backdrop is always opaque, which can speed up drawing of transparent content and images.\r\n * @property {boolean} [clearBeforeRender=true] - Whether the game canvas will be cleared between each rendering frame.\r\n * @property {boolean} [preserveDrawingBuffer=false] - If the value is true the WebGL buffers will not be cleared and will preserve their values until cleared or overwritten by the author.\r\n * @property {boolean} [premultipliedAlpha=true] - In WebGL mode, the drawing buffer contains colors with pre-multiplied alpha.\r\n * @property {boolean} [failIfMajorPerformanceCaveat=false] - Let the browser abort creating a WebGL context if it judges performance would be unacceptable.\r\n * @property {string} [powerPreference='default'] - \"high-performance\", \"low-power\" or \"default\". A hint to the browser on how much device power the game might use.\r\n * @property {number} [batchSize=4096] - The default WebGL batch size. Represents the number of _quads_ that can be added to a single batch.\r\n * @property {number} [maxLights=10] - The maximum number of lights allowed to be visible within range of a single Camera in the LightManager.\r\n * @property {number} [maxTextures=-1] - When in WebGL mode, this sets the maximum number of GPU Textures to use. The default, -1, will use all available units. The WebGL1 spec says all browsers should provide a minimum of 8.\r\n * @property {string} [mipmapFilter='LINEAR'] - The mipmap magFilter to be used when creating WebGL textures.\r\n * @property {boolean} [autoMobilePipeline=true] - Automatically enable the Mobile Pipeline if iOS or Android detected?\r\n * @property {string} [defaultPipeline='MultiPipeline'] - The WebGL Pipeline that Game Objects will use by default. Set to 'MultiPipeline' as standard.\r\n * @property {boolean} [expandParent=true] - Is the Scale Manager allowed to adjust the CSS height property of the parent and/or document body to be 100%?\r\n * @property {Phaser.Scale.ScaleModeType} [mode=Phaser.Scale.ScaleModes.NONE] - The scale mode.\r\n * @property {WidthHeight} [min] - The minimum width and height the canvas can be scaled down to.\r\n * @property {WidthHeight} [max] - The maximum width the canvas can be scaled up to.\r\n * @property {boolean} [autoRound=false] - Automatically round the display and style sizes of the canvas. This can help with performance in lower-powered devices.\r\n * @property {Phaser.Scale.CenterType} [autoCenter=Phaser.Scale.Center.NO_CENTER] - Automatically center the canvas within the parent?\r\n * @property {number} [resizeInterval=500] - How many ms should elapse before checking if the browser size has changed?\r\n * @property {?(HTMLElement|string)} [fullscreenTarget] - The DOM element that will be sent into full screen mode, or its `id`. If undefined Phaser will create its own div and insert the canvas into it when entering fullscreen mode.\r\n * @property {boolean} [disablePreFX=false] - Disables the automatic creation of the Pre FX Pipelines. If disabled, you cannot use the built-in Pre FX on Game Objects.\r\n * @property {boolean} [disablePostFX=false] - Disables the automatic creation of the Post FX Pipelines. If disabled, you cannot use the built-in Post FX on Game Objects.\r\n */", "meta": { "filename": "GameConfig.js", "lineno": 1, @@ -37987,7 +37995,7 @@ } }, "optional": true, - "description": "A WebGL Pipeline configuration object. Can also be part of the `RenderConfig`.", + "description": "The WebGL Pipeline configuration object. Can also be part of the `RenderConfig`.", "name": "pipeline" }, { @@ -38433,7 +38441,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.GameConfig", "scope": "static", - "___id": "T000002R003467", + "___id": "T000002R003469", "___s": true }, { @@ -38476,7 +38484,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.GamepadInputConfig", "scope": "static", - "___id": "T000002R003468", + "___id": "T000002R003470", "___s": true }, { @@ -38547,7 +38555,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.ImagesConfig", "scope": "static", - "___id": "T000002R003469", + "___id": "T000002R003471", "___s": true }, { @@ -38564,7 +38572,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Core", "scope": "static", - "___id": "T000002R003470", + "___id": "T000002R003472", "___s": true }, { @@ -38738,7 +38746,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.InputConfig", "scope": "static", - "___id": "T000002R003471", + "___id": "T000002R003473", "___s": true }, { @@ -38806,11 +38814,11 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.KeyboardInputConfig", "scope": "static", - "___id": "T000002R003472", + "___id": "T000002R003474", "___s": true }, { - "comment": "/**\r\n * @typedef {object} Phaser.Types.Core.LoaderConfig\r\n * @since 3.0.0\r\n *\r\n * @property {string} [baseURL] - A URL used to resolve paths given to the loader. Example: 'http://labs.phaser.io/assets/'.\r\n * @property {string} [path] - A URL path used to resolve relative paths given to the loader. Example: 'images/sprites/'.\r\n * @property {number} [maxParallelDownloads=32] - The maximum number of resources the loader will start loading at once.\r\n * @property {(string|undefined)} [crossOrigin=undefined] - 'anonymous', 'use-credentials', or `undefined`. If you're not making cross-origin requests, leave this as `undefined`. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_settings_attributes}.\r\n * @property {string} [responseType] - The response type of the XHR request, e.g. `blob`, `text`, etc.\r\n * @property {boolean} [async=true] - Should the XHR request use async or not?\r\n * @property {string} [user] - Optional username for all XHR requests.\r\n * @property {string} [password] - Optional password for all XHR requests.\r\n * @property {number} [timeout=0] - Optional XHR timeout value, in ms.\r\n * @property {string[]} [localScheme] - An optional array of schemes that the Loader considers as being 'local' files. Defaults to: `[ 'file://', 'capacitor://' ]` if not specified.\r\n * @property {boolean} [withCredentials=false] - Optional XHR withCredentials value.\r\n * @property {string} [imageLoadType='XHR'] - Optional load type for image, `XHR` is default, or `HTMLImageElement` for a lightweight way.\r\n */", + "comment": "/**\r\n * @typedef {object} Phaser.Types.Core.LoaderConfig\r\n * @since 3.0.0\r\n *\r\n * @property {string} [baseURL] - A URL used to resolve paths given to the loader. Example: 'http://labs.phaser.io/assets/'.\r\n * @property {string} [path] - A URL path used to resolve relative paths given to the loader. Example: 'images/sprites/'.\r\n * @property {number} [maxParallelDownloads=32] - The maximum number of resources the loader will start loading at once.\r\n * @property {(string|undefined)} [crossOrigin=undefined] - 'anonymous', 'use-credentials', or `undefined`. If you're not making cross-origin requests, leave this as `undefined`. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_settings_attributes}.\r\n * @property {string} [responseType] - The response type of the XHR request, e.g. `blob`, `text`, etc.\r\n * @property {boolean} [async=true] - Should the XHR request use async or not?\r\n * @property {string} [user] - Optional username for all XHR requests.\r\n * @property {string} [password] - Optional password for all XHR requests.\r\n * @property {number} [timeout=0] - Optional XHR timeout value, in ms.\r\n * @property {string[]} [localScheme] - An optional array of schemes that the Loader considers as being 'local' files. Defaults to: `[ 'file://', 'capacitor://' ]` if not specified.\r\n * @property {boolean} [withCredentials=false] - Optional XHR withCredentials value.\r\n * @property {string} [imageLoadType='XHR'] - Optional load type for image, `XHR` is default, or `HTMLImageElement` for a lightweight way.\r\n * @property {number} [maxRetries=2] - The number of times to retry the file load if it fails.\r\n */", "meta": { "filename": "LoaderConfig.js", "lineno": 1, @@ -39021,12 +39029,27 @@ "defaultvalue": "'XHR'", "description": "Optional load type for image, `XHR` is default, or `HTMLImageElement` for a lightweight way.", "name": "imageLoadType" + }, + { + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "optional": true, + "defaultvalue": 2, + "description": "The number of times to retry the file load if it fails.", + "name": "maxRetries" } ], "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.LoaderConfig", "scope": "static", - "___id": "T000002R003473", + "___id": "T000002R003475", "___s": true }, { @@ -39129,7 +39152,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.MouseInputConfig", "scope": "static", - "___id": "T000002R003474", + "___id": "T000002R003476", "___s": true }, { @@ -39153,7 +39176,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.NOOP", "scope": "static", - "___id": "T000002R003475", + "___id": "T000002R003477", "___s": true }, { @@ -39224,11 +39247,11 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.PhysicsConfig", "scope": "static", - "___id": "T000002R003476", + "___id": "T000002R003478", "___s": true }, { - "comment": "/**\r\n * @typedef {object} Phaser.Types.Core.PipelineConfig\r\n * @since 3.50.0\r\n *\r\n * @property {string} name - The name of the pipeline. Must be unique within the Pipeline Manager.\r\n * @property {Phaser.Renderer.WebGL.WebGLPipeline} pipeline - The pipeline class. This should be a constructable object, **not** an instance of a class.\r\n * @property {number} [frameInc=32] - Sets the `PipelineManager.frameInc` value to control the dimension increase in the Render Targets.\r\n */", + "comment": "/**\r\n * @typedef {Phaser.Renderer.WebGL.WebGLPipeline[]|object.} Phaser.Types.Core.PipelineConfig\r\n * @since 3.50.0\r\n *\r\n * @property {number} [frameInc=32] - Sets the `PipelineManager.frameInc` value to control the dimension increase in the Render Targets.\r\n */", "meta": { "filename": "PipelineConfig.js", "lineno": 1, @@ -39240,41 +39263,47 @@ "name": "PipelineConfig", "type": { "names": [ - "object" + "Array.", + "object." ], "parsedType": { - "type": "NameExpression", - "name": "object" + "type": "TypeUnion", + "elements": [ + { + "type": "TypeApplication", + "expression": { + "type": "NameExpression", + "name": "Array" + }, + "applications": [ + { + "name": "Phaser.Renderer.WebGL.WebGLPipeline", + "type": "NameExpression" + } + ] + }, + { + "type": "TypeApplication", + "expression": { + "type": "NameExpression", + "name": "object" + }, + "applications": [ + { + "type": "NameExpression", + "name": "string" + }, + { + "type": "NameExpression", + "name": "Phaser.Renderer.WebGL.WebGLPipeline" + } + ] + } + ] } }, "since": "3.50.0", "properties": [ - { - "type": { - "names": [ - "string" - ], - "parsedType": { - "type": "NameExpression", - "name": "string" - } - }, - "description": "The name of the pipeline. Must be unique within the Pipeline Manager.", - "name": "name" - }, - { - "type": { - "names": [ - "Phaser.Renderer.WebGL.WebGLPipeline" - ], - "parsedType": { - "type": "NameExpression", - "name": "Phaser.Renderer.WebGL.WebGLPipeline" - } - }, - "description": "The pipeline class. This should be a constructable object, **not** an instance of a class.", - "name": "pipeline" - }, { "type": { "names": [ @@ -39294,7 +39323,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.PipelineConfig", "scope": "static", - "___id": "T000002R003477", + "___id": "T000002R003479", "___s": true }, { @@ -39419,7 +39448,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.PluginObject", "scope": "static", - "___id": "T000002R003478", + "___id": "T000002R003480", "___s": true }, { @@ -39548,11 +39577,11 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.PluginObjectItem", "scope": "static", - "___id": "T000002R003479", + "___id": "T000002R003481", "___s": true }, { - "comment": "/**\r\n * @typedef {object} Phaser.Types.Core.RenderConfig\r\n * @since 3.0.0\r\n *\r\n * @property {boolean} [antialias=true] - When set to `true`, WebGL uses linear interpolation to draw scaled or rotated textures, giving a smooth appearance. When set to `false`, WebGL uses nearest-neighbor interpolation, giving a crisper appearance. `false` also disables antialiasing of the game canvas itself, if the browser supports it, when the game canvas is scaled.\r\n * @property {boolean} [antialiasGL=true] - Sets the `antialias` property when the WebGL context is created. Setting this value does not impact any subsequent textures that are created, or the canvas style attributes.\r\n * @property {boolean} [desynchronized=false] - When set to `true` it will create a desynchronized context for both 2D and WebGL. See https://developers.google.com/web/updates/2019/05/desynchronized for details.\r\n * @property {boolean} [pixelArt=false] - Sets `antialias` to false and `roundPixels` to true. This is the best setting for pixel-art games.\r\n * @property {boolean} [roundPixels=false] - Draw texture-based Game Objects at only whole-integer positions. Game Objects without textures, like Graphics, ignore this property.\r\n * @property {boolean} [transparent=false] - Whether the game canvas will be transparent. Boolean that indicates if the canvas contains an alpha channel. If set to false, the browser now knows that the backdrop is always opaque, which can speed up drawing of transparent content and images.\r\n * @property {boolean} [clearBeforeRender=true] - Whether the game canvas will be cleared between each rendering frame.\r\n * @property {boolean} [preserveDrawingBuffer=false] - If the value is true the WebGL buffers will not be cleared and will preserve their values until cleared or overwritten by the author.\r\n * @property {boolean} [premultipliedAlpha=true] - In WebGL mode, the drawing buffer contains colors with pre-multiplied alpha.\r\n * @property {boolean} [failIfMajorPerformanceCaveat=false] - Let the browser abort creating a WebGL context if it judges performance would be unacceptable.\r\n * @property {string} [powerPreference='default'] - \"high-performance\", \"low-power\" or \"default\". A hint to the browser on how much device power the game might use.\r\n * @property {number} [batchSize=4096] - The default WebGL batch size. Represents the number of _quads_ that can be added to a single batch.\r\n * @property {number} [maxLights=10] - The maximum number of lights allowed to be visible within range of a single Camera in the LightManager.\r\n * @property {number} [maxTextures=-1] - When in WebGL mode, this sets the maximum number of GPU Textures to use. The default, -1, will use all available units. The WebGL1 spec says all browsers should provide a minimum of 8.\r\n * @property {string} [mipmapFilter=''] - The mipmap magFilter to be used when creating WebGL textures. Don't set unless you wish to create mipmaps. Set to one of the following: 'NEAREST', 'LINEAR', 'NEAREST_MIPMAP_NEAREST', 'LINEAR_MIPMAP_NEAREST', 'NEAREST_MIPMAP_LINEAR' or 'LINEAR_MIPMAP_LINEAR'.\r\n * @property {(Phaser.Types.Core.PipelineConfig|Phaser.Renderer.WebGL.WebGLPipeline[])} [pipeline] - The WebGL Pipeline configuration object.\r\n * @property {boolean} [autoMobilePipeline=true] - Automatically enable the Mobile Pipeline if iOS or Android detected?\r\n * @property {string} [defaultPipeline='MultiPipeline'] - The WebGL Pipeline that Game Objects will use by default. Set to 'MultiPipeline' as standard.\r\n */", + "comment": "/**\r\n * @typedef {object} Phaser.Types.Core.RenderConfig\r\n * @since 3.0.0\r\n *\r\n * @property {boolean} [antialias=true] - When set to `true`, WebGL uses linear interpolation to draw scaled or rotated textures, giving a smooth appearance. When set to `false`, WebGL uses nearest-neighbor interpolation, giving a crisper appearance. `false` also disables antialiasing of the game canvas itself, if the browser supports it, when the game canvas is scaled.\r\n * @property {boolean} [antialiasGL=true] - Sets the `antialias` property when the WebGL context is created. Setting this value does not impact any subsequent textures that are created, or the canvas style attributes.\r\n * @property {boolean} [desynchronized=false] - When set to `true` it will create a desynchronized context for both 2D and WebGL. See https://developers.google.com/web/updates/2019/05/desynchronized for details.\r\n * @property {boolean} [pixelArt=false] - Sets `antialias` to false and `roundPixels` to true. This is the best setting for pixel-art games.\r\n * @property {boolean} [roundPixels=false] - Draw texture-based Game Objects at only whole-integer positions. Game Objects without textures, like Graphics, ignore this property.\r\n * @property {boolean} [transparent=false] - Whether the game canvas will be transparent. Boolean that indicates if the canvas contains an alpha channel. If set to false, the browser now knows that the backdrop is always opaque, which can speed up drawing of transparent content and images.\r\n * @property {boolean} [clearBeforeRender=true] - Whether the game canvas will be cleared between each rendering frame.\r\n * @property {boolean} [preserveDrawingBuffer=false] - If the value is true the WebGL buffers will not be cleared and will preserve their values until cleared or overwritten by the author.\r\n * @property {boolean} [premultipliedAlpha=true] - In WebGL mode, the drawing buffer contains colors with pre-multiplied alpha.\r\n * @property {boolean} [failIfMajorPerformanceCaveat=false] - Let the browser abort creating a WebGL context if it judges performance would be unacceptable.\r\n * @property {string} [powerPreference='default'] - \"high-performance\", \"low-power\" or \"default\". A hint to the browser on how much device power the game might use.\r\n * @property {number} [batchSize=4096] - The default WebGL batch size. Represents the number of _quads_ that can be added to a single batch.\r\n * @property {number} [maxLights=10] - The maximum number of lights allowed to be visible within range of a single Camera in the LightManager.\r\n * @property {number} [maxTextures=-1] - When in WebGL mode, this sets the maximum number of GPU Textures to use. The default, -1, will use all available units. The WebGL1 spec says all browsers should provide a minimum of 8.\r\n * @property {string} [mipmapFilter=''] - The mipmap magFilter to be used when creating WebGL textures. Don't set unless you wish to create mipmaps. Set to one of the following: 'NEAREST', 'LINEAR', 'NEAREST_MIPMAP_NEAREST', 'LINEAR_MIPMAP_NEAREST', 'NEAREST_MIPMAP_LINEAR' or 'LINEAR_MIPMAP_LINEAR'.\r\n * @property {Phaser.Types.Core.PipelineConfig} [pipeline] - The WebGL Pipeline configuration object.\r\n * @property {boolean} [autoMobilePipeline=true] - Automatically enable the Mobile Pipeline if iOS or Android detected?\r\n * @property {string} [defaultPipeline='MultiPipeline'] - The WebGL Pipeline that Game Objects will use by default. Set to 'MultiPipeline' as standard.\r\n */", "meta": { "filename": "RenderConfig.js", "lineno": 1, @@ -39801,30 +39830,11 @@ { "type": { "names": [ - "Phaser.Types.Core.PipelineConfig", - "Array." + "Phaser.Types.Core.PipelineConfig" ], "parsedType": { - "type": "TypeUnion", - "elements": [ - { - "type": "NameExpression", - "name": "Phaser.Types.Core.PipelineConfig" - }, - { - "type": "TypeApplication", - "expression": { - "type": "NameExpression", - "name": "Array" - }, - "applications": [ - { - "name": "Phaser.Renderer.WebGL.WebGLPipeline", - "type": "NameExpression" - } - ] - } - ] + "type": "NameExpression", + "name": "Phaser.Types.Core.PipelineConfig" } }, "optional": true, @@ -39865,7 +39875,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.RenderConfig", "scope": "static", - "___id": "T000002R003480", + "___id": "T000002R003482", "___s": true }, { @@ -40138,7 +40148,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.ScaleConfig", "scope": "static", - "___id": "T000002R003481", + "___id": "T000002R003483", "___s": true }, { @@ -40189,7 +40199,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.TimeStepCallback", "scope": "static", - "___id": "T000002R003482", + "___id": "T000002R003484", "___s": true }, { @@ -40247,7 +40257,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.TouchInputConfig", "scope": "static", - "___id": "T000002R003483", + "___id": "T000002R003485", "___s": true }, { @@ -40306,7 +40316,7 @@ "memberof": "Phaser.Types.Core", "longname": "Phaser.Types.Core.WidthHeight", "scope": "static", - "___id": "T000002R003484", + "___id": "T000002R003486", "___s": true }, { @@ -40346,7 +40356,7 @@ "memberof": "Phaser.Core", "longname": "Phaser.Core.VisibilityHandler", "scope": "static", - "___id": "T000002R003486", + "___id": "T000002R003488", "___s": true }, { @@ -40394,7 +40404,7 @@ "memberof": "Phaser.Create", "longname": "Phaser.Create.GenerateTexture", "scope": "static", - "___id": "T000002R003501", + "___id": "T000002R003503", "___s": true }, { @@ -40411,7 +40421,7 @@ "memberof": "Phaser", "longname": "Phaser.Create", "scope": "static", - "___id": "T000002R003527", + "___id": "T000002R003529", "___s": true }, { @@ -40439,7 +40449,7 @@ "longname": "Phaser.Create.Palettes.ARNE16", "scope": "static", "kind": "member", - "___id": "T000002R003531", + "___id": "T000002R003533", "___s": true }, { @@ -40467,7 +40477,7 @@ "longname": "Phaser.Create.Palettes.C64", "scope": "static", "kind": "member", - "___id": "T000002R003549", + "___id": "T000002R003551", "___s": true }, { @@ -40495,7 +40505,7 @@ "longname": "Phaser.Create.Palettes.CGA", "scope": "static", "kind": "member", - "___id": "T000002R003567", + "___id": "T000002R003569", "___s": true }, { @@ -40512,7 +40522,7 @@ "memberof": "Phaser.Create", "longname": "Phaser.Create.Palettes", "scope": "static", - "___id": "T000002R003585", + "___id": "T000002R003587", "___s": true }, { @@ -40540,7 +40550,7 @@ "longname": "Phaser.Create.Palettes.JMP", "scope": "static", "kind": "member", - "___id": "T000002R003592", + "___id": "T000002R003594", "___s": true }, { @@ -40568,7 +40578,7 @@ "longname": "Phaser.Create.Palettes.MSX", "scope": "static", "kind": "member", - "___id": "T000002R003610", + "___id": "T000002R003612", "___s": true }, { @@ -40619,7 +40629,7 @@ "memberof": "Phaser.Types.Create", "longname": "Phaser.Types.Create.GenerateTextureCallback", "scope": "static", - "___id": "T000002R003628", + "___id": "T000002R003630", "___s": true }, { @@ -40781,7 +40791,7 @@ "memberof": "Phaser.Types.Create", "longname": "Phaser.Types.Create.GenerateTextureConfig", "scope": "static", - "___id": "T000002R003629", + "___id": "T000002R003631", "___s": true }, { @@ -40798,7 +40808,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Create", "scope": "static", - "___id": "T000002R003630", + "___id": "T000002R003632", "___s": true }, { @@ -41035,7 +41045,7 @@ "memberof": "Phaser.Types.Create", "longname": "Phaser.Types.Create.Palette", "scope": "static", - "___id": "T000002R003631", + "___id": "T000002R003633", "___s": true }, { @@ -41130,7 +41140,7 @@ ], "scope": "static", "longname": "Phaser.Curves.CubicBezier", - "___id": "T000002R003636", + "___id": "T000002R003638", "___s": true }, { @@ -41158,7 +41168,7 @@ "longname": "Phaser.Curves.CubicBezier#p0", "scope": "instance", "kind": "member", - "___id": "T000002R003644", + "___id": "T000002R003646", "___s": true }, { @@ -41186,7 +41196,7 @@ "longname": "Phaser.Curves.CubicBezier#p1", "scope": "instance", "kind": "member", - "___id": "T000002R003646", + "___id": "T000002R003648", "___s": true }, { @@ -41214,7 +41224,7 @@ "longname": "Phaser.Curves.CubicBezier#p2", "scope": "instance", "kind": "member", - "___id": "T000002R003648", + "___id": "T000002R003650", "___s": true }, { @@ -41242,7 +41252,7 @@ "longname": "Phaser.Curves.CubicBezier#p3", "scope": "instance", "kind": "member", - "___id": "T000002R003650", + "___id": "T000002R003652", "___s": true }, { @@ -41300,7 +41310,7 @@ "longname": "Phaser.Curves.CubicBezier#getStartPoint", "scope": "instance", "overrides": "Phaser.Curves.Curve#getStartPoint", - "___id": "T000002R003652", + "___id": "T000002R003654", "___s": true }, { @@ -41348,7 +41358,7 @@ "memberof": "Phaser.Curves.CubicBezier", "longname": "Phaser.Curves.CubicBezier#getResolution", "scope": "instance", - "___id": "T000002R003655", + "___id": "T000002R003657", "___s": true }, { @@ -41418,7 +41428,7 @@ "memberof": "Phaser.Curves.CubicBezier", "longname": "Phaser.Curves.CubicBezier#getPoint", "scope": "instance", - "___id": "T000002R003657", + "___id": "T000002R003659", "___s": true }, { @@ -41490,7 +41500,7 @@ "longname": "Phaser.Curves.CubicBezier#draw", "scope": "instance", "overrides": "Phaser.Curves.Curve#draw", - "___id": "T000002R003664", + "___id": "T000002R003666", "___s": true }, { @@ -41523,7 +41533,7 @@ "memberof": "Phaser.Curves.CubicBezier", "longname": "Phaser.Curves.CubicBezier#toJSON", "scope": "instance", - "___id": "T000002R003669", + "___id": "T000002R003671", "___s": true }, { @@ -41571,7 +41581,7 @@ "memberof": "Phaser.Curves.CubicBezier", "longname": "Phaser.Curves.CubicBezier.fromJSON", "scope": "static", - "___id": "T000002R003673", + "___id": "T000002R003675", "___s": true }, { @@ -41605,7 +41615,7 @@ ], "scope": "static", "longname": "Phaser.Curves.Curve", - "___id": "T000002R003685", + "___id": "T000002R003687", "___s": true }, { @@ -41633,7 +41643,7 @@ "longname": "Phaser.Curves.Curve#type", "scope": "instance", "kind": "member", - "___id": "T000002R003688", + "___id": "T000002R003690", "___s": true }, { @@ -41662,7 +41672,7 @@ "longname": "Phaser.Curves.Curve#defaultDivisions", "scope": "instance", "kind": "member", - "___id": "T000002R003690", + "___id": "T000002R003692", "___s": true }, { @@ -41691,7 +41701,7 @@ "longname": "Phaser.Curves.Curve#arcLengthDivisions", "scope": "instance", "kind": "member", - "___id": "T000002R003692", + "___id": "T000002R003694", "___s": true }, { @@ -41729,7 +41739,7 @@ "longname": "Phaser.Curves.Curve#cacheArcLengths", "scope": "instance", "kind": "member", - "___id": "T000002R003694", + "___id": "T000002R003696", "___s": true }, { @@ -41758,7 +41768,7 @@ "longname": "Phaser.Curves.Curve#needsUpdate", "scope": "instance", "kind": "member", - "___id": "T000002R003696", + "___id": "T000002R003698", "___s": true }, { @@ -41787,7 +41797,7 @@ "longname": "Phaser.Curves.Curve#active", "scope": "instance", "kind": "member", - "___id": "T000002R003698", + "___id": "T000002R003700", "___s": true }, { @@ -41858,7 +41868,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#draw", "scope": "instance", - "___id": "T000002R003704", + "___id": "T000002R003706", "___s": true }, { @@ -41922,7 +41932,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getBounds", "scope": "instance", - "___id": "T000002R003707", + "___id": "T000002R003709", "___s": true }, { @@ -41979,7 +41989,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getDistancePoints", "scope": "instance", - "___id": "T000002R003714", + "___id": "T000002R003716", "___s": true }, { @@ -42028,7 +42038,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getEndPoint", "scope": "instance", - "___id": "T000002R003718", + "___id": "T000002R003720", "___s": true }, { @@ -42061,7 +42071,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getLength", "scope": "instance", - "___id": "T000002R003721", + "___id": "T000002R003723", "___s": true }, { @@ -42119,7 +42129,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getLengths", "scope": "instance", - "___id": "T000002R003724", + "___id": "T000002R003726", "___s": true }, { @@ -42189,7 +42199,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getPointAt", "scope": "instance", - "___id": "T000002R003736", + "___id": "T000002R003738", "___s": true }, { @@ -42312,7 +42322,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getPoints", "scope": "instance", - "___id": "T000002R003739", + "___id": "T000002R003741", "___s": true }, { @@ -42369,7 +42379,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getRandomPoint", "scope": "instance", - "___id": "T000002R003745", + "___id": "T000002R003747", "___s": true }, { @@ -42475,7 +42485,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getSpacedPoints", "scope": "instance", - "___id": "T000002R003748", + "___id": "T000002R003750", "___s": true }, { @@ -42532,7 +42542,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getStartPoint", "scope": "instance", - "___id": "T000002R003755", + "___id": "T000002R003757", "___s": true }, { @@ -42602,7 +42612,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getTangent", "scope": "instance", - "___id": "T000002R003758", + "___id": "T000002R003760", "___s": true }, { @@ -42672,7 +42682,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getTangentAt", "scope": "instance", - "___id": "T000002R003766", + "___id": "T000002R003768", "___s": true }, { @@ -42734,7 +42744,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getTFromDistance", "scope": "instance", - "___id": "T000002R003769", + "___id": "T000002R003771", "___s": true }, { @@ -42809,7 +42819,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#getUtoTmapping", "scope": "instance", - "___id": "T000002R003771", + "___id": "T000002R003773", "___s": true }, { @@ -42831,7 +42841,7 @@ "memberof": "Phaser.Curves.Curve", "longname": "Phaser.Curves.Curve#updateArcLengths", "scope": "instance", - "___id": "T000002R003792", + "___id": "T000002R003794", "___s": true }, { @@ -42985,7 +42995,7 @@ ], "scope": "static", "longname": "Phaser.Curves.Ellipse", - "___id": "T000002R003802", + "___id": "T000002R003804", "___s": true }, { @@ -43013,7 +43023,7 @@ "longname": "Phaser.Curves.Ellipse#p0", "scope": "instance", "kind": "member", - "___id": "T000002R003820", + "___id": "T000002R003822", "___s": true }, { @@ -43071,7 +43081,7 @@ "longname": "Phaser.Curves.Ellipse#getStartPoint", "scope": "instance", "overrides": "Phaser.Curves.Curve#getStartPoint", - "___id": "T000002R003834", + "___id": "T000002R003836", "___s": true }, { @@ -43119,7 +43129,7 @@ "memberof": "Phaser.Curves.Ellipse", "longname": "Phaser.Curves.Ellipse#getResolution", "scope": "instance", - "___id": "T000002R003837", + "___id": "T000002R003839", "___s": true }, { @@ -43189,7 +43199,7 @@ "memberof": "Phaser.Curves.Ellipse", "longname": "Phaser.Curves.Ellipse#getPoint", "scope": "instance", - "___id": "T000002R003839", + "___id": "T000002R003841", "___s": true }, { @@ -43238,7 +43248,7 @@ "memberof": "Phaser.Curves.Ellipse", "longname": "Phaser.Curves.Ellipse#setXRadius", "scope": "instance", - "___id": "T000002R003860", + "___id": "T000002R003862", "___s": true }, { @@ -43287,7 +43297,7 @@ "memberof": "Phaser.Curves.Ellipse", "longname": "Phaser.Curves.Ellipse#setYRadius", "scope": "instance", - "___id": "T000002R003863", + "___id": "T000002R003865", "___s": true }, { @@ -43336,7 +43346,7 @@ "memberof": "Phaser.Curves.Ellipse", "longname": "Phaser.Curves.Ellipse#setWidth", "scope": "instance", - "___id": "T000002R003866", + "___id": "T000002R003868", "___s": true }, { @@ -43385,7 +43395,7 @@ "memberof": "Phaser.Curves.Ellipse", "longname": "Phaser.Curves.Ellipse#setHeight", "scope": "instance", - "___id": "T000002R003869", + "___id": "T000002R003871", "___s": true }, { @@ -43434,7 +43444,7 @@ "memberof": "Phaser.Curves.Ellipse", "longname": "Phaser.Curves.Ellipse#setStartAngle", "scope": "instance", - "___id": "T000002R003872", + "___id": "T000002R003874", "___s": true }, { @@ -43483,7 +43493,7 @@ "memberof": "Phaser.Curves.Ellipse", "longname": "Phaser.Curves.Ellipse#setEndAngle", "scope": "instance", - "___id": "T000002R003875", + "___id": "T000002R003877", "___s": true }, { @@ -43532,7 +43542,7 @@ "memberof": "Phaser.Curves.Ellipse", "longname": "Phaser.Curves.Ellipse#setClockwise", "scope": "instance", - "___id": "T000002R003878", + "___id": "T000002R003880", "___s": true }, { @@ -43581,7 +43591,7 @@ "memberof": "Phaser.Curves.Ellipse", "longname": "Phaser.Curves.Ellipse#setRotation", "scope": "instance", - "___id": "T000002R003881", + "___id": "T000002R003883", "___s": true }, { @@ -43609,7 +43619,7 @@ "longname": "Phaser.Curves.Ellipse#x", "scope": "instance", "kind": "member", - "___id": "T000002R003884", + "___id": "T000002R003886", "___s": true }, { @@ -43637,7 +43647,7 @@ "longname": "Phaser.Curves.Ellipse#y", "scope": "instance", "kind": "member", - "___id": "T000002R003889", + "___id": "T000002R003891", "___s": true }, { @@ -43665,7 +43675,7 @@ "longname": "Phaser.Curves.Ellipse#xRadius", "scope": "instance", "kind": "member", - "___id": "T000002R003894", + "___id": "T000002R003896", "___s": true }, { @@ -43693,7 +43703,7 @@ "longname": "Phaser.Curves.Ellipse#yRadius", "scope": "instance", "kind": "member", - "___id": "T000002R003899", + "___id": "T000002R003901", "___s": true }, { @@ -43721,7 +43731,7 @@ "longname": "Phaser.Curves.Ellipse#startAngle", "scope": "instance", "kind": "member", - "___id": "T000002R003904", + "___id": "T000002R003906", "___s": true }, { @@ -43749,7 +43759,7 @@ "longname": "Phaser.Curves.Ellipse#endAngle", "scope": "instance", "kind": "member", - "___id": "T000002R003909", + "___id": "T000002R003911", "___s": true }, { @@ -43777,7 +43787,7 @@ "longname": "Phaser.Curves.Ellipse#clockwise", "scope": "instance", "kind": "member", - "___id": "T000002R003914", + "___id": "T000002R003916", "___s": true }, { @@ -43805,7 +43815,7 @@ "longname": "Phaser.Curves.Ellipse#angle", "scope": "instance", "kind": "member", - "___id": "T000002R003919", + "___id": "T000002R003921", "___s": true }, { @@ -43833,7 +43843,7 @@ "longname": "Phaser.Curves.Ellipse#rotation", "scope": "instance", "kind": "member", - "___id": "T000002R003924", + "___id": "T000002R003926", "___s": true }, { @@ -43866,7 +43876,7 @@ "memberof": "Phaser.Curves.Ellipse", "longname": "Phaser.Curves.Ellipse#toJSON", "scope": "instance", - "___id": "T000002R003929", + "___id": "T000002R003931", "___s": true }, { @@ -43914,7 +43924,7 @@ "memberof": "Phaser.Curves.Ellipse", "longname": "Phaser.Curves.Ellipse.fromJSON", "scope": "static", - "___id": "T000002R003940", + "___id": "T000002R003942", "___s": true }, { @@ -43931,7 +43941,7 @@ "memberof": "Phaser", "longname": "Phaser.Curves", "scope": "static", - "___id": "T000002R003943", + "___id": "T000002R003945", "___s": true }, { @@ -44001,7 +44011,7 @@ ], "scope": "static", "longname": "Phaser.Curves.Line", - "___id": "T000002R003958", + "___id": "T000002R003960", "___s": true }, { @@ -44029,7 +44039,7 @@ "longname": "Phaser.Curves.Line#p0", "scope": "instance", "kind": "member", - "___id": "T000002R003964", + "___id": "T000002R003966", "___s": true }, { @@ -44057,7 +44067,7 @@ "longname": "Phaser.Curves.Line#p1", "scope": "instance", "kind": "member", - "___id": "T000002R003966", + "___id": "T000002R003968", "___s": true }, { @@ -44087,7 +44097,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.Curves.Curve#arcLengthDivisions", - "___id": "T000002R003968", + "___id": "T000002R003970", "___s": true }, { @@ -44145,7 +44155,7 @@ "longname": "Phaser.Curves.Line#getBounds", "scope": "instance", "overrides": "Phaser.Curves.Curve#getBounds", - "___id": "T000002R003970", + "___id": "T000002R003972", "___s": true }, { @@ -44203,7 +44213,7 @@ "longname": "Phaser.Curves.Line#getStartPoint", "scope": "instance", "overrides": "Phaser.Curves.Curve#getStartPoint", - "___id": "T000002R003973", + "___id": "T000002R003975", "___s": true }, { @@ -44253,7 +44263,7 @@ "memberof": "Phaser.Curves.Line", "longname": "Phaser.Curves.Line#getResolution", "scope": "instance", - "___id": "T000002R003976", + "___id": "T000002R003978", "___s": true }, { @@ -44323,7 +44333,7 @@ "memberof": "Phaser.Curves.Line", "longname": "Phaser.Curves.Line#getPoint", "scope": "instance", - "___id": "T000002R003979", + "___id": "T000002R003981", "___s": true }, { @@ -44394,7 +44404,7 @@ "longname": "Phaser.Curves.Line#getPointAt", "scope": "instance", "overrides": "Phaser.Curves.Curve#getPointAt", - "___id": "T000002R003982", + "___id": "T000002R003984", "___s": true }, { @@ -44466,7 +44476,7 @@ "longname": "Phaser.Curves.Line#getTangent", "scope": "instance", "overrides": "Phaser.Curves.Curve#getTangent", - "___id": "T000002R003984", + "___id": "T000002R003986", "___s": true }, { @@ -44542,7 +44552,7 @@ "longname": "Phaser.Curves.Line#getUtoTmapping", "scope": "instance", "overrides": "Phaser.Curves.Curve#getUtoTmapping", - "___id": "T000002R003987", + "___id": "T000002R003989", "___s": true }, { @@ -44599,7 +44609,7 @@ "longname": "Phaser.Curves.Line#draw", "scope": "instance", "overrides": "Phaser.Curves.Curve#draw", - "___id": "T000002R003995", + "___id": "T000002R003997", "___s": true }, { @@ -44632,7 +44642,7 @@ "memberof": "Phaser.Curves.Line", "longname": "Phaser.Curves.Line#toJSON", "scope": "instance", - "___id": "T000002R003997", + "___id": "T000002R003999", "___s": true }, { @@ -44680,7 +44690,7 @@ "memberof": "Phaser.Curves.Line", "longname": "Phaser.Curves.Line.fromJSON", "scope": "static", - "___id": "T000002R004001", + "___id": "T000002R004003", "___s": true }, { @@ -44731,7 +44741,7 @@ ], "scope": "static", "longname": "Phaser.Curves.MoveTo", - "___id": "T000002R004009", + "___id": "T000002R004011", "___s": true }, { @@ -44760,7 +44770,7 @@ "longname": "Phaser.Curves.MoveTo#active", "scope": "instance", "kind": "member", - "___id": "T000002R004012", + "___id": "T000002R004014", "___s": true }, { @@ -44788,7 +44798,7 @@ "longname": "Phaser.Curves.MoveTo#p0", "scope": "instance", "kind": "member", - "___id": "T000002R004014", + "___id": "T000002R004016", "___s": true }, { @@ -44858,7 +44868,7 @@ "memberof": "Phaser.Curves.MoveTo", "longname": "Phaser.Curves.MoveTo#getPoint", "scope": "instance", - "___id": "T000002R004016", + "___id": "T000002R004018", "___s": true }, { @@ -44928,7 +44938,7 @@ "memberof": "Phaser.Curves.MoveTo", "longname": "Phaser.Curves.MoveTo#getPointAt", "scope": "instance", - "___id": "T000002R004019", + "___id": "T000002R004021", "___s": true }, { @@ -44961,7 +44971,7 @@ "memberof": "Phaser.Curves.MoveTo", "longname": "Phaser.Curves.MoveTo#getResolution", "scope": "instance", - "___id": "T000002R004021", + "___id": "T000002R004023", "___s": true }, { @@ -44994,7 +45004,7 @@ "memberof": "Phaser.Curves.MoveTo", "longname": "Phaser.Curves.MoveTo#getLength", "scope": "instance", - "___id": "T000002R004023", + "___id": "T000002R004025", "___s": true }, { @@ -45027,7 +45037,7 @@ "memberof": "Phaser.Curves.MoveTo", "longname": "Phaser.Curves.MoveTo#toJSON", "scope": "instance", - "___id": "T000002R004025", + "___id": "T000002R004027", "___s": true }, { @@ -45078,7 +45088,7 @@ ], "scope": "static", "longname": "Phaser.Curves.Path", - "___id": "T000002R004041", + "___id": "T000002R004043", "___s": true }, { @@ -45107,7 +45117,7 @@ "longname": "Phaser.Curves.Path#name", "scope": "instance", "kind": "member", - "___id": "T000002R004046", + "___id": "T000002R004048", "___s": true }, { @@ -45136,7 +45146,7 @@ "longname": "Phaser.Curves.Path#defaultDivisions", "scope": "instance", "kind": "member", - "___id": "T000002R004048", + "___id": "T000002R004050", "___s": true }, { @@ -45174,7 +45184,7 @@ "longname": "Phaser.Curves.Path#curves", "scope": "instance", "kind": "member", - "___id": "T000002R004050", + "___id": "T000002R004052", "___s": true }, { @@ -45212,7 +45222,7 @@ "longname": "Phaser.Curves.Path#cacheLengths", "scope": "instance", "kind": "member", - "___id": "T000002R004052", + "___id": "T000002R004054", "___s": true }, { @@ -45241,7 +45251,7 @@ "longname": "Phaser.Curves.Path#autoClose", "scope": "instance", "kind": "member", - "___id": "T000002R004054", + "___id": "T000002R004056", "___s": true }, { @@ -45269,7 +45279,7 @@ "longname": "Phaser.Curves.Path#startPoint", "scope": "instance", "kind": "member", - "___id": "T000002R004056", + "___id": "T000002R004058", "___s": true }, { @@ -45318,7 +45328,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#add", "scope": "instance", - "___id": "T000002R004062", + "___id": "T000002R004064", "___s": true }, { @@ -45397,7 +45407,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#circleTo", "scope": "instance", - "___id": "T000002R004064", + "___id": "T000002R004066", "___s": true }, { @@ -45431,7 +45441,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#closePath", "scope": "instance", - "___id": "T000002R004067", + "___id": "T000002R004069", "___s": true }, { @@ -45578,7 +45588,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#cubicBezierTo", "scope": "instance", - "___id": "T000002R004071", + "___id": "T000002R004073", "___s": true }, { @@ -45688,7 +45698,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#quadraticBezierTo", "scope": "instance", - "___id": "T000002R004083", + "___id": "T000002R004085", "___s": true }, { @@ -45759,7 +45769,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#draw", "scope": "instance", - "___id": "T000002R004092", + "___id": "T000002R004094", "___s": true }, { @@ -45885,7 +45895,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#ellipseTo", "scope": "instance", - "___id": "T000002R004096", + "___id": "T000002R004098", "___s": true }, { @@ -45934,7 +45944,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#fromJSON", "scope": "instance", - "___id": "T000002R004103", + "___id": "T000002R004105", "___s": true }, { @@ -46006,7 +46016,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#getBounds", "scope": "instance", - "___id": "T000002R004110", + "___id": "T000002R004112", "___s": true }, { @@ -46048,7 +46058,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#getCurveLengths", "scope": "instance", - "___id": "T000002R004127", + "___id": "T000002R004129", "___s": true }, { @@ -46098,7 +46108,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#getCurveAt", "scope": "instance", - "___id": "T000002R004134", + "___id": "T000002R004136", "___s": true }, { @@ -46155,7 +46165,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#getEndPoint", "scope": "instance", - "___id": "T000002R004139", + "___id": "T000002R004141", "___s": true }, { @@ -46191,7 +46201,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#getLength", "scope": "instance", - "___id": "T000002R004142", + "___id": "T000002R004144", "___s": true }, { @@ -46263,7 +46273,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#getPoint", "scope": "instance", - "___id": "T000002R004145", + "___id": "T000002R004147", "___s": true }, { @@ -46335,7 +46345,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#getPoints", "scope": "instance", - "___id": "T000002R004155", + "___id": "T000002R004157", "___s": true }, { @@ -46392,7 +46402,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#getRandomPoint", "scope": "instance", - "___id": "T000002R004167", + "___id": "T000002R004169", "___s": true }, { @@ -46451,7 +46461,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#getSpacedPoints", "scope": "instance", - "___id": "T000002R004170", + "___id": "T000002R004172", "___s": true }, { @@ -46508,7 +46518,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#getStartPoint", "scope": "instance", - "___id": "T000002R004175", + "___id": "T000002R004177", "___s": true }, { @@ -46578,7 +46588,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#getTangent", "scope": "instance", - "___id": "T000002R004178", + "___id": "T000002R004180", "___s": true }, { @@ -46656,7 +46666,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#lineTo", "scope": "instance", - "___id": "T000002R004188", + "___id": "T000002R004190", "___s": true }, { @@ -46714,7 +46724,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#splineTo", "scope": "instance", - "___id": "T000002R004191", + "___id": "T000002R004193", "___s": true }, { @@ -46792,7 +46802,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#moveTo", "scope": "instance", - "___id": "T000002R004193", + "___id": "T000002R004195", "___s": true }, { @@ -46825,7 +46835,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#toJSON", "scope": "instance", - "___id": "T000002R004195", + "___id": "T000002R004197", "___s": true }, { @@ -46844,7 +46854,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#updateArcLengths", "scope": "instance", - "___id": "T000002R004204", + "___id": "T000002R004206", "___s": true }, { @@ -46863,7 +46873,7 @@ "memberof": "Phaser.Curves.Path", "longname": "Phaser.Curves.Path#destroy", "scope": "instance", - "___id": "T000002R004207", + "___id": "T000002R004209", "___s": true }, { @@ -46924,7 +46934,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#path", "scope": "instance", - "___id": "T000002R004212", + "___id": "T000002R004214", "___s": true }, { @@ -47006,7 +47016,7 @@ ], "scope": "static", "longname": "Phaser.Curves.QuadraticBezier", - "___id": "T000002R004218", + "___id": "T000002R004220", "___s": true }, { @@ -47034,7 +47044,7 @@ "longname": "Phaser.Curves.QuadraticBezier#p0", "scope": "instance", "kind": "member", - "___id": "T000002R004225", + "___id": "T000002R004227", "___s": true }, { @@ -47062,7 +47072,7 @@ "longname": "Phaser.Curves.QuadraticBezier#p1", "scope": "instance", "kind": "member", - "___id": "T000002R004227", + "___id": "T000002R004229", "___s": true }, { @@ -47090,7 +47100,7 @@ "longname": "Phaser.Curves.QuadraticBezier#p2", "scope": "instance", "kind": "member", - "___id": "T000002R004229", + "___id": "T000002R004231", "___s": true }, { @@ -47148,7 +47158,7 @@ "longname": "Phaser.Curves.QuadraticBezier#getStartPoint", "scope": "instance", "overrides": "Phaser.Curves.Curve#getStartPoint", - "___id": "T000002R004231", + "___id": "T000002R004233", "___s": true }, { @@ -47196,7 +47206,7 @@ "memberof": "Phaser.Curves.QuadraticBezier", "longname": "Phaser.Curves.QuadraticBezier#getResolution", "scope": "instance", - "___id": "T000002R004234", + "___id": "T000002R004236", "___s": true }, { @@ -47266,7 +47276,7 @@ "memberof": "Phaser.Curves.QuadraticBezier", "longname": "Phaser.Curves.QuadraticBezier#getPoint", "scope": "instance", - "___id": "T000002R004236", + "___id": "T000002R004238", "___s": true }, { @@ -47338,7 +47348,7 @@ "longname": "Phaser.Curves.QuadraticBezier#draw", "scope": "instance", "overrides": "Phaser.Curves.Curve#draw", - "___id": "T000002R004242", + "___id": "T000002R004244", "___s": true }, { @@ -47371,7 +47381,7 @@ "memberof": "Phaser.Curves.QuadraticBezier", "longname": "Phaser.Curves.QuadraticBezier#toJSON", "scope": "instance", - "___id": "T000002R004247", + "___id": "T000002R004249", "___s": true }, { @@ -47419,7 +47429,7 @@ "memberof": "Phaser.Curves.QuadraticBezier", "longname": "Phaser.Curves.QuadraticBezier.fromJSON", "scope": "static", - "___id": "T000002R004251", + "___id": "T000002R004253", "___s": true }, { @@ -47508,7 +47518,7 @@ ], "scope": "static", "longname": "Phaser.Curves.Spline", - "___id": "T000002R004262", + "___id": "T000002R004264", "___s": true }, { @@ -47546,7 +47556,7 @@ "longname": "Phaser.Curves.Spline#points", "scope": "instance", "kind": "member", - "___id": "T000002R004267", + "___id": "T000002R004269", "___s": true }, { @@ -47646,7 +47656,7 @@ "memberof": "Phaser.Curves.Spline", "longname": "Phaser.Curves.Spline#addPoints", "scope": "instance", - "___id": "T000002R004269", + "___id": "T000002R004271", "___s": true }, { @@ -47707,7 +47717,7 @@ "memberof": "Phaser.Curves.Spline", "longname": "Phaser.Curves.Spline#addPoint", "scope": "instance", - "___id": "T000002R004279", + "___id": "T000002R004281", "___s": true }, { @@ -47765,7 +47775,7 @@ "longname": "Phaser.Curves.Spline#getStartPoint", "scope": "instance", "overrides": "Phaser.Curves.Curve#getStartPoint", - "___id": "T000002R004282", + "___id": "T000002R004284", "___s": true }, { @@ -47813,7 +47823,7 @@ "memberof": "Phaser.Curves.Spline", "longname": "Phaser.Curves.Spline#getResolution", "scope": "instance", - "___id": "T000002R004285", + "___id": "T000002R004287", "___s": true }, { @@ -47883,7 +47893,7 @@ "memberof": "Phaser.Curves.Spline", "longname": "Phaser.Curves.Spline#getPoint", "scope": "instance", - "___id": "T000002R004287", + "___id": "T000002R004289", "___s": true }, { @@ -47916,7 +47926,7 @@ "memberof": "Phaser.Curves.Spline", "longname": "Phaser.Curves.Spline#toJSON", "scope": "instance", - "___id": "T000002R004298", + "___id": "T000002R004300", "___s": true }, { @@ -47964,7 +47974,7 @@ "memberof": "Phaser.Curves.Spline", "longname": "Phaser.Curves.Spline.fromJSON", "scope": "static", - "___id": "T000002R004304", + "___id": "T000002R004306", "___s": true }, { @@ -48112,7 +48122,7 @@ "memberof": "Phaser.Types.Curves", "longname": "Phaser.Types.Curves.EllipseCurveConfig", "scope": "static", - "___id": "T000002R004307", + "___id": "T000002R004309", "___s": true }, { @@ -48129,7 +48139,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Curves", "scope": "static", - "___id": "T000002R004308", + "___id": "T000002R004310", "___s": true }, { @@ -48193,7 +48203,7 @@ "memberof": "Phaser.Types.Curves", "longname": "Phaser.Types.Curves.JSONCurve", "scope": "static", - "___id": "T000002R004309", + "___id": "T000002R004311", "___s": true }, { @@ -48339,7 +48349,7 @@ "memberof": "Phaser.Types.Curves", "longname": "Phaser.Types.Curves.JSONEllipseCurve", "scope": "static", - "___id": "T000002R004310", + "___id": "T000002R004312", "___s": true }, { @@ -48442,7 +48452,7 @@ "memberof": "Phaser.Types.Curves", "longname": "Phaser.Types.Curves.JSONPath", "scope": "static", - "___id": "T000002R004311", + "___id": "T000002R004313", "___s": true }, { @@ -48517,7 +48527,7 @@ ], "longname": "DataEachCallback", "scope": "global", - "___id": "T000002R004314", + "___id": "T000002R004316", "___s": true }, { @@ -48565,7 +48575,7 @@ ], "scope": "static", "longname": "Phaser.Data.DataManager", - "___id": "T000002R004315", + "___id": "T000002R004317", "___s": true }, { @@ -48592,7 +48602,7 @@ "longname": "Phaser.Data.DataManager#parent", "scope": "instance", "kind": "member", - "___id": "T000002R004318", + "___id": "T000002R004320", "___s": true }, { @@ -48620,7 +48630,7 @@ "longname": "Phaser.Data.DataManager#events", "scope": "instance", "kind": "member", - "___id": "T000002R004320", + "___id": "T000002R004322", "___s": true }, { @@ -48661,7 +48671,7 @@ "longname": "Phaser.Data.DataManager#list", "scope": "instance", "kind": "member", - "___id": "T000002R004323", + "___id": "T000002R004325", "___s": true }, { @@ -48702,7 +48712,7 @@ "longname": "Phaser.Data.DataManager#values", "scope": "instance", "kind": "member", - "___id": "T000002R004325", + "___id": "T000002R004327", "___s": true }, { @@ -48768,7 +48778,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#get", "scope": "instance", - "___id": "T000002R004329", + "___id": "T000002R004331", "___s": true }, { @@ -48813,7 +48823,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#getAll", "scope": "instance", - "___id": "T000002R004334", + "___id": "T000002R004336", "___s": true }, { @@ -48873,7 +48883,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#query", "scope": "instance", - "___id": "T000002R004339", + "___id": "T000002R004341", "___s": true }, { @@ -48964,7 +48974,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#set", "scope": "instance", - "___id": "T000002R004344", + "___id": "T000002R004346", "___s": true }, { @@ -49033,7 +49043,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#inc", "scope": "instance", - "___id": "T000002R004347", + "___id": "T000002R004349", "___s": true }, { @@ -49087,7 +49097,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#toggle", "scope": "instance", - "___id": "T000002R004352", + "___id": "T000002R004354", "___s": true }, { @@ -49164,7 +49174,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#each", "scope": "instance", - "___id": "T000002R004368", + "___id": "T000002R004370", "___s": true }, { @@ -49245,7 +49255,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#merge", "scope": "instance", - "___id": "T000002R004375", + "___id": "T000002R004377", "___s": true }, { @@ -49316,7 +49326,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#remove", "scope": "instance", - "___id": "T000002R004379", + "___id": "T000002R004381", "___s": true }, { @@ -49366,7 +49376,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#pop", "scope": "instance", - "___id": "T000002R004385", + "___id": "T000002R004387", "___s": true }, { @@ -49414,7 +49424,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#has", "scope": "instance", - "___id": "T000002R004389", + "___id": "T000002R004391", "___s": true }, { @@ -49463,7 +49473,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#setFreeze", "scope": "instance", - "___id": "T000002R004391", + "___id": "T000002R004393", "___s": true }, { @@ -49497,7 +49507,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#reset", "scope": "instance", - "___id": "T000002R004394", + "___id": "T000002R004396", "___s": true }, { @@ -49516,7 +49526,7 @@ "memberof": "Phaser.Data.DataManager", "longname": "Phaser.Data.DataManager#destroy", "scope": "instance", - "___id": "T000002R004398", + "___id": "T000002R004400", "___s": true }, { @@ -49544,7 +49554,7 @@ "longname": "Phaser.Data.DataManager#freeze", "scope": "instance", "kind": "member", - "___id": "T000002R004401", + "___id": "T000002R004403", "___s": true }, { @@ -49572,7 +49582,7 @@ "longname": "Phaser.Data.DataManager#count", "scope": "instance", "kind": "member", - "___id": "T000002R004406", + "___id": "T000002R004408", "___s": true }, { @@ -49609,7 +49619,7 @@ ], "scope": "static", "longname": "Phaser.Data.DataManagerPlugin", - "___id": "T000002R004416", + "___id": "T000002R004418", "___s": true }, { @@ -49637,7 +49647,7 @@ "longname": "Phaser.Data.DataManagerPlugin#scene", "scope": "instance", "kind": "member", - "___id": "T000002R004420", + "___id": "T000002R004422", "___s": true }, { @@ -49665,7 +49675,7 @@ "longname": "Phaser.Data.DataManagerPlugin#systems", "scope": "instance", "kind": "member", - "___id": "T000002R004422", + "___id": "T000002R004424", "___s": true }, { @@ -49685,7 +49695,7 @@ "longname": "Phaser.Data.DataManagerPlugin#destroy", "scope": "instance", "overrides": "Phaser.Data.DataManager#destroy", - "___id": "T000002R004431", + "___id": "T000002R004433", "___s": true }, { @@ -49767,7 +49777,7 @@ "memberof": "Phaser.Data.Events", "longname": "Phaser.Data.Events#event:CHANGE_DATA", "scope": "instance", - "___id": "T000002R004436", + "___id": "T000002R004438", "___s": true }, { @@ -49836,7 +49846,7 @@ "memberof": "Phaser.Data.Events", "longname": "Phaser.Data.Events#event:CHANGE_DATA_KEY", "scope": "instance", - "___id": "T000002R004438", + "___id": "T000002R004440", "___s": true }, { @@ -49864,7 +49874,7 @@ "memberof": "Phaser.Data.Events", "longname": "Phaser.Data.Events#event:DESTROY", "scope": "instance", - "___id": "T000002R004440", + "___id": "T000002R004442", "___s": true }, { @@ -49881,7 +49891,7 @@ "memberof": "Phaser.Data", "longname": "Phaser.Data.Events", "scope": "static", - "___id": "T000002R004442", + "___id": "T000002R004444", "___s": true }, { @@ -49950,7 +49960,7 @@ "memberof": "Phaser.Data.Events", "longname": "Phaser.Data.Events#event:REMOVE_DATA", "scope": "instance", - "___id": "T000002R004449", + "___id": "T000002R004451", "___s": true }, { @@ -50019,7 +50029,7 @@ "memberof": "Phaser.Data.Events", "longname": "Phaser.Data.Events#event:SET_DATA", "scope": "instance", - "___id": "T000002R004451", + "___id": "T000002R004453", "___s": true }, { @@ -50036,7 +50046,7 @@ "memberof": "Phaser", "longname": "Phaser.Data", "scope": "static", - "___id": "T000002R004453", + "___id": "T000002R004455", "___s": true }, { @@ -50209,7 +50219,7 @@ "memberof": "Phaser.Device", "longname": "Phaser.Device.Audio", "scope": "static", - "___id": "T000002R004459", + "___id": "T000002R004461", "___s": true }, { @@ -50421,7 +50431,7 @@ "memberof": "Phaser.Device", "longname": "Phaser.Device.Browser", "scope": "static", - "___id": "T000002R004493", + "___id": "T000002R004495", "___s": true }, { @@ -50477,7 +50487,7 @@ "memberof": "Phaser.Device", "longname": "Phaser.Device.CanvasFeatures", "scope": "static", - "___id": "T000002R004536", + "___id": "T000002R004538", "___s": true }, { @@ -50678,7 +50688,7 @@ "memberof": "Phaser.Device", "longname": "Phaser.Device.Features", "scope": "static", - "___id": "T000002R004570", + "___id": "T000002R004572", "___s": true }, { @@ -50760,7 +50770,7 @@ "memberof": "Phaser.Device", "longname": "Phaser.Device.Fullscreen", "scope": "static", - "___id": "T000002R004622", + "___id": "T000002R004624", "___s": true }, { @@ -50778,7 +50788,7 @@ "memberof": "Phaser", "longname": "Phaser.Device", "scope": "static", - "___id": "T000002R004642", + "___id": "T000002R004644", "___s": true }, { @@ -50910,7 +50920,7 @@ "memberof": "Phaser", "longname": "Phaser.DeviceConf", "scope": "static", - "___id": "T000002R004643", + "___id": "T000002R004645", "___s": true }, { @@ -50994,7 +51004,7 @@ "memberof": "Phaser.Device", "longname": "Phaser.Device.Input", "scope": "static", - "___id": "T000002R004654", + "___id": "T000002R004656", "___s": true }, { @@ -51284,7 +51294,7 @@ "memberof": "Phaser.Device", "longname": "Phaser.Device.OS", "scope": "static", - "___id": "T000002R004668", + "___id": "T000002R004670", "___s": true }, { @@ -51418,7 +51428,7 @@ "memberof": "Phaser.Device", "longname": "Phaser.Device.Video", "scope": "static", - "___id": "T000002R004723", + "___id": "T000002R004725", "___s": true }, { @@ -51446,7 +51456,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.TOP_LEFT", "scope": "static", - "___id": "T000002R004758", + "___id": "T000002R004760", "___s": true }, { @@ -51474,7 +51484,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.TOP_CENTER", "scope": "static", - "___id": "T000002R004760", + "___id": "T000002R004762", "___s": true }, { @@ -51502,7 +51512,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.TOP_RIGHT", "scope": "static", - "___id": "T000002R004762", + "___id": "T000002R004764", "___s": true }, { @@ -51530,7 +51540,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.LEFT_TOP", "scope": "static", - "___id": "T000002R004764", + "___id": "T000002R004766", "___s": true }, { @@ -51558,7 +51568,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.LEFT_CENTER", "scope": "static", - "___id": "T000002R004766", + "___id": "T000002R004768", "___s": true }, { @@ -51586,7 +51596,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.LEFT_BOTTOM", "scope": "static", - "___id": "T000002R004768", + "___id": "T000002R004770", "___s": true }, { @@ -51614,7 +51624,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.CENTER", "scope": "static", - "___id": "T000002R004770", + "___id": "T000002R004772", "___s": true }, { @@ -51642,7 +51652,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.RIGHT_TOP", "scope": "static", - "___id": "T000002R004772", + "___id": "T000002R004774", "___s": true }, { @@ -51670,7 +51680,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.RIGHT_CENTER", "scope": "static", - "___id": "T000002R004774", + "___id": "T000002R004776", "___s": true }, { @@ -51698,7 +51708,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.RIGHT_BOTTOM", "scope": "static", - "___id": "T000002R004776", + "___id": "T000002R004778", "___s": true }, { @@ -51726,7 +51736,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.BOTTOM_LEFT", "scope": "static", - "___id": "T000002R004778", + "___id": "T000002R004780", "___s": true }, { @@ -51754,7 +51764,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.BOTTOM_CENTER", "scope": "static", - "___id": "T000002R004780", + "___id": "T000002R004782", "___s": true }, { @@ -51782,7 +51792,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.BOTTOM_RIGHT", "scope": "static", - "___id": "T000002R004782", + "___id": "T000002R004784", "___s": true }, { @@ -51881,7 +51891,7 @@ "memberof": "Phaser.Display.Align.In", "longname": "Phaser.Display.Align.In.BottomCenter", "scope": "static", - "___id": "T000002R004789", + "___id": "T000002R004791", "___s": true }, { @@ -51980,7 +51990,7 @@ "memberof": "Phaser.Display.Align.In", "longname": "Phaser.Display.Align.In.BottomLeft", "scope": "static", - "___id": "T000002R004798", + "___id": "T000002R004800", "___s": true }, { @@ -52079,7 +52089,7 @@ "memberof": "Phaser.Display.Align.In", "longname": "Phaser.Display.Align.In.BottomRight", "scope": "static", - "___id": "T000002R004807", + "___id": "T000002R004809", "___s": true }, { @@ -52178,7 +52188,7 @@ "memberof": "Phaser.Display.Align.In", "longname": "Phaser.Display.Align.In.Center", "scope": "static", - "___id": "T000002R004815", + "___id": "T000002R004817", "___s": true }, { @@ -52195,7 +52205,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.In", "scope": "static", - "___id": "T000002R004820", + "___id": "T000002R004822", "___s": true }, { @@ -52294,7 +52304,7 @@ "memberof": "Phaser.Display.Align.In", "longname": "Phaser.Display.Align.In.LeftCenter", "scope": "static", - "___id": "T000002R004836", + "___id": "T000002R004838", "___s": true }, { @@ -52406,7 +52416,7 @@ "memberof": "Phaser.Display.Align.In", "longname": "Phaser.Display.Align.In.QuickSet", "scope": "static", - "___id": "T000002R004856", + "___id": "T000002R004858", "___s": true }, { @@ -52505,7 +52515,7 @@ "memberof": "Phaser.Display.Align.In", "longname": "Phaser.Display.Align.In.RightCenter", "scope": "static", - "___id": "T000002R004863", + "___id": "T000002R004865", "___s": true }, { @@ -52604,7 +52614,7 @@ "memberof": "Phaser.Display.Align.In", "longname": "Phaser.Display.Align.In.TopCenter", "scope": "static", - "___id": "T000002R004872", + "___id": "T000002R004874", "___s": true }, { @@ -52703,7 +52713,7 @@ "memberof": "Phaser.Display.Align.In", "longname": "Phaser.Display.Align.In.TopLeft", "scope": "static", - "___id": "T000002R004881", + "___id": "T000002R004883", "___s": true }, { @@ -52802,7 +52812,7 @@ "memberof": "Phaser.Display.Align.In", "longname": "Phaser.Display.Align.In.TopRight", "scope": "static", - "___id": "T000002R004890", + "___id": "T000002R004892", "___s": true }, { @@ -52819,7 +52829,7 @@ "memberof": "Phaser.Display", "longname": "Phaser.Display.Align", "scope": "static", - "___id": "T000002R004897", + "___id": "T000002R004899", "___s": true }, { @@ -52918,7 +52928,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.BottomCenter", "scope": "static", - "___id": "T000002R004907", + "___id": "T000002R004909", "___s": true }, { @@ -53017,7 +53027,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.BottomLeft", "scope": "static", - "___id": "T000002R004916", + "___id": "T000002R004918", "___s": true }, { @@ -53116,7 +53126,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.BottomRight", "scope": "static", - "___id": "T000002R004925", + "___id": "T000002R004927", "___s": true }, { @@ -53133,7 +53143,7 @@ "memberof": "Phaser.Display.Align", "longname": "Phaser.Display.Align.To", "scope": "static", - "___id": "T000002R004930", + "___id": "T000002R004932", "___s": true }, { @@ -53232,7 +53242,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.LeftBottom", "scope": "static", - "___id": "T000002R004949", + "___id": "T000002R004951", "___s": true }, { @@ -53331,7 +53341,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.LeftCenter", "scope": "static", - "___id": "T000002R004958", + "___id": "T000002R004960", "___s": true }, { @@ -53430,7 +53440,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.LeftTop", "scope": "static", - "___id": "T000002R004967", + "___id": "T000002R004969", "___s": true }, { @@ -53542,7 +53552,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.QuickSet", "scope": "static", - "___id": "T000002R004986", + "___id": "T000002R004988", "___s": true }, { @@ -53641,7 +53651,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.RightBottom", "scope": "static", - "___id": "T000002R004993", + "___id": "T000002R004995", "___s": true }, { @@ -53740,7 +53750,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.RightCenter", "scope": "static", - "___id": "T000002R005002", + "___id": "T000002R005004", "___s": true }, { @@ -53839,7 +53849,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.RightTop", "scope": "static", - "___id": "T000002R005011", + "___id": "T000002R005013", "___s": true }, { @@ -53938,7 +53948,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.TopCenter", "scope": "static", - "___id": "T000002R005020", + "___id": "T000002R005022", "___s": true }, { @@ -54037,7 +54047,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.TopLeft", "scope": "static", - "___id": "T000002R005029", + "___id": "T000002R005031", "___s": true }, { @@ -54136,7 +54146,7 @@ "memberof": "Phaser.Display.Align.To", "longname": "Phaser.Display.Align.To.TopRight", "scope": "static", - "___id": "T000002R005038", + "___id": "T000002R005040", "___s": true }, { @@ -54218,7 +54228,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.CenterOn", "scope": "static", - "___id": "T000002R005045", + "___id": "T000002R005047", "___s": true }, { @@ -54266,7 +54276,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.GetBottom", "scope": "static", - "___id": "T000002R005048", + "___id": "T000002R005050", "___s": true }, { @@ -54348,7 +54358,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.GetBounds", "scope": "static", - "___id": "T000002R005056", + "___id": "T000002R005058", "___s": true }, { @@ -54396,7 +54406,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.GetCenterX", "scope": "static", - "___id": "T000002R005066", + "___id": "T000002R005068", "___s": true }, { @@ -54444,7 +54454,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.GetCenterY", "scope": "static", - "___id": "T000002R005069", + "___id": "T000002R005071", "___s": true }, { @@ -54492,7 +54502,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.GetLeft", "scope": "static", - "___id": "T000002R005072", + "___id": "T000002R005074", "___s": true }, { @@ -54540,7 +54550,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.GetOffsetX", "scope": "static", - "___id": "T000002R005075", + "___id": "T000002R005077", "___s": true }, { @@ -54588,7 +54598,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.GetOffsetY", "scope": "static", - "___id": "T000002R005078", + "___id": "T000002R005080", "___s": true }, { @@ -54636,7 +54646,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.GetRight", "scope": "static", - "___id": "T000002R005081", + "___id": "T000002R005083", "___s": true }, { @@ -54684,7 +54694,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.GetTop", "scope": "static", - "___id": "T000002R005084", + "___id": "T000002R005086", "___s": true }, { @@ -54701,7 +54711,7 @@ "memberof": "Phaser.Display", "longname": "Phaser.Display.Bounds", "scope": "static", - "___id": "T000002R005087", + "___id": "T000002R005089", "___s": true }, { @@ -54770,7 +54780,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.SetBottom", "scope": "static", - "___id": "T000002R005105", + "___id": "T000002R005107", "___s": true }, { @@ -54839,7 +54849,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.SetCenterX", "scope": "static", - "___id": "T000002R005109", + "___id": "T000002R005111", "___s": true }, { @@ -54908,7 +54918,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.SetCenterY", "scope": "static", - "___id": "T000002R005114", + "___id": "T000002R005116", "___s": true }, { @@ -54977,7 +54987,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.SetLeft", "scope": "static", - "___id": "T000002R005119", + "___id": "T000002R005121", "___s": true }, { @@ -55046,7 +55056,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.SetRight", "scope": "static", - "___id": "T000002R005123", + "___id": "T000002R005125", "___s": true }, { @@ -55115,7 +55125,7 @@ "memberof": "Phaser.Display.Bounds", "longname": "Phaser.Display.Bounds.SetTop", "scope": "static", - "___id": "T000002R005127", + "___id": "T000002R005129", "___s": true }, { @@ -55133,7 +55143,7 @@ "memberof": "Phaser.Display.Canvas", "longname": "Phaser.Display.Canvas.CanvasInterpolation", "scope": "static", - "___id": "T000002R005131", + "___id": "T000002R005133", "___s": true }, { @@ -55181,7 +55191,7 @@ "memberof": "Phaser.Display.Canvas.CanvasInterpolation", "longname": "Phaser.Display.Canvas.CanvasInterpolation.setCrisp", "scope": "static", - "___id": "T000002R005133", + "___id": "T000002R005135", "___s": true }, { @@ -55229,7 +55239,7 @@ "memberof": "Phaser.Display.Canvas.CanvasInterpolation", "longname": "Phaser.Display.Canvas.CanvasInterpolation.setBicubic", "scope": "static", - "___id": "T000002R005138", + "___id": "T000002R005140", "___s": true }, { @@ -55248,7 +55258,7 @@ "memberof": "Phaser.Display.Canvas", "longname": "Phaser.Display.Canvas.CanvasPool", "scope": "static", - "___id": "T000002R005147", + "___id": "T000002R005149", "___s": true }, { @@ -55355,7 +55365,7 @@ "memberof": "Phaser.Display.Canvas.CanvasPool", "longname": "Phaser.Display.Canvas.CanvasPool.create", "scope": "static", - "___id": "T000002R005149", + "___id": "T000002R005151", "___s": true }, { @@ -55432,7 +55442,7 @@ "memberof": "Phaser.Display.Canvas.CanvasPool", "longname": "Phaser.Display.Canvas.CanvasPool.create2D", "scope": "static", - "___id": "T000002R005168", + "___id": "T000002R005170", "___s": true }, { @@ -55509,7 +55519,7 @@ "memberof": "Phaser.Display.Canvas.CanvasPool", "longname": "Phaser.Display.Canvas.CanvasPool.createWebGL", "scope": "static", - "___id": "T000002R005170", + "___id": "T000002R005172", "___s": true }, { @@ -55559,7 +55569,7 @@ "memberof": "Phaser.Display.Canvas.CanvasPool", "longname": "Phaser.Display.Canvas.CanvasPool.first", "scope": "static", - "___id": "T000002R005172", + "___id": "T000002R005174", "___s": true }, { @@ -55592,7 +55602,7 @@ "memberof": "Phaser.Display.Canvas.CanvasPool", "longname": "Phaser.Display.Canvas.CanvasPool.remove", "scope": "static", - "___id": "T000002R005177", + "___id": "T000002R005179", "___s": true }, { @@ -55625,7 +55635,7 @@ "memberof": "Phaser.Display.Canvas.CanvasPool", "longname": "Phaser.Display.Canvas.CanvasPool.total", "scope": "static", - "___id": "T000002R005183", + "___id": "T000002R005185", "___s": true }, { @@ -55658,7 +55668,7 @@ "memberof": "Phaser.Display.Canvas.CanvasPool", "longname": "Phaser.Display.Canvas.CanvasPool.free", "scope": "static", - "___id": "T000002R005186", + "___id": "T000002R005188", "___s": true }, { @@ -55677,7 +55687,7 @@ "memberof": "Phaser.Display.Canvas.CanvasPool", "longname": "Phaser.Display.Canvas.CanvasPool.disableSmoothing", "scope": "static", - "___id": "T000002R005188", + "___id": "T000002R005190", "___s": true }, { @@ -55696,7 +55706,7 @@ "memberof": "Phaser.Display.Canvas.CanvasPool", "longname": "Phaser.Display.Canvas.CanvasPool.enableSmoothing", "scope": "static", - "___id": "T000002R005191", + "___id": "T000002R005193", "___s": true }, { @@ -55713,7 +55723,7 @@ "memberof": "Phaser.Display", "longname": "Phaser.Display.Canvas", "scope": "static", - "___id": "T000002R005205", + "___id": "T000002R005207", "___s": true }, { @@ -55731,7 +55741,7 @@ "memberof": "Phaser.Display.Canvas", "longname": "Phaser.Display.Canvas.Smoothing", "scope": "static", - "___id": "T000002R005213", + "___id": "T000002R005215", "___s": true }, { @@ -55789,7 +55799,7 @@ "memberof": "Phaser.Display.Canvas.Smoothing", "longname": "Phaser.Display.Canvas.Smoothing.getPrefix", "scope": "static", - "___id": "T000002R005215", + "___id": "T000002R005217", "___s": true }, { @@ -55857,7 +55867,7 @@ "memberof": "Phaser.Display.Canvas.Smoothing", "longname": "Phaser.Display.Canvas.Smoothing.enable", "scope": "static", - "___id": "T000002R005220", + "___id": "T000002R005222", "___s": true }, { @@ -55925,7 +55935,7 @@ "memberof": "Phaser.Display.Canvas.Smoothing", "longname": "Phaser.Display.Canvas.Smoothing.disable", "scope": "static", - "___id": "T000002R005224", + "___id": "T000002R005226", "___s": true }, { @@ -55985,7 +55995,7 @@ "memberof": "Phaser.Display.Canvas.Smoothing", "longname": "Phaser.Display.Canvas.Smoothing.isEnabled", "scope": "static", - "___id": "T000002R005228", + "___id": "T000002R005230", "___s": true }, { @@ -56048,7 +56058,7 @@ "memberof": "Phaser.Display.Canvas", "longname": "Phaser.Display.Canvas.TouchAction", "scope": "static", - "___id": "T000002R005235", + "___id": "T000002R005237", "___s": true }, { @@ -56111,7 +56121,7 @@ "memberof": "Phaser.Display.Canvas", "longname": "Phaser.Display.Canvas.UserSelect", "scope": "static", - "___id": "T000002R005242", + "___id": "T000002R005244", "___s": true }, { @@ -56128,7 +56138,7 @@ "memberof": "Phaser.Display", "longname": "Phaser.Display.Color", "scope": "static", - "___id": "T000002R005255", + "___id": "T000002R005257", "___s": true }, { @@ -56209,7 +56219,7 @@ ], "scope": "static", "longname": "Phaser.Display.Color", - "___id": "T000002R005256", + "___id": "T000002R005258", "___s": true }, { @@ -56246,7 +56256,7 @@ "longname": "Phaser.Display.Color#gl", "scope": "instance", "kind": "member", - "___id": "T000002R005279", + "___id": "T000002R005281", "___s": true }, { @@ -56279,7 +56289,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#transparent", "scope": "instance", - "___id": "T000002R005287", + "___id": "T000002R005289", "___s": true }, { @@ -56383,7 +56393,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#setTo", "scope": "instance", - "___id": "T000002R005295", + "___id": "T000002R005297", "___s": true }, { @@ -56472,7 +56482,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#setGLTo", "scope": "instance", - "___id": "T000002R005305", + "___id": "T000002R005307", "___s": true }, { @@ -56520,7 +56530,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#setFromRGB", "scope": "instance", - "___id": "T000002R005314", + "___id": "T000002R005316", "___s": true }, { @@ -56594,7 +56604,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#setFromHSV", "scope": "instance", - "___id": "T000002R005322", + "___id": "T000002R005324", "___s": true }, { @@ -56627,7 +56637,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#clone", "scope": "instance", - "___id": "T000002R005339", + "___id": "T000002R005341", "___s": true }, { @@ -56675,7 +56685,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#gray", "scope": "instance", - "___id": "T000002R005341", + "___id": "T000002R005343", "___s": true }, { @@ -56740,7 +56750,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#random", "scope": "instance", - "___id": "T000002R005343", + "___id": "T000002R005345", "___s": true }, { @@ -56805,7 +56815,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#randomGray", "scope": "instance", - "___id": "T000002R005350", + "___id": "T000002R005352", "___s": true }, { @@ -56853,7 +56863,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#saturate", "scope": "instance", - "___id": "T000002R005355", + "___id": "T000002R005357", "___s": true }, { @@ -56901,7 +56911,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#desaturate", "scope": "instance", - "___id": "T000002R005358", + "___id": "T000002R005360", "___s": true }, { @@ -56949,7 +56959,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#lighten", "scope": "instance", - "___id": "T000002R005361", + "___id": "T000002R005363", "___s": true }, { @@ -56997,7 +57007,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#darken", "scope": "instance", - "___id": "T000002R005364", + "___id": "T000002R005366", "___s": true }, { @@ -57045,7 +57055,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color#brighten", "scope": "instance", - "___id": "T000002R005367", + "___id": "T000002R005369", "___s": true }, { @@ -57074,7 +57084,7 @@ "longname": "Phaser.Display.Color#color", "scope": "instance", "kind": "member", - "___id": "T000002R005375", + "___id": "T000002R005377", "___s": true }, { @@ -57103,7 +57113,7 @@ "longname": "Phaser.Display.Color#color32", "scope": "instance", "kind": "member", - "___id": "T000002R005378", + "___id": "T000002R005380", "___s": true }, { @@ -57132,7 +57142,7 @@ "longname": "Phaser.Display.Color#rgba", "scope": "instance", "kind": "member", - "___id": "T000002R005381", + "___id": "T000002R005383", "___s": true }, { @@ -57160,7 +57170,7 @@ "longname": "Phaser.Display.Color#redGL", "scope": "instance", "kind": "member", - "___id": "T000002R005384", + "___id": "T000002R005386", "___s": true }, { @@ -57188,7 +57198,7 @@ "longname": "Phaser.Display.Color#greenGL", "scope": "instance", "kind": "member", - "___id": "T000002R005390", + "___id": "T000002R005392", "___s": true }, { @@ -57216,7 +57226,7 @@ "longname": "Phaser.Display.Color#blueGL", "scope": "instance", "kind": "member", - "___id": "T000002R005396", + "___id": "T000002R005398", "___s": true }, { @@ -57244,7 +57254,7 @@ "longname": "Phaser.Display.Color#alphaGL", "scope": "instance", "kind": "member", - "___id": "T000002R005402", + "___id": "T000002R005404", "___s": true }, { @@ -57272,7 +57282,7 @@ "longname": "Phaser.Display.Color#red", "scope": "instance", "kind": "member", - "___id": "T000002R005408", + "___id": "T000002R005410", "___s": true }, { @@ -57300,7 +57310,7 @@ "longname": "Phaser.Display.Color#green", "scope": "instance", "kind": "member", - "___id": "T000002R005415", + "___id": "T000002R005417", "___s": true }, { @@ -57328,7 +57338,7 @@ "longname": "Phaser.Display.Color#blue", "scope": "instance", "kind": "member", - "___id": "T000002R005422", + "___id": "T000002R005424", "___s": true }, { @@ -57356,7 +57366,7 @@ "longname": "Phaser.Display.Color#alpha", "scope": "instance", "kind": "member", - "___id": "T000002R005429", + "___id": "T000002R005431", "___s": true }, { @@ -57384,7 +57394,7 @@ "longname": "Phaser.Display.Color#h", "scope": "instance", "kind": "member", - "___id": "T000002R005436", + "___id": "T000002R005438", "___s": true }, { @@ -57412,7 +57422,7 @@ "longname": "Phaser.Display.Color#s", "scope": "instance", "kind": "member", - "___id": "T000002R005441", + "___id": "T000002R005443", "___s": true }, { @@ -57440,7 +57450,7 @@ "longname": "Phaser.Display.Color#v", "scope": "instance", "kind": "member", - "___id": "T000002R005446", + "___id": "T000002R005448", "___s": true }, { @@ -57499,7 +57509,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.ColorSpectrum", "scope": "static", - "___id": "T000002R005453", + "___id": "T000002R005455", "___s": true }, { @@ -57547,7 +57557,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.ColorToRGBA", "scope": "static", - "___id": "T000002R005492", + "___id": "T000002R005494", "___s": true }, { @@ -57595,7 +57605,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.ComponentToHex", "scope": "static", - "___id": "T000002R005501", + "___id": "T000002R005503", "___s": true }, { @@ -57669,7 +57679,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.GetColor", "scope": "static", - "___id": "T000002R005505", + "___id": "T000002R005507", "___s": true }, { @@ -57756,7 +57766,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.GetColor32", "scope": "static", - "___id": "T000002R005508", + "___id": "T000002R005510", "___s": true }, { @@ -57804,7 +57814,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.HexStringToColor", "scope": "static", - "___id": "T000002R005512", + "___id": "T000002R005514", "___s": true }, { @@ -57878,7 +57888,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.HSLToColor", "scope": "static", - "___id": "T000002R005523", + "___id": "T000002R005525", "___s": true }, { @@ -57952,7 +57962,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.HSVColorWheel", "scope": "static", - "___id": "T000002R005536", + "___id": "T000002R005538", "___s": true }, { @@ -58060,7 +58070,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.HSVToRGB", "scope": "static", - "___id": "T000002R005547", + "___id": "T000002R005549", "___s": true }, { @@ -58131,7 +58141,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.HueToComponent", "scope": "static", - "___id": "T000002R005563", + "___id": "T000002R005565", "___s": true }, { @@ -58179,7 +58189,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.IntegerToColor", "scope": "static", - "___id": "T000002R005591", + "___id": "T000002R005593", "___s": true }, { @@ -58227,7 +58237,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.IntegerToRGB", "scope": "static", - "___id": "T000002R005595", + "___id": "T000002R005597", "___s": true }, { @@ -58245,7 +58255,7 @@ "since": "3.0.0", "longname": "Phaser.Display.Color.Interpolate", "scope": "static", - "___id": "T000002R005607", + "___id": "T000002R005609", "___s": true }, { @@ -58388,7 +58398,7 @@ } ], "longname": "Phaser.Display.Color.Interpolate.RGBWithRGB", - "___id": "T000002R005608", + "___id": "T000002R005610", "___s": true }, { @@ -58479,7 +58489,7 @@ } ], "longname": "Phaser.Display.Color.Interpolate.ColorWithColor", - "___id": "T000002R005616", + "___id": "T000002R005618", "___s": true }, { @@ -58596,7 +58606,7 @@ } ], "longname": "Phaser.Display.Color.Interpolate.ColorWithRGB", - "___id": "T000002R005620", + "___id": "T000002R005622", "___s": true }, { @@ -58644,7 +58654,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.ObjectToColor", "scope": "static", - "___id": "T000002R005629", + "___id": "T000002R005631", "___s": true }, { @@ -58709,7 +58719,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.RandomRGB", "scope": "static", - "___id": "T000002R005634", + "___id": "T000002R005636", "___s": true }, { @@ -58757,7 +58767,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.RGBStringToColor", "scope": "static", - "___id": "T000002R005640", + "___id": "T000002R005642", "___s": true }, { @@ -58865,7 +58875,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.RGBToHSV", "scope": "static", - "___id": "T000002R005649", + "___id": "T000002R005651", "___s": true }, { @@ -58969,7 +58979,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.RGBToString", "scope": "static", - "___id": "T000002R005676", + "___id": "T000002R005678", "___s": true }, { @@ -59032,7 +59042,7 @@ "memberof": "Phaser.Display.Color", "longname": "Phaser.Display.Color.ValueToColor", "scope": "static", - "___id": "T000002R005685", + "___id": "T000002R005687", "___s": true }, { @@ -59051,7 +59061,7 @@ "since": "3.50.0", "scope": "static", "longname": "Phaser.Display.ColorMatrix", - "___id": "T000002R005691", + "___id": "T000002R005693", "___s": true }, { @@ -59079,7 +59089,7 @@ "longname": "Phaser.Display.ColorMatrix#alpha", "scope": "instance", "kind": "member", - "___id": "T000002R005696", + "___id": "T000002R005698", "___s": true }, { @@ -59147,7 +59157,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#set", "scope": "instance", - "___id": "T000002R005702", + "___id": "T000002R005704", "___s": true }, { @@ -59181,7 +59191,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#reset", "scope": "instance", - "___id": "T000002R005705", + "___id": "T000002R005707", "___s": true }, { @@ -59214,7 +59224,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#getData", "scope": "instance", - "___id": "T000002R005714", + "___id": "T000002R005716", "___s": true }, { @@ -59280,7 +59290,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#brightness", "scope": "instance", - "___id": "T000002R005722", + "___id": "T000002R005724", "___s": true }, { @@ -59346,7 +59356,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#saturate", "scope": "instance", - "___id": "T000002R005727", + "___id": "T000002R005729", "___s": true }, { @@ -59397,7 +59407,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#saturation", "scope": "instance", - "___id": "T000002R005733", + "___id": "T000002R005735", "___s": true }, { @@ -59463,7 +59473,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#hue", "scope": "instance", - "___id": "T000002R005736", + "___id": "T000002R005738", "___s": true }, { @@ -59529,7 +59539,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#grayscale", "scope": "instance", - "___id": "T000002R005746", + "___id": "T000002R005748", "___s": true }, { @@ -59580,7 +59590,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#blackWhite", "scope": "instance", - "___id": "T000002R005750", + "___id": "T000002R005752", "___s": true }, { @@ -59646,7 +59656,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#contrast", "scope": "instance", - "___id": "T000002R005753", + "___id": "T000002R005755", "___s": true }, { @@ -59697,7 +59707,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#negative", "scope": "instance", - "___id": "T000002R005759", + "___id": "T000002R005761", "___s": true }, { @@ -59748,7 +59758,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#desaturateLuminance", "scope": "instance", - "___id": "T000002R005762", + "___id": "T000002R005764", "___s": true }, { @@ -59799,7 +59809,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#sepia", "scope": "instance", - "___id": "T000002R005765", + "___id": "T000002R005767", "___s": true }, { @@ -59865,7 +59875,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#night", "scope": "instance", - "___id": "T000002R005768", + "___id": "T000002R005770", "___s": true }, { @@ -59916,7 +59926,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#lsd", "scope": "instance", - "___id": "T000002R005772", + "___id": "T000002R005774", "___s": true }, { @@ -59967,7 +59977,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#brown", "scope": "instance", - "___id": "T000002R005775", + "___id": "T000002R005777", "___s": true }, { @@ -60018,7 +60028,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#vintagePinhole", "scope": "instance", - "___id": "T000002R005778", + "___id": "T000002R005780", "___s": true }, { @@ -60069,7 +60079,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#kodachrome", "scope": "instance", - "___id": "T000002R005781", + "___id": "T000002R005783", "___s": true }, { @@ -60120,7 +60130,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#technicolor", "scope": "instance", - "___id": "T000002R005784", + "___id": "T000002R005786", "___s": true }, { @@ -60171,7 +60181,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#polaroid", "scope": "instance", - "___id": "T000002R005787", + "___id": "T000002R005789", "___s": true }, { @@ -60222,7 +60232,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#shiftToBGR", "scope": "instance", - "___id": "T000002R005790", + "___id": "T000002R005792", "___s": true }, { @@ -60295,7 +60305,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix#multiply", "scope": "instance", - "___id": "T000002R005793", + "___id": "T000002R005795", "___s": true }, { @@ -60332,7 +60342,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix.BLACK_WHITE", "scope": "static", - "___id": "T000002R005799", + "___id": "T000002R005801", "___s": true }, { @@ -60369,7 +60379,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix.NEGATIVE", "scope": "static", - "___id": "T000002R005801", + "___id": "T000002R005803", "___s": true }, { @@ -60406,7 +60416,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix.DESATURATE_LUMINANCE", "scope": "static", - "___id": "T000002R005803", + "___id": "T000002R005805", "___s": true }, { @@ -60443,7 +60453,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix.SEPIA", "scope": "static", - "___id": "T000002R005805", + "___id": "T000002R005807", "___s": true }, { @@ -60480,7 +60490,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix.LSD", "scope": "static", - "___id": "T000002R005807", + "___id": "T000002R005809", "___s": true }, { @@ -60517,7 +60527,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix.BROWN", "scope": "static", - "___id": "T000002R005809", + "___id": "T000002R005811", "___s": true }, { @@ -60554,7 +60564,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix.VINTAGE", "scope": "static", - "___id": "T000002R005811", + "___id": "T000002R005813", "___s": true }, { @@ -60591,7 +60601,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix.KODACHROME", "scope": "static", - "___id": "T000002R005813", + "___id": "T000002R005815", "___s": true }, { @@ -60628,7 +60638,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix.TECHNICOLOR", "scope": "static", - "___id": "T000002R005815", + "___id": "T000002R005817", "___s": true }, { @@ -60665,7 +60675,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix.POLAROID", "scope": "static", - "___id": "T000002R005817", + "___id": "T000002R005819", "___s": true }, { @@ -60702,7 +60712,7 @@ "memberof": "Phaser.Display.ColorMatrix", "longname": "Phaser.Display.ColorMatrix.SHIFT_BGR", "scope": "static", - "___id": "T000002R005819", + "___id": "T000002R005821", "___s": true }, { @@ -60719,7 +60729,7 @@ "memberof": "Phaser", "longname": "Phaser.Display", "scope": "static", - "___id": "T000002R005822", + "___id": "T000002R005824", "___s": true }, { @@ -60858,7 +60868,7 @@ ], "scope": "static", "longname": "Phaser.Display.Masks.BitmapMask", - "___id": "T000002R005834", + "___id": "T000002R005836", "___s": true }, { @@ -60896,7 +60906,7 @@ "longname": "Phaser.Display.Masks.BitmapMask#bitmapMask", "scope": "instance", "kind": "member", - "___id": "T000002R005843", + "___id": "T000002R005845", "___s": true }, { @@ -60924,7 +60934,7 @@ "longname": "Phaser.Display.Masks.BitmapMask#invertAlpha", "scope": "instance", "kind": "member", - "___id": "T000002R005845", + "___id": "T000002R005847", "___s": true }, { @@ -60953,7 +60963,7 @@ "longname": "Phaser.Display.Masks.BitmapMask#isStencil", "scope": "instance", "kind": "member", - "___id": "T000002R005847", + "___id": "T000002R005849", "___s": true }, { @@ -60997,7 +61007,7 @@ "memberof": "Phaser.Display.Masks.BitmapMask", "longname": "Phaser.Display.Masks.BitmapMask#setBitmap", "scope": "instance", - "___id": "T000002R005849", + "___id": "T000002R005851", "___s": true }, { @@ -61067,7 +61077,7 @@ "memberof": "Phaser.Display.Masks.BitmapMask", "longname": "Phaser.Display.Masks.BitmapMask#preRenderWebGL", "scope": "instance", - "___id": "T000002R005852", + "___id": "T000002R005854", "___s": true }, { @@ -61138,7 +61148,7 @@ "memberof": "Phaser.Display.Masks.BitmapMask", "longname": "Phaser.Display.Masks.BitmapMask#postRenderWebGL", "scope": "instance", - "___id": "T000002R005854", + "___id": "T000002R005856", "___s": true }, { @@ -61208,7 +61218,7 @@ "memberof": "Phaser.Display.Masks.BitmapMask", "longname": "Phaser.Display.Masks.BitmapMask#preRenderCanvas", "scope": "instance", - "___id": "T000002R005856", + "___id": "T000002R005858", "___s": true }, { @@ -61252,7 +61262,7 @@ "memberof": "Phaser.Display.Masks.BitmapMask", "longname": "Phaser.Display.Masks.BitmapMask#postRenderCanvas", "scope": "instance", - "___id": "T000002R005858", + "___id": "T000002R005860", "___s": true }, { @@ -61271,7 +61281,7 @@ "memberof": "Phaser.Display.Masks.BitmapMask", "longname": "Phaser.Display.Masks.BitmapMask#destroy", "scope": "instance", - "___id": "T000002R005860", + "___id": "T000002R005862", "___s": true }, { @@ -61411,7 +61421,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#bitmapMask", "scope": "instance", - "___id": "T000002R005863", + "___id": "T000002R005865", "___s": true }, { @@ -61458,7 +61468,7 @@ ], "scope": "static", "longname": "Phaser.Display.Masks.GeometryMask", - "___id": "T000002R005866", + "___id": "T000002R005868", "___s": true }, { @@ -61486,7 +61496,7 @@ "longname": "Phaser.Display.Masks.GeometryMask#geometryMask", "scope": "instance", "kind": "member", - "___id": "T000002R005869", + "___id": "T000002R005871", "___s": true }, { @@ -61514,7 +61524,7 @@ "longname": "Phaser.Display.Masks.GeometryMask#invertAlpha", "scope": "instance", "kind": "member", - "___id": "T000002R005871", + "___id": "T000002R005873", "___s": true }, { @@ -61543,7 +61553,7 @@ "longname": "Phaser.Display.Masks.GeometryMask#isStencil", "scope": "instance", "kind": "member", - "___id": "T000002R005873", + "___id": "T000002R005875", "___s": true }, { @@ -61571,7 +61581,7 @@ "longname": "Phaser.Display.Masks.GeometryMask#level", "scope": "instance", "kind": "member", - "___id": "T000002R005875", + "___id": "T000002R005877", "___s": true }, { @@ -61620,7 +61630,7 @@ "memberof": "Phaser.Display.Masks.GeometryMask", "longname": "Phaser.Display.Masks.GeometryMask#setShape", "scope": "instance", - "___id": "T000002R005877", + "___id": "T000002R005879", "___s": true }, { @@ -61671,7 +61681,7 @@ "memberof": "Phaser.Display.Masks.GeometryMask", "longname": "Phaser.Display.Masks.GeometryMask#setInvertAlpha", "scope": "instance", - "___id": "T000002R005880", + "___id": "T000002R005882", "___s": true }, { @@ -61731,7 +61741,7 @@ "memberof": "Phaser.Display.Masks.GeometryMask", "longname": "Phaser.Display.Masks.GeometryMask#preRenderWebGL", "scope": "instance", - "___id": "T000002R005884", + "___id": "T000002R005886", "___s": true }, { @@ -61791,7 +61801,7 @@ "memberof": "Phaser.Display.Masks.GeometryMask", "longname": "Phaser.Display.Masks.GeometryMask#applyStencil", "scope": "instance", - "___id": "T000002R005891", + "___id": "T000002R005893", "___s": true }, { @@ -61825,7 +61835,7 @@ "memberof": "Phaser.Display.Masks.GeometryMask", "longname": "Phaser.Display.Masks.GeometryMask#postRenderWebGL", "scope": "instance", - "___id": "T000002R005898", + "___id": "T000002R005900", "___s": true }, { @@ -61885,7 +61895,7 @@ "memberof": "Phaser.Display.Masks.GeometryMask", "longname": "Phaser.Display.Masks.GeometryMask#preRenderCanvas", "scope": "instance", - "___id": "T000002R005907", + "___id": "T000002R005909", "___s": true }, { @@ -61919,7 +61929,7 @@ "memberof": "Phaser.Display.Masks.GeometryMask", "longname": "Phaser.Display.Masks.GeometryMask#postRenderCanvas", "scope": "instance", - "___id": "T000002R005910", + "___id": "T000002R005912", "___s": true }, { @@ -61938,7 +61948,7 @@ "memberof": "Phaser.Display.Masks.GeometryMask", "longname": "Phaser.Display.Masks.GeometryMask#destroy", "scope": "instance", - "___id": "T000002R005912", + "___id": "T000002R005914", "___s": true }, { @@ -61955,7 +61965,7 @@ "memberof": "Phaser.Display", "longname": "Phaser.Display.Masks", "scope": "static", - "___id": "T000002R005916", + "___id": "T000002R005918", "___s": true }, { @@ -62021,7 +62031,7 @@ ], "scope": "static", "longname": "Phaser.Display.RGB", - "___id": "T000002R005922", + "___id": "T000002R005924", "___s": true }, { @@ -62049,7 +62059,7 @@ "longname": "Phaser.Display.RGB#onChangeCallback", "scope": "instance", "kind": "member", - "___id": "T000002R005927", + "___id": "T000002R005929", "___s": true }, { @@ -62077,7 +62087,7 @@ "longname": "Phaser.Display.RGB#dirty", "scope": "instance", "kind": "member", - "___id": "T000002R005929", + "___id": "T000002R005931", "___s": true }, { @@ -62158,7 +62168,7 @@ "memberof": "Phaser.Display.RGB", "longname": "Phaser.Display.RGB#set", "scope": "instance", - "___id": "T000002R005931", + "___id": "T000002R005933", "___s": true }, { @@ -62232,7 +62242,7 @@ "memberof": "Phaser.Display.RGB", "longname": "Phaser.Display.RGB#equals", "scope": "instance", - "___id": "T000002R005937", + "___id": "T000002R005939", "___s": true }, { @@ -62251,7 +62261,7 @@ "memberof": "Phaser.Display.RGB", "longname": "Phaser.Display.RGB#onChange", "scope": "instance", - "___id": "T000002R005940", + "___id": "T000002R005942", "___s": true }, { @@ -62279,7 +62289,7 @@ "longname": "Phaser.Display.RGB#r", "scope": "instance", "kind": "member", - "___id": "T000002R005944", + "___id": "T000002R005946", "___s": true }, { @@ -62307,7 +62317,7 @@ "longname": "Phaser.Display.RGB#g", "scope": "instance", "kind": "member", - "___id": "T000002R005949", + "___id": "T000002R005951", "___s": true }, { @@ -62335,7 +62345,7 @@ "longname": "Phaser.Display.RGB#b", "scope": "instance", "kind": "member", - "___id": "T000002R005954", + "___id": "T000002R005956", "___s": true }, { @@ -62354,7 +62364,7 @@ "memberof": "Phaser.Display.RGB", "longname": "Phaser.Display.RGB#destroy", "scope": "instance", - "___id": "T000002R005959", + "___id": "T000002R005961", "___s": true }, { @@ -62430,7 +62440,7 @@ ], "scope": "static", "longname": "Phaser.Display.BaseShader", - "___id": "T000002R005964", + "___id": "T000002R005966", "___s": true }, { @@ -62458,7 +62468,7 @@ "longname": "Phaser.Display.BaseShader#key", "scope": "instance", "kind": "member", - "___id": "T000002R005970", + "___id": "T000002R005972", "___s": true }, { @@ -62486,7 +62496,7 @@ "longname": "Phaser.Display.BaseShader#fragmentSrc", "scope": "instance", "kind": "member", - "___id": "T000002R005972", + "___id": "T000002R005974", "___s": true }, { @@ -62514,7 +62524,7 @@ "longname": "Phaser.Display.BaseShader#vertexSrc", "scope": "instance", "kind": "member", - "___id": "T000002R005974", + "___id": "T000002R005976", "___s": true }, { @@ -62544,7 +62554,7 @@ "longname": "Phaser.Display.BaseShader#uniforms", "scope": "instance", "kind": "member", - "___id": "T000002R005976", + "___id": "T000002R005978", "___s": true }, { @@ -62638,7 +62648,7 @@ "memberof": "Phaser.Types.Display", "longname": "Phaser.Types.Display.ColorObject", "scope": "static", - "___id": "T000002R005979", + "___id": "T000002R005981", "___s": true }, { @@ -62706,7 +62716,7 @@ "memberof": "Phaser.Types.Display", "longname": "Phaser.Types.Display.HSVColorObject", "scope": "static", - "___id": "T000002R005980", + "___id": "T000002R005982", "___s": true }, { @@ -62723,7 +62733,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Display", "scope": "static", - "___id": "T000002R005981", + "___id": "T000002R005983", "___s": true }, { @@ -62808,7 +62818,7 @@ "memberof": "Phaser.Types.Display", "longname": "Phaser.Types.Display.InputColorObject", "scope": "static", - "___id": "T000002R005982", + "___id": "T000002R005984", "___s": true }, { @@ -62880,7 +62890,7 @@ "memberof": "Phaser.DOM", "longname": "Phaser.DOM.AddToDOM", "scope": "static", - "___id": "T000002R005983", + "___id": "T000002R005985", "___s": true }, { @@ -62901,7 +62911,7 @@ }, "longname": "ContentLoadedCallback", "scope": "global", - "___id": "T000002R005998", + "___id": "T000002R006000", "___s": true }, { @@ -62935,7 +62945,7 @@ "memberof": "Phaser.DOM", "longname": "Phaser.DOM.DOMContentLoaded", "scope": "static", - "___id": "T000002R005999", + "___id": "T000002R006001", "___s": true }, { @@ -62983,7 +62993,7 @@ "memberof": "Phaser.DOM", "longname": "Phaser.DOM.GetInnerHeight", "scope": "static", - "___id": "T000002R006003", + "___id": "T000002R006005", "___s": true }, { @@ -63044,7 +63054,7 @@ "memberof": "Phaser.DOM", "longname": "Phaser.DOM.GetScreenOrientation", "scope": "static", - "___id": "T000002R006015", + "___id": "T000002R006017", "___s": true }, { @@ -63078,7 +63088,7 @@ "memberof": "Phaser.DOM", "longname": "Phaser.DOM.GetTarget", "scope": "static", - "___id": "T000002R006020", + "___id": "T000002R006022", "___s": true }, { @@ -63095,7 +63105,7 @@ "memberof": "Phaser", "longname": "Phaser.DOM", "scope": "static", - "___id": "T000002R006027", + "___id": "T000002R006029", "___s": true }, { @@ -63155,7 +63165,7 @@ "memberof": "Phaser.DOM", "longname": "Phaser.DOM.ParseXML", "scope": "static", - "___id": "T000002R006038", + "___id": "T000002R006040", "___s": true }, { @@ -63189,7 +63199,7 @@ "memberof": "Phaser.DOM", "longname": "Phaser.DOM.RemoveFromDOM", "scope": "static", - "___id": "T000002R006046", + "___id": "T000002R006048", "___s": true }, { @@ -63208,7 +63218,7 @@ "since": "3.0.0", "scope": "static", "longname": "Phaser.DOM.RequestAnimationFrame", - "___id": "T000002R006051", + "___id": "T000002R006053", "___s": true }, { @@ -63237,7 +63247,7 @@ "longname": "Phaser.DOM.RequestAnimationFrame#isRunning", "scope": "instance", "kind": "member", - "___id": "T000002R006054", + "___id": "T000002R006056", "___s": true }, { @@ -63265,7 +63275,7 @@ "longname": "Phaser.DOM.RequestAnimationFrame#callback", "scope": "instance", "kind": "member", - "___id": "T000002R006056", + "___id": "T000002R006058", "___s": true }, { @@ -63294,7 +63304,7 @@ "longname": "Phaser.DOM.RequestAnimationFrame#isSetTimeOut", "scope": "instance", "kind": "member", - "___id": "T000002R006058", + "___id": "T000002R006060", "___s": true }, { @@ -63325,7 +63335,7 @@ "longname": "Phaser.DOM.RequestAnimationFrame#timeOutID", "scope": "instance", "kind": "member", - "___id": "T000002R006060", + "___id": "T000002R006062", "___s": true }, { @@ -63354,7 +63364,7 @@ "longname": "Phaser.DOM.RequestAnimationFrame#delay", "scope": "instance", "kind": "member", - "___id": "T000002R006062", + "___id": "T000002R006064", "___s": true }, { @@ -63397,7 +63407,7 @@ "longname": "Phaser.DOM.RequestAnimationFrame#step", "scope": "instance", "kind": "member", - "___id": "T000002R006065", + "___id": "T000002R006067", "___s": true }, { @@ -63425,7 +63435,7 @@ "longname": "Phaser.DOM.RequestAnimationFrame#stepTimeout", "scope": "instance", "kind": "member", - "___id": "T000002R006068", + "___id": "T000002R006070", "___s": true }, { @@ -63485,7 +63495,7 @@ "memberof": "Phaser.DOM.RequestAnimationFrame", "longname": "Phaser.DOM.RequestAnimationFrame#start", "scope": "instance", - "___id": "T000002R006071", + "___id": "T000002R006073", "___s": true }, { @@ -63504,7 +63514,7 @@ "memberof": "Phaser.DOM.RequestAnimationFrame", "longname": "Phaser.DOM.RequestAnimationFrame#stop", "scope": "instance", - "___id": "T000002R006078", + "___id": "T000002R006080", "___s": true }, { @@ -63523,7 +63533,7 @@ "memberof": "Phaser.DOM.RequestAnimationFrame", "longname": "Phaser.DOM.RequestAnimationFrame#destroy", "scope": "instance", - "___id": "T000002R006081", + "___id": "T000002R006083", "___s": true }, { @@ -63542,7 +63552,7 @@ "since": "3.0.0", "scope": "static", "longname": "Phaser.Events.EventEmitter", - "___id": "T000002R006088", + "___id": "T000002R006090", "___s": true }, { @@ -63561,7 +63571,7 @@ "memberof": "Phaser.Events.EventEmitter", "longname": "Phaser.Events.EventEmitter#shutdown", "scope": "instance", - "___id": "T000002R006092", + "___id": "T000002R006094", "___s": true }, { @@ -63580,7 +63590,7 @@ "memberof": "Phaser.Events.EventEmitter", "longname": "Phaser.Events.EventEmitter#destroy", "scope": "instance", - "___id": "T000002R006094", + "___id": "T000002R006096", "___s": true }, { @@ -63630,7 +63640,7 @@ "memberof": "Phaser.Events.EventEmitter", "longname": "Phaser.Events.EventEmitter#eventNames", "scope": "instance", - "___id": "T000002R006096", + "___id": "T000002R006098", "___s": true }, { @@ -63697,7 +63707,7 @@ "memberof": "Phaser.Events.EventEmitter", "longname": "Phaser.Events.EventEmitter#listeners", "scope": "instance", - "___id": "T000002R006097", + "___id": "T000002R006099", "___s": true }, { @@ -63755,7 +63765,7 @@ "memberof": "Phaser.Events.EventEmitter", "longname": "Phaser.Events.EventEmitter#listenerCount", "scope": "instance", - "___id": "T000002R006098", + "___id": "T000002R006100", "___s": true }, { @@ -63828,7 +63838,7 @@ "memberof": "Phaser.Events.EventEmitter", "longname": "Phaser.Events.EventEmitter#emit", "scope": "instance", - "___id": "T000002R006099", + "___id": "T000002R006101", "___s": true }, { @@ -63914,7 +63924,7 @@ "memberof": "Phaser.Events.EventEmitter", "longname": "Phaser.Events.EventEmitter#on", "scope": "instance", - "___id": "T000002R006100", + "___id": "T000002R006102", "___s": true }, { @@ -64000,7 +64010,7 @@ "memberof": "Phaser.Events.EventEmitter", "longname": "Phaser.Events.EventEmitter#addListener", "scope": "instance", - "___id": "T000002R006101", + "___id": "T000002R006103", "___s": true }, { @@ -64086,7 +64096,7 @@ "memberof": "Phaser.Events.EventEmitter", "longname": "Phaser.Events.EventEmitter#once", "scope": "instance", - "___id": "T000002R006102", + "___id": "T000002R006104", "___s": true }, { @@ -64186,7 +64196,7 @@ "memberof": "Phaser.Events.EventEmitter", "longname": "Phaser.Events.EventEmitter#removeListener", "scope": "instance", - "___id": "T000002R006103", + "___id": "T000002R006105", "___s": true }, { @@ -64286,7 +64296,7 @@ "memberof": "Phaser.Events.EventEmitter", "longname": "Phaser.Events.EventEmitter#off", "scope": "instance", - "___id": "T000002R006104", + "___id": "T000002R006106", "___s": true }, { @@ -64346,7 +64356,7 @@ "memberof": "Phaser.Events.EventEmitter", "longname": "Phaser.Events.EventEmitter#removeAllListeners", "scope": "instance", - "___id": "T000002R006105", + "___id": "T000002R006107", "___s": true }, { @@ -64363,7 +64373,7 @@ "memberof": "Phaser", "longname": "Phaser.Events", "scope": "static", - "___id": "T000002R006107", + "___id": "T000002R006109", "___s": true }, { @@ -64415,7 +64425,7 @@ ], "scope": "static", "longname": "Phaser.FX.Barrel", - "___id": "T000002R006113", + "___id": "T000002R006115", "___s": true }, { @@ -64443,7 +64453,7 @@ "longname": "Phaser.FX.Barrel#amount", "scope": "instance", "kind": "member", - "___id": "T000002R006118", + "___id": "T000002R006120", "___s": true }, { @@ -64570,7 +64580,7 @@ ], "scope": "static", "longname": "Phaser.FX.Bloom", - "___id": "T000002R006124", + "___id": "T000002R006126", "___s": true }, { @@ -64598,7 +64608,7 @@ "longname": "Phaser.FX.Bloom#steps", "scope": "instance", "kind": "member", - "___id": "T000002R006133", + "___id": "T000002R006135", "___s": true }, { @@ -64626,7 +64636,7 @@ "longname": "Phaser.FX.Bloom#offsetX", "scope": "instance", "kind": "member", - "___id": "T000002R006135", + "___id": "T000002R006137", "___s": true }, { @@ -64654,7 +64664,7 @@ "longname": "Phaser.FX.Bloom#offsetY", "scope": "instance", "kind": "member", - "___id": "T000002R006137", + "___id": "T000002R006139", "___s": true }, { @@ -64682,7 +64692,7 @@ "longname": "Phaser.FX.Bloom#blurStrength", "scope": "instance", "kind": "member", - "___id": "T000002R006139", + "___id": "T000002R006141", "___s": true }, { @@ -64710,7 +64720,7 @@ "longname": "Phaser.FX.Bloom#strength", "scope": "instance", "kind": "member", - "___id": "T000002R006141", + "___id": "T000002R006143", "___s": true }, { @@ -64747,7 +64757,7 @@ "longname": "Phaser.FX.Bloom#glcolor", "scope": "instance", "kind": "member", - "___id": "T000002R006143", + "___id": "T000002R006145", "___s": true }, { @@ -64775,7 +64785,7 @@ "longname": "Phaser.FX.Bloom#color", "scope": "instance", "kind": "member", - "___id": "T000002R006146", + "___id": "T000002R006148", "___s": true }, { @@ -64902,7 +64912,7 @@ ], "scope": "static", "longname": "Phaser.FX.Blur", - "___id": "T000002R006159", + "___id": "T000002R006161", "___s": true }, { @@ -64930,7 +64940,7 @@ "longname": "Phaser.FX.Blur#quality", "scope": "instance", "kind": "member", - "___id": "T000002R006168", + "___id": "T000002R006170", "___s": true }, { @@ -64958,7 +64968,7 @@ "longname": "Phaser.FX.Blur#x", "scope": "instance", "kind": "member", - "___id": "T000002R006170", + "___id": "T000002R006172", "___s": true }, { @@ -64986,7 +64996,7 @@ "longname": "Phaser.FX.Blur#y", "scope": "instance", "kind": "member", - "___id": "T000002R006172", + "___id": "T000002R006174", "___s": true }, { @@ -65014,7 +65024,7 @@ "longname": "Phaser.FX.Blur#steps", "scope": "instance", "kind": "member", - "___id": "T000002R006174", + "___id": "T000002R006176", "___s": true }, { @@ -65042,7 +65052,7 @@ "longname": "Phaser.FX.Blur#strength", "scope": "instance", "kind": "member", - "___id": "T000002R006176", + "___id": "T000002R006178", "___s": true }, { @@ -65079,7 +65089,7 @@ "longname": "Phaser.FX.Blur#glcolor", "scope": "instance", "kind": "member", - "___id": "T000002R006178", + "___id": "T000002R006180", "___s": true }, { @@ -65107,7 +65117,7 @@ "longname": "Phaser.FX.Blur#color", "scope": "instance", "kind": "member", - "___id": "T000002R006181", + "___id": "T000002R006183", "___s": true }, { @@ -65249,7 +65259,7 @@ ], "scope": "static", "longname": "Phaser.FX.Bokeh", - "___id": "T000002R006194", + "___id": "T000002R006196", "___s": true }, { @@ -65277,7 +65287,7 @@ "longname": "Phaser.FX.Bokeh#radius", "scope": "instance", "kind": "member", - "___id": "T000002R006205", + "___id": "T000002R006207", "___s": true }, { @@ -65305,7 +65315,7 @@ "longname": "Phaser.FX.Bokeh#amount", "scope": "instance", "kind": "member", - "___id": "T000002R006207", + "___id": "T000002R006209", "___s": true }, { @@ -65333,7 +65343,7 @@ "longname": "Phaser.FX.Bokeh#contrast", "scope": "instance", "kind": "member", - "___id": "T000002R006209", + "___id": "T000002R006211", "___s": true }, { @@ -65361,7 +65371,7 @@ "longname": "Phaser.FX.Bokeh#isTiltShift", "scope": "instance", "kind": "member", - "___id": "T000002R006211", + "___id": "T000002R006213", "___s": true }, { @@ -65389,7 +65399,7 @@ "longname": "Phaser.FX.Bokeh#strength", "scope": "instance", "kind": "member", - "___id": "T000002R006213", + "___id": "T000002R006215", "___s": true }, { @@ -65417,7 +65427,7 @@ "longname": "Phaser.FX.Bokeh#blurX", "scope": "instance", "kind": "member", - "___id": "T000002R006215", + "___id": "T000002R006217", "___s": true }, { @@ -65445,7 +65455,7 @@ "longname": "Phaser.FX.Bokeh#blurY", "scope": "instance", "kind": "member", - "___id": "T000002R006217", + "___id": "T000002R006219", "___s": true }, { @@ -65557,7 +65567,7 @@ ], "scope": "static", "longname": "Phaser.FX.Circle", - "___id": "T000002R006223", + "___id": "T000002R006225", "___s": true }, { @@ -65585,7 +65595,7 @@ "longname": "Phaser.FX.Circle#scale", "scope": "instance", "kind": "member", - "___id": "T000002R006230", + "___id": "T000002R006232", "___s": true }, { @@ -65613,7 +65623,7 @@ "longname": "Phaser.FX.Circle#feather", "scope": "instance", "kind": "member", - "___id": "T000002R006232", + "___id": "T000002R006234", "___s": true }, { @@ -65641,7 +65651,7 @@ "longname": "Phaser.FX.Circle#thickness", "scope": "instance", "kind": "member", - "___id": "T000002R006234", + "___id": "T000002R006236", "___s": true }, { @@ -65678,7 +65688,7 @@ "longname": "Phaser.FX.Circle#glcolor", "scope": "instance", "kind": "member", - "___id": "T000002R006236", + "___id": "T000002R006238", "___s": true }, { @@ -65715,7 +65725,7 @@ "longname": "Phaser.FX.Circle#glcolor2", "scope": "instance", "kind": "member", - "___id": "T000002R006238", + "___id": "T000002R006240", "___s": true }, { @@ -65743,7 +65753,7 @@ "longname": "Phaser.FX.Circle#color", "scope": "instance", "kind": "member", - "___id": "T000002R006242", + "___id": "T000002R006244", "___s": true }, { @@ -65771,7 +65781,7 @@ "longname": "Phaser.FX.Circle#backgroundColor", "scope": "instance", "kind": "member", - "___id": "T000002R006251", + "___id": "T000002R006253", "___s": true }, { @@ -65799,7 +65809,7 @@ "longname": "Phaser.FX.Circle#backgroundAlpha", "scope": "instance", "kind": "member", - "___id": "T000002R006260", + "___id": "T000002R006262", "___s": true }, { @@ -65836,7 +65846,7 @@ ], "scope": "static", "longname": "Phaser.FX.ColorMatrix", - "___id": "T000002R006269", + "___id": "T000002R006271", "___s": true }, { @@ -65864,7 +65874,7 @@ "longname": "Phaser.FX.ColorMatrix#type", "scope": "instance", "kind": "member", - "___id": "T000002R006273", + "___id": "T000002R006275", "___s": true }, { @@ -65892,7 +65902,7 @@ "longname": "Phaser.FX.ColorMatrix#gameObject", "scope": "instance", "kind": "member", - "___id": "T000002R006275", + "___id": "T000002R006277", "___s": true }, { @@ -65920,7 +65930,7 @@ "longname": "Phaser.FX.ColorMatrix#active", "scope": "instance", "kind": "member", - "___id": "T000002R006277", + "___id": "T000002R006279", "___s": true }, { @@ -65948,7 +65958,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.GLOW", "scope": "static", - "___id": "T000002R006285", + "___id": "T000002R006287", "___s": true }, { @@ -65976,7 +65986,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.SHADOW", "scope": "static", - "___id": "T000002R006287", + "___id": "T000002R006289", "___s": true }, { @@ -66004,7 +66014,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.PIXELATE", "scope": "static", - "___id": "T000002R006289", + "___id": "T000002R006291", "___s": true }, { @@ -66032,7 +66042,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.VIGNETTE", "scope": "static", - "___id": "T000002R006291", + "___id": "T000002R006293", "___s": true }, { @@ -66060,7 +66070,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.SHINE", "scope": "static", - "___id": "T000002R006293", + "___id": "T000002R006295", "___s": true }, { @@ -66088,7 +66098,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.BLUR", "scope": "static", - "___id": "T000002R006295", + "___id": "T000002R006297", "___s": true }, { @@ -66116,7 +66126,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.GRADIENT", "scope": "static", - "___id": "T000002R006297", + "___id": "T000002R006299", "___s": true }, { @@ -66144,7 +66154,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.BLOOM", "scope": "static", - "___id": "T000002R006299", + "___id": "T000002R006301", "___s": true }, { @@ -66172,7 +66182,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.COLOR_MATRIX", "scope": "static", - "___id": "T000002R006301", + "___id": "T000002R006303", "___s": true }, { @@ -66200,7 +66210,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.CIRCLE", "scope": "static", - "___id": "T000002R006303", + "___id": "T000002R006305", "___s": true }, { @@ -66228,7 +66238,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.BARREL", "scope": "static", - "___id": "T000002R006305", + "___id": "T000002R006307", "___s": true }, { @@ -66256,7 +66266,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.DISPLACEMENT", "scope": "static", - "___id": "T000002R006307", + "___id": "T000002R006309", "___s": true }, { @@ -66284,7 +66294,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.WIPE", "scope": "static", - "___id": "T000002R006309", + "___id": "T000002R006311", "___s": true }, { @@ -66312,7 +66322,7 @@ "memberof": "Phaser.FX", "longname": "Phaser.FX.BOKEH", "scope": "static", - "___id": "T000002R006311", + "___id": "T000002R006313", "___s": true }, { @@ -66359,7 +66369,7 @@ ], "scope": "static", "longname": "Phaser.FX.Controller", - "___id": "T000002R006315", + "___id": "T000002R006317", "___s": true }, { @@ -66387,7 +66397,7 @@ "longname": "Phaser.FX.Controller#type", "scope": "instance", "kind": "member", - "___id": "T000002R006318", + "___id": "T000002R006320", "___s": true }, { @@ -66415,7 +66425,7 @@ "longname": "Phaser.FX.Controller#gameObject", "scope": "instance", "kind": "member", - "___id": "T000002R006320", + "___id": "T000002R006322", "___s": true }, { @@ -66443,7 +66453,7 @@ "longname": "Phaser.FX.Controller#active", "scope": "instance", "kind": "member", - "___id": "T000002R006322", + "___id": "T000002R006324", "___s": true }, { @@ -66492,7 +66502,7 @@ "memberof": "Phaser.FX.Controller", "longname": "Phaser.FX.Controller#setActive", "scope": "instance", - "___id": "T000002R006324", + "___id": "T000002R006326", "___s": true }, { @@ -66511,7 +66521,7 @@ "memberof": "Phaser.FX.Controller", "longname": "Phaser.FX.Controller#destroy", "scope": "instance", - "___id": "T000002R006327", + "___id": "T000002R006329", "___s": true }, { @@ -66593,7 +66603,7 @@ ], "scope": "static", "longname": "Phaser.FX.Displacement", - "___id": "T000002R006335", + "___id": "T000002R006337", "___s": true }, { @@ -66621,7 +66631,7 @@ "longname": "Phaser.FX.Displacement#x", "scope": "instance", "kind": "member", - "___id": "T000002R006342", + "___id": "T000002R006344", "___s": true }, { @@ -66649,7 +66659,7 @@ "longname": "Phaser.FX.Displacement#y", "scope": "instance", "kind": "member", - "___id": "T000002R006344", + "___id": "T000002R006346", "___s": true }, { @@ -66677,7 +66687,7 @@ "longname": "Phaser.FX.Displacement#glTexture", "scope": "instance", "kind": "member", - "___id": "T000002R006346", + "___id": "T000002R006348", "___s": true }, { @@ -66728,7 +66738,7 @@ "memberof": "Phaser.FX.Displacement", "longname": "Phaser.FX.Displacement#setTexture", "scope": "instance", - "___id": "T000002R006348", + "___id": "T000002R006350", "___s": true }, { @@ -66825,7 +66835,7 @@ ], "scope": "static", "longname": "Phaser.FX.Glow", - "___id": "T000002R006356", + "___id": "T000002R006358", "___s": true }, { @@ -66853,7 +66863,7 @@ "longname": "Phaser.FX.Glow#outerStrength", "scope": "instance", "kind": "member", - "___id": "T000002R006363", + "___id": "T000002R006365", "___s": true }, { @@ -66881,7 +66891,7 @@ "longname": "Phaser.FX.Glow#innerStrength", "scope": "instance", "kind": "member", - "___id": "T000002R006365", + "___id": "T000002R006367", "___s": true }, { @@ -66909,7 +66919,7 @@ "longname": "Phaser.FX.Glow#knockout", "scope": "instance", "kind": "member", - "___id": "T000002R006367", + "___id": "T000002R006369", "___s": true }, { @@ -66946,7 +66956,7 @@ "longname": "Phaser.FX.Glow#glcolor", "scope": "instance", "kind": "member", - "___id": "T000002R006369", + "___id": "T000002R006371", "___s": true }, { @@ -66974,7 +66984,7 @@ "longname": "Phaser.FX.Glow#color", "scope": "instance", "kind": "member", - "___id": "T000002R006372", + "___id": "T000002R006374", "___s": true }, { @@ -67131,7 +67141,7 @@ ], "scope": "static", "longname": "Phaser.FX.Gradient", - "___id": "T000002R006385", + "___id": "T000002R006387", "___s": true }, { @@ -67159,7 +67169,7 @@ "longname": "Phaser.FX.Gradient#alpha", "scope": "instance", "kind": "member", - "___id": "T000002R006395", + "___id": "T000002R006397", "___s": true }, { @@ -67187,7 +67197,7 @@ "longname": "Phaser.FX.Gradient#size", "scope": "instance", "kind": "member", - "___id": "T000002R006397", + "___id": "T000002R006399", "___s": true }, { @@ -67215,7 +67225,7 @@ "longname": "Phaser.FX.Gradient#fromX", "scope": "instance", "kind": "member", - "___id": "T000002R006399", + "___id": "T000002R006401", "___s": true }, { @@ -67243,7 +67253,7 @@ "longname": "Phaser.FX.Gradient#fromY", "scope": "instance", "kind": "member", - "___id": "T000002R006401", + "___id": "T000002R006403", "___s": true }, { @@ -67271,7 +67281,7 @@ "longname": "Phaser.FX.Gradient#toX", "scope": "instance", "kind": "member", - "___id": "T000002R006403", + "___id": "T000002R006405", "___s": true }, { @@ -67299,7 +67309,7 @@ "longname": "Phaser.FX.Gradient#toY", "scope": "instance", "kind": "member", - "___id": "T000002R006405", + "___id": "T000002R006407", "___s": true }, { @@ -67336,7 +67346,7 @@ "longname": "Phaser.FX.Gradient#glcolor1", "scope": "instance", "kind": "member", - "___id": "T000002R006407", + "___id": "T000002R006409", "___s": true }, { @@ -67373,7 +67383,7 @@ "longname": "Phaser.FX.Gradient#glcolor2", "scope": "instance", "kind": "member", - "___id": "T000002R006409", + "___id": "T000002R006411", "___s": true }, { @@ -67401,7 +67411,7 @@ "longname": "Phaser.FX.Gradient#color1", "scope": "instance", "kind": "member", - "___id": "T000002R006413", + "___id": "T000002R006415", "___s": true }, { @@ -67429,7 +67439,7 @@ "longname": "Phaser.FX.Gradient#color2", "scope": "instance", "kind": "member", - "___id": "T000002R006422", + "___id": "T000002R006424", "___s": true }, { @@ -67446,7 +67456,7 @@ "memberof": "Phaser", "longname": "Phaser.FX", "scope": "static", - "___id": "T000002R006434", + "___id": "T000002R006436", "___s": true }, { @@ -67498,7 +67508,7 @@ ], "scope": "static", "longname": "Phaser.FX.Pixelate", - "___id": "T000002R006456", + "___id": "T000002R006458", "___s": true }, { @@ -67526,7 +67536,7 @@ "longname": "Phaser.FX.Pixelate#amount", "scope": "instance", "kind": "member", - "___id": "T000002R006461", + "___id": "T000002R006463", "___s": true }, { @@ -67668,7 +67678,7 @@ ], "scope": "static", "longname": "Phaser.FX.Shadow", - "___id": "T000002R006467", + "___id": "T000002R006469", "___s": true }, { @@ -67696,7 +67706,7 @@ "longname": "Phaser.FX.Shadow#x", "scope": "instance", "kind": "member", - "___id": "T000002R006477", + "___id": "T000002R006479", "___s": true }, { @@ -67724,7 +67734,7 @@ "longname": "Phaser.FX.Shadow#y", "scope": "instance", "kind": "member", - "___id": "T000002R006479", + "___id": "T000002R006481", "___s": true }, { @@ -67752,7 +67762,7 @@ "longname": "Phaser.FX.Shadow#decay", "scope": "instance", "kind": "member", - "___id": "T000002R006481", + "___id": "T000002R006483", "___s": true }, { @@ -67780,7 +67790,7 @@ "longname": "Phaser.FX.Shadow#power", "scope": "instance", "kind": "member", - "___id": "T000002R006483", + "___id": "T000002R006485", "___s": true }, { @@ -67817,7 +67827,7 @@ "longname": "Phaser.FX.Shadow#glcolor", "scope": "instance", "kind": "member", - "___id": "T000002R006485", + "___id": "T000002R006487", "___s": true }, { @@ -67845,7 +67855,7 @@ "longname": "Phaser.FX.Shadow#samples", "scope": "instance", "kind": "member", - "___id": "T000002R006487", + "___id": "T000002R006489", "___s": true }, { @@ -67873,7 +67883,7 @@ "longname": "Phaser.FX.Shadow#intensity", "scope": "instance", "kind": "member", - "___id": "T000002R006489", + "___id": "T000002R006491", "___s": true }, { @@ -67901,7 +67911,7 @@ "longname": "Phaser.FX.Shadow#color", "scope": "instance", "kind": "member", - "___id": "T000002R006492", + "___id": "T000002R006494", "___s": true }, { @@ -67998,7 +68008,7 @@ ], "scope": "static", "longname": "Phaser.FX.Shine", - "___id": "T000002R006505", + "___id": "T000002R006507", "___s": true }, { @@ -68026,7 +68036,7 @@ "longname": "Phaser.FX.Shine#speed", "scope": "instance", "kind": "member", - "___id": "T000002R006513", + "___id": "T000002R006515", "___s": true }, { @@ -68054,7 +68064,7 @@ "longname": "Phaser.FX.Shine#lineWidth", "scope": "instance", "kind": "member", - "___id": "T000002R006515", + "___id": "T000002R006517", "___s": true }, { @@ -68082,7 +68092,7 @@ "longname": "Phaser.FX.Shine#gradient", "scope": "instance", "kind": "member", - "___id": "T000002R006517", + "___id": "T000002R006519", "___s": true }, { @@ -68110,7 +68120,7 @@ "longname": "Phaser.FX.Shine#reveal", "scope": "instance", "kind": "member", - "___id": "T000002R006519", + "___id": "T000002R006521", "___s": true }, { @@ -68207,7 +68217,7 @@ ], "scope": "static", "longname": "Phaser.FX.Vignette", - "___id": "T000002R006525", + "___id": "T000002R006527", "___s": true }, { @@ -68235,7 +68245,7 @@ "longname": "Phaser.FX.Vignette#x", "scope": "instance", "kind": "member", - "___id": "T000002R006533", + "___id": "T000002R006535", "___s": true }, { @@ -68263,7 +68273,7 @@ "longname": "Phaser.FX.Vignette#y", "scope": "instance", "kind": "member", - "___id": "T000002R006535", + "___id": "T000002R006537", "___s": true }, { @@ -68291,7 +68301,7 @@ "longname": "Phaser.FX.Vignette#radius", "scope": "instance", "kind": "member", - "___id": "T000002R006537", + "___id": "T000002R006539", "___s": true }, { @@ -68319,7 +68329,7 @@ "longname": "Phaser.FX.Vignette#strength", "scope": "instance", "kind": "member", - "___id": "T000002R006539", + "___id": "T000002R006541", "___s": true }, { @@ -68416,7 +68426,7 @@ ], "scope": "static", "longname": "Phaser.FX.Wipe", - "___id": "T000002R006545", + "___id": "T000002R006547", "___s": true }, { @@ -68444,7 +68454,7 @@ "longname": "Phaser.FX.Wipe#progress", "scope": "instance", "kind": "member", - "___id": "T000002R006553", + "___id": "T000002R006555", "___s": true }, { @@ -68472,7 +68482,7 @@ "longname": "Phaser.FX.Wipe#wipeWidth", "scope": "instance", "kind": "member", - "___id": "T000002R006555", + "___id": "T000002R006557", "___s": true }, { @@ -68500,7 +68510,7 @@ "longname": "Phaser.FX.Wipe#direction", "scope": "instance", "kind": "member", - "___id": "T000002R006557", + "___id": "T000002R006559", "___s": true }, { @@ -68528,7 +68538,7 @@ "longname": "Phaser.FX.Wipe#axis", "scope": "instance", "kind": "member", - "___id": "T000002R006559", + "___id": "T000002R006561", "___s": true }, { @@ -68556,7 +68566,7 @@ "longname": "Phaser.FX.Wipe#reveal", "scope": "instance", "kind": "member", - "___id": "T000002R006561", + "___id": "T000002R006563", "___s": true }, { @@ -68584,7 +68594,7 @@ "longname": "Phaser.GameObjects.RetroFont.TEXT_SET1", "scope": "static", "kind": "member", - "___id": "T000002R006594", + "___id": "T000002R006596", "___s": true }, { @@ -68612,7 +68622,7 @@ "longname": "Phaser.GameObjects.RetroFont.TEXT_SET2", "scope": "static", "kind": "member", - "___id": "T000002R006596", + "___id": "T000002R006598", "___s": true }, { @@ -68640,7 +68650,7 @@ "longname": "Phaser.GameObjects.RetroFont.TEXT_SET3", "scope": "static", "kind": "member", - "___id": "T000002R006598", + "___id": "T000002R006600", "___s": true }, { @@ -68668,7 +68678,7 @@ "longname": "Phaser.GameObjects.RetroFont.TEXT_SET4", "scope": "static", "kind": "member", - "___id": "T000002R006600", + "___id": "T000002R006602", "___s": true }, { @@ -68696,7 +68706,7 @@ "longname": "Phaser.GameObjects.RetroFont.TEXT_SET5", "scope": "static", "kind": "member", - "___id": "T000002R006602", + "___id": "T000002R006604", "___s": true }, { @@ -68724,7 +68734,7 @@ "longname": "Phaser.GameObjects.RetroFont.TEXT_SET6", "scope": "static", "kind": "member", - "___id": "T000002R006604", + "___id": "T000002R006606", "___s": true }, { @@ -68752,7 +68762,7 @@ "longname": "Phaser.GameObjects.RetroFont.TEXT_SET7", "scope": "static", "kind": "member", - "___id": "T000002R006606", + "___id": "T000002R006608", "___s": true }, { @@ -68780,7 +68790,7 @@ "longname": "Phaser.GameObjects.RetroFont.TEXT_SET8", "scope": "static", "kind": "member", - "___id": "T000002R006608", + "___id": "T000002R006610", "___s": true }, { @@ -68808,7 +68818,7 @@ "longname": "Phaser.GameObjects.RetroFont.TEXT_SET9", "scope": "static", "kind": "member", - "___id": "T000002R006610", + "___id": "T000002R006612", "___s": true }, { @@ -68836,7 +68846,7 @@ "longname": "Phaser.GameObjects.RetroFont.TEXT_SET10", "scope": "static", "kind": "member", - "___id": "T000002R006612", + "___id": "T000002R006614", "___s": true }, { @@ -68864,7 +68874,7 @@ "longname": "Phaser.GameObjects.RetroFont.TEXT_SET11", "scope": "static", "kind": "member", - "___id": "T000002R006614", + "___id": "T000002R006616", "___s": true }, { @@ -69002,7 +69012,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.DynamicBitmapText", - "___id": "T000002R006620", + "___id": "T000002R006622", "___s": true }, { @@ -69031,7 +69041,7 @@ "longname": "Phaser.GameObjects.DynamicBitmapText#scrollX", "scope": "instance", "kind": "member", - "___id": "T000002R006626", + "___id": "T000002R006628", "___s": true }, { @@ -69060,7 +69070,7 @@ "longname": "Phaser.GameObjects.DynamicBitmapText#scrollY", "scope": "instance", "kind": "member", - "___id": "T000002R006628", + "___id": "T000002R006630", "___s": true }, { @@ -69089,7 +69099,7 @@ "longname": "Phaser.GameObjects.DynamicBitmapText#cropWidth", "scope": "instance", "kind": "member", - "___id": "T000002R006630", + "___id": "T000002R006632", "___s": true }, { @@ -69118,7 +69128,7 @@ "longname": "Phaser.GameObjects.DynamicBitmapText#cropHeight", "scope": "instance", "kind": "member", - "___id": "T000002R006632", + "___id": "T000002R006634", "___s": true }, { @@ -69146,7 +69156,7 @@ "longname": "Phaser.GameObjects.DynamicBitmapText#displayCallback", "scope": "instance", "kind": "member", - "___id": "T000002R006634", + "___id": "T000002R006636", "___s": true }, { @@ -69174,7 +69184,7 @@ "longname": "Phaser.GameObjects.DynamicBitmapText#callbackData", "scope": "instance", "kind": "member", - "___id": "T000002R006636", + "___id": "T000002R006638", "___s": true }, { @@ -69236,7 +69246,7 @@ "memberof": "Phaser.GameObjects.DynamicBitmapText", "longname": "Phaser.GameObjects.DynamicBitmapText#setSize", "scope": "instance", - "___id": "T000002R006652", + "___id": "T000002R006654", "___s": true }, { @@ -69285,7 +69295,7 @@ "memberof": "Phaser.GameObjects.DynamicBitmapText", "longname": "Phaser.GameObjects.DynamicBitmapText#setDisplayCallback", "scope": "instance", - "___id": "T000002R006656", + "___id": "T000002R006658", "___s": true }, { @@ -69334,7 +69344,7 @@ "memberof": "Phaser.GameObjects.DynamicBitmapText", "longname": "Phaser.GameObjects.DynamicBitmapText#setScrollX", "scope": "instance", - "___id": "T000002R006659", + "___id": "T000002R006661", "___s": true }, { @@ -69383,7 +69393,7 @@ "memberof": "Phaser.GameObjects.DynamicBitmapText", "longname": "Phaser.GameObjects.DynamicBitmapText#setScrollY", "scope": "instance", - "___id": "T000002R006662", + "___id": "T000002R006664", "___s": true }, { @@ -69445,7 +69455,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#dynamicBitmapText", "scope": "instance", - "___id": "T000002R006746", + "___id": "T000002R006748", "___s": true }, { @@ -69566,7 +69576,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#dynamicBitmapText", "scope": "instance", - "___id": "T000002R006755", + "___id": "T000002R006757", "___s": true }, { @@ -69627,7 +69637,7 @@ "memberof": "Phaser.GameObjects.RetroFont", "longname": "Phaser.GameObjects.RetroFont.Parse", "scope": "static", - "___id": "T000002R007151", + "___id": "T000002R007132", "___s": true }, { @@ -69645,7 +69655,7 @@ "memberof": "Phaser.GameObjects", "longname": "Phaser.GameObjects.RetroFont", "scope": "static", - "___id": "T000002R007277", + "___id": "T000002R007258", "___s": true }, { @@ -69796,7 +69806,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.BitmapText", - "___id": "T000002R007291", + "___id": "T000002R007272", "___s": true }, { @@ -69825,7 +69835,7 @@ "longname": "Phaser.GameObjects.BitmapText#font", "scope": "instance", "kind": "member", - "___id": "T000002R007298", + "___id": "T000002R007279", "___s": true }, { @@ -69854,7 +69864,7 @@ "longname": "Phaser.GameObjects.BitmapText#fontData", "scope": "instance", "kind": "member", - "___id": "T000002R007301", + "___id": "T000002R007282", "___s": true }, { @@ -69882,7 +69892,7 @@ "longname": "Phaser.GameObjects.BitmapText#wordWrapCharCode", "scope": "instance", "kind": "member", - "___id": "T000002R007319", + "___id": "T000002R007300", "___s": true }, { @@ -69910,7 +69920,7 @@ "longname": "Phaser.GameObjects.BitmapText#dropShadowX", "scope": "instance", "kind": "member", - "___id": "T000002R007323", + "___id": "T000002R007304", "___s": true }, { @@ -69938,7 +69948,7 @@ "longname": "Phaser.GameObjects.BitmapText#dropShadowY", "scope": "instance", "kind": "member", - "___id": "T000002R007325", + "___id": "T000002R007306", "___s": true }, { @@ -69966,7 +69976,7 @@ "longname": "Phaser.GameObjects.BitmapText#dropShadowColor", "scope": "instance", "kind": "member", - "___id": "T000002R007327", + "___id": "T000002R007308", "___s": true }, { @@ -69994,7 +70004,7 @@ "longname": "Phaser.GameObjects.BitmapText#dropShadowAlpha", "scope": "instance", "kind": "member", - "___id": "T000002R007329", + "___id": "T000002R007310", "___s": true }, { @@ -70023,7 +70033,7 @@ "longname": "Phaser.GameObjects.BitmapText#fromAtlas", "scope": "instance", "kind": "member", - "___id": "T000002R007331", + "___id": "T000002R007312", "___s": true }, { @@ -70057,7 +70067,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#setLeftAlign", "scope": "instance", - "___id": "T000002R007333", + "___id": "T000002R007314", "___s": true }, { @@ -70091,7 +70101,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#setCenterAlign", "scope": "instance", - "___id": "T000002R007337", + "___id": "T000002R007318", "___s": true }, { @@ -70125,7 +70135,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#setRightAlign", "scope": "instance", - "___id": "T000002R007341", + "___id": "T000002R007322", "___s": true }, { @@ -70174,7 +70184,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#setFontSize", "scope": "instance", - "___id": "T000002R007345", + "___id": "T000002R007326", "___s": true }, { @@ -70225,7 +70235,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#setLetterSpacing", "scope": "instance", - "___id": "T000002R007349", + "___id": "T000002R007330", "___s": true }, { @@ -70276,7 +70286,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#setLineSpacing", "scope": "instance", - "___id": "T000002R007354", + "___id": "T000002R007335", "___s": true }, { @@ -70344,7 +70354,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#setText", "scope": "instance", - "___id": "T000002R007358", + "___id": "T000002R007339", "___s": true }, { @@ -70447,7 +70457,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#setDropShadow", "scope": "instance", - "___id": "T000002R007364", + "___id": "T000002R007345", "___s": true }, { @@ -70592,7 +70602,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#setCharacterTint", "scope": "instance", - "___id": "T000002R007374", + "___id": "T000002R007355", "___s": true }, { @@ -70745,7 +70755,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#setWordTint", "scope": "instance", - "___id": "T000002R007404", + "___id": "T000002R007385", "___s": true }, { @@ -70795,7 +70805,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#getTextBounds", "scope": "instance", - "___id": "T000002R007413", + "___id": "T000002R007394", "___s": true }, { @@ -70870,7 +70880,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#getCharacterAt", "scope": "instance", - "___id": "T000002R007417", + "___id": "T000002R007398", "___s": true }, { @@ -70905,7 +70915,7 @@ "longname": "Phaser.GameObjects.BitmapText#updateDisplayOrigin", "scope": "instance", "overrides": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", - "___id": "T000002R007425", + "___id": "T000002R007406", "___s": true }, { @@ -70983,7 +70993,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#setFont", "scope": "instance", - "___id": "T000002R007428", + "___id": "T000002R007409", "___s": true }, { @@ -71046,7 +71056,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#setMaxWidth", "scope": "instance", - "___id": "T000002R007438", + "___id": "T000002R007419", "___s": true }, { @@ -71074,7 +71084,7 @@ "longname": "Phaser.GameObjects.BitmapText#align", "scope": "instance", "kind": "member", - "___id": "T000002R007443", + "___id": "T000002R007424", "___s": true }, { @@ -71102,7 +71112,7 @@ "longname": "Phaser.GameObjects.BitmapText#text", "scope": "instance", "kind": "member", - "___id": "T000002R007449", + "___id": "T000002R007430", "___s": true }, { @@ -71130,7 +71140,7 @@ "longname": "Phaser.GameObjects.BitmapText#fontSize", "scope": "instance", "kind": "member", - "___id": "T000002R007453", + "___id": "T000002R007434", "___s": true }, { @@ -71158,7 +71168,7 @@ "longname": "Phaser.GameObjects.BitmapText#letterSpacing", "scope": "instance", "kind": "member", - "___id": "T000002R007459", + "___id": "T000002R007440", "___s": true }, { @@ -71186,7 +71196,7 @@ "longname": "Phaser.GameObjects.BitmapText#lineSpacing", "scope": "instance", "kind": "member", - "___id": "T000002R007465", + "___id": "T000002R007446", "___s": true }, { @@ -71214,7 +71224,7 @@ "longname": "Phaser.GameObjects.BitmapText#maxWidth", "scope": "instance", "kind": "member", - "___id": "T000002R007471", + "___id": "T000002R007452", "___s": true }, { @@ -71243,7 +71253,7 @@ "longname": "Phaser.GameObjects.BitmapText#width", "scope": "instance", "kind": "member", - "___id": "T000002R007477", + "___id": "T000002R007458", "___s": true }, { @@ -71272,7 +71282,7 @@ "longname": "Phaser.GameObjects.BitmapText#height", "scope": "instance", "kind": "member", - "___id": "T000002R007480", + "___id": "T000002R007461", "___s": true }, { @@ -71301,7 +71311,7 @@ "longname": "Phaser.GameObjects.BitmapText#displayWidth", "scope": "instance", "kind": "member", - "___id": "T000002R007483", + "___id": "T000002R007464", "___s": true }, { @@ -71330,7 +71340,7 @@ "longname": "Phaser.GameObjects.BitmapText#displayHeight", "scope": "instance", "kind": "member", - "___id": "T000002R007486", + "___id": "T000002R007467", "___s": true }, { @@ -71364,7 +71374,7 @@ "longname": "Phaser.GameObjects.BitmapText#toJSON", "scope": "instance", "overrides": "Phaser.GameObjects.GameObject#toJSON", - "___id": "T000002R007489", + "___id": "T000002R007470", "___s": true }, { @@ -71384,7 +71394,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText#preDestroy", "scope": "instance", - "___id": "T000002R007500", + "___id": "T000002R007481", "___s": true }, { @@ -71412,7 +71422,7 @@ "longname": "Phaser.GameObjects.BitmapText.ALIGN_LEFT", "scope": "static", "kind": "member", - "___id": "T000002R007505", + "___id": "T000002R007486", "___s": true }, { @@ -71440,7 +71450,7 @@ "longname": "Phaser.GameObjects.BitmapText.ALIGN_CENTER", "scope": "static", "kind": "member", - "___id": "T000002R007507", + "___id": "T000002R007488", "___s": true }, { @@ -71468,7 +71478,7 @@ "longname": "Phaser.GameObjects.BitmapText.ALIGN_RIGHT", "scope": "static", "kind": "member", - "___id": "T000002R007509", + "___id": "T000002R007490", "___s": true }, { @@ -71596,7 +71606,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText.ParseFromAtlas", "scope": "static", - "___id": "T000002R007511", + "___id": "T000002R007492", "___s": true }, { @@ -71687,7 +71697,7 @@ "memberof": "Phaser.GameObjects.BitmapText", "longname": "Phaser.GameObjects.BitmapText.ParseXMLBitmapFont", "scope": "static", - "___id": "T000002R007513", + "___id": "T000002R007494", "___s": true }, { @@ -71749,7 +71759,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#bitmapText", "scope": "instance", - "___id": "T000002R007583", + "___id": "T000002R007564", "___s": true }, { @@ -71885,7 +71895,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#bitmapText", "scope": "instance", - "___id": "T000002R007593", + "___id": "T000002R007574", "___s": true }, { @@ -72106,7 +72116,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.BitmapFontCharacterData", "scope": "static", - "___id": "T000002R007650", + "___id": "T000002R007631", "___s": true }, { @@ -72214,7 +72224,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.BitmapFontData", "scope": "static", - "___id": "T000002R007651", + "___id": "T000002R007632", "___s": true }, { @@ -72413,7 +72423,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.BitmapTextCharacter", "scope": "static", - "___id": "T000002R007652", + "___id": "T000002R007633", "___s": true }, { @@ -72501,7 +72511,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.BitmapTextConfig", "scope": "static", - "___id": "T000002R007653", + "___id": "T000002R007634", "___s": true }, { @@ -72592,7 +72602,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.BitmapTextLines", "scope": "static", - "___id": "T000002R007654", + "___id": "T000002R007635", "___s": true }, { @@ -72756,7 +72766,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.BitmapTextSize", "scope": "static", - "___id": "T000002R007655", + "___id": "T000002R007636", "___s": true }, { @@ -72864,7 +72874,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.BitmapTextWord", "scope": "static", - "___id": "T000002R007656", + "___id": "T000002R007637", "___s": true }, { @@ -73010,7 +73020,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.DisplayCallbackConfig", "scope": "static", - "___id": "T000002R007657", + "___id": "T000002R007638", "___s": true }, { @@ -73061,7 +73071,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.DisplayCallback", "scope": "static", - "___id": "T000002R007658", + "___id": "T000002R007639", "___s": true }, { @@ -73143,7 +73153,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.GlobalBitmapTextSize", "scope": "static", - "___id": "T000002R007659", + "___id": "T000002R007640", "___s": true }, { @@ -73160,7 +73170,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.BitmapText", "scope": "static", - "___id": "T000002R007660", + "___id": "T000002R007641", "___s": true }, { @@ -73270,7 +73280,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.JSONBitmapText", "scope": "static", - "___id": "T000002R007661", + "___id": "T000002R007642", "___s": true }, { @@ -73352,7 +73362,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.LocalBitmapTextSize", "scope": "static", - "___id": "T000002R007662", + "___id": "T000002R007643", "___s": true }, { @@ -73511,7 +73521,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.RetroFontConfig", "scope": "static", - "___id": "T000002R007663", + "___id": "T000002R007644", "___s": true }, { @@ -73592,7 +73602,7 @@ "memberof": "Phaser.Types.GameObjects.BitmapText", "longname": "Phaser.Types.GameObjects.BitmapText.TintConfig", "scope": "static", - "___id": "T000002R007664", + "___id": "T000002R007645", "___s": true }, { @@ -73641,7 +73651,7 @@ ], "longname": "CreateCallback", "scope": "global", - "___id": "T000002R007672", + "___id": "T000002R007653", "___s": true }, { @@ -73759,7 +73769,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Blitter", - "___id": "T000002R007673", + "___id": "T000002R007654", "___s": true }, { @@ -73796,7 +73806,7 @@ "longname": "Phaser.GameObjects.Blitter#children", "scope": "instance", "kind": "member", - "___id": "T000002R007678", + "___id": "T000002R007659", "___s": true }, { @@ -73824,7 +73834,7 @@ "longname": "Phaser.GameObjects.Blitter#dirty", "scope": "instance", "kind": "member", - "___id": "T000002R007682", + "___id": "T000002R007663", "___s": true }, { @@ -73943,7 +73953,7 @@ "memberof": "Phaser.GameObjects.Blitter", "longname": "Phaser.GameObjects.Blitter#create", "scope": "instance", - "___id": "T000002R007684", + "___id": "T000002R007665", "___s": true }, { @@ -74099,7 +74109,7 @@ "memberof": "Phaser.GameObjects.Blitter", "longname": "Phaser.GameObjects.Blitter#createFromCallback", "scope": "instance", - "___id": "T000002R007692", + "___id": "T000002R007673", "___s": true }, { @@ -74242,7 +74252,7 @@ "memberof": "Phaser.GameObjects.Blitter", "longname": "Phaser.GameObjects.Blitter#createMultiple", "scope": "instance", - "___id": "T000002R007697", + "___id": "T000002R007678", "___s": true }, { @@ -74290,7 +74300,7 @@ "memberof": "Phaser.GameObjects.Blitter", "longname": "Phaser.GameObjects.Blitter#childCanRender", "scope": "instance", - "___id": "T000002R007705", + "___id": "T000002R007686", "___s": true }, { @@ -74332,7 +74342,7 @@ "memberof": "Phaser.GameObjects.Blitter", "longname": "Phaser.GameObjects.Blitter#getRenderList", "scope": "instance", - "___id": "T000002R007707", + "___id": "T000002R007688", "___s": true }, { @@ -74351,7 +74361,7 @@ "memberof": "Phaser.GameObjects.Blitter", "longname": "Phaser.GameObjects.Blitter#clear", "scope": "instance", - "___id": "T000002R007711", + "___id": "T000002R007692", "___s": true }, { @@ -74371,7 +74381,7 @@ "memberof": "Phaser.GameObjects.Blitter", "longname": "Phaser.GameObjects.Blitter#preDestroy", "scope": "instance", - "___id": "T000002R007714", + "___id": "T000002R007695", "___s": true }, { @@ -74433,7 +74443,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#blitter", "scope": "instance", - "___id": "T000002R007750", + "___id": "T000002R007731", "___s": true }, { @@ -74541,7 +74551,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#blitter", "scope": "instance", - "___id": "T000002R007758", + "___id": "T000002R007739", "___s": true }, { @@ -74637,7 +74647,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Bob", - "___id": "T000002R007805", + "___id": "T000002R007786", "___s": true }, { @@ -74665,7 +74675,7 @@ "longname": "Phaser.GameObjects.Bob#parent", "scope": "instance", "kind": "member", - "___id": "T000002R007808", + "___id": "T000002R007789", "___s": true }, { @@ -74693,7 +74703,7 @@ "longname": "Phaser.GameObjects.Bob#x", "scope": "instance", "kind": "member", - "___id": "T000002R007810", + "___id": "T000002R007791", "___s": true }, { @@ -74721,7 +74731,7 @@ "longname": "Phaser.GameObjects.Bob#y", "scope": "instance", "kind": "member", - "___id": "T000002R007812", + "___id": "T000002R007793", "___s": true }, { @@ -74750,7 +74760,7 @@ "longname": "Phaser.GameObjects.Bob#frame", "scope": "instance", "kind": "member", - "___id": "T000002R007814", + "___id": "T000002R007795", "___s": true }, { @@ -74779,7 +74789,7 @@ "longname": "Phaser.GameObjects.Bob#data", "scope": "instance", "kind": "member", - "___id": "T000002R007816", + "___id": "T000002R007797", "___s": true }, { @@ -74808,7 +74818,7 @@ "longname": "Phaser.GameObjects.Bob#tint", "scope": "instance", "kind": "member", - "___id": "T000002R007818", + "___id": "T000002R007799", "___s": true }, { @@ -74836,7 +74846,7 @@ "longname": "Phaser.GameObjects.Bob#flipX", "scope": "instance", "kind": "member", - "___id": "T000002R007824", + "___id": "T000002R007805", "___s": true }, { @@ -74864,7 +74874,7 @@ "longname": "Phaser.GameObjects.Bob#flipY", "scope": "instance", "kind": "member", - "___id": "T000002R007826", + "___id": "T000002R007807", "___s": true }, { @@ -74929,7 +74939,7 @@ "memberof": "Phaser.GameObjects.Bob", "longname": "Phaser.GameObjects.Bob#setFrame", "scope": "instance", - "___id": "T000002R007830", + "___id": "T000002R007811", "___s": true }, { @@ -74963,7 +74973,7 @@ "memberof": "Phaser.GameObjects.Bob", "longname": "Phaser.GameObjects.Bob#resetFlip", "scope": "instance", - "___id": "T000002R007835", + "___id": "T000002R007816", "___s": true }, { @@ -75054,7 +75064,7 @@ "memberof": "Phaser.GameObjects.Bob", "longname": "Phaser.GameObjects.Bob#reset", "scope": "instance", - "___id": "T000002R007839", + "___id": "T000002R007820", "___s": true }, { @@ -75116,7 +75126,7 @@ "memberof": "Phaser.GameObjects.Bob", "longname": "Phaser.GameObjects.Bob#setPosition", "scope": "instance", - "___id": "T000002R007848", + "___id": "T000002R007829", "___s": true }, { @@ -75165,7 +75175,7 @@ "memberof": "Phaser.GameObjects.Bob", "longname": "Phaser.GameObjects.Bob#setFlipX", "scope": "instance", - "___id": "T000002R007852", + "___id": "T000002R007833", "___s": true }, { @@ -75214,7 +75224,7 @@ "memberof": "Phaser.GameObjects.Bob", "longname": "Phaser.GameObjects.Bob#setFlipY", "scope": "instance", - "___id": "T000002R007855", + "___id": "T000002R007836", "___s": true }, { @@ -75276,7 +75286,7 @@ "memberof": "Phaser.GameObjects.Bob", "longname": "Phaser.GameObjects.Bob#setFlip", "scope": "instance", - "___id": "T000002R007858", + "___id": "T000002R007839", "___s": true }, { @@ -75325,7 +75335,7 @@ "memberof": "Phaser.GameObjects.Bob", "longname": "Phaser.GameObjects.Bob#setVisible", "scope": "instance", - "___id": "T000002R007862", + "___id": "T000002R007843", "___s": true }, { @@ -75374,7 +75384,7 @@ "memberof": "Phaser.GameObjects.Bob", "longname": "Phaser.GameObjects.Bob#setAlpha", "scope": "instance", - "___id": "T000002R007865", + "___id": "T000002R007846", "___s": true }, { @@ -75423,7 +75433,7 @@ "memberof": "Phaser.GameObjects.Bob", "longname": "Phaser.GameObjects.Bob#setTint", "scope": "instance", - "___id": "T000002R007868", + "___id": "T000002R007849", "___s": true }, { @@ -75442,7 +75452,7 @@ "memberof": "Phaser.GameObjects.Bob", "longname": "Phaser.GameObjects.Bob#destroy", "scope": "instance", - "___id": "T000002R007871", + "___id": "T000002R007852", "___s": true }, { @@ -75470,7 +75480,7 @@ "longname": "Phaser.GameObjects.Bob#visible", "scope": "instance", "kind": "member", - "___id": "T000002R007877", + "___id": "T000002R007858", "___s": true }, { @@ -75498,7 +75508,7 @@ "longname": "Phaser.GameObjects.Bob#alpha", "scope": "instance", "kind": "member", - "___id": "T000002R007883", + "___id": "T000002R007864", "___s": true }, { @@ -75572,7 +75582,7 @@ "memberof": "Phaser.GameObjects", "longname": "Phaser.GameObjects.BuildGameObject", "scope": "static", - "___id": "T000002R007892", + "___id": "T000002R007873", "___s": true }, { @@ -75633,7 +75643,7 @@ "memberof": "Phaser.GameObjects", "longname": "Phaser.GameObjects.BuildGameObjectAnimation", "scope": "static", - "___id": "T000002R007917", + "___id": "T000002R007898", "___s": true }, { @@ -75652,7 +75662,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.Alpha", "scope": "static", - "___id": "T000002R007939", + "___id": "T000002R007920", "___s": true }, { @@ -75686,7 +75696,7 @@ "memberof": "Phaser.GameObjects.Components.Alpha", "longname": "Phaser.GameObjects.Components.Alpha#clearAlpha", "scope": "instance", - "___id": "T000002R007951", + "___id": "T000002R007932", "___s": true }, { @@ -75779,7 +75789,7 @@ "memberof": "Phaser.GameObjects.Components.Alpha", "longname": "Phaser.GameObjects.Components.Alpha#setAlpha", "scope": "instance", - "___id": "T000002R007953", + "___id": "T000002R007934", "___s": true }, { @@ -75807,7 +75817,7 @@ "longname": "Phaser.GameObjects.Components.Alpha#alpha", "scope": "instance", "kind": "member", - "___id": "T000002R007961", + "___id": "T000002R007942", "___s": true }, { @@ -75842,7 +75852,7 @@ "longname": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "scope": "instance", "kind": "member", - "___id": "T000002R007973", + "___id": "T000002R007954", "___s": true }, { @@ -75877,7 +75887,7 @@ "longname": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "scope": "instance", "kind": "member", - "___id": "T000002R007980", + "___id": "T000002R007961", "___s": true }, { @@ -75912,7 +75922,7 @@ "longname": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "scope": "instance", "kind": "member", - "___id": "T000002R007987", + "___id": "T000002R007968", "___s": true }, { @@ -75947,7 +75957,7 @@ "longname": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "scope": "instance", "kind": "member", - "___id": "T000002R007994", + "___id": "T000002R007975", "___s": true }, { @@ -75966,7 +75976,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.AlphaSingle", "scope": "static", - "___id": "T000002R008004", + "___id": "T000002R007985", "___s": true }, { @@ -76000,7 +76010,7 @@ "memberof": "Phaser.GameObjects.Components.AlphaSingle", "longname": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "scope": "instance", - "___id": "T000002R008008", + "___id": "T000002R007989", "___s": true }, { @@ -76051,7 +76061,7 @@ "memberof": "Phaser.GameObjects.Components.AlphaSingle", "longname": "Phaser.GameObjects.Components.AlphaSingle#setAlpha", "scope": "instance", - "___id": "T000002R008010", + "___id": "T000002R007991", "___s": true }, { @@ -76079,7 +76089,7 @@ "longname": "Phaser.GameObjects.Components.AlphaSingle#alpha", "scope": "instance", "kind": "member", - "___id": "T000002R008014", + "___id": "T000002R007995", "___s": true }, { @@ -76098,7 +76108,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.BlendMode", "scope": "static", - "___id": "T000002R008024", + "___id": "T000002R008005", "___s": true }, { @@ -76141,7 +76151,7 @@ "longname": "Phaser.GameObjects.Components.BlendMode#blendMode", "scope": "instance", "kind": "member", - "___id": "T000002R008028", + "___id": "T000002R008009", "___s": true }, { @@ -76205,7 +76215,7 @@ "memberof": "Phaser.GameObjects.Components.BlendMode", "longname": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "scope": "instance", - "___id": "T000002R008035", + "___id": "T000002R008016", "___s": true }, { @@ -76224,7 +76234,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.ComputedSize", "scope": "static", - "___id": "T000002R008039", + "___id": "T000002R008020", "___s": true }, { @@ -76252,7 +76262,7 @@ "longname": "Phaser.GameObjects.Components.ComputedSize#width", "scope": "instance", "kind": "member", - "___id": "T000002R008041", + "___id": "T000002R008022", "___s": true }, { @@ -76280,7 +76290,7 @@ "longname": "Phaser.GameObjects.Components.ComputedSize#height", "scope": "instance", "kind": "member", - "___id": "T000002R008043", + "___id": "T000002R008024", "___s": true }, { @@ -76308,7 +76318,7 @@ "longname": "Phaser.GameObjects.Components.ComputedSize#displayWidth", "scope": "instance", "kind": "member", - "___id": "T000002R008045", + "___id": "T000002R008026", "___s": true }, { @@ -76336,7 +76346,7 @@ "longname": "Phaser.GameObjects.Components.ComputedSize#displayHeight", "scope": "instance", "kind": "member", - "___id": "T000002R008050", + "___id": "T000002R008031", "___s": true }, { @@ -76398,7 +76408,7 @@ "memberof": "Phaser.GameObjects.Components.ComputedSize", "longname": "Phaser.GameObjects.Components.ComputedSize#setSize", "scope": "instance", - "___id": "T000002R008055", + "___id": "T000002R008036", "___s": true }, { @@ -76460,7 +76470,7 @@ "memberof": "Phaser.GameObjects.Components.ComputedSize", "longname": "Phaser.GameObjects.Components.ComputedSize#setDisplaySize", "scope": "instance", - "___id": "T000002R008059", + "___id": "T000002R008040", "___s": true }, { @@ -76479,7 +76489,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.Crop", "scope": "static", - "___id": "T000002R008064", + "___id": "T000002R008045", "___s": true }, { @@ -76517,7 +76527,7 @@ "longname": "Phaser.GameObjects.Components.Crop#texture", "scope": "instance", "kind": "member", - "___id": "T000002R008066", + "___id": "T000002R008047", "___s": true }, { @@ -76545,7 +76555,7 @@ "longname": "Phaser.GameObjects.Components.Crop#frame", "scope": "instance", "kind": "member", - "___id": "T000002R008068", + "___id": "T000002R008049", "___s": true }, { @@ -76573,7 +76583,7 @@ "longname": "Phaser.GameObjects.Components.Crop#isCropped", "scope": "instance", "kind": "member", - "___id": "T000002R008070", + "___id": "T000002R008051", "___s": true }, { @@ -76675,7 +76685,7 @@ "memberof": "Phaser.GameObjects.Components.Crop", "longname": "Phaser.GameObjects.Components.Crop#setCrop", "scope": "instance", - "___id": "T000002R008072", + "___id": "T000002R008053", "___s": true }, { @@ -76694,7 +76704,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.Depth", "scope": "static", - "___id": "T000002R008094", + "___id": "T000002R008075", "___s": true }, { @@ -76722,7 +76732,7 @@ "longname": "Phaser.GameObjects.Components.Depth#depth", "scope": "instance", "kind": "member", - "___id": "T000002R008099", + "___id": "T000002R008080", "___s": true }, { @@ -76771,7 +76781,7 @@ "memberof": "Phaser.GameObjects.Components.Depth", "longname": "Phaser.GameObjects.Components.Depth#setDepth", "scope": "instance", - "___id": "T000002R008104", + "___id": "T000002R008085", "___s": true }, { @@ -76805,7 +76815,7 @@ "memberof": "Phaser.GameObjects.Components.Depth", "longname": "Phaser.GameObjects.Components.Depth#bringMeToTop", "scope": "instance", - "___id": "T000002R008108", + "___id": "T000002R008089", "___s": true }, { @@ -76839,7 +76849,7 @@ "memberof": "Phaser.GameObjects.Components.Depth", "longname": "Phaser.GameObjects.Components.Depth#sendMeToBack", "scope": "instance", - "___id": "T000002R008113", + "___id": "T000002R008094", "___s": true }, { @@ -76888,7 +76898,7 @@ "memberof": "Phaser.GameObjects.Components.Depth", "longname": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "scope": "instance", - "___id": "T000002R008118", + "___id": "T000002R008099", "___s": true }, { @@ -76937,7 +76947,7 @@ "memberof": "Phaser.GameObjects.Components.Depth", "longname": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "scope": "instance", - "___id": "T000002R008123", + "___id": "T000002R008104", "___s": true }, { @@ -76956,7 +76966,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.Flip", "scope": "static", - "___id": "T000002R008129", + "___id": "T000002R008110", "___s": true }, { @@ -76985,7 +76995,7 @@ "longname": "Phaser.GameObjects.Components.Flip#flipX", "scope": "instance", "kind": "member", - "___id": "T000002R008131", + "___id": "T000002R008112", "___s": true }, { @@ -77014,7 +77024,7 @@ "longname": "Phaser.GameObjects.Components.Flip#flipY", "scope": "instance", "kind": "member", - "___id": "T000002R008133", + "___id": "T000002R008114", "___s": true }, { @@ -77048,7 +77058,7 @@ "memberof": "Phaser.GameObjects.Components.Flip", "longname": "Phaser.GameObjects.Components.Flip#toggleFlipX", "scope": "instance", - "___id": "T000002R008135", + "___id": "T000002R008116", "___s": true }, { @@ -77082,7 +77092,7 @@ "memberof": "Phaser.GameObjects.Components.Flip", "longname": "Phaser.GameObjects.Components.Flip#toggleFlipY", "scope": "instance", - "___id": "T000002R008138", + "___id": "T000002R008119", "___s": true }, { @@ -77131,7 +77141,7 @@ "memberof": "Phaser.GameObjects.Components.Flip", "longname": "Phaser.GameObjects.Components.Flip#setFlipX", "scope": "instance", - "___id": "T000002R008141", + "___id": "T000002R008122", "___s": true }, { @@ -77180,7 +77190,7 @@ "memberof": "Phaser.GameObjects.Components.Flip", "longname": "Phaser.GameObjects.Components.Flip#setFlipY", "scope": "instance", - "___id": "T000002R008144", + "___id": "T000002R008125", "___s": true }, { @@ -77242,7 +77252,7 @@ "memberof": "Phaser.GameObjects.Components.Flip", "longname": "Phaser.GameObjects.Components.Flip#setFlip", "scope": "instance", - "___id": "T000002R008147", + "___id": "T000002R008128", "___s": true }, { @@ -77276,7 +77286,7 @@ "memberof": "Phaser.GameObjects.Components.Flip", "longname": "Phaser.GameObjects.Components.Flip#resetFlip", "scope": "instance", - "___id": "T000002R008151", + "___id": "T000002R008132", "___s": true }, { @@ -77330,7 +77340,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Components.FX", - "___id": "T000002R008159", + "___id": "T000002R008140", "___s": true }, { @@ -77359,7 +77369,7 @@ "longname": "Phaser.GameObjects.Components.FX#gameObject", "scope": "instance", "kind": "member", - "___id": "T000002R008162", + "___id": "T000002R008143", "___s": true }, { @@ -77388,7 +77398,7 @@ "longname": "Phaser.GameObjects.Components.FX#isPost", "scope": "instance", "kind": "member", - "___id": "T000002R008164", + "___id": "T000002R008145", "___s": true }, { @@ -77416,7 +77426,7 @@ "longname": "Phaser.GameObjects.Components.FX#enabled", "scope": "instance", "kind": "member", - "___id": "T000002R008166", + "___id": "T000002R008147", "___s": true }, { @@ -77453,7 +77463,7 @@ "longname": "Phaser.GameObjects.Components.FX#list", "scope": "instance", "kind": "member", - "___id": "T000002R008168", + "___id": "T000002R008149", "___s": true }, { @@ -77482,7 +77492,7 @@ "longname": "Phaser.GameObjects.Components.FX#padding", "scope": "instance", "kind": "member", - "___id": "T000002R008170", + "___id": "T000002R008151", "___s": true }, { @@ -77540,7 +77550,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#setPadding", "scope": "instance", - "___id": "T000002R008172", + "___id": "T000002R008153", "___s": true }, { @@ -77574,7 +77584,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#onFXCopy", "scope": "instance", - "___id": "T000002R008176", + "___id": "T000002R008157", "___s": true }, { @@ -77608,7 +77618,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#onFX", "scope": "instance", - "___id": "T000002R008178", + "___id": "T000002R008159", "___s": true }, { @@ -77644,7 +77654,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#enable", "scope": "instance", - "___id": "T000002R008180", + "___id": "T000002R008161", "___s": true }, { @@ -77678,7 +77688,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#clear", "scope": "instance", - "___id": "T000002R008187", + "___id": "T000002R008168", "___s": true }, { @@ -77741,7 +77751,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#remove", "scope": "instance", - "___id": "T000002R008193", + "___id": "T000002R008174", "___s": true }, { @@ -77792,7 +77802,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#disable", "scope": "instance", - "___id": "T000002R008202", + "___id": "T000002R008183", "___s": true }, { @@ -77868,7 +77878,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#add", "scope": "instance", - "___id": "T000002R008206", + "___id": "T000002R008187", "___s": true }, { @@ -77993,7 +78003,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addGlow", "scope": "instance", - "___id": "T000002R008212", + "___id": "T000002R008193", "___s": true }, { @@ -78133,7 +78143,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addShadow", "scope": "instance", - "___id": "T000002R008216", + "___id": "T000002R008197", "___s": true }, { @@ -78183,7 +78193,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addPixelate", "scope": "instance", - "___id": "T000002R008218", + "___id": "T000002R008199", "___s": true }, { @@ -78278,7 +78288,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addVignette", "scope": "instance", - "___id": "T000002R008220", + "___id": "T000002R008201", "___s": true }, { @@ -78373,7 +78383,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addShine", "scope": "instance", - "___id": "T000002R008222", + "___id": "T000002R008203", "___s": true }, { @@ -78498,7 +78508,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addBlur", "scope": "instance", - "___id": "T000002R008224", + "___id": "T000002R008205", "___s": true }, { @@ -78653,7 +78663,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addGradient", "scope": "instance", - "___id": "T000002R008226", + "___id": "T000002R008207", "___s": true }, { @@ -78777,7 +78787,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addBloom", "scope": "instance", - "___id": "T000002R008228", + "___id": "T000002R008209", "___s": true }, { @@ -78810,7 +78820,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addColorMatrix", "scope": "instance", - "___id": "T000002R008230", + "___id": "T000002R008211", "___s": true }, { @@ -78920,7 +78930,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addCircle", "scope": "instance", - "___id": "T000002R008232", + "___id": "T000002R008213", "___s": true }, { @@ -78970,7 +78980,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addBarrel", "scope": "instance", - "___id": "T000002R008234", + "___id": "T000002R008215", "___s": true }, { @@ -79050,7 +79060,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addDisplacement", "scope": "instance", - "___id": "T000002R008236", + "___id": "T000002R008217", "___s": true }, { @@ -79130,7 +79140,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addWipe", "scope": "instance", - "___id": "T000002R008238", + "___id": "T000002R008219", "___s": true }, { @@ -79210,7 +79220,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addReveal", "scope": "instance", - "___id": "T000002R008240", + "___id": "T000002R008221", "___s": true }, { @@ -79290,7 +79300,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addBokeh", "scope": "instance", - "___id": "T000002R008242", + "___id": "T000002R008223", "___s": true }, { @@ -79415,7 +79425,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#addTiltShift", "scope": "instance", - "___id": "T000002R008244", + "___id": "T000002R008225", "___s": true }, { @@ -79434,7 +79444,7 @@ "memberof": "Phaser.GameObjects.Components.FX", "longname": "Phaser.GameObjects.Components.FX#destroy", "scope": "instance", - "___id": "T000002R008246", + "___id": "T000002R008227", "___s": true }, { @@ -79453,7 +79463,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.GetBounds", "scope": "static", - "___id": "T000002R008253", + "___id": "T000002R008234", "___s": true }, { @@ -79525,7 +79535,7 @@ "memberof": "Phaser.GameObjects.Components.GetBounds", "longname": "Phaser.GameObjects.Components.GetBounds#getCenter", "scope": "instance", - "___id": "T000002R008259", + "___id": "T000002R008240", "___s": true }, { @@ -79597,7 +79607,7 @@ "memberof": "Phaser.GameObjects.Components.GetBounds", "longname": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "scope": "instance", - "___id": "T000002R008264", + "___id": "T000002R008245", "___s": true }, { @@ -79669,7 +79679,7 @@ "memberof": "Phaser.GameObjects.Components.GetBounds", "longname": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "scope": "instance", - "___id": "T000002R008269", + "___id": "T000002R008250", "___s": true }, { @@ -79741,7 +79751,7 @@ "memberof": "Phaser.GameObjects.Components.GetBounds", "longname": "Phaser.GameObjects.Components.GetBounds#getTopRight", "scope": "instance", - "___id": "T000002R008274", + "___id": "T000002R008255", "___s": true }, { @@ -79813,7 +79823,7 @@ "memberof": "Phaser.GameObjects.Components.GetBounds", "longname": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "scope": "instance", - "___id": "T000002R008279", + "___id": "T000002R008260", "___s": true }, { @@ -79885,7 +79895,7 @@ "memberof": "Phaser.GameObjects.Components.GetBounds", "longname": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "scope": "instance", - "___id": "T000002R008284", + "___id": "T000002R008265", "___s": true }, { @@ -79957,7 +79967,7 @@ "memberof": "Phaser.GameObjects.Components.GetBounds", "longname": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "scope": "instance", - "___id": "T000002R008289", + "___id": "T000002R008270", "___s": true }, { @@ -80029,7 +80039,7 @@ "memberof": "Phaser.GameObjects.Components.GetBounds", "longname": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "scope": "instance", - "___id": "T000002R008294", + "___id": "T000002R008275", "___s": true }, { @@ -80101,7 +80111,7 @@ "memberof": "Phaser.GameObjects.Components.GetBounds", "longname": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "scope": "instance", - "___id": "T000002R008299", + "___id": "T000002R008280", "___s": true }, { @@ -80178,7 +80188,7 @@ "memberof": "Phaser.GameObjects.Components.GetBounds", "longname": "Phaser.GameObjects.Components.GetBounds#getBounds", "scope": "instance", - "___id": "T000002R008304", + "___id": "T000002R008285", "___s": true }, { @@ -80195,7 +80205,7 @@ "memberof": "Phaser.GameObjects", "longname": "Phaser.GameObjects.Components", "scope": "static", - "___id": "T000002R008337", + "___id": "T000002R008318", "___s": true }, { @@ -80214,7 +80224,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.Mask", "scope": "static", - "___id": "T000002R008364", + "___id": "T000002R008345", "___s": true }, { @@ -80252,7 +80262,7 @@ "longname": "Phaser.GameObjects.Components.Mask#mask", "scope": "instance", "kind": "member", - "___id": "T000002R008366", + "___id": "T000002R008347", "___s": true }, { @@ -80311,7 +80321,7 @@ "memberof": "Phaser.GameObjects.Components.Mask", "longname": "Phaser.GameObjects.Components.Mask#setMask", "scope": "instance", - "___id": "T000002R008368", + "___id": "T000002R008349", "___s": true }, { @@ -80362,7 +80372,7 @@ "memberof": "Phaser.GameObjects.Components.Mask", "longname": "Phaser.GameObjects.Components.Mask#clearMask", "scope": "instance", - "___id": "T000002R008371", + "___id": "T000002R008352", "___s": true }, { @@ -80522,7 +80532,7 @@ "memberof": "Phaser.GameObjects.Components.Mask", "longname": "Phaser.GameObjects.Components.Mask#createBitmapMask", "scope": "instance", - "___id": "T000002R008375", + "___id": "T000002R008356", "___s": true }, { @@ -80601,7 +80611,7 @@ "memberof": "Phaser.GameObjects.Components.Mask", "longname": "Phaser.GameObjects.Components.Mask#createGeometryMask", "scope": "instance", - "___id": "T000002R008378", + "___id": "T000002R008359", "___s": true }, { @@ -80620,7 +80630,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.Origin", "scope": "static", - "___id": "T000002R008382", + "___id": "T000002R008363", "___s": true }, { @@ -80650,7 +80660,7 @@ "longname": "Phaser.GameObjects.Components.Origin#originX", "scope": "instance", "kind": "member", - "___id": "T000002R008386", + "___id": "T000002R008367", "___s": true }, { @@ -80680,7 +80690,7 @@ "longname": "Phaser.GameObjects.Components.Origin#originY", "scope": "instance", "kind": "member", - "___id": "T000002R008388", + "___id": "T000002R008369", "___s": true }, { @@ -80708,7 +80718,7 @@ "longname": "Phaser.GameObjects.Components.Origin#displayOriginX", "scope": "instance", "kind": "member", - "___id": "T000002R008392", + "___id": "T000002R008373", "___s": true }, { @@ -80736,7 +80746,7 @@ "longname": "Phaser.GameObjects.Components.Origin#displayOriginY", "scope": "instance", "kind": "member", - "___id": "T000002R008398", + "___id": "T000002R008379", "___s": true }, { @@ -80802,7 +80812,7 @@ "memberof": "Phaser.GameObjects.Components.Origin", "longname": "Phaser.GameObjects.Components.Origin#setOrigin", "scope": "instance", - "___id": "T000002R008404", + "___id": "T000002R008385", "___s": true }, { @@ -80836,7 +80846,7 @@ "memberof": "Phaser.GameObjects.Components.Origin", "longname": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "scope": "instance", - "___id": "T000002R008410", + "___id": "T000002R008391", "___s": true }, { @@ -80902,7 +80912,7 @@ "memberof": "Phaser.GameObjects.Components.Origin", "longname": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "scope": "instance", - "___id": "T000002R008414", + "___id": "T000002R008395", "___s": true }, { @@ -80936,7 +80946,7 @@ "memberof": "Phaser.GameObjects.Components.Origin", "longname": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "scope": "instance", - "___id": "T000002R008420", + "___id": "T000002R008401", "___s": true }, { @@ -80955,7 +80965,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.PathFollower", "scope": "static", - "___id": "T000002R008430", + "___id": "T000002R008411", "___s": true }, { @@ -80983,7 +80993,7 @@ "longname": "Phaser.GameObjects.Components.PathFollower#path", "scope": "instance", "kind": "member", - "___id": "T000002R008432", + "___id": "T000002R008413", "___s": true }, { @@ -81012,7 +81022,7 @@ "longname": "Phaser.GameObjects.Components.PathFollower#rotateToPath", "scope": "instance", "kind": "member", - "___id": "T000002R008434", + "___id": "T000002R008415", "___s": true }, { @@ -81041,7 +81051,7 @@ "longname": "Phaser.GameObjects.PathFollower#pathRotationOffset", "scope": "instance", "kind": "member", - "___id": "T000002R008436", + "___id": "T000002R008417", "___s": true }, { @@ -81069,7 +81079,7 @@ "longname": "Phaser.GameObjects.PathFollower#pathOffset", "scope": "instance", "kind": "member", - "___id": "T000002R008438", + "___id": "T000002R008419", "___s": true }, { @@ -81097,7 +81107,7 @@ "longname": "Phaser.GameObjects.PathFollower#pathVector", "scope": "instance", "kind": "member", - "___id": "T000002R008440", + "___id": "T000002R008421", "___s": true }, { @@ -81125,7 +81135,7 @@ "longname": "Phaser.GameObjects.PathFollower#pathDelta", "scope": "instance", "kind": "member", - "___id": "T000002R008442", + "___id": "T000002R008423", "___s": true }, { @@ -81153,7 +81163,7 @@ "longname": "Phaser.GameObjects.PathFollower#pathTween", "scope": "instance", "kind": "member", - "___id": "T000002R008444", + "___id": "T000002R008425", "___s": true }, { @@ -81184,7 +81194,7 @@ "longname": "Phaser.GameObjects.PathFollower#pathConfig", "scope": "instance", "kind": "member", - "___id": "T000002R008446", + "___id": "T000002R008427", "___s": true }, { @@ -81262,7 +81272,7 @@ "memberof": "Phaser.GameObjects.Components.PathFollower", "longname": "Phaser.GameObjects.Components.PathFollower#setPath", "scope": "instance", - "___id": "T000002R008450", + "___id": "T000002R008431", "___s": true }, { @@ -81326,7 +81336,7 @@ "memberof": "Phaser.GameObjects.Components.PathFollower", "longname": "Phaser.GameObjects.Components.PathFollower#setRotateToPath", "scope": "instance", - "___id": "T000002R008455", + "___id": "T000002R008436", "___s": true }, { @@ -81359,7 +81369,7 @@ "memberof": "Phaser.GameObjects.Components.PathFollower", "longname": "Phaser.GameObjects.Components.PathFollower#isFollowing", "scope": "instance", - "___id": "T000002R008460", + "___id": "T000002R008441", "___s": true }, { @@ -81440,7 +81450,7 @@ "memberof": "Phaser.GameObjects.Components.PathFollower", "longname": "Phaser.GameObjects.Components.PathFollower#startFollow", "scope": "instance", - "___id": "T000002R008463", + "___id": "T000002R008444", "___s": true }, { @@ -81474,7 +81484,7 @@ "memberof": "Phaser.GameObjects.Components.PathFollower", "longname": "Phaser.GameObjects.Components.PathFollower#pauseFollow", "scope": "instance", - "___id": "T000002R008495", + "___id": "T000002R008476", "___s": true }, { @@ -81508,7 +81518,7 @@ "memberof": "Phaser.GameObjects.Components.PathFollower", "longname": "Phaser.GameObjects.Components.PathFollower#resumeFollow", "scope": "instance", - "___id": "T000002R008498", + "___id": "T000002R008479", "___s": true }, { @@ -81542,7 +81552,7 @@ "memberof": "Phaser.GameObjects.Components.PathFollower", "longname": "Phaser.GameObjects.Components.PathFollower#stopFollow", "scope": "instance", - "___id": "T000002R008501", + "___id": "T000002R008482", "___s": true }, { @@ -81561,7 +81571,7 @@ "memberof": "Phaser.GameObjects.Components.PathFollower", "longname": "Phaser.GameObjects.Components.PathFollower#pathUpdate", "scope": "instance", - "___id": "T000002R008504", + "___id": "T000002R008485", "___s": true }, { @@ -81587,7 +81597,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.Pipeline", "scope": "static", - "___id": "T000002R008518", + "___id": "T000002R008499", "___s": true }, { @@ -81623,7 +81633,7 @@ "longname": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "scope": "instance", "kind": "member", - "___id": "T000002R008520", + "___id": "T000002R008501", "___s": true }, { @@ -81659,7 +81669,7 @@ "longname": "Phaser.GameObjects.Components.Pipeline#pipeline", "scope": "instance", "kind": "member", - "___id": "T000002R008522", + "___id": "T000002R008503", "___s": true }, { @@ -81694,7 +81704,7 @@ "longname": "Phaser.GameObjects.Components.Pipeline#pipelineData", "scope": "instance", "kind": "member", - "___id": "T000002R008524", + "___id": "T000002R008505", "___s": true }, { @@ -81760,7 +81770,7 @@ "memberof": "Phaser.GameObjects.Components.Pipeline", "longname": "Phaser.GameObjects.Components.Pipeline#initPipeline", "scope": "instance", - "___id": "T000002R008526", + "___id": "T000002R008507", "___s": true }, { @@ -81855,7 +81865,7 @@ "memberof": "Phaser.GameObjects.Components.Pipeline", "longname": "Phaser.GameObjects.Components.Pipeline#setPipeline", "scope": "instance", - "___id": "T000002R008535", + "___id": "T000002R008516", "___s": true }, { @@ -81925,7 +81935,7 @@ "memberof": "Phaser.GameObjects.Components.Pipeline", "longname": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "scope": "instance", - "___id": "T000002R008542", + "___id": "T000002R008523", "___s": true }, { @@ -81982,7 +81992,7 @@ "memberof": "Phaser.GameObjects.Components.Pipeline", "longname": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "scope": "instance", - "___id": "T000002R008546", + "___id": "T000002R008527", "___s": true }, { @@ -82024,7 +82034,7 @@ "memberof": "Phaser.GameObjects.Components.Pipeline", "longname": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "scope": "instance", - "___id": "T000002R008551", + "___id": "T000002R008532", "___s": true }, { @@ -82050,7 +82060,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.PostPipeline", "scope": "static", - "___id": "T000002R008557", + "___id": "T000002R008538", "___s": true }, { @@ -82085,7 +82095,7 @@ "longname": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "scope": "instance", "kind": "member", - "___id": "T000002R008559", + "___id": "T000002R008540", "___s": true }, { @@ -82129,7 +82139,7 @@ "longname": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "scope": "instance", "kind": "member", - "___id": "T000002R008561", + "___id": "T000002R008542", "___s": true }, { @@ -82164,7 +82174,7 @@ "longname": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "scope": "instance", "kind": "member", - "___id": "T000002R008563", + "___id": "T000002R008544", "___s": true }, { @@ -82201,7 +82211,7 @@ "longname": "Phaser.GameObjects.Components.PostPipeline#preFX", "scope": "instance", "kind": "member", - "___id": "T000002R008565", + "___id": "T000002R008546", "___s": true }, { @@ -82236,7 +82246,7 @@ "longname": "Phaser.GameObjects.Components.PostPipeline#postFX", "scope": "instance", "kind": "member", - "___id": "T000002R008567", + "___id": "T000002R008548", "___s": true }, { @@ -82279,7 +82289,7 @@ "memberof": "Phaser.GameObjects.Components.PostPipeline", "longname": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "scope": "instance", - "___id": "T000002R008569", + "___id": "T000002R008550", "___s": true }, { @@ -82421,7 +82431,7 @@ "memberof": "Phaser.GameObjects.Components.PostPipeline", "longname": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "scope": "instance", - "___id": "T000002R008575", + "___id": "T000002R008556", "___s": true }, { @@ -82491,7 +82501,7 @@ "memberof": "Phaser.GameObjects.Components.PostPipeline", "longname": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "scope": "instance", - "___id": "T000002R008584", + "___id": "T000002R008565", "___s": true }, { @@ -82580,7 +82590,7 @@ "memberof": "Phaser.GameObjects.Components.PostPipeline", "longname": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "scope": "instance", - "___id": "T000002R008588", + "___id": "T000002R008569", "___s": true }, { @@ -82623,7 +82633,7 @@ "memberof": "Phaser.GameObjects.Components.PostPipeline", "longname": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "scope": "instance", - "___id": "T000002R008595", + "___id": "T000002R008576", "___s": true }, { @@ -82689,7 +82699,7 @@ "memberof": "Phaser.GameObjects.Components.PostPipeline", "longname": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "scope": "instance", - "___id": "T000002R008603", + "___id": "T000002R008584", "___s": true }, { @@ -82730,7 +82740,7 @@ "memberof": "Phaser.GameObjects.Components.PostPipeline", "longname": "Phaser.GameObjects.Components.PostPipeline#clearFX", "scope": "instance", - "___id": "T000002R008610", + "___id": "T000002R008591", "___s": true }, { @@ -82749,7 +82759,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.ScrollFactor", "scope": "static", - "___id": "T000002R008613", + "___id": "T000002R008594", "___s": true }, { @@ -82778,7 +82788,7 @@ "longname": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "scope": "instance", "kind": "member", - "___id": "T000002R008615", + "___id": "T000002R008596", "___s": true }, { @@ -82807,7 +82817,7 @@ "longname": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "scope": "instance", "kind": "member", - "___id": "T000002R008617", + "___id": "T000002R008598", "___s": true }, { @@ -82871,7 +82881,7 @@ "memberof": "Phaser.GameObjects.Components.ScrollFactor", "longname": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "scope": "instance", - "___id": "T000002R008619", + "___id": "T000002R008600", "___s": true }, { @@ -82890,7 +82900,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.Size", "scope": "static", - "___id": "T000002R008625", + "___id": "T000002R008606", "___s": true }, { @@ -82918,7 +82928,7 @@ "longname": "Phaser.GameObjects.Components.Size#width", "scope": "instance", "kind": "member", - "___id": "T000002R008629", + "___id": "T000002R008610", "___s": true }, { @@ -82946,7 +82956,7 @@ "longname": "Phaser.GameObjects.Components.Size#height", "scope": "instance", "kind": "member", - "___id": "T000002R008631", + "___id": "T000002R008612", "___s": true }, { @@ -82974,7 +82984,7 @@ "longname": "Phaser.GameObjects.Components.Size#displayWidth", "scope": "instance", "kind": "member", - "___id": "T000002R008633", + "___id": "T000002R008614", "___s": true }, { @@ -83002,7 +83012,7 @@ "longname": "Phaser.GameObjects.Components.Size#displayHeight", "scope": "instance", "kind": "member", - "___id": "T000002R008638", + "___id": "T000002R008619", "___s": true }, { @@ -83062,7 +83072,7 @@ "memberof": "Phaser.GameObjects.Components.Size", "longname": "Phaser.GameObjects.Components.Size#setSizeToFrame", "scope": "instance", - "___id": "T000002R008643", + "___id": "T000002R008624", "___s": true }, { @@ -83124,7 +83134,7 @@ "memberof": "Phaser.GameObjects.Components.Size", "longname": "Phaser.GameObjects.Components.Size#setSize", "scope": "instance", - "___id": "T000002R008651", + "___id": "T000002R008632", "___s": true }, { @@ -83186,7 +83196,7 @@ "memberof": "Phaser.GameObjects.Components.Size", "longname": "Phaser.GameObjects.Components.Size#setDisplaySize", "scope": "instance", - "___id": "T000002R008655", + "___id": "T000002R008636", "___s": true }, { @@ -83205,7 +83215,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.Texture", "scope": "static", - "___id": "T000002R008662", + "___id": "T000002R008643", "___s": true }, { @@ -83243,7 +83253,7 @@ "longname": "Phaser.GameObjects.Components.Texture#texture", "scope": "instance", "kind": "member", - "___id": "T000002R008664", + "___id": "T000002R008645", "___s": true }, { @@ -83271,7 +83281,7 @@ "longname": "Phaser.GameObjects.Components.Texture#frame", "scope": "instance", "kind": "member", - "___id": "T000002R008666", + "___id": "T000002R008647", "___s": true }, { @@ -83384,7 +83394,7 @@ "memberof": "Phaser.GameObjects.Components.Texture", "longname": "Phaser.GameObjects.Components.Texture#setTexture", "scope": "instance", - "___id": "T000002R008670", + "___id": "T000002R008651", "___s": true }, { @@ -83478,7 +83488,7 @@ "memberof": "Phaser.GameObjects.Components.Texture", "longname": "Phaser.GameObjects.Components.Texture#setFrame", "scope": "instance", - "___id": "T000002R008673", + "___id": "T000002R008654", "___s": true }, { @@ -83497,7 +83507,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.TextureCrop", "scope": "static", - "___id": "T000002R008685", + "___id": "T000002R008666", "___s": true }, { @@ -83535,7 +83545,7 @@ "longname": "Phaser.GameObjects.Components.TextureCrop#texture", "scope": "instance", "kind": "member", - "___id": "T000002R008687", + "___id": "T000002R008668", "___s": true }, { @@ -83563,7 +83573,7 @@ "longname": "Phaser.GameObjects.Components.TextureCrop#frame", "scope": "instance", "kind": "member", - "___id": "T000002R008689", + "___id": "T000002R008670", "___s": true }, { @@ -83591,7 +83601,7 @@ "longname": "Phaser.GameObjects.Components.TextureCrop#isCropped", "scope": "instance", "kind": "member", - "___id": "T000002R008691", + "___id": "T000002R008672", "___s": true }, { @@ -83693,7 +83703,7 @@ "memberof": "Phaser.GameObjects.Components.TextureCrop", "longname": "Phaser.GameObjects.Components.TextureCrop#setCrop", "scope": "instance", - "___id": "T000002R008693", + "___id": "T000002R008674", "___s": true }, { @@ -83766,7 +83776,7 @@ "memberof": "Phaser.GameObjects.Components.TextureCrop", "longname": "Phaser.GameObjects.Components.TextureCrop#setTexture", "scope": "instance", - "___id": "T000002R008698", + "___id": "T000002R008679", "___s": true }, { @@ -83860,7 +83870,7 @@ "memberof": "Phaser.GameObjects.Components.TextureCrop", "longname": "Phaser.GameObjects.Components.TextureCrop#setFrame", "scope": "instance", - "___id": "T000002R008701", + "___id": "T000002R008682", "___s": true }, { @@ -83886,7 +83896,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.Tint", "scope": "static", - "___id": "T000002R008727", + "___id": "T000002R008708", "___s": true }, { @@ -83915,7 +83925,7 @@ "longname": "Phaser.GameObjects.Components.Tint#tintTopLeft", "scope": "instance", "kind": "member", - "___id": "T000002R008729", + "___id": "T000002R008710", "___s": true }, { @@ -83944,7 +83954,7 @@ "longname": "Phaser.GameObjects.Components.Tint#tintTopRight", "scope": "instance", "kind": "member", - "___id": "T000002R008731", + "___id": "T000002R008712", "___s": true }, { @@ -83973,7 +83983,7 @@ "longname": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "scope": "instance", "kind": "member", - "___id": "T000002R008733", + "___id": "T000002R008714", "___s": true }, { @@ -84002,7 +84012,7 @@ "longname": "Phaser.GameObjects.Components.Tint#tintBottomRight", "scope": "instance", "kind": "member", - "___id": "T000002R008735", + "___id": "T000002R008716", "___s": true }, { @@ -84031,7 +84041,7 @@ "longname": "Phaser.GameObjects.Components.Tint#tintFill", "scope": "instance", "kind": "member", - "___id": "T000002R008737", + "___id": "T000002R008718", "___s": true }, { @@ -84072,7 +84082,7 @@ "memberof": "Phaser.GameObjects.Components.Tint", "longname": "Phaser.GameObjects.Components.Tint#clearTint", "scope": "instance", - "___id": "T000002R008739", + "___id": "T000002R008720", "___s": true }, { @@ -84172,7 +84182,7 @@ "memberof": "Phaser.GameObjects.Components.Tint", "longname": "Phaser.GameObjects.Components.Tint#setTint", "scope": "instance", - "___id": "T000002R008741", + "___id": "T000002R008722", "___s": true }, { @@ -84272,7 +84282,7 @@ "memberof": "Phaser.GameObjects.Components.Tint", "longname": "Phaser.GameObjects.Components.Tint#setTintFill", "scope": "instance", - "___id": "T000002R008752", + "___id": "T000002R008733", "___s": true }, { @@ -84307,7 +84317,7 @@ "longname": "Phaser.GameObjects.Components.Tint#tint", "scope": "instance", "kind": "member", - "___id": "T000002R008755", + "___id": "T000002R008736", "___s": true }, { @@ -84343,7 +84353,7 @@ "longname": "Phaser.GameObjects.Components.Tint#isTinted", "scope": "instance", "kind": "member", - "___id": "T000002R008759", + "___id": "T000002R008740", "___s": true }, { @@ -84391,7 +84401,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.ToJSON", "scope": "static", - "___id": "T000002R008764", + "___id": "T000002R008745", "___s": true }, { @@ -84410,7 +84420,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.Transform", "scope": "static", - "___id": "T000002R008797", + "___id": "T000002R008778", "___s": true }, { @@ -84440,7 +84450,7 @@ "longname": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "scope": "instance", "kind": "member", - "___id": "T000002R008799", + "___id": "T000002R008780", "___s": true }, { @@ -84469,7 +84479,7 @@ "longname": "Phaser.GameObjects.Components.Transform#x", "scope": "instance", "kind": "member", - "___id": "T000002R008807", + "___id": "T000002R008788", "___s": true }, { @@ -84498,7 +84508,7 @@ "longname": "Phaser.GameObjects.Components.Transform#y", "scope": "instance", "kind": "member", - "___id": "T000002R008809", + "___id": "T000002R008790", "___s": true }, { @@ -84527,7 +84537,7 @@ "longname": "Phaser.GameObjects.Components.Transform#z", "scope": "instance", "kind": "member", - "___id": "T000002R008811", + "___id": "T000002R008792", "___s": true }, { @@ -84556,7 +84566,7 @@ "longname": "Phaser.GameObjects.Components.Transform#w", "scope": "instance", "kind": "member", - "___id": "T000002R008813", + "___id": "T000002R008794", "___s": true }, { @@ -84585,7 +84595,7 @@ "longname": "Phaser.GameObjects.Components.Transform#scale", "scope": "instance", "kind": "member", - "___id": "T000002R008815", + "___id": "T000002R008796", "___s": true }, { @@ -84614,7 +84624,7 @@ "longname": "Phaser.GameObjects.Components.Transform#scaleX", "scope": "instance", "kind": "member", - "___id": "T000002R008823", + "___id": "T000002R008804", "___s": true }, { @@ -84643,7 +84653,7 @@ "longname": "Phaser.GameObjects.Components.Transform#scaleY", "scope": "instance", "kind": "member", - "___id": "T000002R008830", + "___id": "T000002R008811", "___s": true }, { @@ -84672,7 +84682,7 @@ "longname": "Phaser.GameObjects.Components.Transform#angle", "scope": "instance", "kind": "member", - "___id": "T000002R008837", + "___id": "T000002R008818", "___s": true }, { @@ -84701,7 +84711,7 @@ "longname": "Phaser.GameObjects.Components.Transform#rotation", "scope": "instance", "kind": "member", - "___id": "T000002R008842", + "___id": "T000002R008823", "___s": true }, { @@ -84797,7 +84807,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#setPosition", "scope": "instance", - "___id": "T000002R008847", + "___id": "T000002R008828", "___s": true }, { @@ -84861,7 +84871,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#copyPosition", "scope": "instance", - "___id": "T000002R008857", + "___id": "T000002R008838", "___s": true }, { @@ -84955,7 +84965,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#setRandomPosition", "scope": "instance", - "___id": "T000002R008863", + "___id": "T000002R008844", "___s": true }, { @@ -85006,7 +85016,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#setRotation", "scope": "instance", - "___id": "T000002R008871", + "___id": "T000002R008852", "___s": true }, { @@ -85057,7 +85067,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#setAngle", "scope": "instance", - "___id": "T000002R008875", + "___id": "T000002R008856", "___s": true }, { @@ -85123,7 +85133,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#setScale", "scope": "instance", - "___id": "T000002R008879", + "___id": "T000002R008860", "___s": true }, { @@ -85174,7 +85184,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#setX", "scope": "instance", - "___id": "T000002R008885", + "___id": "T000002R008866", "___s": true }, { @@ -85225,7 +85235,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#setY", "scope": "instance", - "___id": "T000002R008889", + "___id": "T000002R008870", "___s": true }, { @@ -85276,7 +85286,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#setZ", "scope": "instance", - "___id": "T000002R008893", + "___id": "T000002R008874", "___s": true }, { @@ -85327,7 +85337,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#setW", "scope": "instance", - "___id": "T000002R008897", + "___id": "T000002R008878", "___s": true }, { @@ -85376,7 +85386,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "scope": "instance", - "___id": "T000002R008901", + "___id": "T000002R008882", "___s": true }, { @@ -85439,7 +85449,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "scope": "instance", - "___id": "T000002R008904", + "___id": "T000002R008885", "___s": true }, { @@ -85528,7 +85538,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#getLocalPoint", "scope": "instance", - "___id": "T000002R008910", + "___id": "T000002R008891", "___s": true }, { @@ -85561,7 +85571,7 @@ "memberof": "Phaser.GameObjects.Components.Transform", "longname": "Phaser.GameObjects.Components.Transform#getParentRotation", "scope": "instance", - "___id": "T000002R008920", + "___id": "T000002R008901", "___s": true }, { @@ -85672,7 +85682,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Components.TransformMatrix", - "___id": "T000002R008930", + "___id": "T000002R008911", "___s": true }, { @@ -85700,7 +85710,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#matrix", "scope": "instance", "kind": "member", - "___id": "T000002R008939", + "___id": "T000002R008920", "___s": true }, { @@ -85728,7 +85738,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#decomposedMatrix", "scope": "instance", "kind": "member", - "___id": "T000002R008941", + "___id": "T000002R008922", "___s": true }, { @@ -85756,7 +85766,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#quad", "scope": "instance", "kind": "member", - "___id": "T000002R008948", + "___id": "T000002R008929", "___s": true }, { @@ -85784,7 +85794,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#a", "scope": "instance", "kind": "member", - "___id": "T000002R008950", + "___id": "T000002R008931", "___s": true }, { @@ -85812,7 +85822,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#b", "scope": "instance", "kind": "member", - "___id": "T000002R008955", + "___id": "T000002R008936", "___s": true }, { @@ -85840,7 +85850,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#c", "scope": "instance", "kind": "member", - "___id": "T000002R008960", + "___id": "T000002R008941", "___s": true }, { @@ -85868,7 +85878,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#d", "scope": "instance", "kind": "member", - "___id": "T000002R008965", + "___id": "T000002R008946", "___s": true }, { @@ -85896,7 +85906,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#e", "scope": "instance", "kind": "member", - "___id": "T000002R008970", + "___id": "T000002R008951", "___s": true }, { @@ -85924,7 +85934,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#f", "scope": "instance", "kind": "member", - "___id": "T000002R008975", + "___id": "T000002R008956", "___s": true }, { @@ -85952,7 +85962,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#tx", "scope": "instance", "kind": "member", - "___id": "T000002R008980", + "___id": "T000002R008961", "___s": true }, { @@ -85980,7 +85990,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#ty", "scope": "instance", "kind": "member", - "___id": "T000002R008985", + "___id": "T000002R008966", "___s": true }, { @@ -86009,7 +86019,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#rotation", "scope": "instance", "kind": "member", - "___id": "T000002R008990", + "___id": "T000002R008971", "___s": true }, { @@ -86038,7 +86048,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#rotationNormalized", "scope": "instance", "kind": "member", - "___id": "T000002R008993", + "___id": "T000002R008974", "___s": true }, { @@ -86067,7 +86077,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#scaleX", "scope": "instance", "kind": "member", - "___id": "T000002R009001", + "___id": "T000002R008982", "___s": true }, { @@ -86096,7 +86106,7 @@ "longname": "Phaser.GameObjects.Components.TransformMatrix#scaleY", "scope": "instance", "kind": "member", - "___id": "T000002R009004", + "___id": "T000002R008985", "___s": true }, { @@ -86130,7 +86140,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#loadIdentity", "scope": "instance", - "___id": "T000002R009007", + "___id": "T000002R008988", "___s": true }, { @@ -86192,7 +86202,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#translate", "scope": "instance", - "___id": "T000002R009016", + "___id": "T000002R008997", "___s": true }, { @@ -86254,7 +86264,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#scale", "scope": "instance", - "___id": "T000002R009021", + "___id": "T000002R009002", "___s": true }, { @@ -86303,7 +86313,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#rotate", "scope": "instance", - "___id": "T000002R009028", + "___id": "T000002R009009", "___s": true }, { @@ -86376,7 +86386,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#multiply", "scope": "instance", - "___id": "T000002R009041", + "___id": "T000002R009022", "___s": true }, { @@ -86451,7 +86461,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#multiplyWithOffset", "scope": "instance", - "___id": "T000002R009064", + "___id": "T000002R009045", "___s": true }, { @@ -86565,7 +86575,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#transform", "scope": "instance", - "___id": "T000002R009088", + "___id": "T000002R009069", "___s": true }, { @@ -86640,7 +86650,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#transformPoint", "scope": "instance", - "___id": "T000002R009103", + "___id": "T000002R009084", "___s": true }, { @@ -86674,7 +86684,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#invert", "scope": "instance", - "___id": "T000002R009117", + "___id": "T000002R009098", "___s": true }, { @@ -86723,7 +86733,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#copyFrom", "scope": "instance", - "___id": "T000002R009133", + "___id": "T000002R009114", "___s": true }, { @@ -86772,7 +86782,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#copyFromArray", "scope": "instance", - "___id": "T000002R009142", + "___id": "T000002R009123", "___s": true }, { @@ -86820,7 +86830,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#copyToContext", "scope": "instance", - "___id": "T000002R009151", + "___id": "T000002R009132", "___s": true }, { @@ -86868,7 +86878,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#setToContext", "scope": "instance", - "___id": "T000002R009154", + "___id": "T000002R009135", "___s": true }, { @@ -86917,7 +86927,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#copyToArray", "scope": "instance", - "___id": "T000002R009156", + "___id": "T000002R009137", "___s": true }, { @@ -87031,7 +87041,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#setTransform", "scope": "instance", - "___id": "T000002R009166", + "___id": "T000002R009147", "___s": true }, { @@ -87064,7 +87074,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#decomposeMatrix", "scope": "instance", - "___id": "T000002R009175", + "___id": "T000002R009156", "___s": true }, { @@ -87165,7 +87175,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#applyITRS", "scope": "instance", - "___id": "T000002R009197", + "___id": "T000002R009178", "___s": true }, { @@ -87240,7 +87250,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#applyInverse", "scope": "instance", - "___id": "T000002R009208", + "___id": "T000002R009189", "___s": true }, { @@ -87356,7 +87366,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#setQuad", "scope": "instance", - "___id": "T000002R009221", + "___id": "T000002R009202", "___s": true }, { @@ -87417,7 +87427,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#getX", "scope": "instance", - "___id": "T000002R009248", + "___id": "T000002R009229", "___s": true }, { @@ -87478,7 +87488,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#getY", "scope": "instance", - "___id": "T000002R009250", + "___id": "T000002R009231", "___s": true }, { @@ -87554,7 +87564,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#getXRound", "scope": "instance", - "___id": "T000002R009252", + "___id": "T000002R009233", "___s": true }, { @@ -87630,7 +87640,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#getYRound", "scope": "instance", - "___id": "T000002R009256", + "___id": "T000002R009237", "___s": true }, { @@ -87663,7 +87673,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#getCSSMatrix", "scope": "instance", - "___id": "T000002R009260", + "___id": "T000002R009241", "___s": true }, { @@ -87682,7 +87692,7 @@ "memberof": "Phaser.GameObjects.Components.TransformMatrix", "longname": "Phaser.GameObjects.Components.TransformMatrix#destroy", "scope": "instance", - "___id": "T000002R009263", + "___id": "T000002R009244", "___s": true }, { @@ -87701,7 +87711,7 @@ "memberof": "Phaser.GameObjects.Components", "longname": "Phaser.GameObjects.Components.Visible", "scope": "static", - "___id": "T000002R009270", + "___id": "T000002R009251", "___s": true }, { @@ -87729,7 +87739,7 @@ "longname": "Phaser.GameObjects.Components.Visible#visible", "scope": "instance", "kind": "member", - "___id": "T000002R009274", + "___id": "T000002R009255", "___s": true }, { @@ -87778,7 +87788,7 @@ "memberof": "Phaser.GameObjects.Components.Visible", "longname": "Phaser.GameObjects.Components.Visible#setVisible", "scope": "instance", - "___id": "T000002R009282", + "___id": "T000002R009263", "___s": true }, { @@ -87876,7 +87886,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Container", - "___id": "T000002R009296", + "___id": "T000002R009277", "___s": true }, { @@ -87913,7 +87923,7 @@ "longname": "Phaser.GameObjects.Container#list", "scope": "instance", "kind": "member", - "___id": "T000002R009301", + "___id": "T000002R009282", "___s": true }, { @@ -87942,7 +87952,7 @@ "longname": "Phaser.GameObjects.Container#exclusive", "scope": "instance", "kind": "member", - "___id": "T000002R009303", + "___id": "T000002R009284", "___s": true }, { @@ -87971,7 +87981,7 @@ "longname": "Phaser.GameObjects.Container#maxSize", "scope": "instance", "kind": "member", - "___id": "T000002R009305", + "___id": "T000002R009286", "___s": true }, { @@ -87999,7 +88009,7 @@ "longname": "Phaser.GameObjects.Container#position", "scope": "instance", "kind": "member", - "___id": "T000002R009307", + "___id": "T000002R009288", "___s": true }, { @@ -88027,7 +88037,7 @@ "longname": "Phaser.GameObjects.Container#localTransform", "scope": "instance", "kind": "member", - "___id": "T000002R009309", + "___id": "T000002R009290", "___s": true }, { @@ -88056,7 +88066,7 @@ "longname": "Phaser.GameObjects.Container#scrollFactorX", "scope": "instance", "kind": "member", - "___id": "T000002R009317", + "___id": "T000002R009298", "___s": true }, { @@ -88085,7 +88095,7 @@ "longname": "Phaser.GameObjects.Container#scrollFactorY", "scope": "instance", "kind": "member", - "___id": "T000002R009319", + "___id": "T000002R009300", "___s": true }, { @@ -88115,7 +88125,7 @@ "longname": "Phaser.GameObjects.Container#originX", "scope": "instance", "kind": "member", - "___id": "T000002R009321", + "___id": "T000002R009302", "___s": true }, { @@ -88145,7 +88155,7 @@ "longname": "Phaser.GameObjects.Container#originY", "scope": "instance", "kind": "member", - "___id": "T000002R009324", + "___id": "T000002R009305", "___s": true }, { @@ -88175,7 +88185,7 @@ "longname": "Phaser.GameObjects.Container#displayOriginX", "scope": "instance", "kind": "member", - "___id": "T000002R009327", + "___id": "T000002R009308", "___s": true }, { @@ -88205,7 +88215,7 @@ "longname": "Phaser.GameObjects.Container#displayOriginY", "scope": "instance", "kind": "member", - "___id": "T000002R009330", + "___id": "T000002R009311", "___s": true }, { @@ -88256,7 +88266,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#setExclusive", "scope": "instance", - "___id": "T000002R009333", + "___id": "T000002R009314", "___s": true }, { @@ -88305,7 +88315,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#getBounds", "scope": "instance", - "___id": "T000002R009337", + "___id": "T000002R009318", "___s": true }, { @@ -88367,7 +88377,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#pointToContainer", "scope": "instance", - "___id": "T000002R009354", + "___id": "T000002R009335", "___s": true }, { @@ -88400,7 +88410,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#getBoundsTransformMatrix", "scope": "instance", - "___id": "T000002R009360", + "___id": "T000002R009341", "___s": true }, { @@ -88482,7 +88492,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#add", "scope": "instance", - "___id": "T000002R009362", + "___id": "T000002R009343", "___s": true }, { @@ -88579,7 +88589,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#addAt", "scope": "instance", - "___id": "T000002R009364", + "___id": "T000002R009345", "___s": true }, { @@ -88643,7 +88653,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#getAt", "scope": "instance", - "___id": "T000002R009366", + "___id": "T000002R009347", "___s": true }, { @@ -88705,7 +88715,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#getIndex", "scope": "instance", - "___id": "T000002R009368", + "___id": "T000002R009349", "___s": true }, { @@ -88768,7 +88778,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#sort", "scope": "instance", - "___id": "T000002R009370", + "___id": "T000002R009351", "___s": true }, { @@ -88832,7 +88842,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#getByName", "scope": "instance", - "___id": "T000002R009373", + "___id": "T000002R009354", "___s": true }, { @@ -88912,7 +88922,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#getRandom", "scope": "instance", - "___id": "T000002R009375", + "___id": "T000002R009356", "___s": true }, { @@ -89018,7 +89028,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#getFirst", "scope": "instance", - "___id": "T000002R009377", + "___id": "T000002R009358", "___s": true }, { @@ -89134,7 +89144,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#getAll", "scope": "instance", - "___id": "T000002R009379", + "___id": "T000002R009360", "___s": true }, { @@ -89225,7 +89235,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#count", "scope": "instance", - "___id": "T000002R009381", + "___id": "T000002R009362", "___s": true }, { @@ -89301,7 +89311,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#swap", "scope": "instance", - "___id": "T000002R009383", + "___id": "T000002R009364", "___s": true }, { @@ -89377,11 +89387,11 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#moveTo", "scope": "instance", - "___id": "T000002R009385", + "___id": "T000002R009366", "___s": true }, { - "comment": "/**\r\n * Moves a Game Object above another one within this Container.\r\n *\r\n * These 2 Game Objects must already be children of this Container.\r\n *\r\n * @method Phaser.GameObjects.Container#moveAbove\r\n * @since 3.55.0\r\n *\r\n * @generic {Phaser.GameObjects.GameObject} T\r\n * @genericUse {T} - [child1,child2]\r\n *\r\n * @param {Phaser.GameObjects.GameObject} child1 - The Game Object to move above base Game Object.\r\n * @param {Phaser.GameObjects.GameObject} child2 - The base Game Object.\r\n *\r\n * @return {this} This Container instance.\r\n */", + "comment": "/**\r\n * Moves a Game Object above another one within this Container.\r\n * If the Game Object is already above the other, it isn't moved.\r\n *\r\n * These 2 Game Objects must already be children of this Container.\r\n *\r\n * @method Phaser.GameObjects.Container#moveAbove\r\n * @since 3.55.0\r\n *\r\n * @generic {Phaser.GameObjects.GameObject} T\r\n * @genericUse {T} - [child1,child2]\r\n *\r\n * @param {Phaser.GameObjects.GameObject} child1 - The Game Object to move above base Game Object.\r\n * @param {Phaser.GameObjects.GameObject} child2 - The base Game Object.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", "lineno": 819, @@ -89389,7 +89399,7 @@ "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} }, - "description": "Moves a Game Object above another one within this Container.\r\rThese 2 Game Objects must already be children of this Container.", + "description": "Moves a Game Object above another one within this Container.\rIf the Game Object is already above the other, it isn't moved.\r\rThese 2 Game Objects must already be children of this Container.", "kind": "function", "name": "moveAbove", "since": "3.55.0", @@ -89453,19 +89463,19 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#moveAbove", "scope": "instance", - "___id": "T000002R009387", + "___id": "T000002R009368", "___s": true }, { - "comment": "/**\r\n * Moves a Game Object below another one within this Container.\r\n *\r\n * These 2 Game Objects must already be children of this Container.\r\n *\r\n * @method Phaser.GameObjects.Container#moveBelow\r\n * @since 3.55.0\r\n *\r\n * @generic {Phaser.GameObjects.GameObject} T\r\n * @genericUse {T} - [child1,child2]\r\n *\r\n * @param {Phaser.GameObjects.GameObject} child1 - The Game Object to move below base Game Object.\r\n * @param {Phaser.GameObjects.GameObject} child2 - The base Game Object.\r\n *\r\n * @return {this} This Container instance.\r\n */", + "comment": "/**\r\n * Moves a Game Object below another one within this Container.\r\n * If the Game Object is already below the other, it isn't moved.\r\n *\r\n * These 2 Game Objects must already be children of this Container.\r\n *\r\n * @method Phaser.GameObjects.Container#moveBelow\r\n * @since 3.55.0\r\n *\r\n * @generic {Phaser.GameObjects.GameObject} T\r\n * @genericUse {T} - [child1,child2]\r\n *\r\n * @param {Phaser.GameObjects.GameObject} child1 - The Game Object to move below base Game Object.\r\n * @param {Phaser.GameObjects.GameObject} child2 - The base Game Object.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 842, + "lineno": 843, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} }, - "description": "Moves a Game Object below another one within this Container.\r\rThese 2 Game Objects must already be children of this Container.", + "description": "Moves a Game Object below another one within this Container.\rIf the Game Object is already below the other, it isn't moved.\r\rThese 2 Game Objects must already be children of this Container.", "kind": "function", "name": "moveBelow", "since": "3.55.0", @@ -89529,14 +89539,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#moveBelow", "scope": "instance", - "___id": "T000002R009389", + "___id": "T000002R009370", "___s": true }, { "comment": "/**\r\n * Removes the given Game Object, or array of Game Objects, from this Container.\r\n *\r\n * The Game Objects must already be children of this Container.\r\n *\r\n * You can also optionally call `destroy` on each Game Object that is removed from the Container.\r\n *\r\n * @method Phaser.GameObjects.Container#remove\r\n * @since 3.4.0\r\n *\r\n * @generic {Phaser.GameObjects.GameObject} T\r\n * @genericUse {(T|T[])} - [child]\r\n *\r\n * @param {Phaser.GameObjects.GameObject|Phaser.GameObjects.GameObject[]} child - The Game Object, or array of Game Objects, to be removed from the Container.\r\n * @param {boolean} [destroyChild=false] - Optionally call `destroy` on each child successfully removed from this Container.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 865, + "lineno": 867, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -89626,14 +89636,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#remove", "scope": "instance", - "___id": "T000002R009391", + "___id": "T000002R009372", "___s": true }, { "comment": "/**\r\n * Removes the Game Object at the given position in this Container.\r\n *\r\n * You can also optionally call `destroy` on the Game Object, if one is found.\r\n *\r\n * @method Phaser.GameObjects.Container#removeAt\r\n * @since 3.4.0\r\n *\r\n * @param {number} index - The index of the Game Object to be removed.\r\n * @param {boolean} [destroyChild=false] - Optionally call `destroy` on the Game Object if successfully removed from this Container.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 903, + "lineno": 905, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -89690,14 +89700,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#removeAt", "scope": "instance", - "___id": "T000002R009396", + "___id": "T000002R009377", "___s": true }, { "comment": "/**\r\n * Removes the Game Objects between the given positions in this Container.\r\n *\r\n * You can also optionally call `destroy` on each Game Object that is removed from the Container.\r\n *\r\n * @method Phaser.GameObjects.Container#removeBetween\r\n * @since 3.4.0\r\n *\r\n * @param {number} [startIndex=0] - An optional start index to search from.\r\n * @param {number} [endIndex=Container.length] - An optional end index to search up to (but not included)\r\n * @param {boolean} [destroyChild=false] - Optionally call `destroy` on each Game Object successfully removed from this Container.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 928, + "lineno": 930, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -89771,14 +89781,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#removeBetween", "scope": "instance", - "___id": "T000002R009399", + "___id": "T000002R009380", "___s": true }, { "comment": "/**\r\n * Removes all Game Objects from this Container.\r\n *\r\n * You can also optionally call `destroy` on each Game Object that is removed from the Container.\r\n *\r\n * @method Phaser.GameObjects.Container#removeAll\r\n * @since 3.4.0\r\n *\r\n * @param {boolean} [destroyChild=false] - Optionally call `destroy` on each Game Object successfully removed from this Container.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 957, + "lineno": 959, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -89822,14 +89832,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#removeAll", "scope": "instance", - "___id": "T000002R009403", + "___id": "T000002R009384", "___s": true }, { "comment": "/**\r\n * Brings the given Game Object to the top of this Container.\r\n * This will cause it to render on-top of any other objects in the Container.\r\n *\r\n * @method Phaser.GameObjects.Container#bringToTop\r\n * @since 3.4.0\r\n *\r\n * @generic {Phaser.GameObjects.GameObject} T\r\n * @genericUse {T} - [child]\r\n *\r\n * @param {Phaser.GameObjects.GameObject} child - The Game Object to bring to the top of the Container.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 995, + "lineno": 997, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -89885,14 +89895,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#bringToTop", "scope": "instance", - "___id": "T000002R009408", + "___id": "T000002R009389", "___s": true }, { "comment": "/**\r\n * Sends the given Game Object to the bottom of this Container.\r\n * This will cause it to render below any other objects in the Container.\r\n *\r\n * @method Phaser.GameObjects.Container#sendToBack\r\n * @since 3.4.0\r\n *\r\n * @generic {Phaser.GameObjects.GameObject} T\r\n * @genericUse {T} - [child]\r\n *\r\n * @param {Phaser.GameObjects.GameObject} child - The Game Object to send to the bottom of the Container.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 1016, + "lineno": 1018, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -89948,14 +89958,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#sendToBack", "scope": "instance", - "___id": "T000002R009410", + "___id": "T000002R009391", "___s": true }, { "comment": "/**\r\n * Moves the given Game Object up one place in this Container, unless it's already at the top.\r\n *\r\n * @method Phaser.GameObjects.Container#moveUp\r\n * @since 3.4.0\r\n *\r\n * @generic {Phaser.GameObjects.GameObject} T\r\n * @genericUse {T} - [child]\r\n *\r\n * @param {Phaser.GameObjects.GameObject} child - The Game Object to be moved in the Container.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 1037, + "lineno": 1039, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90011,14 +90021,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#moveUp", "scope": "instance", - "___id": "T000002R009412", + "___id": "T000002R009393", "___s": true }, { "comment": "/**\r\n * Moves the given Game Object down one place in this Container, unless it's already at the bottom.\r\n *\r\n * @method Phaser.GameObjects.Container#moveDown\r\n * @since 3.4.0\r\n *\r\n * @generic {Phaser.GameObjects.GameObject} T\r\n * @genericUse {T} - [child]\r\n *\r\n * @param {Phaser.GameObjects.GameObject} child - The Game Object to be moved in the Container.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 1057, + "lineno": 1059, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90074,14 +90084,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#moveDown", "scope": "instance", - "___id": "T000002R009414", + "___id": "T000002R009395", "___s": true }, { "comment": "/**\r\n * Reverses the order of all Game Objects in this Container.\r\n *\r\n * @method Phaser.GameObjects.Container#reverse\r\n * @since 3.4.0\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 1077, + "lineno": 1079, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90108,14 +90118,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#reverse", "scope": "instance", - "___id": "T000002R009416", + "___id": "T000002R009397", "___s": true }, { "comment": "/**\r\n * Shuffles the all Game Objects in this Container using the Fisher-Yates implementation.\r\n *\r\n * @method Phaser.GameObjects.Container#shuffle\r\n * @since 3.4.0\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 1092, + "lineno": 1094, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90142,14 +90152,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#shuffle", "scope": "instance", - "___id": "T000002R009418", + "___id": "T000002R009399", "___s": true }, { "comment": "/**\r\n * Replaces a Game Object in this Container with the new Game Object.\r\n * The new Game Object cannot already be a child of this Container.\r\n *\r\n * @method Phaser.GameObjects.Container#replace\r\n * @since 3.4.0\r\n *\r\n * @generic {Phaser.GameObjects.GameObject} T\r\n * @genericUse {T} - [oldChild,newChild]\r\n *\r\n * @param {Phaser.GameObjects.GameObject} oldChild - The Game Object in this Container that will be replaced.\r\n * @param {Phaser.GameObjects.GameObject} newChild - The Game Object to be added to this Container.\r\n * @param {boolean} [destroyChild=false] - Optionally call `destroy` on the Game Object if successfully removed from this Container.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 1107, + "lineno": 1109, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90233,14 +90243,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#replace", "scope": "instance", - "___id": "T000002R009420", + "___id": "T000002R009401", "___s": true }, { "comment": "/**\r\n * Returns `true` if the given Game Object is a direct child of this Container.\r\n *\r\n * This check does not scan nested Containers.\r\n *\r\n * @method Phaser.GameObjects.Container#exists\r\n * @since 3.4.0\r\n *\r\n * @generic {Phaser.GameObjects.GameObject} T\r\n * @genericUse {T} - [child]\r\n *\r\n * @param {Phaser.GameObjects.GameObject} child - The Game Object to check for within this Container.\r\n *\r\n * @return {boolean} True if the Game Object is an immediate child of this Container, otherwise false.\r\n */", "meta": { "filename": "Container.js", - "lineno": 1141, + "lineno": 1143, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90295,14 +90305,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#exists", "scope": "instance", - "___id": "T000002R009423", + "___id": "T000002R009404", "___s": true }, { "comment": "/**\r\n * Sets the property to the given value on all Game Objects in this Container.\r\n *\r\n * Optionally you can specify a start and end index. For example if this Container had 100 Game Objects,\r\n * and you set `startIndex` to 0 and `endIndex` to 50, it would return matches from only\r\n * the first 50 Game Objects.\r\n *\r\n * @method Phaser.GameObjects.Container#setAll\r\n * @since 3.4.0\r\n *\r\n * @param {string} property - The property that must exist on the Game Object.\r\n * @param {any} value - The value to get the property to.\r\n * @param {number} [startIndex=0] - An optional start index to search from.\r\n * @param {number} [endIndex=Container.length] - An optional end index to search up to (but not included)\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 1161, + "lineno": 1163, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90387,14 +90397,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#setAll", "scope": "instance", - "___id": "T000002R009425", + "___id": "T000002R009406", "___s": true }, { "comment": "/**\r\n * @callback EachContainerCallback\r\n * @generic I - [item]\r\n *\r\n * @param {*} item - The child Game Object of the Container.\r\n * @param {...*} [args] - Additional arguments that will be passed to the callback, after the child.\r\n */", "meta": { "filename": "Container.js", - "lineno": 1185, + "lineno": 1187, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90445,14 +90455,14 @@ ], "longname": "EachContainerCallback", "scope": "global", - "___id": "T000002R009427", + "___id": "T000002R009408", "___s": true }, { "comment": "/**\r\n * Passes all Game Objects in this Container to the given callback.\r\n *\r\n * A copy of the Container is made before passing each entry to your callback.\r\n * This protects against the callback itself modifying the Container.\r\n *\r\n * If you know for sure that the callback will not change the size of this Container\r\n * then you can use the more performant `Container.iterate` method instead.\r\n *\r\n * @method Phaser.GameObjects.Container#each\r\n * @since 3.4.0\r\n *\r\n * @param {function} callback - The function to call.\r\n * @param {object} [context] - Value to use as `this` when executing callback.\r\n * @param {...*} [args] - Additional arguments that will be passed to the callback, after the child.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 1193, + "lineno": 1195, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90523,14 +90533,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#each", "scope": "instance", - "___id": "T000002R009428", + "___id": "T000002R009409", "___s": true }, { "comment": "/**\r\n * Passes all Game Objects in this Container to the given callback.\r\n *\r\n * Only use this method when you absolutely know that the Container will not be modified during\r\n * the iteration, i.e. by removing or adding to its contents.\r\n *\r\n * @method Phaser.GameObjects.Container#iterate\r\n * @since 3.4.0\r\n *\r\n * @param {function} callback - The function to call.\r\n * @param {object} [context] - Value to use as `this` when executing callback.\r\n * @param {...*} [args] - Additional arguments that will be passed to the callback, after the child.\r\n *\r\n * @return {this} This Container instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 1233, + "lineno": 1235, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90601,14 +90611,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#iterate", "scope": "instance", - "___id": "T000002R009437", + "___id": "T000002R009418", "___s": true }, { "comment": "/**\r\n * Sets the scroll factor of this Container and optionally all of its children.\r\n *\r\n * The scroll factor controls the influence of the movement of a Camera upon this Game Object.\r\n *\r\n * When a camera scrolls it will change the location at which this Game Object is rendered on-screen.\r\n * It does not change the Game Objects actual position values.\r\n *\r\n * A value of 1 means it will move exactly in sync with a camera.\r\n * A value of 0 means it will not move at all, even if the camera moves.\r\n * Other values control the degree to which the camera movement is mapped to this Game Object.\r\n *\r\n * Please be aware that scroll factor values other than 1 are not taken in to consideration when\r\n * calculating physics collisions. Bodies always collide based on their world position, but changing\r\n * the scroll factor is a visual adjustment to where the textures are rendered, which can offset\r\n * them from physics bodies if not accounted for in your code.\r\n *\r\n * @method Phaser.GameObjects.Container#setScrollFactor\r\n * @since 3.4.0\r\n *\r\n * @param {number} x - The horizontal scroll factor of this Game Object.\r\n * @param {number} [y=x] - The vertical scroll factor of this Game Object. If not set it will use the `x` value.\r\n * @param {boolean} [updateChildren=false] - Apply this scrollFactor to all Container children as well?\r\n *\r\n * @return {this} This Game Object instance.\r\n */", "meta": { "filename": "Container.js", - "lineno": 1268, + "lineno": 1270, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90680,14 +90690,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#setScrollFactor", "scope": "instance", - "___id": "T000002R009444", + "___id": "T000002R009425", "___s": true }, { "comment": "/**\r\n * The number of Game Objects inside this Container.\r\n *\r\n * @name Phaser.GameObjects.Container#length\r\n * @type {number}\r\n * @readonly\r\n * @since 3.4.0\r\n */", "meta": { "filename": "Container.js", - "lineno": 1311, + "lineno": 1313, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90709,14 +90719,14 @@ "longname": "Phaser.GameObjects.Container#length", "scope": "instance", "kind": "member", - "___id": "T000002R009450", + "___id": "T000002R009431", "___s": true }, { "comment": "/**\r\n * Returns the first Game Object within the Container, or `null` if it is empty.\r\n *\r\n * You can move the cursor by calling `Container.next` and `Container.previous`.\r\n *\r\n * @name Phaser.GameObjects.Container#first\r\n * @type {?Phaser.GameObjects.GameObject}\r\n * @readonly\r\n * @since 3.4.0\r\n */", "meta": { "filename": "Container.js", - "lineno": 1328, + "lineno": 1330, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90740,14 +90750,14 @@ "longname": "Phaser.GameObjects.Container#first", "scope": "instance", "kind": "member", - "___id": "T000002R009453", + "___id": "T000002R009434", "___s": true }, { "comment": "/**\r\n * Returns the last Game Object within the Container, or `null` if it is empty.\r\n *\r\n * You can move the cursor by calling `Container.next` and `Container.previous`.\r\n *\r\n * @name Phaser.GameObjects.Container#last\r\n * @type {?Phaser.GameObjects.GameObject}\r\n * @readonly\r\n * @since 3.4.0\r\n */", "meta": { "filename": "Container.js", - "lineno": 1356, + "lineno": 1358, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90771,14 +90781,14 @@ "longname": "Phaser.GameObjects.Container#last", "scope": "instance", "kind": "member", - "___id": "T000002R009457", + "___id": "T000002R009438", "___s": true }, { "comment": "/**\r\n * Returns the next Game Object within the Container, or `null` if it is empty.\r\n *\r\n * You can move the cursor by calling `Container.next` and `Container.previous`.\r\n *\r\n * @name Phaser.GameObjects.Container#next\r\n * @type {?Phaser.GameObjects.GameObject}\r\n * @readonly\r\n * @since 3.4.0\r\n */", "meta": { "filename": "Container.js", - "lineno": 1384, + "lineno": 1386, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90802,14 +90812,14 @@ "longname": "Phaser.GameObjects.Container#next", "scope": "instance", "kind": "member", - "___id": "T000002R009461", + "___id": "T000002R009442", "___s": true }, { "comment": "/**\r\n * Returns the previous Game Object within the Container, or `null` if it is empty.\r\n *\r\n * You can move the cursor by calling `Container.next` and `Container.previous`.\r\n *\r\n * @name Phaser.GameObjects.Container#previous\r\n * @type {?Phaser.GameObjects.GameObject}\r\n * @readonly\r\n * @since 3.4.0\r\n */", "meta": { "filename": "Container.js", - "lineno": 1412, + "lineno": 1414, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90833,14 +90843,14 @@ "longname": "Phaser.GameObjects.Container#previous", "scope": "instance", "kind": "member", - "___id": "T000002R009464", + "___id": "T000002R009445", "___s": true }, { "comment": "/**\r\n * Internal destroy handler, called as part of the destroy process.\r\n *\r\n * @method Phaser.GameObjects.Container#preDestroy\r\n * @protected\r\n * @since 3.9.0\r\n */", "meta": { "filename": "Container.js", - "lineno": 1440, + "lineno": 1442, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90853,14 +90863,14 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#preDestroy", "scope": "instance", - "___id": "T000002R009467", + "___id": "T000002R009448", "___s": true }, { "comment": "/**\r\n * Internal handler, called when a child is destroyed.\r\n *\r\n * @method Phaser.GameObjects.Container#onChildDestroyed\r\n * @protected\r\n * @since 3.80.0\r\n */", "meta": { "filename": "Container.js", - "lineno": 1457, + "lineno": 1459, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\container", "code": {} @@ -90873,7 +90883,7 @@ "memberof": "Phaser.GameObjects.Container", "longname": "Phaser.GameObjects.Container#onChildDestroyed", "scope": "instance", - "___id": "T000002R009470", + "___id": "T000002R009451", "___s": true }, { @@ -90935,7 +90945,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#container", "scope": "instance", - "___id": "T000002R009493", + "___id": "T000002R009474", "___s": true }, { @@ -91033,7 +91043,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#container", "scope": "instance", - "___id": "T000002R009502", + "___id": "T000002R009483", "___s": true }, { @@ -91088,7 +91098,7 @@ "memberof": "Phaser.Types.GameObjects.Container", "longname": "Phaser.Types.GameObjects.Container.ContainerConfig", "scope": "static", - "___id": "T000002R009544", + "___id": "T000002R009525", "___s": true }, { @@ -91105,7 +91115,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Container", "scope": "static", - "___id": "T000002R009545", + "___id": "T000002R009526", "___s": true }, { @@ -91142,7 +91152,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.DisplayList", - "___id": "T000002R009552", + "___id": "T000002R009533", "___s": true }, { @@ -91171,7 +91181,7 @@ "longname": "Phaser.GameObjects.DisplayList#sortChildrenFlag", "scope": "instance", "kind": "member", - "___id": "T000002R009556", + "___id": "T000002R009537", "___s": true }, { @@ -91199,7 +91209,7 @@ "longname": "Phaser.GameObjects.DisplayList#scene", "scope": "instance", "kind": "member", - "___id": "T000002R009558", + "___id": "T000002R009539", "___s": true }, { @@ -91227,7 +91237,7 @@ "longname": "Phaser.GameObjects.DisplayList#systems", "scope": "instance", "kind": "member", - "___id": "T000002R009560", + "___id": "T000002R009541", "___s": true }, { @@ -91255,7 +91265,7 @@ "longname": "Phaser.GameObjects.DisplayList#events", "scope": "instance", "kind": "member", - "___id": "T000002R009562", + "___id": "T000002R009543", "___s": true }, { @@ -91274,7 +91284,7 @@ "memberof": "Phaser.GameObjects.DisplayList", "longname": "Phaser.GameObjects.DisplayList#queueDepthSort", "scope": "instance", - "___id": "T000002R009576", + "___id": "T000002R009557", "___s": true }, { @@ -91293,7 +91303,7 @@ "memberof": "Phaser.GameObjects.DisplayList", "longname": "Phaser.GameObjects.DisplayList#depthSort", "scope": "instance", - "___id": "T000002R009579", + "___id": "T000002R009560", "___s": true }, { @@ -91354,7 +91364,7 @@ "memberof": "Phaser.GameObjects.DisplayList", "longname": "Phaser.GameObjects.DisplayList#sortByDepth", "scope": "instance", - "___id": "T000002R009582", + "___id": "T000002R009563", "___s": true }, { @@ -91396,7 +91406,7 @@ "memberof": "Phaser.GameObjects.DisplayList", "longname": "Phaser.GameObjects.DisplayList#getChildren", "scope": "instance", - "___id": "T000002R009584", + "___id": "T000002R009565", "___s": true }, { @@ -91532,7 +91542,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.DOMElement", - "___id": "T000002R009605", + "___id": "T000002R009586", "___s": true }, { @@ -91560,7 +91570,7 @@ "longname": "Phaser.GameObjects.DOMElement#parent", "scope": "instance", "kind": "member", - "___id": "T000002R009610", + "___id": "T000002R009591", "___s": true }, { @@ -91588,7 +91598,7 @@ "longname": "Phaser.GameObjects.DOMElement#cache", "scope": "instance", "kind": "member", - "___id": "T000002R009612", + "___id": "T000002R009593", "___s": true }, { @@ -91616,7 +91626,7 @@ "longname": "Phaser.GameObjects.DOMElement#node", "scope": "instance", "kind": "member", - "___id": "T000002R009614", + "___id": "T000002R009595", "___s": true }, { @@ -91644,7 +91654,7 @@ "longname": "Phaser.GameObjects.DOMElement#transformOnly", "scope": "instance", "kind": "member", - "___id": "T000002R009616", + "___id": "T000002R009597", "___s": true }, { @@ -91672,7 +91682,7 @@ "longname": "Phaser.GameObjects.DOMElement#skewX", "scope": "instance", "kind": "member", - "___id": "T000002R009618", + "___id": "T000002R009599", "___s": true }, { @@ -91700,7 +91710,7 @@ "longname": "Phaser.GameObjects.DOMElement#skewY", "scope": "instance", "kind": "member", - "___id": "T000002R009620", + "___id": "T000002R009601", "___s": true }, { @@ -91728,7 +91738,7 @@ "longname": "Phaser.GameObjects.DOMElement#rotate3d", "scope": "instance", "kind": "member", - "___id": "T000002R009622", + "___id": "T000002R009603", "___s": true }, { @@ -91756,7 +91766,7 @@ "longname": "Phaser.GameObjects.DOMElement#rotate3dAngle", "scope": "instance", "kind": "member", - "___id": "T000002R009624", + "___id": "T000002R009605", "___s": true }, { @@ -91784,7 +91794,7 @@ "longname": "Phaser.GameObjects.DOMElement#pointerEvents", "scope": "instance", "kind": "member", - "___id": "T000002R009626", + "___id": "T000002R009607", "___s": true }, { @@ -91813,7 +91823,7 @@ "longname": "Phaser.GameObjects.DOMElement#width", "scope": "instance", "kind": "member", - "___id": "T000002R009628", + "___id": "T000002R009609", "___s": true }, { @@ -91842,7 +91852,7 @@ "longname": "Phaser.GameObjects.DOMElement#height", "scope": "instance", "kind": "member", - "___id": "T000002R009630", + "___id": "T000002R009611", "___s": true }, { @@ -91871,7 +91881,7 @@ "longname": "Phaser.GameObjects.DOMElement#displayWidth", "scope": "instance", "kind": "member", - "___id": "T000002R009632", + "___id": "T000002R009613", "___s": true }, { @@ -91900,7 +91910,7 @@ "longname": "Phaser.GameObjects.DOMElement#displayHeight", "scope": "instance", "kind": "member", - "___id": "T000002R009634", + "___id": "T000002R009615", "___s": true }, { @@ -91966,7 +91976,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#setSkew", "scope": "instance", - "___id": "T000002R009643", + "___id": "T000002R009624", "___s": true }, { @@ -92015,7 +92025,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#setPerspective", "scope": "instance", - "___id": "T000002R009649", + "___id": "T000002R009630", "___s": true }, { @@ -92043,7 +92053,7 @@ "longname": "Phaser.GameObjects.DOMElement#perspective", "scope": "instance", "kind": "member", - "___id": "T000002R009652", + "___id": "T000002R009633", "___s": true }, { @@ -92093,7 +92103,7 @@ "longname": "Phaser.GameObjects.DOMElement#addListener", "scope": "instance", "overrides": "Phaser.GameObjects.GameObject#addListener", - "___id": "T000002R009657", + "___id": "T000002R009638", "___s": true }, { @@ -92143,7 +92153,7 @@ "longname": "Phaser.GameObjects.DOMElement#removeListener", "scope": "instance", "overrides": "Phaser.GameObjects.GameObject#removeListener", - "___id": "T000002R009661", + "___id": "T000002R009642", "___s": true }, { @@ -92230,7 +92240,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#createElement", "scope": "instance", - "___id": "T000002R009667", + "___id": "T000002R009648", "___s": true }, { @@ -92327,7 +92337,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#setElement", "scope": "instance", - "___id": "T000002R009669", + "___id": "T000002R009650", "___s": true }, { @@ -92391,7 +92401,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#createFromCache", "scope": "instance", - "___id": "T000002R009684", + "___id": "T000002R009665", "___s": true }, { @@ -92455,7 +92465,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#createFromHTML", "scope": "instance", - "___id": "T000002R009687", + "___id": "T000002R009668", "___s": true }, { @@ -92489,7 +92499,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#removeElement", "scope": "instance", - "___id": "T000002R009697", + "___id": "T000002R009678", "___s": true }, { @@ -92523,7 +92533,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#updateSize", "scope": "instance", - "___id": "T000002R009700", + "___id": "T000002R009681", "___s": true }, { @@ -92586,7 +92596,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#getChildByProperty", "scope": "instance", - "___id": "T000002R009708", + "___id": "T000002R009689", "___s": true }, { @@ -92636,7 +92646,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#getChildByID", "scope": "instance", - "___id": "T000002R009712", + "___id": "T000002R009693", "___s": true }, { @@ -92686,7 +92696,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#getChildByName", "scope": "instance", - "___id": "T000002R009714", + "___id": "T000002R009695", "___s": true }, { @@ -92735,7 +92745,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#setClassName", "scope": "instance", - "___id": "T000002R009716", + "___id": "T000002R009697", "___s": true }, { @@ -92784,7 +92794,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#setText", "scope": "instance", - "___id": "T000002R009719", + "___id": "T000002R009700", "___s": true }, { @@ -92833,7 +92843,7 @@ "memberof": "Phaser.GameObjects.DOMElement", "longname": "Phaser.GameObjects.DOMElement#setHTML", "scope": "instance", - "___id": "T000002R009722", + "___id": "T000002R009703", "___s": true }, { @@ -92867,7 +92877,7 @@ "longname": "Phaser.GameObjects.DOMElement#willRender", "scope": "instance", "overrides": "Phaser.GameObjects.GameObject#willRender", - "___id": "T000002R009730", + "___id": "T000002R009711", "___s": true }, { @@ -92990,7 +93000,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#dom", "scope": "instance", - "___id": "T000002R009776", + "___id": "T000002R009757", "___s": true }, { @@ -93046,7 +93056,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:ADDED_TO_SCENE", "scope": "instance", - "___id": "T000002R009786", + "___id": "T000002R009767", "___s": true }, { @@ -93102,7 +93112,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:DESTROY", "scope": "instance", - "___id": "T000002R009788", + "___id": "T000002R009769", "___s": true }, { @@ -93119,7 +93129,7 @@ "memberof": "Phaser.GameObjects", "longname": "Phaser.GameObjects.Events", "scope": "static", - "___id": "T000002R009790", + "___id": "T000002R009771", "___s": true }, { @@ -93175,7 +93185,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:REMOVED_FROM_SCENE", "scope": "instance", - "___id": "T000002R009810", + "___id": "T000002R009791", "___s": true }, { @@ -93218,7 +93228,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_COMPLETE", "scope": "instance", - "___id": "T000002R009812", + "___id": "T000002R009793", "___s": true }, { @@ -93287,7 +93297,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_CREATED", "scope": "instance", - "___id": "T000002R009814", + "___id": "T000002R009795", "___s": true }, { @@ -93353,7 +93363,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_ERROR", "scope": "instance", - "___id": "T000002R009816", + "___id": "T000002R009797", "___s": true }, { @@ -93396,7 +93406,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_LOCKED", "scope": "instance", - "___id": "T000002R009818", + "___id": "T000002R009799", "___s": true }, { @@ -93439,7 +93449,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_LOOP", "scope": "instance", - "___id": "T000002R009820", + "___id": "T000002R009801", "___s": true }, { @@ -93505,7 +93515,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_METADATA", "scope": "instance", - "___id": "T000002R009822", + "___id": "T000002R009803", "___s": true }, { @@ -93548,7 +93558,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_PLAYING", "scope": "instance", - "___id": "T000002R009824", + "___id": "T000002R009805", "___s": true }, { @@ -93591,7 +93601,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_PLAY", "scope": "instance", - "___id": "T000002R009826", + "___id": "T000002R009807", "___s": true }, { @@ -93634,7 +93644,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_SEEKED", "scope": "instance", - "___id": "T000002R009828", + "___id": "T000002R009809", "___s": true }, { @@ -93677,7 +93687,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_SEEKING", "scope": "instance", - "___id": "T000002R009830", + "___id": "T000002R009811", "___s": true }, { @@ -93733,7 +93743,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_STALLED", "scope": "instance", - "___id": "T000002R009832", + "___id": "T000002R009813", "___s": true }, { @@ -93776,7 +93786,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_STOP", "scope": "instance", - "___id": "T000002R009834", + "___id": "T000002R009815", "___s": true }, { @@ -93832,7 +93842,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_TEXTURE", "scope": "instance", - "___id": "T000002R009836", + "___id": "T000002R009817", "___s": true }, { @@ -93875,7 +93885,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_UNLOCKED", "scope": "instance", - "___id": "T000002R009838", + "___id": "T000002R009819", "___s": true }, { @@ -93941,7 +93951,7 @@ "memberof": "Phaser.GameObjects.Events", "longname": "Phaser.GameObjects.Events#event:VIDEO_UNSUPPORTED", "scope": "instance", - "___id": "T000002R009840", + "___id": "T000002R009821", "___s": true }, { @@ -93989,7 +93999,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Extern", - "___id": "T000002R009846", + "___id": "T000002R009827", "___s": true }, { @@ -94022,7 +94032,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#extern", "scope": "instance", - "___id": "T000002R009858", + "___id": "T000002R009839", "___s": true }, { @@ -94072,7 +94082,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.GameObject", - "___id": "T000002R009879", + "___id": "T000002R009860", "___s": true }, { @@ -94100,7 +94110,7 @@ "longname": "Phaser.GameObjects.GameObject#scene", "scope": "instance", "kind": "member", - "___id": "T000002R009883", + "___id": "T000002R009864", "___s": true }, { @@ -94139,7 +94149,7 @@ "longname": "Phaser.GameObjects.GameObject#displayList", "scope": "instance", "kind": "member", - "___id": "T000002R009885", + "___id": "T000002R009866", "___s": true }, { @@ -94167,7 +94177,7 @@ "longname": "Phaser.GameObjects.GameObject#type", "scope": "instance", "kind": "member", - "___id": "T000002R009887", + "___id": "T000002R009868", "___s": true }, { @@ -94205,7 +94215,7 @@ "longname": "Phaser.GameObjects.GameObject#state", "scope": "instance", "kind": "member", - "___id": "T000002R009889", + "___id": "T000002R009870", "___s": true }, { @@ -94233,7 +94243,7 @@ "longname": "Phaser.GameObjects.GameObject#parentContainer", "scope": "instance", "kind": "member", - "___id": "T000002R009891", + "___id": "T000002R009872", "___s": true }, { @@ -94262,7 +94272,7 @@ "longname": "Phaser.GameObjects.GameObject#name", "scope": "instance", "kind": "member", - "___id": "T000002R009893", + "___id": "T000002R009874", "___s": true }, { @@ -94291,7 +94301,7 @@ "longname": "Phaser.GameObjects.GameObject#active", "scope": "instance", "kind": "member", - "___id": "T000002R009895", + "___id": "T000002R009876", "___s": true }, { @@ -94320,7 +94330,7 @@ "longname": "Phaser.GameObjects.GameObject#tabIndex", "scope": "instance", "kind": "member", - "___id": "T000002R009897", + "___id": "T000002R009878", "___s": true }, { @@ -94349,7 +94359,7 @@ "longname": "Phaser.GameObjects.GameObject#data", "scope": "instance", "kind": "member", - "___id": "T000002R009899", + "___id": "T000002R009880", "___s": true }, { @@ -94378,7 +94388,7 @@ "longname": "Phaser.GameObjects.GameObject#renderFlags", "scope": "instance", "kind": "member", - "___id": "T000002R009901", + "___id": "T000002R009882", "___s": true }, { @@ -94410,7 +94420,7 @@ "longname": "Phaser.GameObjects.GameObject#cameraFilter", "scope": "instance", "kind": "member", - "___id": "T000002R009903", + "___id": "T000002R009884", "___s": true }, { @@ -94441,7 +94451,7 @@ "longname": "Phaser.GameObjects.GameObject#input", "scope": "instance", "kind": "member", - "___id": "T000002R009905", + "___id": "T000002R009886", "___s": true }, { @@ -94487,7 +94497,7 @@ "longname": "Phaser.GameObjects.GameObject#body", "scope": "instance", "kind": "member", - "___id": "T000002R009907", + "___id": "T000002R009888", "___s": true }, { @@ -94516,7 +94526,7 @@ "longname": "Phaser.GameObjects.GameObject#ignoreDestroy", "scope": "instance", "kind": "member", - "___id": "T000002R009909", + "___id": "T000002R009890", "___s": true }, { @@ -94565,7 +94575,7 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#setActive", "scope": "instance", - "___id": "T000002R009911", + "___id": "T000002R009892", "___s": true }, { @@ -94614,7 +94624,7 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#setName", "scope": "instance", - "___id": "T000002R009914", + "___id": "T000002R009895", "___s": true }, { @@ -94673,7 +94683,7 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#setState", "scope": "instance", - "___id": "T000002R009917", + "___id": "T000002R009898", "___s": true }, { @@ -94710,7 +94720,7 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#setDataEnabled", "scope": "instance", - "___id": "T000002R009920", + "___id": "T000002R009901", "___s": true }, { @@ -94796,7 +94806,7 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#setData", "scope": "instance", - "___id": "T000002R009923", + "___id": "T000002R009904", "___s": true }, { @@ -94860,7 +94870,7 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#incData", "scope": "instance", - "___id": "T000002R009926", + "___id": "T000002R009907", "___s": true }, { @@ -94909,7 +94919,7 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#toggleData", "scope": "instance", - "___id": "T000002R009929", + "___id": "T000002R009910", "___s": true }, { @@ -94975,7 +94985,7 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#getData", "scope": "instance", - "___id": "T000002R009932", + "___id": "T000002R009913", "___s": true }, { @@ -95069,11 +95079,11 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#setInteractive", "scope": "instance", - "___id": "T000002R009935", + "___id": "T000002R009916", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -95085,6 +95095,23 @@ "kind": "function", "name": "disableInteractive", "since": "3.7.0", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "returns": [ { "type": { @@ -95103,14 +95130,14 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#disableInteractive", "scope": "instance", - "___id": "T000002R009937", + "___id": "T000002R009918", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95119,6 +95146,23 @@ "kind": "function", "name": "removeInteractive", "since": "3.7.0", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "returns": [ { "type": { @@ -95137,14 +95181,14 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#removeInteractive", "scope": "instance", - "___id": "T000002R009939", + "___id": "T000002R009921", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95156,14 +95200,14 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#addedToScene", "scope": "instance", - "___id": "T000002R009942", + "___id": "T000002R009925", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95175,14 +95219,14 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#removedFromScene", "scope": "instance", - "___id": "T000002R009944", + "___id": "T000002R009927", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95211,14 +95255,14 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#update", "scope": "instance", - "___id": "T000002R009946", + "___id": "T000002R009929", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95244,14 +95288,14 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#toJSON", "scope": "instance", - "___id": "T000002R009948", + "___id": "T000002R009931", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95292,14 +95336,14 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#willRender", "scope": "instance", - "___id": "T000002R009950", + "___id": "T000002R009933", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95334,14 +95378,14 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#getIndexList", "scope": "instance", - "___id": "T000002R009953", + "___id": "T000002R009936", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95398,14 +95442,14 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#addToDisplayList", "scope": "instance", - "___id": "T000002R009960", + "___id": "T000002R009943", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95432,14 +95476,14 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#addToUpdateList", "scope": "instance", - "___id": "T000002R009964", + "___id": "T000002R009947", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95470,14 +95514,14 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#removeFromDisplayList", "scope": "instance", - "___id": "T000002R009966", + "___id": "T000002R009949", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95504,14 +95548,14 @@ "memberof": "Phaser.GameObjects.GameObject", "longname": "Phaser.GameObjects.GameObject#removeFromUpdateList", "scope": "instance", - "___id": "T000002R009970", + "___id": "T000002R009953", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95544,14 +95588,14 @@ "longname": "Phaser.GameObjects.GameObject#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R009972", + "___id": "T000002R009955", "___s": true }, { "comment": "/**\r\n * The bitmask that `GameObject.renderFlags` is compared against to determine if the Game Object will render or not.\r\n *\r\n * @constant {number} RENDER_MASK\r\n * @memberof Phaser.GameObjects.GameObject\r\n * @default\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 900, + "lineno": 913, "columnno": 0, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -95571,7 +95615,7 @@ "memberof": "Phaser.GameObjects.GameObject", "scope": "static", "longname": "Phaser.GameObjects.GameObject.RENDER_MASK", - "___id": "T000002R009984", + "___id": "T000002R009967", "___s": true }, { @@ -95605,7 +95649,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.GameObjectCreator", - "___id": "T000002R009990", + "___id": "T000002R009973", "___s": true }, { @@ -95634,7 +95678,7 @@ "longname": "Phaser.GameObjects.GameObjectCreator#scene", "scope": "instance", "kind": "member", - "___id": "T000002R009993", + "___id": "T000002R009976", "___s": true }, { @@ -95663,7 +95707,7 @@ "longname": "Phaser.GameObjects.GameObjectCreator#systems", "scope": "instance", "kind": "member", - "___id": "T000002R009995", + "___id": "T000002R009978", "___s": true }, { @@ -95692,7 +95736,7 @@ "longname": "Phaser.GameObjects.GameObjectCreator#events", "scope": "instance", "kind": "member", - "___id": "T000002R009997", + "___id": "T000002R009980", "___s": true }, { @@ -95721,7 +95765,7 @@ "longname": "Phaser.GameObjects.GameObjectCreator#displayList", "scope": "instance", "kind": "member", - "___id": "T000002R009999", + "___id": "T000002R009982", "___s": true }, { @@ -95750,7 +95794,7 @@ "longname": "Phaser.GameObjects.GameObjectCreator#updateList", "scope": "instance", "kind": "member", - "___id": "T000002R010001", + "___id": "T000002R009984", "___s": true }, { @@ -95797,7 +95841,7 @@ ], "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator.register", - "___id": "T000002R010018", + "___id": "T000002R010001", "___s": true }, { @@ -95831,7 +95875,7 @@ ], "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator.remove", - "___id": "T000002R010021", + "___id": "T000002R010004", "___s": true }, { @@ -95865,7 +95909,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.GameObjectFactory", - "___id": "T000002R010027", + "___id": "T000002R010010", "___s": true }, { @@ -95894,7 +95938,7 @@ "longname": "Phaser.GameObjects.GameObjectFactory#scene", "scope": "instance", "kind": "member", - "___id": "T000002R010030", + "___id": "T000002R010013", "___s": true }, { @@ -95923,7 +95967,7 @@ "longname": "Phaser.GameObjects.GameObjectFactory#systems", "scope": "instance", "kind": "member", - "___id": "T000002R010032", + "___id": "T000002R010015", "___s": true }, { @@ -95952,7 +95996,7 @@ "longname": "Phaser.GameObjects.GameObjectFactory#events", "scope": "instance", "kind": "member", - "___id": "T000002R010034", + "___id": "T000002R010017", "___s": true }, { @@ -95981,7 +96025,7 @@ "longname": "Phaser.GameObjects.GameObjectFactory#displayList", "scope": "instance", "kind": "member", - "___id": "T000002R010036", + "___id": "T000002R010019", "___s": true }, { @@ -96010,7 +96054,7 @@ "longname": "Phaser.GameObjects.GameObjectFactory#updateList", "scope": "instance", "kind": "member", - "___id": "T000002R010038", + "___id": "T000002R010021", "___s": true }, { @@ -96081,7 +96125,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#existing", "scope": "instance", - "___id": "T000002R010046", + "___id": "T000002R010029", "___s": true }, { @@ -96128,7 +96172,7 @@ ], "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory.register", - "___id": "T000002R010057", + "___id": "T000002R010040", "___s": true }, { @@ -96162,7 +96206,7 @@ ], "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory.remove", - "___id": "T000002R010060", + "___id": "T000002R010043", "___s": true }, { @@ -96237,7 +96281,7 @@ ], "longname": "Phaser.GameObjects.GetCalcMatrix", "scope": "static", - "___id": "T000002R010071", + "___id": "T000002R010054", "___s": true }, { @@ -96297,7 +96341,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Graphics", - "___id": "T000002R010111", + "___id": "T000002R010094", "___s": true }, { @@ -96326,7 +96370,7 @@ "longname": "Phaser.GameObjects.Graphics#displayOriginX", "scope": "instance", "kind": "member", - "___id": "T000002R010118", + "___id": "T000002R010101", "___s": true }, { @@ -96355,7 +96399,7 @@ "longname": "Phaser.GameObjects.Graphics#displayOriginY", "scope": "instance", "kind": "member", - "___id": "T000002R010120", + "___id": "T000002R010103", "___s": true }, { @@ -96384,7 +96428,7 @@ "longname": "Phaser.GameObjects.Graphics#commandBuffer", "scope": "instance", "kind": "member", - "___id": "T000002R010122", + "___id": "T000002R010105", "___s": true }, { @@ -96414,7 +96458,7 @@ "longname": "Phaser.GameObjects.Graphics#defaultFillColor", "scope": "instance", "kind": "member", - "___id": "T000002R010124", + "___id": "T000002R010107", "___s": true }, { @@ -96444,7 +96488,7 @@ "longname": "Phaser.GameObjects.Graphics#defaultFillAlpha", "scope": "instance", "kind": "member", - "___id": "T000002R010126", + "___id": "T000002R010109", "___s": true }, { @@ -96474,7 +96518,7 @@ "longname": "Phaser.GameObjects.Graphics#defaultStrokeWidth", "scope": "instance", "kind": "member", - "___id": "T000002R010128", + "___id": "T000002R010111", "___s": true }, { @@ -96504,7 +96548,7 @@ "longname": "Phaser.GameObjects.Graphics#defaultStrokeColor", "scope": "instance", "kind": "member", - "___id": "T000002R010130", + "___id": "T000002R010113", "___s": true }, { @@ -96534,7 +96578,7 @@ "longname": "Phaser.GameObjects.Graphics#defaultStrokeAlpha", "scope": "instance", "kind": "member", - "___id": "T000002R010132", + "___id": "T000002R010115", "___s": true }, { @@ -96583,7 +96627,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#setDefaultStyles", "scope": "instance", - "___id": "T000002R010136", + "___id": "T000002R010119", "___s": true }, { @@ -96660,7 +96704,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#lineStyle", "scope": "instance", - "___id": "T000002R010143", + "___id": "T000002R010126", "___s": true }, { @@ -96724,7 +96768,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillStyle", "scope": "instance", - "___id": "T000002R010147", + "___id": "T000002R010130", "___s": true }, { @@ -96879,7 +96923,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillGradientStyle", "scope": "instance", - "___id": "T000002R010150", + "___id": "T000002R010133", "___s": true }, { @@ -97002,7 +97046,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#lineGradientStyle", "scope": "instance", - "___id": "T000002R010156", + "___id": "T000002R010139", "___s": true }, { @@ -97036,7 +97080,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#beginPath", "scope": "instance", - "___id": "T000002R010159", + "___id": "T000002R010142", "___s": true }, { @@ -97070,7 +97114,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#closePath", "scope": "instance", - "___id": "T000002R010161", + "___id": "T000002R010144", "___s": true }, { @@ -97104,7 +97148,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillPath", "scope": "instance", - "___id": "T000002R010163", + "___id": "T000002R010146", "___s": true }, { @@ -97138,7 +97182,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fill", "scope": "instance", - "___id": "T000002R010165", + "___id": "T000002R010148", "___s": true }, { @@ -97172,7 +97216,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#strokePath", "scope": "instance", - "___id": "T000002R010167", + "___id": "T000002R010150", "___s": true }, { @@ -97206,7 +97250,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#stroke", "scope": "instance", - "___id": "T000002R010169", + "___id": "T000002R010152", "___s": true }, { @@ -97255,7 +97299,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillCircleShape", "scope": "instance", - "___id": "T000002R010171", + "___id": "T000002R010154", "___s": true }, { @@ -97304,7 +97348,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#strokeCircleShape", "scope": "instance", - "___id": "T000002R010173", + "___id": "T000002R010156", "___s": true }, { @@ -97379,7 +97423,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillCircle", "scope": "instance", - "___id": "T000002R010175", + "___id": "T000002R010158", "___s": true }, { @@ -97454,7 +97498,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#strokeCircle", "scope": "instance", - "___id": "T000002R010177", + "___id": "T000002R010160", "___s": true }, { @@ -97503,7 +97547,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillRectShape", "scope": "instance", - "___id": "T000002R010179", + "___id": "T000002R010162", "___s": true }, { @@ -97552,7 +97596,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#strokeRectShape", "scope": "instance", - "___id": "T000002R010181", + "___id": "T000002R010164", "___s": true }, { @@ -97640,7 +97684,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillRect", "scope": "instance", - "___id": "T000002R010183", + "___id": "T000002R010166", "___s": true }, { @@ -97728,7 +97772,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#strokeRect", "scope": "instance", - "___id": "T000002R010185", + "___id": "T000002R010168", "___s": true }, { @@ -97841,7 +97885,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillRoundedRect", "scope": "instance", - "___id": "T000002R010190", + "___id": "T000002R010173", "___s": true }, { @@ -97954,7 +97998,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#strokeRoundedRect", "scope": "instance", - "___id": "T000002R010209", + "___id": "T000002R010192", "___s": true }, { @@ -98033,7 +98077,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillPointShape", "scope": "instance", - "___id": "T000002R010229", + "___id": "T000002R010212", "___s": true }, { @@ -98110,7 +98154,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillPoint", "scope": "instance", - "___id": "T000002R010231", + "___id": "T000002R010214", "___s": true }, { @@ -98159,7 +98203,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillTriangleShape", "scope": "instance", - "___id": "T000002R010236", + "___id": "T000002R010219", "___s": true }, { @@ -98208,7 +98252,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#strokeTriangleShape", "scope": "instance", - "___id": "T000002R010238", + "___id": "T000002R010221", "___s": true }, { @@ -98322,7 +98366,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillTriangle", "scope": "instance", - "___id": "T000002R010240", + "___id": "T000002R010223", "___s": true }, { @@ -98436,7 +98480,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#strokeTriangle", "scope": "instance", - "___id": "T000002R010242", + "___id": "T000002R010225", "___s": true }, { @@ -98485,7 +98529,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#strokeLineShape", "scope": "instance", - "___id": "T000002R010244", + "___id": "T000002R010227", "___s": true }, { @@ -98573,7 +98617,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#lineBetween", "scope": "instance", - "___id": "T000002R010246", + "___id": "T000002R010229", "___s": true }, { @@ -98635,7 +98679,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#lineTo", "scope": "instance", - "___id": "T000002R010248", + "___id": "T000002R010231", "___s": true }, { @@ -98697,7 +98741,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#moveTo", "scope": "instance", - "___id": "T000002R010250", + "___id": "T000002R010233", "___s": true }, { @@ -98809,7 +98853,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#strokePoints", "scope": "instance", - "___id": "T000002R010252", + "___id": "T000002R010235", "___s": true }, { @@ -98921,7 +98965,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillPoints", "scope": "instance", - "___id": "T000002R010258", + "___id": "T000002R010241", "___s": true }, { @@ -98985,7 +99029,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#strokeEllipseShape", "scope": "instance", - "___id": "T000002R010264", + "___id": "T000002R010247", "___s": true }, { @@ -99088,7 +99132,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#strokeEllipse", "scope": "instance", - "___id": "T000002R010268", + "___id": "T000002R010251", "___s": true }, { @@ -99152,7 +99196,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillEllipseShape", "scope": "instance", - "___id": "T000002R010273", + "___id": "T000002R010256", "___s": true }, { @@ -99255,7 +99299,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#fillEllipse", "scope": "instance", - "___id": "T000002R010277", + "___id": "T000002R010260", "___s": true }, { @@ -99386,7 +99430,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#arc", "scope": "instance", - "___id": "T000002R010282", + "___id": "T000002R010265", "___s": true }, { @@ -99517,7 +99561,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#slice", "scope": "instance", - "___id": "T000002R010286", + "___id": "T000002R010269", "___s": true }, { @@ -99551,7 +99595,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#save", "scope": "instance", - "___id": "T000002R010290", + "___id": "T000002R010273", "___s": true }, { @@ -99585,7 +99629,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#restore", "scope": "instance", - "___id": "T000002R010292", + "___id": "T000002R010275", "___s": true }, { @@ -99647,7 +99691,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#translateCanvas", "scope": "instance", - "___id": "T000002R010294", + "___id": "T000002R010277", "___s": true }, { @@ -99709,7 +99753,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#scaleCanvas", "scope": "instance", - "___id": "T000002R010296", + "___id": "T000002R010279", "___s": true }, { @@ -99758,7 +99802,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#rotateCanvas", "scope": "instance", - "___id": "T000002R010298", + "___id": "T000002R010281", "___s": true }, { @@ -99792,7 +99836,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#clear", "scope": "instance", - "___id": "T000002R010300", + "___id": "T000002R010283", "___s": true }, { @@ -99879,7 +99923,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#generateTexture", "scope": "instance", - "___id": "T000002R010303", + "___id": "T000002R010286", "___s": true }, { @@ -99899,7 +99943,7 @@ "memberof": "Phaser.GameObjects.Graphics", "longname": "Phaser.GameObjects.Graphics#preDestroy", "scope": "instance", - "___id": "T000002R010321", + "___id": "T000002R010304", "___s": true }, { @@ -99927,7 +99971,7 @@ "longname": "Phaser.GameObjects.Graphics.TargetCamera", "scope": "static", "kind": "member", - "___id": "T000002R010324", + "___id": "T000002R010307", "___s": true }, { @@ -99990,7 +100034,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#graphics", "scope": "instance", - "___id": "T000002R010376", + "___id": "T000002R010359", "___s": true }, { @@ -100039,7 +100083,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#graphics", "scope": "instance", - "___id": "T000002R010382", + "___id": "T000002R010365", "___s": true }, { @@ -100097,7 +100141,7 @@ "memberof": "Phaser.Types.GameObjects.Graphics", "longname": "Phaser.Types.GameObjects.Graphics.FillStyle", "scope": "static", - "___id": "T000002R010493", + "___id": "T000002R010476", "___s": true }, { @@ -100114,7 +100158,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Graphics", "scope": "static", - "___id": "T000002R010494", + "___id": "T000002R010477", "___s": true }, { @@ -100186,7 +100230,7 @@ "memberof": "Phaser.Types.GameObjects.Graphics", "longname": "Phaser.Types.GameObjects.Graphics.LineStyle", "scope": "static", - "___id": "T000002R010495", + "___id": "T000002R010478", "___s": true }, { @@ -100247,7 +100291,7 @@ "memberof": "Phaser.Types.GameObjects.Graphics", "longname": "Phaser.Types.GameObjects.Graphics.Options", "scope": "static", - "___id": "T000002R010496", + "___id": "T000002R010479", "___s": true }, { @@ -100336,7 +100380,7 @@ "memberof": "Phaser.Types.GameObjects.Graphics", "longname": "Phaser.Types.GameObjects.Graphics.RoundedRectRadius", "scope": "static", - "___id": "T000002R010497", + "___id": "T000002R010480", "___s": true }, { @@ -100394,7 +100438,7 @@ "memberof": "Phaser.Types.GameObjects.Graphics", "longname": "Phaser.Types.GameObjects.Graphics.Styles", "scope": "static", - "___id": "T000002R010498", + "___id": "T000002R010481", "___s": true }, { @@ -100497,7 +100541,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Group", - "___id": "T000002R010511", + "___id": "T000002R010494", "___s": true }, { @@ -100525,7 +100569,7 @@ "longname": "Phaser.GameObjects.Group#scene", "scope": "instance", "kind": "member", - "___id": "T000002R010520", + "___id": "T000002R010503", "___s": true }, { @@ -100562,7 +100606,7 @@ "longname": "Phaser.GameObjects.Group#children", "scope": "instance", "kind": "member", - "___id": "T000002R010522", + "___id": "T000002R010505", "___s": true }, { @@ -100591,7 +100635,7 @@ "longname": "Phaser.GameObjects.Group#isParent", "scope": "instance", "kind": "member", - "___id": "T000002R010524", + "___id": "T000002R010507", "___s": true }, { @@ -100620,7 +100664,7 @@ "longname": "Phaser.GameObjects.Group#type", "scope": "instance", "kind": "member", - "___id": "T000002R010526", + "___id": "T000002R010509", "___s": true }, { @@ -100652,7 +100696,7 @@ "longname": "Phaser.GameObjects.Group#classType", "scope": "instance", "kind": "member", - "___id": "T000002R010528", + "___id": "T000002R010511", "___s": true }, { @@ -100681,7 +100725,7 @@ "longname": "Phaser.GameObjects.Group#name", "scope": "instance", "kind": "member", - "___id": "T000002R010530", + "___id": "T000002R010513", "___s": true }, { @@ -100709,7 +100753,7 @@ "longname": "Phaser.GameObjects.Group#active", "scope": "instance", "kind": "member", - "___id": "T000002R010532", + "___id": "T000002R010515", "___s": true }, { @@ -100738,7 +100782,7 @@ "longname": "Phaser.GameObjects.Group#maxSize", "scope": "instance", "kind": "member", - "___id": "T000002R010534", + "___id": "T000002R010517", "___s": true }, { @@ -100766,7 +100810,7 @@ "longname": "Phaser.GameObjects.Group#defaultKey", "scope": "instance", "kind": "member", - "___id": "T000002R010536", + "___id": "T000002R010519", "___s": true }, { @@ -100804,7 +100848,7 @@ "longname": "Phaser.GameObjects.Group#defaultFrame", "scope": "instance", "kind": "member", - "___id": "T000002R010538", + "___id": "T000002R010521", "___s": true }, { @@ -100836,7 +100880,7 @@ "longname": "Phaser.GameObjects.Group#runChildUpdate", "scope": "instance", "kind": "member", - "___id": "T000002R010540", + "___id": "T000002R010523", "___s": true }, { @@ -100866,7 +100910,7 @@ "longname": "Phaser.GameObjects.Group#createCallback", "scope": "instance", "kind": "member", - "___id": "T000002R010542", + "___id": "T000002R010525", "___s": true }, { @@ -100896,7 +100940,7 @@ "longname": "Phaser.GameObjects.Group#removeCallback", "scope": "instance", "kind": "member", - "___id": "T000002R010544", + "___id": "T000002R010527", "___s": true }, { @@ -100926,7 +100970,7 @@ "longname": "Phaser.GameObjects.Group#createMultipleCallback", "scope": "instance", "kind": "member", - "___id": "T000002R010546", + "___id": "T000002R010529", "___s": true }, { @@ -101061,7 +101105,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#create", "scope": "instance", - "___id": "T000002R010554", + "___id": "T000002R010537", "___s": true }, { @@ -101137,7 +101181,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#createMultiple", "scope": "instance", - "___id": "T000002R010564", + "___id": "T000002R010547", "___s": true }, { @@ -101194,7 +101238,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#createFromConfig", "scope": "instance", - "___id": "T000002R010571", + "___id": "T000002R010554", "___s": true }, { @@ -101241,7 +101285,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#preUpdate", "scope": "instance", - "___id": "T000002R010626", + "___id": "T000002R010609", "___s": true }, { @@ -101305,7 +101349,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#add", "scope": "instance", - "___id": "T000002R010631", + "___id": "T000002R010614", "___s": true }, { @@ -101378,7 +101422,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#addMultiple", "scope": "instance", - "___id": "T000002R010634", + "___id": "T000002R010617", "___s": true }, { @@ -101457,7 +101501,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#remove", "scope": "instance", - "___id": "T000002R010638", + "___id": "T000002R010621", "___s": true }, { @@ -101523,7 +101567,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#clear", "scope": "instance", - "___id": "T000002R010642", + "___id": "T000002R010625", "___s": true }, { @@ -101571,7 +101615,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#contains", "scope": "instance", - "___id": "T000002R010649", + "___id": "T000002R010632", "___s": true }, { @@ -101613,7 +101657,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#getChildren", "scope": "instance", - "___id": "T000002R010651", + "___id": "T000002R010634", "___s": true }, { @@ -101645,7 +101689,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#getLength", "scope": "instance", - "___id": "T000002R010653", + "___id": "T000002R010636", "___s": true }, { @@ -101744,7 +101788,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#getMatching", "scope": "instance", - "___id": "T000002R010655", + "___id": "T000002R010638", "___s": true }, { @@ -101894,7 +101938,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#getFirst", "scope": "instance", - "___id": "T000002R010657", + "___id": "T000002R010640", "___s": true }, { @@ -102057,7 +102101,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#getFirstNth", "scope": "instance", - "___id": "T000002R010659", + "___id": "T000002R010642", "___s": true }, { @@ -102207,7 +102251,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#getLast", "scope": "instance", - "___id": "T000002R010661", + "___id": "T000002R010644", "___s": true }, { @@ -102370,7 +102414,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#getLastNth", "scope": "instance", - "___id": "T000002R010663", + "___id": "T000002R010646", "___s": true }, { @@ -102490,7 +102534,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#get", "scope": "instance", - "___id": "T000002R010681", + "___id": "T000002R010664", "___s": true }, { @@ -102623,7 +102667,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#getFirstAlive", "scope": "instance", - "___id": "T000002R010683", + "___id": "T000002R010666", "___s": true }, { @@ -102756,7 +102800,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#getFirstDead", "scope": "instance", - "___id": "T000002R010685", + "___id": "T000002R010668", "___s": true }, { @@ -102820,7 +102864,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#playAnimation", "scope": "instance", - "___id": "T000002R010687", + "___id": "T000002R010670", "___s": true }, { @@ -102853,7 +102897,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#isFull", "scope": "instance", - "___id": "T000002R010689", + "___id": "T000002R010672", "___s": true }, { @@ -102903,7 +102947,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#countActive", "scope": "instance", - "___id": "T000002R010691", + "___id": "T000002R010674", "___s": true }, { @@ -102936,7 +102980,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#getTotalUsed", "scope": "instance", - "___id": "T000002R010696", + "___id": "T000002R010679", "___s": true }, { @@ -102969,7 +103013,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#getTotalFree", "scope": "instance", - "___id": "T000002R010698", + "___id": "T000002R010681", "___s": true }, { @@ -103018,7 +103062,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#setActive", "scope": "instance", - "___id": "T000002R010702", + "___id": "T000002R010685", "___s": true }, { @@ -103067,7 +103111,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#setName", "scope": "instance", - "___id": "T000002R010705", + "___id": "T000002R010688", "___s": true }, { @@ -103174,7 +103218,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#propertyValueSet", "scope": "instance", - "___id": "T000002R010708", + "___id": "T000002R010691", "___s": true }, { @@ -103281,7 +103325,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#propertyValueInc", "scope": "instance", - "___id": "T000002R010710", + "___id": "T000002R010693", "___s": true }, { @@ -103345,7 +103389,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#setX", "scope": "instance", - "___id": "T000002R010712", + "___id": "T000002R010695", "___s": true }, { @@ -103409,7 +103453,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#setY", "scope": "instance", - "___id": "T000002R010714", + "___id": "T000002R010697", "___s": true }, { @@ -103503,7 +103547,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#setXY", "scope": "instance", - "___id": "T000002R010716", + "___id": "T000002R010699", "___s": true }, { @@ -103567,7 +103611,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#incX", "scope": "instance", - "___id": "T000002R010718", + "___id": "T000002R010701", "___s": true }, { @@ -103631,7 +103675,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#incY", "scope": "instance", - "___id": "T000002R010720", + "___id": "T000002R010703", "___s": true }, { @@ -103725,7 +103769,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#incXY", "scope": "instance", - "___id": "T000002R010722", + "___id": "T000002R010705", "___s": true }, { @@ -103802,7 +103846,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#shiftPosition", "scope": "instance", - "___id": "T000002R010724", + "___id": "T000002R010707", "___s": true }, { @@ -103866,7 +103910,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#angle", "scope": "instance", - "___id": "T000002R010726", + "___id": "T000002R010709", "___s": true }, { @@ -103930,7 +103974,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#rotate", "scope": "instance", - "___id": "T000002R010728", + "___id": "T000002R010711", "___s": true }, { @@ -103992,7 +104036,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#rotateAround", "scope": "instance", - "___id": "T000002R010730", + "___id": "T000002R010713", "___s": true }, { @@ -104067,7 +104111,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#rotateAroundDistance", "scope": "instance", - "___id": "T000002R010732", + "___id": "T000002R010715", "___s": true }, { @@ -104131,7 +104175,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#setAlpha", "scope": "instance", - "___id": "T000002R010734", + "___id": "T000002R010717", "___s": true }, { @@ -104222,7 +104266,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#setTint", "scope": "instance", - "___id": "T000002R010736", + "___id": "T000002R010719", "___s": true }, { @@ -104315,7 +104359,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#setOrigin", "scope": "instance", - "___id": "T000002R010738", + "___id": "T000002R010721", "___s": true }, { @@ -104379,7 +104423,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#scaleX", "scope": "instance", - "___id": "T000002R010740", + "___id": "T000002R010723", "___s": true }, { @@ -104443,7 +104487,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#scaleY", "scope": "instance", - "___id": "T000002R010742", + "___id": "T000002R010725", "___s": true }, { @@ -104536,7 +104580,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#scaleXY", "scope": "instance", - "___id": "T000002R010744", + "___id": "T000002R010727", "___s": true }, { @@ -104600,7 +104644,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#setDepth", "scope": "instance", - "___id": "T000002R010746", + "___id": "T000002R010729", "___s": true }, { @@ -104649,7 +104693,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#setBlendMode", "scope": "instance", - "___id": "T000002R010748", + "___id": "T000002R010731", "___s": true }, { @@ -104710,7 +104754,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#setHitArea", "scope": "instance", - "___id": "T000002R010750", + "___id": "T000002R010733", "___s": true }, { @@ -104744,7 +104788,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#shuffle", "scope": "instance", - "___id": "T000002R010752", + "___id": "T000002R010735", "___s": true }, { @@ -104778,7 +104822,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#kill", "scope": "instance", - "___id": "T000002R010754", + "___id": "T000002R010737", "___s": true }, { @@ -104812,7 +104856,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#killAndHide", "scope": "instance", - "___id": "T000002R010756", + "___id": "T000002R010739", "___s": true }, { @@ -104891,7 +104935,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#setVisible", "scope": "instance", - "___id": "T000002R010758", + "___id": "T000002R010741", "___s": true }, { @@ -104925,7 +104969,7 @@ "memberof": "Phaser.GameObjects.Group", "longname": "Phaser.GameObjects.Group#toggleVisible", "scope": "instance", - "___id": "T000002R010760", + "___id": "T000002R010743", "___s": true }, { @@ -104977,7 +105021,7 @@ "longname": "Phaser.GameObjects.Group#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R010762", + "___id": "T000002R010745", "___s": true }, { @@ -105035,7 +105079,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#group", "scope": "instance", - "___id": "T000002R010771", + "___id": "T000002R010754", "___s": true }, { @@ -105146,7 +105190,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#group", "scope": "instance", - "___id": "T000002R010774", + "___id": "T000002R010757", "___s": true }, { @@ -105184,7 +105228,7 @@ "memberof": "Phaser.Types.GameObjects.Group", "longname": "Phaser.Types.GameObjects.Group.GroupCallback", "scope": "static", - "___id": "T000002R010775", + "___id": "T000002R010758", "___s": true }, { @@ -105295,7 +105339,7 @@ "memberof": "Phaser.Types.GameObjects.Group", "longname": "Phaser.Types.GameObjects.Group.GroupClassTypeConstructor", "scope": "static", - "___id": "T000002R010776", + "___id": "T000002R010759", "___s": true }, { @@ -105504,7 +105548,7 @@ "memberof": "Phaser.Types.GameObjects.Group", "longname": "Phaser.Types.GameObjects.Group.GroupConfig", "scope": "static", - "___id": "T000002R010777", + "___id": "T000002R010760", "___s": true }, { @@ -106340,7 +106384,7 @@ "memberof": "Phaser.Types.GameObjects.Group", "longname": "Phaser.Types.GameObjects.Group.GroupCreateConfig", "scope": "static", - "___id": "T000002R010778", + "___id": "T000002R010761", "___s": true }, { @@ -106387,7 +106431,7 @@ "memberof": "Phaser.Types.GameObjects.Group", "longname": "Phaser.Types.GameObjects.Group.GroupMultipleCreateCallback", "scope": "static", - "___id": "T000002R010779", + "___id": "T000002R010762", "___s": true }, { @@ -106404,7 +106448,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Group", "scope": "static", - "___id": "T000002R010780", + "___id": "T000002R010763", "___s": true }, { @@ -106529,7 +106573,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Image", - "___id": "T000002R010785", + "___id": "T000002R010768", "___s": true }, { @@ -106591,7 +106635,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#image", "scope": "instance", - "___id": "T000002R010800", + "___id": "T000002R010783", "___s": true }, { @@ -106699,7 +106743,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#image", "scope": "instance", - "___id": "T000002R010808", + "___id": "T000002R010791", "___s": true }, { @@ -106716,11 +106760,11 @@ "memberof": "Phaser", "longname": "Phaser.GameObjects", "scope": "static", - "___id": "T000002R010820", + "___id": "T000002R010803", "___s": true }, { - "comment": "/**\r\n * @classdesc\r\n * A Layer Game Object.\r\n *\r\n * A Layer is a special type of Game Object that acts as a Display List. You can add any type of Game Object\r\n * to a Layer, just as you would to a Scene. Layers can be used to visually group together 'layers' of Game\r\n * Objects:\r\n *\r\n * ```javascript\r\n * const spaceman = this.add.sprite(150, 300, 'spaceman');\r\n * const bunny = this.add.sprite(400, 300, 'bunny');\r\n * const elephant = this.add.sprite(650, 300, 'elephant');\r\n *\r\n * const layer = this.add.layer();\r\n *\r\n * layer.add([ spaceman, bunny, elephant ]);\r\n * ```\r\n *\r\n * The 3 sprites in the example above will now be managed by the Layer they were added to. Therefore,\r\n * if you then set `layer.setVisible(false)` they would all vanish from the display.\r\n *\r\n * You can also control the depth of the Game Objects within the Layer. For example, calling the\r\n * `setDepth` method of a child of a Layer will allow you to adjust the depth of that child _within the\r\n * Layer itself_, rather than the whole Scene. The Layer, too, can have its depth set as well.\r\n *\r\n * The Layer class also offers many different methods for manipulating the list, such as the\r\n * methods `moveUp`, `moveDown`, `sendToBack`, `bringToTop` and so on. These allow you to change the\r\n * display list position of the Layers children, causing it to adjust the order in which they are\r\n * rendered. Using `setDepth` on a child allows you to override this.\r\n *\r\n * Layers can have Post FX Pipelines set, which allows you to easily enable a post pipeline across\r\n * a whole range of children, which, depending on the effect, can often be far more efficient that doing so\r\n * on a per-child basis.\r\n *\r\n * Layers have no position or size within the Scene. This means you cannot enable a Layer for\r\n * physics or input, or change the position, rotation or scale of a Layer. They also have no scroll\r\n * factor, texture, tint, origin, crop or bounds.\r\n *\r\n * If you need those kind of features then you should use a Container instead. Containers can be added\r\n * to Layers, but Layers cannot be added to Containers.\r\n *\r\n * However, you can set the Alpha, Blend Mode, Depth, Mask and Visible state of a Layer. These settings\r\n * will impact all children being rendered by the Layer.\r\n *\r\n * @class Layer\r\n * @extends Phaser.Structs.List.\r\n * @memberof Phaser.GameObjects\r\n * @constructor\r\n * @since 3.50.0\r\n *\r\n * @extends Phaser.GameObjects.Components.AlphaSingle\r\n * @extends Phaser.GameObjects.Components.BlendMode\r\n * @extends Phaser.GameObjects.Components.Depth\r\n * @extends Phaser.GameObjects.Components.Mask\r\n * @extends Phaser.GameObjects.Components.PostPipeline\r\n * @extends Phaser.GameObjects.Components.Visible\r\n *\r\n * @param {Phaser.Scene} scene - The Scene to which this Game Object belongs. A Game Object can only belong to one Scene at a time.\r\n * @param {Phaser.GameObjects.GameObject[]} [children] - An optional array of Game Objects to add to this Layer.\r\n */", + "comment": "/**\r\n * @classdesc\r\n * A Layer Game Object.\r\n *\r\n * A Layer is a special type of Game Object that acts as a Display List. You can add any type of Game Object\r\n * to a Layer, just as you would to a Scene. Layers can be used to visually group together 'layers' of Game\r\n * Objects:\r\n *\r\n * ```javascript\r\n * const spaceman = this.add.sprite(150, 300, 'spaceman');\r\n * const bunny = this.add.sprite(400, 300, 'bunny');\r\n * const elephant = this.add.sprite(650, 300, 'elephant');\r\n *\r\n * const layer = this.add.layer();\r\n *\r\n * layer.add([ spaceman, bunny, elephant ]);\r\n * ```\r\n *\r\n * The 3 sprites in the example above will now be managed by the Layer they were added to. Therefore,\r\n * if you then set `layer.setVisible(false)` they would all vanish from the display.\r\n *\r\n * You can also control the depth of the Game Objects within the Layer. For example, calling the\r\n * `setDepth` method of a child of a Layer will allow you to adjust the depth of that child _within the\r\n * Layer itself_, rather than the whole Scene. The Layer, too, can have its depth set as well.\r\n *\r\n * The Layer class also offers many different methods for manipulating the list, such as the\r\n * methods `moveUp`, `moveDown`, `sendToBack`, `bringToTop` and so on. These allow you to change the\r\n * display list position of the Layers children, causing it to adjust the order in which they are\r\n * rendered. Using `setDepth` on a child allows you to override this.\r\n *\r\n * Layers can have Post FX Pipelines set, which allows you to easily enable a post pipeline across\r\n * a whole range of children, which, depending on the effect, can often be far more efficient that doing so\r\n * on a per-child basis.\r\n *\r\n * Layers have no position or size within the Scene. This means you cannot enable a Layer for\r\n * physics or input, or change the position, rotation or scale of a Layer. They also have no scroll\r\n * factor, texture, tint, origin, crop or bounds.\r\n *\r\n * If you need those kind of features then you should use a Container instead. Containers can be added\r\n * to Layers, but Layers cannot be added to Containers.\r\n *\r\n * However, you can set the Alpha, Blend Mode, Depth, Mask and Visible state of a Layer. These settings\r\n * will impact all children being rendered by the Layer.\r\n *\r\n * @class Layer\r\n * @extends Phaser.Structs.List.\r\n * @memberof Phaser.GameObjects\r\n * @constructor\r\n * @since 3.50.0\r\n *\r\n * @extends Phaser.GameObjects.Components.AlphaSingle\r\n * @extends Phaser.GameObjects.Components.BlendMode\r\n * @extends Phaser.GameObjects.Components.Depth\r\n * @extends Phaser.GameObjects.Components.Mask\r\n * @extends Phaser.GameObjects.Components.PostPipeline\r\n * @extends Phaser.GameObjects.Components.Visible\r\n * @extends Phaser.Events.EventEmitter\r\n *\r\n * @param {Phaser.Scene} scene - The Scene to which this Game Object belongs. A Game Object can only belong to one Scene at a time.\r\n * @param {Phaser.GameObjects.GameObject[]} [children] - An optional array of Game Objects to add to this Layer.\r\n */", "meta": { "filename": "Layer.js", "lineno": 19, @@ -106738,7 +106782,8 @@ "Phaser.GameObjects.Components.Depth", "Phaser.GameObjects.Components.Mask", "Phaser.GameObjects.Components.PostPipeline", - "Phaser.GameObjects.Components.Visible" + "Phaser.GameObjects.Components.Visible", + "Phaser.Events.EventEmitter" ], "memberof": "Phaser.GameObjects", "since": "3.50.0", @@ -106782,14 +106827,14 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Layer", - "___id": "T000002R010946", + "___id": "T000002R010929", "___s": true }, { "comment": "/**\r\n * A reference to the Scene to which this Game Object belongs.\r\n *\r\n * Game Objects can only belong to one Scene.\r\n *\r\n * You should consider this property as being read-only. You cannot move a\r\n * Game Object to another Scene by simply changing it.\r\n *\r\n * @name Phaser.GameObjects.Layer#scene\r\n * @type {Phaser.Scene}\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 101, + "lineno": 102, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -106810,14 +106855,14 @@ "longname": "Phaser.GameObjects.Layer#scene", "scope": "instance", "kind": "member", - "___id": "T000002R010951", + "___id": "T000002R010934", "___s": true }, { "comment": "/**\r\n * Holds a reference to the Display List that contains this Game Object.\r\n *\r\n * This is set automatically when this Game Object is added to a Scene or Layer.\r\n *\r\n * You should treat this property as being read-only.\r\n *\r\n * @name Phaser.GameObjects.Layer#displayList\r\n * @type {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)}\r\n * @default null\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 115, + "lineno": 116, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -106849,14 +106894,14 @@ "longname": "Phaser.GameObjects.Layer#displayList", "scope": "instance", "kind": "member", - "___id": "T000002R010953", + "___id": "T000002R010936", "___s": true }, { "comment": "/**\r\n * A textual representation of this Game Object, i.e. `sprite`.\r\n * Used internally by Phaser but is available for your own custom classes to populate.\r\n *\r\n * @name Phaser.GameObjects.Layer#type\r\n * @type {string}\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 129, + "lineno": 130, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -106877,14 +106922,14 @@ "longname": "Phaser.GameObjects.Layer#type", "scope": "instance", "kind": "member", - "___id": "T000002R010955", + "___id": "T000002R010938", "___s": true }, { "comment": "/**\r\n * The current state of this Game Object.\r\n *\r\n * Phaser itself will never modify this value, although plugins may do so.\r\n *\r\n * Use this property to track the state of a Game Object during its lifetime. For example, it could change from\r\n * a state of 'moving', to 'attacking', to 'dead'. The state value should be an integer (ideally mapped to a constant\r\n * in your game code), or a string. These are recommended to keep it light and simple, with fast comparisons.\r\n * If you need to store complex data about your Game Object, look at using the Data Component instead.\r\n *\r\n * @name Phaser.GameObjects.Layer#state\r\n * @type {(number|string)}\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 139, + "lineno": 140, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -106915,14 +106960,14 @@ "longname": "Phaser.GameObjects.Layer#state", "scope": "instance", "kind": "member", - "___id": "T000002R010957", + "___id": "T000002R010940", "___s": true }, { "comment": "/**\r\n * A Layer cannot be placed inside a Container.\r\n *\r\n * This property is kept purely so a Layer has the same\r\n * shape as a Game Object.\r\n *\r\n * @name Phaser.GameObjects.Layer#parentContainer\r\n * @type {Phaser.GameObjects.Container}\r\n * @since 3.51.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 155, + "lineno": 156, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -106943,14 +106988,14 @@ "longname": "Phaser.GameObjects.Layer#parentContainer", "scope": "instance", "kind": "member", - "___id": "T000002R010959", + "___id": "T000002R010942", "___s": true }, { "comment": "/**\r\n * The name of this Game Object.\r\n * Empty by default and never populated by Phaser, this is left for developers to use.\r\n *\r\n * @name Phaser.GameObjects.Layer#name\r\n * @type {string}\r\n * @default ''\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 167, + "lineno": 168, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -106972,14 +107017,14 @@ "longname": "Phaser.GameObjects.Layer#name", "scope": "instance", "kind": "member", - "___id": "T000002R010961", + "___id": "T000002R010944", "___s": true }, { "comment": "/**\r\n * The active state of this Game Object.\r\n * A Game Object with an active state of `true` is processed by the Scenes UpdateList, if added to it.\r\n * An active object is one which is having its logic and internal systems updated.\r\n *\r\n * @name Phaser.GameObjects.Layer#active\r\n * @type {boolean}\r\n * @default true\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 178, + "lineno": 179, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107001,14 +107046,14 @@ "longname": "Phaser.GameObjects.Layer#active", "scope": "instance", "kind": "member", - "___id": "T000002R010963", + "___id": "T000002R010946", "___s": true }, { "comment": "/**\r\n * The Tab Index of the Game Object.\r\n * Reserved for future use by plugins and the Input Manager.\r\n *\r\n * @name Phaser.GameObjects.Layer#tabIndex\r\n * @type {number}\r\n * @default -1\r\n * @since 3.51.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 190, + "lineno": 191, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107030,14 +107075,14 @@ "longname": "Phaser.GameObjects.Layer#tabIndex", "scope": "instance", "kind": "member", - "___id": "T000002R010965", + "___id": "T000002R010948", "___s": true }, { "comment": "/**\r\n * A Data Manager.\r\n * It allows you to store, query and get key/value paired information specific to this Game Object.\r\n * `null` by default. Automatically created if you use `getData` or `setData` or `setDataEnabled`.\r\n *\r\n * @name Phaser.GameObjects.Layer#data\r\n * @type {Phaser.Data.DataManager}\r\n * @default null\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 201, + "lineno": 202, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107059,14 +107104,14 @@ "longname": "Phaser.GameObjects.Layer#data", "scope": "instance", "kind": "member", - "___id": "T000002R010967", + "___id": "T000002R010950", "___s": true }, { "comment": "/**\r\n * The flags that are compared against `RENDER_MASK` to determine if this Game Object will render or not.\r\n * The bits are 0001 | 0010 | 0100 | 1000 set by the components Visible, Alpha, Transform and Texture respectively.\r\n * If those components are not used by your custom class then you can use this bitmask as you wish.\r\n *\r\n * @name Phaser.GameObjects.Layer#renderFlags\r\n * @type {number}\r\n * @default 15\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 213, + "lineno": 214, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107088,14 +107133,14 @@ "longname": "Phaser.GameObjects.Layer#renderFlags", "scope": "instance", "kind": "member", - "___id": "T000002R010969", + "___id": "T000002R010952", "___s": true }, { "comment": "/**\r\n * A bitmask that controls if this Game Object is drawn by a Camera or not.\r\n * Not usually set directly, instead call `Camera.ignore`, however you can\r\n * set this property directly using the Camera.id property:\r\n *\r\n * @example\r\n * this.cameraFilter |= camera.id\r\n *\r\n * @name Phaser.GameObjects.Layer#cameraFilter\r\n * @type {number}\r\n * @default 0\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 225, + "lineno": 226, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107120,14 +107165,14 @@ "longname": "Phaser.GameObjects.Layer#cameraFilter", "scope": "instance", "kind": "member", - "___id": "T000002R010971", + "___id": "T000002R010954", "___s": true }, { "comment": "/**\r\n * This property is kept purely so a Layer has the same\r\n * shape as a Game Object. You cannot input enable a Layer.\r\n *\r\n * @name Phaser.GameObjects.Layer#input\r\n * @type {?Phaser.Types.Input.InteractiveObject}\r\n * @default null\r\n * @since 3.51.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 240, + "lineno": 241, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107151,14 +107196,14 @@ "longname": "Phaser.GameObjects.Layer#input", "scope": "instance", "kind": "member", - "___id": "T000002R010973", + "___id": "T000002R010956", "___s": true }, { "comment": "/**\r\n * This property is kept purely so a Layer has the same\r\n * shape as a Game Object. You cannot give a Layer a physics body.\r\n *\r\n * @name Phaser.GameObjects.Layer#body\r\n * @type {?(Phaser.Physics.Arcade.Body|Phaser.Physics.Arcade.StaticBody|MatterJS.BodyType)}\r\n * @default null\r\n * @since 3.51.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 251, + "lineno": 252, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107197,14 +107242,14 @@ "longname": "Phaser.GameObjects.Layer#body", "scope": "instance", "kind": "member", - "___id": "T000002R010975", + "___id": "T000002R010958", "___s": true }, { "comment": "/**\r\n * This Game Object will ignore all calls made to its destroy method if this flag is set to `true`.\r\n * This includes calls that may come from a Group, Container or the Scene itself.\r\n * While it allows you to persist a Game Object across Scenes, please understand you are entirely\r\n * responsible for managing references to and from this Game Object.\r\n *\r\n * @name Phaser.GameObjects.Layer#ignoreDestroy\r\n * @type {boolean}\r\n * @default false\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 262, + "lineno": 263, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107226,14 +107271,14 @@ "longname": "Phaser.GameObjects.Layer#ignoreDestroy", "scope": "instance", "kind": "member", - "___id": "T000002R010977", + "___id": "T000002R010960", "___s": true }, { "comment": "/**\r\n * A reference to the Scene Systems.\r\n *\r\n * @name Phaser.GameObjects.Layer#systems\r\n * @type {Phaser.Scenes.Systems}\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 275, + "lineno": 276, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107254,14 +107299,14 @@ "longname": "Phaser.GameObjects.Layer#systems", "scope": "instance", "kind": "member", - "___id": "T000002R010979", + "___id": "T000002R010962", "___s": true }, { "comment": "/**\r\n * A reference to the Scene Event Emitter.\r\n *\r\n * @name Phaser.GameObjects.Layer#events\r\n * @type {Phaser.Events.EventEmitter}\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 284, + "lineno": 285, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107282,14 +107327,14 @@ "longname": "Phaser.GameObjects.Layer#events", "scope": "instance", "kind": "member", - "___id": "T000002R010981", + "___id": "T000002R010964", "___s": true }, { "comment": "/**\r\n * The flag the determines whether Game Objects should be sorted when `depthSort()` is called.\r\n *\r\n * @name Phaser.GameObjects.Layer#sortChildrenFlag\r\n * @type {boolean}\r\n * @default false\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 293, + "lineno": 294, "columnno": 8, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107311,14 +107356,14 @@ "longname": "Phaser.GameObjects.Layer#sortChildrenFlag", "scope": "instance", "kind": "member", - "___id": "T000002R010983", + "___id": "T000002R010966", "___s": true }, { "comment": "/**\r\n * Sets the `active` property of this Game Object and returns this Game Object for further chaining.\r\n * A Game Object with its `active` property set to `true` will be updated by the Scenes UpdateList.\r\n *\r\n * @method Phaser.GameObjects.Layer#setActive\r\n * @since 3.50.0\r\n *\r\n * @param {boolean} value - True if this Game Object should be set as active, false if not.\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 322, + "lineno": 323, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107360,14 +107405,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#setActive", "scope": "instance", - "___id": "T000002R010987", + "___id": "T000002R010970", "___s": true }, { "comment": "/**\r\n * Sets the `name` property of this Game Object and returns this Game Object for further chaining.\r\n * The `name` property is not populated by Phaser and is presented for your own use.\r\n *\r\n * @method Phaser.GameObjects.Layer#setName\r\n * @since 3.50.0\r\n *\r\n * @param {string} value - The name to be given to this Game Object.\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 340, + "lineno": 341, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107409,14 +107454,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#setName", "scope": "instance", - "___id": "T000002R010990", + "___id": "T000002R010973", "___s": true }, { "comment": "/**\r\n * Sets the current state of this Game Object.\r\n *\r\n * Phaser itself will never modify the State of a Game Object, although plugins may do so.\r\n *\r\n * For example, a Game Object could change from a state of 'moving', to 'attacking', to 'dead'.\r\n * The state value should typically be an integer (ideally mapped to a constant\r\n * in your game code), but could also be a string. It is recommended to keep it light and simple.\r\n * If you need to store complex data about your Game Object, look at using the Data Component instead.\r\n *\r\n * @method Phaser.GameObjects.Layer#setState\r\n * @since 3.50.0\r\n *\r\n * @param {(number|string)} value - The state of the Game Object.\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 358, + "lineno": 359, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107468,14 +107513,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#setState", "scope": "instance", - "___id": "T000002R010993", + "___id": "T000002R010976", "___s": true }, { "comment": "/**\r\n * Adds a Data Manager component to this Game Object.\r\n *\r\n * @method Phaser.GameObjects.Layer#setDataEnabled\r\n * @since 3.50.0\r\n * @see Phaser.Data.DataManager\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 382, + "lineno": 383, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107505,14 +107550,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#setDataEnabled", "scope": "instance", - "___id": "T000002R010996", + "___id": "T000002R010979", "___s": true }, { "comment": "/**\r\n * Allows you to store a key value pair within this Game Objects Data Manager.\r\n *\r\n * If the Game Object has not been enabled for data (via `setDataEnabled`) then it will be enabled\r\n * before setting the value.\r\n *\r\n * If the key doesn't already exist in the Data Manager then it is created.\r\n *\r\n * ```javascript\r\n * sprite.setData('name', 'Red Gem Stone');\r\n * ```\r\n *\r\n * You can also pass in an object of key value pairs as the first argument:\r\n *\r\n * ```javascript\r\n * sprite.setData({ name: 'Red Gem Stone', level: 2, owner: 'Link', gold: 50 });\r\n * ```\r\n *\r\n * To get a value back again you can call `getData`:\r\n *\r\n * ```javascript\r\n * sprite.getData('gold');\r\n * ```\r\n *\r\n * Or you can access the value directly via the `values` property, where it works like any other variable:\r\n *\r\n * ```javascript\r\n * sprite.data.values.gold += 50;\r\n * ```\r\n *\r\n * When the value is first set, a `setdata` event is emitted from this Game Object.\r\n *\r\n * If the key already exists, a `changedata` event is emitted instead, along an event named after the key.\r\n * For example, if you updated an existing key called `PlayerLives` then it would emit the event `changedata-PlayerLives`.\r\n * These events will be emitted regardless if you use this method to set the value, or the direct `values` setter.\r\n *\r\n * Please note that the data keys are case-sensitive and must be valid JavaScript Object property strings.\r\n * This means the keys `gold` and `Gold` are treated as two unique values within the Data Manager.\r\n *\r\n * @method Phaser.GameObjects.Layer#setData\r\n * @since 3.50.0\r\n *\r\n * @param {(string|object)} key - The key to set the value for. Or an object of key value pairs. If an object the `data` argument is ignored.\r\n * @param {*} [data] - The value to set for the given key. If an object is provided as the key this argument is ignored.\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 401, + "lineno": 402, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107577,14 +107622,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#setData", "scope": "instance", - "___id": "T000002R010999", + "___id": "T000002R010982", "___s": true }, { "comment": "/**\r\n * Increase a value for the given key within this Game Objects Data Manager. If the key doesn't already exist in the Data Manager then it is increased from 0.\r\n *\r\n * If the Game Object has not been enabled for data (via `setDataEnabled`) then it will be enabled\r\n * before setting the value.\r\n *\r\n * If the key doesn't already exist in the Data Manager then it is created.\r\n *\r\n * When the value is first set, a `setdata` event is emitted from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.Layer#incData\r\n * @since 3.50.0\r\n *\r\n * @param {(string|object)} key - The key to increase the value for.\r\n * @param {*} [data] - The value to increase for the given key.\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 460, + "lineno": 461, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107649,14 +107694,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#incData", "scope": "instance", - "___id": "T000002R011002", + "___id": "T000002R010985", "___s": true }, { "comment": "/**\r\n * Toggle a boolean value for the given key within this Game Objects Data Manager. If the key doesn't already exist in the Data Manager then it is toggled from false.\r\n *\r\n * If the Game Object has not been enabled for data (via `setDataEnabled`) then it will be enabled\r\n * before setting the value.\r\n *\r\n * If the key doesn't already exist in the Data Manager then it is created.\r\n *\r\n * When the value is first set, a `setdata` event is emitted from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.Layer#toggleData\r\n * @since 3.50.0\r\n *\r\n * @param {(string|object)} key - The key to toggle the value for.\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 490, + "lineno": 491, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107708,14 +107753,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#toggleData", "scope": "instance", - "___id": "T000002R011005", + "___id": "T000002R010988", "___s": true }, { "comment": "/**\r\n * Retrieves the value for the given key in this Game Objects Data Manager, or undefined if it doesn't exist.\r\n *\r\n * You can also access values via the `values` object. For example, if you had a key called `gold` you can do either:\r\n *\r\n * ```javascript\r\n * sprite.getData('gold');\r\n * ```\r\n *\r\n * Or access the value directly:\r\n *\r\n * ```javascript\r\n * sprite.data.values.gold;\r\n * ```\r\n *\r\n * You can also pass in an array of keys, in which case an array of values will be returned:\r\n *\r\n * ```javascript\r\n * sprite.getData([ 'gold', 'armor', 'health' ]);\r\n * ```\r\n *\r\n * This approach is useful for destructuring arrays in ES6.\r\n *\r\n * @method Phaser.GameObjects.Layer#getData\r\n * @since 3.50.0\r\n *\r\n * @param {(string|string[])} key - The key of the value to retrieve, or an array of keys.\r\n *\r\n * @return {*} The value belonging to the given key, or an array of values, the order of which will match the input array.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 519, + "lineno": 520, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107774,14 +107819,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#getData", "scope": "instance", - "___id": "T000002R011008", + "___id": "T000002R010991", "___s": true }, { "comment": "/**\r\n * A Layer cannot be enabled for input.\r\n *\r\n * This method does nothing and is kept to ensure\r\n * the Layer has the same shape as a Game Object.\r\n *\r\n * @method Phaser.GameObjects.Layer#setInteractive\r\n * @since 3.51.0\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 559, + "lineno": 560, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107808,14 +107853,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#setInteractive", "scope": "instance", - "___id": "T000002R011011", + "___id": "T000002R010994", "___s": true }, { "comment": "/**\r\n * A Layer cannot be enabled for input.\r\n *\r\n * This method does nothing and is kept to ensure\r\n * the Layer has the same shape as a Game Object.\r\n *\r\n * @method Phaser.GameObjects.Layer#disableInteractive\r\n * @since 3.51.0\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 575, + "lineno": 576, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107842,14 +107887,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#disableInteractive", "scope": "instance", - "___id": "T000002R011013", + "___id": "T000002R010996", "___s": true }, { "comment": "/**\r\n * A Layer cannot be enabled for input.\r\n *\r\n * This method does nothing and is kept to ensure\r\n * the Layer has the same shape as a Game Object.\r\n *\r\n * @method Phaser.GameObjects.Layer#removeInteractive\r\n * @since 3.51.0\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 591, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107876,14 +107921,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#removeInteractive", "scope": "instance", - "___id": "T000002R011015", + "___id": "T000002R010998", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.Layer#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 607, + "lineno": 608, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107895,14 +107940,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#addedToScene", "scope": "instance", - "___id": "T000002R011017", + "___id": "T000002R011000", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.Layer#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 622, + "lineno": 623, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107914,14 +107959,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#removedFromScene", "scope": "instance", - "___id": "T000002R011019", + "___id": "T000002R011002", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.Layer#update\r\n * @since 3.50.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "Layer.js", - "lineno": 637, + "lineno": 638, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107950,14 +107995,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#update", "scope": "instance", - "___id": "T000002R011021", + "___id": "T000002R011004", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.Layer#toJSON\r\n * @since 3.50.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 649, + "lineno": 650, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -107983,14 +108028,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#toJSON", "scope": "instance", - "___id": "T000002R011023", + "___id": "T000002R011006", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.Layer#willRender\r\n * @since 3.50.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 662, + "lineno": 663, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -108031,14 +108076,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#willRender", "scope": "instance", - "___id": "T000002R011025", + "___id": "T000002R011008", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.Layer#getIndexList\r\n * @since 3.51.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 678, + "lineno": 679, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -108073,14 +108118,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#getIndexList", "scope": "instance", - "___id": "T000002R011027", + "___id": "T000002R011010", "___s": true }, { "comment": "/**\r\n * Force a sort of the display list on the next call to depthSort.\r\n *\r\n * @method Phaser.GameObjects.Layer#queueDepthSort\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 774, + "lineno": 775, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -108092,14 +108137,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#queueDepthSort", "scope": "instance", - "___id": "T000002R011041", + "___id": "T000002R011024", "___s": true }, { "comment": "/**\r\n * Immediately sorts the display list if the flag is set.\r\n *\r\n * @method Phaser.GameObjects.Layer#depthSort\r\n * @since 3.50.0\r\n */", "meta": { "filename": "Layer.js", - "lineno": 785, + "lineno": 786, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -108111,14 +108156,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#depthSort", "scope": "instance", - "___id": "T000002R011044", + "___id": "T000002R011027", "___s": true }, { "comment": "/**\r\n * Compare the depth of two Game Objects.\r\n *\r\n * @method Phaser.GameObjects.Layer#sortByDepth\r\n * @since 3.50.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject} childA - The first Game Object.\r\n * @param {Phaser.GameObjects.GameObject} childB - The second Game Object.\r\n *\r\n * @return {number} The difference between the depths of each Game Object.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 801, + "lineno": 802, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -108172,14 +108217,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#sortByDepth", "scope": "instance", - "___id": "T000002R011047", + "___id": "T000002R011030", "___s": true }, { "comment": "/**\r\n * Returns an array which contains all Game Objects within this Layer.\r\n *\r\n * This is a reference to the main list array, not a copy of it, so be careful not to modify it.\r\n *\r\n * @method Phaser.GameObjects.Layer#getChildren\r\n * @since 3.50.0\r\n *\r\n * @return {Phaser.GameObjects.GameObject[]} The group members.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 817, + "lineno": 818, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -108214,14 +108259,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#getChildren", "scope": "instance", - "___id": "T000002R011049", + "___id": "T000002R011032", "___s": true }, { "comment": "/**\r\n * Adds this Layer to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Layer belongs.\r\n *\r\n * A Layer can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Layer is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.Layer#displayList` property.\r\n *\r\n * If a Layer isn't on any display list, it will not be rendered. If you just wish to temporarily\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.Layer#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.60.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Layer.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 832, + "lineno": 833, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -108278,14 +108323,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#addToDisplayList", "scope": "instance", - "___id": "T000002R011051", + "___id": "T000002R011034", "___s": true }, { "comment": "/**\r\n * Removes this Layer from the Display List it is currently on.\r\n *\r\n * A Layer can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Layer isn't on any Display List, it will not be rendered. If you just wish to temporarily\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.Layer#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Layer.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 883, + "lineno": 884, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -108316,14 +108361,14 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#removeFromDisplayList", "scope": "instance", - "___id": "T000002R011055", + "___id": "T000002R011038", "___s": true }, { "comment": "/**\r\n * Destroys this Layer removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also destroys all children of this Layer. If you do not wish for the\r\n * children to be destroyed, you should move them from this Layer first.\r\n *\r\n * Use this to remove this Layer from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.Layer#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.50.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "Layer.js", - "lineno": 921, + "lineno": 922, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\layer", "code": {} @@ -108355,7 +108400,8 @@ "memberof": "Phaser.GameObjects.Layer", "longname": "Phaser.GameObjects.Layer#destroy", "scope": "instance", - "___id": "T000002R011059", + "overrides": "Phaser.Events.EventEmitter#destroy", + "___id": "T000002R011042", "___s": true }, { @@ -108417,7 +108463,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#layer", "scope": "instance", - "___id": "T000002R011084", + "___id": "T000002R011067", "___s": true }, { @@ -108485,7 +108531,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#layer", "scope": "instance", - "___id": "T000002R011091", + "___id": "T000002R011074", "___s": true }, { @@ -108603,7 +108649,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Light", - "___id": "T000002R011133", + "___id": "T000002R011116", "___s": true }, { @@ -108631,7 +108677,7 @@ "longname": "Phaser.GameObjects.Light#color", "scope": "instance", "kind": "member", - "___id": "T000002R011138", + "___id": "T000002R011121", "___s": true }, { @@ -108659,7 +108705,7 @@ "longname": "Phaser.GameObjects.Light#intensity", "scope": "instance", "kind": "member", - "___id": "T000002R011140", + "___id": "T000002R011123", "___s": true }, { @@ -108688,7 +108734,7 @@ "longname": "Phaser.GameObjects.Light#renderFlags", "scope": "instance", "kind": "member", - "___id": "T000002R011142", + "___id": "T000002R011125", "___s": true }, { @@ -108720,7 +108766,7 @@ "longname": "Phaser.GameObjects.Light#cameraFilter", "scope": "instance", "kind": "member", - "___id": "T000002R011144", + "___id": "T000002R011127", "___s": true }, { @@ -108748,7 +108794,7 @@ "longname": "Phaser.GameObjects.Light#displayWidth", "scope": "instance", "kind": "member", - "___id": "T000002R011146", + "___id": "T000002R011129", "___s": true }, { @@ -108776,7 +108822,7 @@ "longname": "Phaser.GameObjects.Light#displayHeight", "scope": "instance", "kind": "member", - "___id": "T000002R011151", + "___id": "T000002R011134", "___s": true }, { @@ -108804,7 +108850,7 @@ "longname": "Phaser.GameObjects.Light#width", "scope": "instance", "kind": "member", - "___id": "T000002R011156", + "___id": "T000002R011139", "___s": true }, { @@ -108832,7 +108878,7 @@ "longname": "Phaser.GameObjects.Light#height", "scope": "instance", "kind": "member", - "___id": "T000002R011161", + "___id": "T000002R011144", "___s": true }, { @@ -108880,7 +108926,7 @@ "memberof": "Phaser.GameObjects.Light", "longname": "Phaser.GameObjects.Light#willRender", "scope": "instance", - "___id": "T000002R011166", + "___id": "T000002R011149", "___s": true }, { @@ -108929,7 +108975,7 @@ "memberof": "Phaser.GameObjects.Light", "longname": "Phaser.GameObjects.Light#setColor", "scope": "instance", - "___id": "T000002R011168", + "___id": "T000002R011151", "___s": true }, { @@ -108978,7 +109024,7 @@ "memberof": "Phaser.GameObjects.Light", "longname": "Phaser.GameObjects.Light#setIntensity", "scope": "instance", - "___id": "T000002R011171", + "___id": "T000002R011154", "___s": true }, { @@ -109027,7 +109073,7 @@ "memberof": "Phaser.GameObjects.Light", "longname": "Phaser.GameObjects.Light#setRadius", "scope": "instance", - "___id": "T000002R011174", + "___id": "T000002R011157", "___s": true }, { @@ -109054,7 +109100,7 @@ "memberof": "Phaser.GameObjects.Light", "scope": "static", "longname": "Phaser.GameObjects.Light.RENDER_MASK", - "___id": "T000002R011177", + "___id": "T000002R011160", "___s": true }, { @@ -109090,7 +109136,7 @@ ], "longname": "LightForEach", "scope": "global", - "___id": "T000002R011189", + "___id": "T000002R011172", "___s": true }, { @@ -109109,7 +109155,7 @@ "since": "3.0.0", "scope": "static", "longname": "Phaser.GameObjects.LightsManager", - "___id": "T000002R011190", + "___id": "T000002R011173", "___s": true }, { @@ -109147,7 +109193,7 @@ "longname": "Phaser.GameObjects.LightsManager#lights", "scope": "instance", "kind": "member", - "___id": "T000002R011193", + "___id": "T000002R011176", "___s": true }, { @@ -109175,7 +109221,7 @@ "longname": "Phaser.GameObjects.LightsManager#ambientColor", "scope": "instance", "kind": "member", - "___id": "T000002R011195", + "___id": "T000002R011178", "___s": true }, { @@ -109204,7 +109250,7 @@ "longname": "Phaser.GameObjects.LightsManager#active", "scope": "instance", "kind": "member", - "___id": "T000002R011197", + "___id": "T000002R011180", "___s": true }, { @@ -109233,7 +109279,7 @@ "longname": "Phaser.GameObjects.LightsManager#maxLights", "scope": "instance", "kind": "member", - "___id": "T000002R011199", + "___id": "T000002R011182", "___s": true }, { @@ -109262,7 +109308,7 @@ "longname": "Phaser.GameObjects.LightsManager#visibleLights", "scope": "instance", "kind": "member", - "___id": "T000002R011201", + "___id": "T000002R011184", "___s": true }, { @@ -109383,7 +109429,7 @@ "memberof": "Phaser.GameObjects.LightsManager", "longname": "Phaser.GameObjects.LightsManager#addPointLight", "scope": "instance", - "___id": "T000002R011203", + "___id": "T000002R011186", "___s": true }, { @@ -109417,7 +109463,7 @@ "memberof": "Phaser.GameObjects.LightsManager", "longname": "Phaser.GameObjects.LightsManager#enable", "scope": "instance", - "___id": "T000002R011205", + "___id": "T000002R011188", "___s": true }, { @@ -109451,7 +109497,7 @@ "memberof": "Phaser.GameObjects.LightsManager", "longname": "Phaser.GameObjects.LightsManager#disable", "scope": "instance", - "___id": "T000002R011209", + "___id": "T000002R011192", "___s": true }, { @@ -109508,7 +109554,7 @@ "memberof": "Phaser.GameObjects.LightsManager", "longname": "Phaser.GameObjects.LightsManager#getLights", "scope": "instance", - "___id": "T000002R011212", + "___id": "T000002R011195", "___s": true }, { @@ -109557,7 +109603,7 @@ "memberof": "Phaser.GameObjects.LightsManager", "longname": "Phaser.GameObjects.LightsManager#setAmbientColor", "scope": "instance", - "___id": "T000002R011224", + "___id": "T000002R011207", "___s": true }, { @@ -109590,7 +109636,7 @@ "memberof": "Phaser.GameObjects.LightsManager", "longname": "Phaser.GameObjects.LightsManager#getMaxVisibleLights", "scope": "instance", - "___id": "T000002R011227", + "___id": "T000002R011210", "___s": true }, { @@ -109623,7 +109669,7 @@ "memberof": "Phaser.GameObjects.LightsManager", "longname": "Phaser.GameObjects.LightsManager#getLightCount", "scope": "instance", - "___id": "T000002R011229", + "___id": "T000002R011212", "___s": true }, { @@ -109733,7 +109779,7 @@ "memberof": "Phaser.GameObjects.LightsManager", "longname": "Phaser.GameObjects.LightsManager#addLight", "scope": "instance", - "___id": "T000002R011231", + "___id": "T000002R011214", "___s": true }, { @@ -109782,7 +109828,7 @@ "memberof": "Phaser.GameObjects.LightsManager", "longname": "Phaser.GameObjects.LightsManager#removeLight", "scope": "instance", - "___id": "T000002R011240", + "___id": "T000002R011223", "___s": true }, { @@ -109801,7 +109847,7 @@ "memberof": "Phaser.GameObjects.LightsManager", "longname": "Phaser.GameObjects.LightsManager#shutdown", "scope": "instance", - "___id": "T000002R011243", + "___id": "T000002R011226", "___s": true }, { @@ -109820,7 +109866,7 @@ "memberof": "Phaser.GameObjects.LightsManager", "longname": "Phaser.GameObjects.LightsManager#destroy", "scope": "instance", - "___id": "T000002R011246", + "___id": "T000002R011229", "___s": true }, { @@ -109857,7 +109903,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.LightsPlugin", - "___id": "T000002R011253", + "___id": "T000002R011236", "___s": true }, { @@ -109885,7 +109931,7 @@ "longname": "Phaser.GameObjects.LightsPlugin#scene", "scope": "instance", "kind": "member", - "___id": "T000002R011257", + "___id": "T000002R011240", "___s": true }, { @@ -109913,7 +109959,7 @@ "longname": "Phaser.GameObjects.LightsPlugin#systems", "scope": "instance", "kind": "member", - "___id": "T000002R011259", + "___id": "T000002R011242", "___s": true }, { @@ -109932,7 +109978,7 @@ "memberof": "Phaser.GameObjects.LightsPlugin", "longname": "Phaser.GameObjects.LightsPlugin#boot", "scope": "instance", - "___id": "T000002R011261", + "___id": "T000002R011244", "___s": true }, { @@ -109952,7 +109998,7 @@ "longname": "Phaser.GameObjects.LightsPlugin#destroy", "scope": "instance", "overrides": "Phaser.GameObjects.LightsManager#destroy", - "___id": "T000002R011264", + "___id": "T000002R011247", "___s": true }, { @@ -110258,7 +110304,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Mesh", - "___id": "T000002R011283", + "___id": "T000002R011266", "___s": true }, { @@ -110295,7 +110341,7 @@ "longname": "Phaser.GameObjects.Mesh#faces", "scope": "instance", "kind": "member", - "___id": "T000002R011291", + "___id": "T000002R011274", "___s": true }, { @@ -110332,7 +110378,7 @@ "longname": "Phaser.GameObjects.Mesh#vertices", "scope": "instance", "kind": "member", - "___id": "T000002R011293", + "___id": "T000002R011276", "___s": true }, { @@ -110361,7 +110407,7 @@ "longname": "Phaser.GameObjects.Mesh#tintFill", "scope": "instance", "kind": "member", - "___id": "T000002R011295", + "___id": "T000002R011278", "___s": true }, { @@ -110389,7 +110435,7 @@ "longname": "Phaser.GameObjects.Mesh#debugCallback", "scope": "instance", "kind": "member", - "___id": "T000002R011297", + "___id": "T000002R011280", "___s": true }, { @@ -110417,7 +110463,7 @@ "longname": "Phaser.GameObjects.Mesh#debugGraphic", "scope": "instance", "kind": "member", - "___id": "T000002R011299", + "___id": "T000002R011282", "___s": true }, { @@ -110445,7 +110491,7 @@ "longname": "Phaser.GameObjects.Mesh#hideCCW", "scope": "instance", "kind": "member", - "___id": "T000002R011301", + "___id": "T000002R011284", "___s": true }, { @@ -110473,7 +110519,7 @@ "longname": "Phaser.GameObjects.Mesh#modelPosition", "scope": "instance", "kind": "member", - "___id": "T000002R011303", + "___id": "T000002R011286", "___s": true }, { @@ -110501,7 +110547,7 @@ "longname": "Phaser.GameObjects.Mesh#modelScale", "scope": "instance", "kind": "member", - "___id": "T000002R011305", + "___id": "T000002R011288", "___s": true }, { @@ -110529,7 +110575,7 @@ "longname": "Phaser.GameObjects.Mesh#modelRotation", "scope": "instance", "kind": "member", - "___id": "T000002R011307", + "___id": "T000002R011290", "___s": true }, { @@ -110557,7 +110603,7 @@ "longname": "Phaser.GameObjects.Mesh#transformMatrix", "scope": "instance", "kind": "member", - "___id": "T000002R011311", + "___id": "T000002R011294", "___s": true }, { @@ -110585,7 +110631,7 @@ "longname": "Phaser.GameObjects.Mesh#viewPosition", "scope": "instance", "kind": "member", - "___id": "T000002R011313", + "___id": "T000002R011296", "___s": true }, { @@ -110613,7 +110659,7 @@ "longname": "Phaser.GameObjects.Mesh#viewMatrix", "scope": "instance", "kind": "member", - "___id": "T000002R011315", + "___id": "T000002R011298", "___s": true }, { @@ -110641,7 +110687,7 @@ "longname": "Phaser.GameObjects.Mesh#projectionMatrix", "scope": "instance", "kind": "member", - "___id": "T000002R011317", + "___id": "T000002R011300", "___s": true }, { @@ -110670,7 +110716,7 @@ "longname": "Phaser.GameObjects.Mesh#totalRendered", "scope": "instance", "kind": "member", - "___id": "T000002R011319", + "___id": "T000002R011302", "___s": true }, { @@ -110698,7 +110744,7 @@ "longname": "Phaser.GameObjects.Mesh#ignoreDirtyCache", "scope": "instance", "kind": "member", - "___id": "T000002R011323", + "___id": "T000002R011306", "___s": true }, { @@ -110727,7 +110773,7 @@ "longname": "Phaser.GameObjects.Mesh#fov", "scope": "instance", "kind": "member", - "___id": "T000002R011325", + "___id": "T000002R011308", "___s": true }, { @@ -110761,7 +110807,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#panX", "scope": "instance", - "___id": "T000002R011332", + "___id": "T000002R011315", "___s": true }, { @@ -110795,7 +110841,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#panY", "scope": "instance", - "___id": "T000002R011335", + "___id": "T000002R011318", "___s": true }, { @@ -110829,7 +110875,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#panZ", "scope": "instance", - "___id": "T000002R011339", + "___id": "T000002R011322", "___s": true }, { @@ -110921,7 +110967,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#setPerspective", "scope": "instance", - "___id": "T000002R011343", + "___id": "T000002R011326", "___s": true }, { @@ -111002,7 +111048,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#setOrtho", "scope": "instance", - "___id": "T000002R011351", + "___id": "T000002R011334", "___s": true }, { @@ -111036,7 +111082,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#clear", "scope": "instance", - "___id": "T000002R011360", + "___id": "T000002R011343", "___s": true }, { @@ -111205,7 +111251,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#addVerticesFromObj", "scope": "instance", - "___id": "T000002R011364", + "___id": "T000002R011347", "___s": true }, { @@ -111266,7 +111312,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#sortByDepth", "scope": "instance", - "___id": "T000002R011369", + "___id": "T000002R011352", "___s": true }, { @@ -111300,7 +111346,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#depthSort", "scope": "instance", - "___id": "T000002R011371", + "___id": "T000002R011354", "___s": true }, { @@ -111431,7 +111477,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#addVertex", "scope": "instance", - "___id": "T000002R011373", + "___id": "T000002R011356", "___s": true }, { @@ -111506,7 +111552,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#addFace", "scope": "instance", - "___id": "T000002R011376", + "___id": "T000002R011359", "___s": true }, { @@ -111715,7 +111761,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#addVertices", "scope": "instance", - "___id": "T000002R011380", + "___id": "T000002R011363", "___s": true }, { @@ -111748,7 +111794,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#getFaceCount", "scope": "instance", - "___id": "T000002R011386", + "___id": "T000002R011369", "___s": true }, { @@ -111781,7 +111827,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#getVertexCount", "scope": "instance", - "___id": "T000002R011388", + "___id": "T000002R011371", "___s": true }, { @@ -111829,7 +111875,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#getFace", "scope": "instance", - "___id": "T000002R011390", + "___id": "T000002R011373", "___s": true }, { @@ -111904,7 +111950,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#hasFaceAt", "scope": "instance", - "___id": "T000002R011392", + "___id": "T000002R011375", "___s": true }, { @@ -111988,7 +112034,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#getFaceAt", "scope": "instance", - "___id": "T000002R011399", + "___id": "T000002R011382", "___s": true }, { @@ -112052,7 +112098,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#setDebug", "scope": "instance", - "___id": "T000002R011407", + "___id": "T000002R011390", "___s": true }, { @@ -112085,7 +112131,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#isDirty", "scope": "instance", - "___id": "T000002R011413", + "___id": "T000002R011396", "___s": true }, { @@ -112133,7 +112179,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#preUpdate", "scope": "instance", - "___id": "T000002R011449", + "___id": "T000002R011432", "___s": true }, { @@ -112189,7 +112235,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#renderDebug", "scope": "instance", - "___id": "T000002R011463", + "___id": "T000002R011446", "___s": true }, { @@ -112230,7 +112276,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#clearTint", "scope": "instance", - "___id": "T000002R011478", + "___id": "T000002R011461", "___s": true }, { @@ -112290,7 +112336,7 @@ "longname": "Phaser.GameObjects.Mesh#setInteractive", "scope": "instance", "overrides": "Phaser.GameObjects.GameObject#setInteractive", - "___id": "T000002R011480", + "___id": "T000002R011463", "___s": true }, { @@ -112348,7 +112394,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#setTint", "scope": "instance", - "___id": "T000002R011487", + "___id": "T000002R011470", "___s": true }, { @@ -112417,7 +112463,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#uvScroll", "scope": "instance", - "___id": "T000002R011493", + "___id": "T000002R011476", "___s": true }, { @@ -112486,7 +112532,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#uvScale", "scope": "instance", - "___id": "T000002R011497", + "___id": "T000002R011480", "___s": true }, { @@ -112534,7 +112580,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#tint", "scope": "instance", - "___id": "T000002R011501", + "___id": "T000002R011484", "___s": true }, { @@ -112575,7 +112621,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#rotateX", "scope": "instance", - "___id": "T000002R011504", + "___id": "T000002R011487", "___s": true }, { @@ -112616,7 +112662,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#rotateY", "scope": "instance", - "___id": "T000002R011509", + "___id": "T000002R011492", "___s": true }, { @@ -112657,7 +112703,7 @@ "memberof": "Phaser.GameObjects.Mesh", "longname": "Phaser.GameObjects.Mesh#rotateZ", "scope": "instance", - "___id": "T000002R011514", + "___id": "T000002R011497", "___s": true }, { @@ -112719,7 +112765,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#mesh", "scope": "instance", - "___id": "T000002R011528", + "___id": "T000002R011511", "___s": true }, { @@ -113012,7 +113058,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#mesh", "scope": "instance", - "___id": "T000002R011543", + "___id": "T000002R011526", "___s": true }, { @@ -113029,7 +113075,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Mesh", "scope": "static", - "___id": "T000002R011586", + "___id": "T000002R011569", "___s": true }, { @@ -113284,7 +113330,7 @@ "memberof": "Phaser.Types.GameObjects.Mesh", "longname": "Phaser.Types.GameObjects.Mesh.MeshConfig", "scope": "static", - "___id": "T000002R011587", + "___id": "T000002R011570", "___s": true }, { @@ -113496,7 +113542,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.NineSlice", - "___id": "T000002R011593", + "___id": "T000002R011576", "___s": true }, { @@ -113533,7 +113579,7 @@ "longname": "Phaser.GameObjects.NineSlice#vertices", "scope": "instance", "kind": "member", - "___id": "T000002R011608", + "___id": "T000002R011591", "___s": true }, { @@ -113562,7 +113608,7 @@ "longname": "Phaser.GameObjects.NineSlice#leftWidth", "scope": "instance", "kind": "member", - "___id": "T000002R011610", + "___id": "T000002R011593", "___s": true }, { @@ -113591,7 +113637,7 @@ "longname": "Phaser.GameObjects.NineSlice#rightWidth", "scope": "instance", "kind": "member", - "___id": "T000002R011612", + "___id": "T000002R011595", "___s": true }, { @@ -113620,7 +113666,7 @@ "longname": "Phaser.GameObjects.NineSlice#topHeight", "scope": "instance", "kind": "member", - "___id": "T000002R011614", + "___id": "T000002R011597", "___s": true }, { @@ -113649,7 +113695,7 @@ "longname": "Phaser.GameObjects.NineSlice#bottomHeight", "scope": "instance", "kind": "member", - "___id": "T000002R011616", + "___id": "T000002R011599", "___s": true }, { @@ -113678,7 +113724,7 @@ "longname": "Phaser.GameObjects.NineSlice#tint", "scope": "instance", "kind": "member", - "___id": "T000002R011618", + "___id": "T000002R011601", "___s": true }, { @@ -113707,7 +113753,7 @@ "longname": "Phaser.GameObjects.NineSlice#tintFill", "scope": "instance", "kind": "member", - "___id": "T000002R011620", + "___id": "T000002R011603", "___s": true }, { @@ -113735,7 +113781,7 @@ "longname": "Phaser.GameObjects.NineSlice#is3Slice", "scope": "instance", "kind": "member", - "___id": "T000002R011623", + "___id": "T000002R011606", "___s": true }, { @@ -113876,7 +113922,7 @@ "memberof": "Phaser.GameObjects.NineSlice", "longname": "Phaser.GameObjects.NineSlice#setSlices", "scope": "instance", - "___id": "T000002R011628", + "___id": "T000002R011611", "___s": true }, { @@ -113895,7 +113941,7 @@ "memberof": "Phaser.GameObjects.NineSlice", "longname": "Phaser.GameObjects.NineSlice#updateUVs", "scope": "instance", - "___id": "T000002R011659", + "___id": "T000002R011642", "___s": true }, { @@ -113914,7 +113960,7 @@ "memberof": "Phaser.GameObjects.NineSlice", "longname": "Phaser.GameObjects.NineSlice#updateVertices", "scope": "instance", - "___id": "T000002R011667", + "___id": "T000002R011650", "___s": true }, { @@ -114000,7 +114046,7 @@ "memberof": "Phaser.GameObjects.NineSlice", "longname": "Phaser.GameObjects.NineSlice#updateQuad", "scope": "instance", - "___id": "T000002R011675", + "___id": "T000002R011658", "___s": true }, { @@ -114086,7 +114132,7 @@ "memberof": "Phaser.GameObjects.NineSlice", "longname": "Phaser.GameObjects.NineSlice#updateQuadUVs", "scope": "instance", - "___id": "T000002R011682", + "___id": "T000002R011665", "___s": true }, { @@ -114127,7 +114173,7 @@ "memberof": "Phaser.GameObjects.NineSlice", "longname": "Phaser.GameObjects.NineSlice#clearTint", "scope": "instance", - "___id": "T000002R011696", + "___id": "T000002R011679", "___s": true }, { @@ -114185,7 +114231,7 @@ "memberof": "Phaser.GameObjects.NineSlice", "longname": "Phaser.GameObjects.NineSlice#setTint", "scope": "instance", - "___id": "T000002R011698", + "___id": "T000002R011681", "___s": true }, { @@ -114243,7 +114289,7 @@ "memberof": "Phaser.GameObjects.NineSlice", "longname": "Phaser.GameObjects.NineSlice#setTintFill", "scope": "instance", - "___id": "T000002R011703", + "___id": "T000002R011686", "___s": true }, { @@ -114279,7 +114325,7 @@ "longname": "Phaser.GameObjects.NineSlice#isTinted", "scope": "instance", "kind": "member", - "___id": "T000002R011706", + "___id": "T000002R011689", "___s": true }, { @@ -114307,7 +114353,7 @@ "longname": "Phaser.GameObjects.NineSlice#width", "scope": "instance", "kind": "member", - "___id": "T000002R011709", + "___id": "T000002R011692", "___s": true }, { @@ -114335,7 +114381,7 @@ "longname": "Phaser.GameObjects.NineSlice#height", "scope": "instance", "kind": "member", - "___id": "T000002R011714", + "___id": "T000002R011697", "___s": true }, { @@ -114363,7 +114409,7 @@ "longname": "Phaser.GameObjects.NineSlice#displayWidth", "scope": "instance", "kind": "member", - "___id": "T000002R011719", + "___id": "T000002R011702", "___s": true }, { @@ -114391,7 +114437,7 @@ "longname": "Phaser.GameObjects.NineSlice#displayHeight", "scope": "instance", "kind": "member", - "___id": "T000002R011724", + "___id": "T000002R011707", "___s": true }, { @@ -114453,7 +114499,7 @@ "memberof": "Phaser.GameObjects.NineSlice", "longname": "Phaser.GameObjects.NineSlice#setSize", "scope": "instance", - "___id": "T000002R011729", + "___id": "T000002R011712", "___s": true }, { @@ -114515,7 +114561,7 @@ "memberof": "Phaser.GameObjects.NineSlice", "longname": "Phaser.GameObjects.NineSlice#setDisplaySize", "scope": "instance", - "___id": "T000002R011736", + "___id": "T000002R011719", "___s": true }, { @@ -114544,7 +114590,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.Origin#originX", - "___id": "T000002R011740", + "___id": "T000002R011723", "___s": true }, { @@ -114573,7 +114619,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.Origin#originY", - "___id": "T000002R011745", + "___id": "T000002R011728", "___s": true }, { @@ -114640,7 +114686,7 @@ "longname": "Phaser.GameObjects.NineSlice#setOrigin", "scope": "instance", "overrides": "Phaser.GameObjects.Components.Origin#setOrigin", - "___id": "T000002R011750", + "___id": "T000002R011733", "___s": true }, { @@ -114674,7 +114720,7 @@ "memberof": "Phaser.GameObjects.NineSlice", "longname": "Phaser.GameObjects.NineSlice#setSizeToFrame", "scope": "instance", - "___id": "T000002R011756", + "___id": "T000002R011739", "___s": true }, { @@ -114736,7 +114782,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#nineslice", "scope": "instance", - "___id": "T000002R011771", + "___id": "T000002R011754", "___s": true }, { @@ -114941,7 +114987,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#nineslice", "scope": "instance", - "___id": "T000002R011785", + "___id": "T000002R011768", "___s": true }, { @@ -114958,7 +115004,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.NineSlice", "scope": "static", - "___id": "T000002R011825", + "___id": "T000002R011808", "___s": true }, { @@ -115128,7 +115174,7 @@ "memberof": "Phaser.Types.GameObjects.NineSlice", "longname": "Phaser.Types.GameObjects.NineSlice.NineSliceConfig", "scope": "static", - "___id": "T000002R011826", + "___id": "T000002R011809", "___s": true }, { @@ -115165,7 +115211,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Particles.EmitterColorOp", - "___id": "T000002R011833", + "___id": "T000002R011816", "___s": true }, { @@ -115202,7 +115248,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterColorOp#r", "scope": "instance", "kind": "member", - "___id": "T000002R011839", + "___id": "T000002R011822", "___s": true }, { @@ -115239,7 +115285,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterColorOp#g", "scope": "instance", "kind": "member", - "___id": "T000002R011841", + "___id": "T000002R011824", "___s": true }, { @@ -115276,7 +115322,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterColorOp#b", "scope": "instance", "kind": "member", - "___id": "T000002R011843", + "___id": "T000002R011826", "___s": true }, { @@ -115310,7 +115356,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterColorOp#getMethod", "scope": "instance", "overrides": "Phaser.GameObjects.Particles.EmitterOp#getMethod", - "___id": "T000002R011845", + "___id": "T000002R011828", "___s": true }, { @@ -115345,7 +115391,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterColorOp#setMethods", "scope": "instance", "overrides": "Phaser.GameObjects.Particles.EmitterOp#setMethods", - "___id": "T000002R011847", + "___id": "T000002R011830", "___s": true }, { @@ -115379,7 +115425,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterColorOp", "longname": "Phaser.GameObjects.Particles.EmitterColorOp#setEase", "scope": "instance", - "___id": "T000002R011865", + "___id": "T000002R011848", "___s": true }, { @@ -115441,7 +115487,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterColorOp#easedValueEmit", "scope": "instance", "overrides": "Phaser.GameObjects.Particles.EmitterOp#easedValueEmit", - "___id": "T000002R011869", + "___id": "T000002R011852", "___s": true }, { @@ -115516,7 +115562,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterColorOp#easeValueUpdate", "scope": "instance", "overrides": "Phaser.GameObjects.Particles.EmitterOp#easeValueUpdate", - "___id": "T000002R011872", + "___id": "T000002R011855", "___s": true }, { @@ -115588,7 +115634,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Particles.EmitterOp", - "___id": "T000002R011890", + "___id": "T000002R011873", "___s": true }, { @@ -115616,7 +115662,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#propertyKey", "scope": "instance", "kind": "member", - "___id": "T000002R011894", + "___id": "T000002R011877", "___s": true }, { @@ -115654,7 +115700,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#propertyValue", "scope": "instance", "kind": "member", - "___id": "T000002R011896", + "___id": "T000002R011879", "___s": true }, { @@ -115692,7 +115738,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#defaultValue", "scope": "instance", "kind": "member", - "___id": "T000002R011898", + "___id": "T000002R011881", "___s": true }, { @@ -115721,7 +115767,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#steps", "scope": "instance", "kind": "member", - "___id": "T000002R011900", + "___id": "T000002R011883", "___s": true }, { @@ -115750,7 +115796,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#counter", "scope": "instance", "kind": "member", - "___id": "T000002R011902", + "___id": "T000002R011885", "___s": true }, { @@ -115779,7 +115825,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#yoyo", "scope": "instance", "kind": "member", - "___id": "T000002R011904", + "___id": "T000002R011887", "___s": true }, { @@ -115808,7 +115854,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#direction", "scope": "instance", "kind": "member", - "___id": "T000002R011906", + "___id": "T000002R011889", "___s": true }, { @@ -115856,7 +115902,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#start", "scope": "instance", "kind": "member", - "___id": "T000002R011908", + "___id": "T000002R011891", "___s": true }, { @@ -115884,7 +115930,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#current", "scope": "instance", "kind": "member", - "___id": "T000002R011910", + "___id": "T000002R011893", "___s": true }, { @@ -115913,7 +115959,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#end", "scope": "instance", "kind": "member", - "___id": "T000002R011912", + "___id": "T000002R011895", "___s": true }, { @@ -115943,7 +115989,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#ease", "scope": "instance", "kind": "member", - "___id": "T000002R011914", + "___id": "T000002R011897", "___s": true }, { @@ -115973,7 +116019,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#interpolation", "scope": "instance", "kind": "member", - "___id": "T000002R011916", + "___id": "T000002R011899", "___s": true }, { @@ -116001,7 +116047,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#emitOnly", "scope": "instance", "kind": "member", - "___id": "T000002R011918", + "___id": "T000002R011901", "___s": true }, { @@ -116029,7 +116075,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#onEmit", "scope": "instance", "kind": "member", - "___id": "T000002R011920", + "___id": "T000002R011903", "___s": true }, { @@ -116057,7 +116103,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#onUpdate", "scope": "instance", "kind": "member", - "___id": "T000002R011922", + "___id": "T000002R011905", "___s": true }, { @@ -116085,7 +116131,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#active", "scope": "instance", "kind": "member", - "___id": "T000002R011924", + "___id": "T000002R011907", "___s": true }, { @@ -116113,7 +116159,7 @@ "longname": "Phaser.GameObjects.Particles.EmitterOp#method", "scope": "instance", "kind": "member", - "___id": "T000002R011926", + "___id": "T000002R011909", "___s": true }, { @@ -116162,7 +116208,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#loadConfig", "scope": "instance", - "___id": "T000002R011932", + "___id": "T000002R011915", "___s": true }, { @@ -116195,7 +116241,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#toJSON", "scope": "instance", - "___id": "T000002R011939", + "___id": "T000002R011922", "___s": true }, { @@ -116244,7 +116290,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#onChange", "scope": "instance", - "___id": "T000002R011941", + "___id": "T000002R011924", "___s": true }, { @@ -116277,7 +116323,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#getMethod", "scope": "instance", - "___id": "T000002R011952", + "___id": "T000002R011935", "___s": true }, { @@ -116311,7 +116357,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#setMethods", "scope": "instance", - "___id": "T000002R011956", + "___id": "T000002R011939", "___s": true }, { @@ -116372,7 +116418,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#has", "scope": "instance", - "___id": "T000002R012005", + "___id": "T000002R011988", "___s": true }, { @@ -116446,7 +116492,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#hasBoth", "scope": "instance", - "___id": "T000002R012007", + "___id": "T000002R011990", "___s": true }, { @@ -116520,7 +116566,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#hasEither", "scope": "instance", - "___id": "T000002R012009", + "___id": "T000002R011992", "___s": true }, { @@ -116595,7 +116641,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#defaultEmit", "scope": "instance", - "___id": "T000002R012011", + "___id": "T000002R011994", "___s": true }, { @@ -116682,7 +116728,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#defaultUpdate", "scope": "instance", - "___id": "T000002R012013", + "___id": "T000002R011996", "___s": true }, { @@ -116757,7 +116803,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#proxyEmit", "scope": "instance", - "___id": "T000002R012015", + "___id": "T000002R011998", "___s": true }, { @@ -116844,7 +116890,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#proxyUpdate", "scope": "instance", - "___id": "T000002R012019", + "___id": "T000002R012002", "___s": true }, { @@ -116877,7 +116923,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#staticValueEmit", "scope": "instance", - "___id": "T000002R012023", + "___id": "T000002R012006", "___s": true }, { @@ -116910,7 +116956,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#staticValueUpdate", "scope": "instance", - "___id": "T000002R012025", + "___id": "T000002R012008", "___s": true }, { @@ -116943,7 +116989,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#randomStaticValueEmit", "scope": "instance", - "___id": "T000002R012027", + "___id": "T000002R012010", "___s": true }, { @@ -117004,7 +117050,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#randomRangedValueEmit", "scope": "instance", - "___id": "T000002R012031", + "___id": "T000002R012014", "___s": true }, { @@ -117065,7 +117111,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#randomRangedIntEmit", "scope": "instance", - "___id": "T000002R012037", + "___id": "T000002R012020", "___s": true }, { @@ -117098,7 +117144,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#steppedEmit", "scope": "instance", - "___id": "T000002R012043", + "___id": "T000002R012026", "___s": true }, { @@ -117159,7 +117205,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#easedValueEmit", "scope": "instance", - "___id": "T000002R012060", + "___id": "T000002R012043", "___s": true }, { @@ -117233,7 +117279,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#easeValueUpdate", "scope": "instance", - "___id": "T000002R012066", + "___id": "T000002R012049", "___s": true }, { @@ -117252,7 +117298,7 @@ "memberof": "Phaser.GameObjects.Particles.EmitterOp", "longname": "Phaser.GameObjects.Particles.EmitterOp#destroy", "scope": "instance", - "___id": "T000002R012074", + "___id": "T000002R012057", "___s": true }, { @@ -117295,7 +117341,7 @@ "memberof": "Phaser.GameObjects.Particles.Events", "longname": "Phaser.GameObjects.Particles.Events#event:COMPLETE", "scope": "instance", - "___id": "T000002R012083", + "___id": "T000002R012066", "___s": true }, { @@ -117364,7 +117410,7 @@ "memberof": "Phaser.GameObjects.Particles.Events", "longname": "Phaser.GameObjects.Particles.Events#event:DEATH_ZONE", "scope": "instance", - "___id": "T000002R012085", + "___id": "T000002R012068", "___s": true }, { @@ -117420,7 +117466,7 @@ "memberof": "Phaser.GameObjects.Particles.Events", "longname": "Phaser.GameObjects.Particles.Events#event:EXPLODE", "scope": "instance", - "___id": "T000002R012087", + "___id": "T000002R012070", "___s": true }, { @@ -117437,7 +117483,7 @@ "memberof": "Phaser.GameObjects.Particles", "longname": "Phaser.GameObjects.Particles.Events", "scope": "static", - "___id": "T000002R012089", + "___id": "T000002R012072", "___s": true }, { @@ -117480,7 +117526,7 @@ "memberof": "Phaser.GameObjects.Particles.Events", "longname": "Phaser.GameObjects.Particles.Events#event:START", "scope": "instance", - "___id": "T000002R012096", + "___id": "T000002R012079", "___s": true }, { @@ -117523,7 +117569,7 @@ "memberof": "Phaser.GameObjects.Particles.Events", "longname": "Phaser.GameObjects.Particles.Events#event:STOP", "scope": "instance", - "___id": "T000002R012098", + "___id": "T000002R012081", "___s": true }, { @@ -117632,7 +117678,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Particles.GravityWell", - "___id": "T000002R012103", + "___id": "T000002R012086", "___s": true }, { @@ -117693,7 +117739,7 @@ "longname": "Phaser.GameObjects.Particles.GravityWell#update", "scope": "instance", "overrides": "Phaser.GameObjects.Particles.ParticleProcessor#update", - "___id": "T000002R012124", + "___id": "T000002R012107", "___s": true }, { @@ -117721,7 +117767,7 @@ "longname": "Phaser.GameObjects.Particles.GravityWell#epsilon", "scope": "instance", "kind": "member", - "___id": "T000002R012134", + "___id": "T000002R012117", "___s": true }, { @@ -117749,7 +117795,7 @@ "longname": "Phaser.GameObjects.Particles.GravityWell#power", "scope": "instance", "kind": "member", - "___id": "T000002R012139", + "___id": "T000002R012122", "___s": true }, { @@ -117777,7 +117823,7 @@ "longname": "Phaser.GameObjects.Particles.GravityWell#gravity", "scope": "instance", "kind": "member", - "___id": "T000002R012144", + "___id": "T000002R012127", "___s": true }, { @@ -117794,7 +117840,7 @@ "memberof": "Phaser.GameObjects", "longname": "Phaser.GameObjects.Particles", "scope": "static", - "___id": "T000002R012152", + "___id": "T000002R012135", "___s": true }, { @@ -117828,7 +117874,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Particles.Particle", - "___id": "T000002R012170", + "___id": "T000002R012153", "___s": true }, { @@ -117856,7 +117902,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#emitter", "scope": "instance", "kind": "member", - "___id": "T000002R012173", + "___id": "T000002R012156", "___s": true }, { @@ -117885,7 +117931,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#texture", "scope": "instance", "kind": "member", - "___id": "T000002R012175", + "___id": "T000002R012158", "___s": true }, { @@ -117914,7 +117960,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#frame", "scope": "instance", "kind": "member", - "___id": "T000002R012177", + "___id": "T000002R012160", "___s": true }, { @@ -117943,7 +117989,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#x", "scope": "instance", "kind": "member", - "___id": "T000002R012179", + "___id": "T000002R012162", "___s": true }, { @@ -117972,7 +118018,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#y", "scope": "instance", "kind": "member", - "___id": "T000002R012181", + "___id": "T000002R012164", "___s": true }, { @@ -118000,7 +118046,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#worldPosition", "scope": "instance", "kind": "member", - "___id": "T000002R012183", + "___id": "T000002R012166", "___s": true }, { @@ -118029,7 +118075,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#velocityX", "scope": "instance", "kind": "member", - "___id": "T000002R012185", + "___id": "T000002R012168", "___s": true }, { @@ -118058,7 +118104,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#velocityY", "scope": "instance", "kind": "member", - "___id": "T000002R012187", + "___id": "T000002R012170", "___s": true }, { @@ -118087,7 +118133,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#accelerationX", "scope": "instance", "kind": "member", - "___id": "T000002R012189", + "___id": "T000002R012172", "___s": true }, { @@ -118116,7 +118162,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#accelerationY", "scope": "instance", "kind": "member", - "___id": "T000002R012191", + "___id": "T000002R012174", "___s": true }, { @@ -118145,7 +118191,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#maxVelocityX", "scope": "instance", "kind": "member", - "___id": "T000002R012193", + "___id": "T000002R012176", "___s": true }, { @@ -118174,7 +118220,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#maxVelocityY", "scope": "instance", "kind": "member", - "___id": "T000002R012195", + "___id": "T000002R012178", "___s": true }, { @@ -118203,7 +118249,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#bounce", "scope": "instance", "kind": "member", - "___id": "T000002R012197", + "___id": "T000002R012180", "___s": true }, { @@ -118232,7 +118278,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#scaleX", "scope": "instance", "kind": "member", - "___id": "T000002R012199", + "___id": "T000002R012182", "___s": true }, { @@ -118261,7 +118307,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#scaleY", "scope": "instance", "kind": "member", - "___id": "T000002R012201", + "___id": "T000002R012184", "___s": true }, { @@ -118290,7 +118336,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#alpha", "scope": "instance", "kind": "member", - "___id": "T000002R012203", + "___id": "T000002R012186", "___s": true }, { @@ -118319,7 +118365,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#angle", "scope": "instance", "kind": "member", - "___id": "T000002R012205", + "___id": "T000002R012188", "___s": true }, { @@ -118348,7 +118394,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#rotation", "scope": "instance", "kind": "member", - "___id": "T000002R012207", + "___id": "T000002R012190", "___s": true }, { @@ -118383,7 +118429,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#tint", "scope": "instance", "kind": "member", - "___id": "T000002R012209", + "___id": "T000002R012192", "___s": true }, { @@ -118412,7 +118458,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#life", "scope": "instance", "kind": "member", - "___id": "T000002R012211", + "___id": "T000002R012194", "___s": true }, { @@ -118441,7 +118487,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#lifeCurrent", "scope": "instance", "kind": "member", - "___id": "T000002R012213", + "___id": "T000002R012196", "___s": true }, { @@ -118470,7 +118516,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#delayCurrent", "scope": "instance", "kind": "member", - "___id": "T000002R012215", + "___id": "T000002R012198", "___s": true }, { @@ -118499,7 +118545,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#holdCurrent", "scope": "instance", "kind": "member", - "___id": "T000002R012217", + "___id": "T000002R012200", "___s": true }, { @@ -118528,7 +118574,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#lifeT", "scope": "instance", "kind": "member", - "___id": "T000002R012219", + "___id": "T000002R012202", "___s": true }, { @@ -118556,7 +118602,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#data", "scope": "instance", "kind": "member", - "___id": "T000002R012221", + "___id": "T000002R012204", "___s": true }, { @@ -118584,7 +118630,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#scene", "scope": "instance", "kind": "member", - "___id": "T000002R012267", + "___id": "T000002R012250", "___s": true }, { @@ -118612,7 +118658,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#anims", "scope": "instance", "kind": "member", - "___id": "T000002R012269", + "___id": "T000002R012252", "___s": true }, { @@ -118640,7 +118686,7 @@ "longname": "Phaser.GameObjects.Particles.Particle#bounds", "scope": "instance", "kind": "member", - "___id": "T000002R012271", + "___id": "T000002R012254", "___s": true }, { @@ -118768,7 +118814,7 @@ "memberof": "Phaser.GameObjects.Particles.Particle", "longname": "Phaser.GameObjects.Particles.Particle#emit", "scope": "instance", - "___id": "T000002R012273", + "___id": "T000002R012256", "___s": true }, { @@ -118801,7 +118847,7 @@ "memberof": "Phaser.GameObjects.Particles.Particle", "longname": "Phaser.GameObjects.Particles.Particle#isAlive", "scope": "instance", - "___id": "T000002R012275", + "___id": "T000002R012258", "___s": true }, { @@ -118820,7 +118866,7 @@ "memberof": "Phaser.GameObjects.Particles.Particle", "longname": "Phaser.GameObjects.Particles.Particle#kill", "scope": "instance", - "___id": "T000002R012277", + "___id": "T000002R012260", "___s": true }, { @@ -118871,7 +118917,7 @@ "memberof": "Phaser.GameObjects.Particles.Particle", "longname": "Phaser.GameObjects.Particles.Particle#setPosition", "scope": "instance", - "___id": "T000002R012280", + "___id": "T000002R012263", "___s": true }, { @@ -118934,7 +118980,7 @@ "memberof": "Phaser.GameObjects.Particles.Particle", "longname": "Phaser.GameObjects.Particles.Particle#fire", "scope": "instance", - "___id": "T000002R012286", + "___id": "T000002R012269", "___s": true }, { @@ -119017,7 +119063,7 @@ "memberof": "Phaser.GameObjects.Particles.Particle", "longname": "Phaser.GameObjects.Particles.Particle#update", "scope": "instance", - "___id": "T000002R012329", + "___id": "T000002R012312", "___s": true }, { @@ -119112,7 +119158,7 @@ "memberof": "Phaser.GameObjects.Particles.Particle", "longname": "Phaser.GameObjects.Particles.Particle#computeVelocity", "scope": "instance", - "___id": "T000002R012354", + "___id": "T000002R012337", "___s": true }, { @@ -119131,7 +119177,7 @@ "memberof": "Phaser.GameObjects.Particles.Particle", "longname": "Phaser.GameObjects.Particles.Particle#setSizeToFrame", "scope": "instance", - "___id": "T000002R012374", + "___id": "T000002R012357", "___s": true }, { @@ -119180,7 +119226,7 @@ "memberof": "Phaser.GameObjects.Particles.Particle", "longname": "Phaser.GameObjects.Particles.Particle#getBounds", "scope": "instance", - "___id": "T000002R012376", + "___id": "T000002R012359", "___s": true }, { @@ -119199,7 +119245,7 @@ "memberof": "Phaser.GameObjects.Particles.Particle", "longname": "Phaser.GameObjects.Particles.Particle#destroy", "scope": "instance", - "___id": "T000002R012395", + "___id": "T000002R012378", "___s": true }, { @@ -119335,7 +119381,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Particles.ParticleBounds", - "___id": "T000002R012406", + "___id": "T000002R012389", "___s": true }, { @@ -119363,7 +119409,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleBounds#bounds", "scope": "instance", "kind": "member", - "___id": "T000002R012414", + "___id": "T000002R012397", "___s": true }, { @@ -119392,7 +119438,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleBounds#collideLeft", "scope": "instance", "kind": "member", - "___id": "T000002R012416", + "___id": "T000002R012399", "___s": true }, { @@ -119421,7 +119467,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleBounds#collideRight", "scope": "instance", "kind": "member", - "___id": "T000002R012418", + "___id": "T000002R012401", "___s": true }, { @@ -119450,7 +119496,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleBounds#collideTop", "scope": "instance", "kind": "member", - "___id": "T000002R012420", + "___id": "T000002R012403", "___s": true }, { @@ -119479,7 +119525,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleBounds#collideBottom", "scope": "instance", "kind": "member", - "___id": "T000002R012422", + "___id": "T000002R012405", "___s": true }, { @@ -119514,7 +119560,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleBounds#update", "scope": "instance", "overrides": "Phaser.GameObjects.Particles.ParticleProcessor#update", - "___id": "T000002R012424", + "___id": "T000002R012407", "___s": true }, { @@ -119627,7 +119673,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Particles.ParticleEmitter", - "___id": "T000002R012469", + "___id": "T000002R012452", "___s": true }, { @@ -119659,7 +119705,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#particleClass", "scope": "instance", "kind": "member", - "___id": "T000002R012474", + "___id": "T000002R012457", "___s": true }, { @@ -119687,7 +119733,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#config", "scope": "instance", "kind": "member", - "___id": "T000002R012476", + "___id": "T000002R012459", "___s": true }, { @@ -119715,7 +119761,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#ops", "scope": "instance", "kind": "member", - "___id": "T000002R012478", + "___id": "T000002R012461", "___s": true }, { @@ -119747,7 +119793,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#radial", "scope": "instance", "kind": "member", - "___id": "T000002R012504", + "___id": "T000002R012487", "___s": true }, { @@ -119779,7 +119825,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#gravityX", "scope": "instance", "kind": "member", - "___id": "T000002R012506", + "___id": "T000002R012489", "___s": true }, { @@ -119811,7 +119857,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#gravityY", "scope": "instance", "kind": "member", - "___id": "T000002R012508", + "___id": "T000002R012491", "___s": true }, { @@ -119840,7 +119886,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#acceleration", "scope": "instance", "kind": "member", - "___id": "T000002R012510", + "___id": "T000002R012493", "___s": true }, { @@ -119869,7 +119915,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#moveTo", "scope": "instance", "kind": "member", - "___id": "T000002R012512", + "___id": "T000002R012495", "___s": true }, { @@ -119900,7 +119946,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#emitCallback", "scope": "instance", "kind": "member", - "___id": "T000002R012514", + "___id": "T000002R012497", "___s": true }, { @@ -119930,7 +119976,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#emitCallbackScope", "scope": "instance", "kind": "member", - "___id": "T000002R012516", + "___id": "T000002R012499", "___s": true }, { @@ -119961,7 +120007,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#deathCallback", "scope": "instance", "kind": "member", - "___id": "T000002R012518", + "___id": "T000002R012501", "___s": true }, { @@ -119991,7 +120037,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#deathCallbackScope", "scope": "instance", "kind": "member", - "___id": "T000002R012520", + "___id": "T000002R012503", "___s": true }, { @@ -120020,7 +120066,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#maxParticles", "scope": "instance", "kind": "member", - "___id": "T000002R012522", + "___id": "T000002R012505", "___s": true }, { @@ -120049,7 +120095,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#maxAliveParticles", "scope": "instance", "kind": "member", - "___id": "T000002R012524", + "___id": "T000002R012507", "___s": true }, { @@ -120078,7 +120124,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#stopAfter", "scope": "instance", "kind": "member", - "___id": "T000002R012526", + "___id": "T000002R012509", "___s": true }, { @@ -120107,7 +120153,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#duration", "scope": "instance", "kind": "member", - "___id": "T000002R012528", + "___id": "T000002R012511", "___s": true }, { @@ -120139,7 +120185,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#frequency", "scope": "instance", "kind": "member", - "___id": "T000002R012530", + "___id": "T000002R012513", "___s": true }, { @@ -120168,7 +120214,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#emitting", "scope": "instance", "kind": "member", - "___id": "T000002R012532", + "___id": "T000002R012515", "___s": true }, { @@ -120197,7 +120243,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#particleBringToTop", "scope": "instance", "kind": "member", - "___id": "T000002R012534", + "___id": "T000002R012517", "___s": true }, { @@ -120226,7 +120272,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#timeScale", "scope": "instance", "kind": "member", - "___id": "T000002R012536", + "___id": "T000002R012519", "___s": true }, { @@ -120266,7 +120312,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#emitZones", "scope": "instance", "kind": "member", - "___id": "T000002R012538", + "___id": "T000002R012521", "___s": true }, { @@ -120306,7 +120352,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#deathZones", "scope": "instance", "kind": "member", - "___id": "T000002R012540", + "___id": "T000002R012523", "___s": true }, { @@ -120340,7 +120386,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#viewBounds", "scope": "instance", "kind": "member", - "___id": "T000002R012542", + "___id": "T000002R012525", "___s": true }, { @@ -120375,7 +120421,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#follow", "scope": "instance", "kind": "member", - "___id": "T000002R012544", + "___id": "T000002R012527", "___s": true }, { @@ -120406,7 +120452,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#followOffset", "scope": "instance", "kind": "member", - "___id": "T000002R012546", + "___id": "T000002R012529", "___s": true }, { @@ -120438,7 +120484,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#trackVisible", "scope": "instance", "kind": "member", - "___id": "T000002R012548", + "___id": "T000002R012531", "___s": true }, { @@ -120475,7 +120521,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#frames", "scope": "instance", "kind": "member", - "___id": "T000002R012550", + "___id": "T000002R012533", "___s": true }, { @@ -120507,7 +120553,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#randomFrame", "scope": "instance", "kind": "member", - "___id": "T000002R012552", + "___id": "T000002R012535", "___s": true }, { @@ -120539,7 +120585,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#frameQuantity", "scope": "instance", "kind": "member", - "___id": "T000002R012554", + "___id": "T000002R012537", "___s": true }, { @@ -120576,7 +120622,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#anims", "scope": "instance", "kind": "member", - "___id": "T000002R012556", + "___id": "T000002R012539", "___s": true }, { @@ -120608,7 +120654,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#randomAnim", "scope": "instance", "kind": "member", - "___id": "T000002R012558", + "___id": "T000002R012541", "___s": true }, { @@ -120640,7 +120686,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#animQuantity", "scope": "instance", "kind": "member", - "___id": "T000002R012560", + "___id": "T000002R012543", "___s": true }, { @@ -120669,7 +120715,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#skipping", "scope": "instance", "kind": "member", - "___id": "T000002R012568", + "___id": "T000002R012551", "___s": true }, { @@ -120697,7 +120743,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#worldMatrix", "scope": "instance", "kind": "member", - "___id": "T000002R012570", + "___id": "T000002R012553", "___s": true }, { @@ -120725,7 +120771,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#sortProperty", "scope": "instance", "kind": "member", - "___id": "T000002R012572", + "___id": "T000002R012555", "___s": true }, { @@ -120753,7 +120799,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#sortOrderAsc", "scope": "instance", "kind": "member", - "___id": "T000002R012574", + "___id": "T000002R012557", "___s": true }, { @@ -120783,7 +120829,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#sortCallback", "scope": "instance", "kind": "member", - "___id": "T000002R012576", + "___id": "T000002R012559", "___s": true }, { @@ -120820,7 +120866,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#processors", "scope": "instance", "kind": "member", - "___id": "T000002R012578", + "___id": "T000002R012561", "___s": true }, { @@ -120849,7 +120895,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#tintFill", "scope": "instance", "kind": "member", - "___id": "T000002R012580", + "___id": "T000002R012563", "___s": true }, { @@ -120898,7 +120944,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setConfig", "scope": "instance", - "___id": "T000002R012584", + "___id": "T000002R012567", "___s": true }, { @@ -120947,7 +120993,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#updateConfig", "scope": "instance", - "___id": "T000002R012608", + "___id": "T000002R012591", "___s": true }, { @@ -120981,7 +121027,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#toJSON", "scope": "instance", "overrides": "Phaser.GameObjects.GameObject#toJSON", - "___id": "T000002R012610", + "___id": "T000002R012593", "___s": true }, { @@ -121028,7 +121074,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#resetCounters", "scope": "instance", - "___id": "T000002R012624", + "___id": "T000002R012607", "___s": true }, { @@ -121122,7 +121168,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#startFollow", "scope": "instance", - "___id": "T000002R012629", + "___id": "T000002R012612", "___s": true }, { @@ -121156,7 +121202,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#stopFollow", "scope": "instance", - "___id": "T000002R012636", + "___id": "T000002R012619", "___s": true }, { @@ -121189,7 +121235,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#getFrame", "scope": "instance", - "___id": "T000002R012640", + "___id": "T000002R012623", "___s": true }, { @@ -121288,7 +121334,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setEmitterFrame", "scope": "instance", - "___id": "T000002R012650", + "___id": "T000002R012633", "___s": true }, { @@ -121321,7 +121367,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#getAnim", "scope": "instance", - "___id": "T000002R012668", + "___id": "T000002R012651", "___s": true }, { @@ -121424,7 +121470,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setAnim", "scope": "instance", - "___id": "T000002R012675", + "___id": "T000002R012658", "___s": true }, { @@ -121475,7 +121521,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setRadial", "scope": "instance", - "___id": "T000002R012693", + "___id": "T000002R012676", "___s": true }, { @@ -121640,7 +121686,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#addParticleBounds", "scope": "instance", - "___id": "T000002R012697", + "___id": "T000002R012680", "___s": true }, { @@ -121704,7 +121750,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setParticleSpeed", "scope": "instance", - "___id": "T000002R012704", + "___id": "T000002R012687", "___s": true }, { @@ -121770,7 +121816,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setParticleScale", "scope": "instance", - "___id": "T000002R012709", + "___id": "T000002R012692", "___s": true }, { @@ -121832,7 +121878,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setParticleGravity", "scope": "instance", - "___id": "T000002R012713", + "___id": "T000002R012696", "___s": true }, { @@ -121891,7 +121937,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setParticleAlpha", "scope": "instance", - "___id": "T000002R012717", + "___id": "T000002R012700", "___s": true }, { @@ -121957,7 +122003,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setParticleTint", "scope": "instance", - "___id": "T000002R012719", + "___id": "T000002R012702", "___s": true }, { @@ -122006,7 +122052,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setEmitterAngle", "scope": "instance", - "___id": "T000002R012721", + "___id": "T000002R012704", "___s": true }, { @@ -122055,7 +122101,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setParticleLifespan", "scope": "instance", - "___id": "T000002R012723", + "___id": "T000002R012706", "___s": true }, { @@ -122104,7 +122150,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setQuantity", "scope": "instance", - "___id": "T000002R012725", + "___id": "T000002R012708", "___s": true }, { @@ -122167,7 +122213,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setFrequency", "scope": "instance", - "___id": "T000002R012728", + "___id": "T000002R012711", "___s": true }, { @@ -122243,7 +122289,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#addDeathZone", "scope": "instance", - "___id": "T000002R012733", + "___id": "T000002R012716", "___s": true }, { @@ -122292,7 +122338,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#removeDeathZone", "scope": "instance", - "___id": "T000002R012746", + "___id": "T000002R012729", "___s": true }, { @@ -122326,7 +122372,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#clearDeathZones", "scope": "instance", - "___id": "T000002R012748", + "___id": "T000002R012731", "___s": true }, { @@ -122402,7 +122448,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#addEmitZone", "scope": "instance", - "___id": "T000002R012751", + "___id": "T000002R012734", "___s": true }, { @@ -122461,7 +122507,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#removeEmitZone", "scope": "instance", - "___id": "T000002R012768", + "___id": "T000002R012751", "___s": true }, { @@ -122495,7 +122541,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#clearEmitZones", "scope": "instance", - "___id": "T000002R012771", + "___id": "T000002R012754", "___s": true }, { @@ -122529,7 +122575,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#getEmitZone", "scope": "instance", - "___id": "T000002R012775", + "___id": "T000002R012758", "___s": true }, { @@ -122580,7 +122626,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#getDeathZone", "scope": "instance", - "___id": "T000002R012782", + "___id": "T000002R012765", "___s": true }, { @@ -122644,7 +122690,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setEmitZone", "scope": "instance", - "___id": "T000002R012787", + "___id": "T000002R012770", "___s": true }, { @@ -122700,7 +122746,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#addParticleProcessor", "scope": "instance", - "___id": "T000002R012793", + "___id": "T000002R012776", "___s": true }, { @@ -122758,7 +122804,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#removeParticleProcessor", "scope": "instance", - "___id": "T000002R012796", + "___id": "T000002R012779", "___s": true }, { @@ -122800,7 +122846,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#getProcessors", "scope": "instance", - "___id": "T000002R012799", + "___id": "T000002R012782", "___s": true }, { @@ -122848,7 +122894,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#createGravityWell", "scope": "instance", - "___id": "T000002R012801", + "___id": "T000002R012784", "___s": true }, { @@ -122897,7 +122943,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#reserve", "scope": "instance", - "___id": "T000002R012803", + "___id": "T000002R012786", "___s": true }, { @@ -122930,7 +122976,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#getAliveParticleCount", "scope": "instance", - "___id": "T000002R012809", + "___id": "T000002R012792", "___s": true }, { @@ -122963,7 +123009,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#getDeadParticleCount", "scope": "instance", - "___id": "T000002R012811", + "___id": "T000002R012794", "___s": true }, { @@ -122996,7 +123042,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#getParticleCount", "scope": "instance", - "___id": "T000002R012813", + "___id": "T000002R012796", "___s": true }, { @@ -123029,7 +123075,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#atLimit", "scope": "instance", - "___id": "T000002R012815", + "___id": "T000002R012798", "___s": true }, { @@ -123091,7 +123137,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#onParticleEmit", "scope": "instance", - "___id": "T000002R012817", + "___id": "T000002R012800", "___s": true }, { @@ -123153,7 +123199,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#onParticleDeath", "scope": "instance", - "___id": "T000002R012823", + "___id": "T000002R012806", "___s": true }, { @@ -123187,7 +123233,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#killAll", "scope": "instance", - "___id": "T000002R012829", + "___id": "T000002R012812", "___s": true }, { @@ -123248,7 +123294,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#forEachAlive", "scope": "instance", - "___id": "T000002R012833", + "___id": "T000002R012816", "___s": true }, { @@ -123309,7 +123355,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#forEachDead", "scope": "instance", - "___id": "T000002R012838", + "___id": "T000002R012821", "___s": true }, { @@ -123378,7 +123424,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#start", "scope": "instance", - "___id": "T000002R012843", + "___id": "T000002R012826", "___s": true }, { @@ -123432,7 +123478,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#stop", "scope": "instance", - "___id": "T000002R012848", + "___id": "T000002R012831", "___s": true }, { @@ -123466,7 +123512,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#pause", "scope": "instance", - "___id": "T000002R012852", + "___id": "T000002R012835", "___s": true }, { @@ -123500,7 +123546,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#resume", "scope": "instance", - "___id": "T000002R012855", + "___id": "T000002R012838", "___s": true }, { @@ -123565,7 +123611,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setSortProperty", "scope": "instance", - "___id": "T000002R012858", + "___id": "T000002R012841", "___s": true }, { @@ -123615,7 +123661,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#setSortCallback", "scope": "instance", - "___id": "T000002R012865", + "___id": "T000002R012848", "___s": true }, { @@ -123649,7 +123695,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#depthSort", "scope": "instance", - "___id": "T000002R012870", + "___id": "T000002R012853", "___s": true }, { @@ -123710,7 +123756,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#depthSortCallback", "scope": "instance", - "___id": "T000002R012872", + "___id": "T000002R012855", "___s": true }, { @@ -123791,7 +123837,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#flow", "scope": "instance", - "___id": "T000002R012875", + "___id": "T000002R012858", "___s": true }, { @@ -123883,7 +123929,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#explode", "scope": "instance", - "___id": "T000002R012882", + "___id": "T000002R012865", "___s": true }, { @@ -123972,7 +124018,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#emitParticleAt", "scope": "instance", - "___id": "T000002R012886", + "___id": "T000002R012869", "___s": true }, { @@ -124064,7 +124110,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#emitParticle", "scope": "instance", - "___id": "T000002R012888", + "___id": "T000002R012871", "___s": true }, { @@ -124127,7 +124173,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#fastForward", "scope": "instance", - "___id": "T000002R012898", + "___id": "T000002R012881", "___s": true }, { @@ -124177,7 +124223,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#preUpdate", "scope": "instance", - "___id": "T000002R012905", + "___id": "T000002R012888", "___s": true }, { @@ -124244,7 +124290,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#overlap", "scope": "instance", - "___id": "T000002R012929", + "___id": "T000002R012912", "___s": true }, { @@ -124335,7 +124381,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#getBounds", "scope": "instance", - "___id": "T000002R012937", + "___id": "T000002R012920", "___s": true }, { @@ -124354,7 +124400,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#createEmitter", "scope": "instance", - "___id": "T000002R012958", + "___id": "T000002R012941", "___s": true }, { @@ -124392,7 +124438,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#particleX", "scope": "instance", "kind": "member", - "___id": "T000002R012960", + "___id": "T000002R012943", "___s": true }, { @@ -124430,7 +124476,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#particleY", "scope": "instance", "kind": "member", - "___id": "T000002R012964", + "___id": "T000002R012947", "___s": true }, { @@ -124458,7 +124504,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#accelerationX", "scope": "instance", "kind": "member", - "___id": "T000002R012968", + "___id": "T000002R012951", "___s": true }, { @@ -124486,7 +124532,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#accelerationY", "scope": "instance", "kind": "member", - "___id": "T000002R012972", + "___id": "T000002R012955", "___s": true }, { @@ -124515,7 +124561,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#maxVelocityX", "scope": "instance", "kind": "member", - "___id": "T000002R012976", + "___id": "T000002R012959", "___s": true }, { @@ -124544,7 +124590,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#maxVelocityY", "scope": "instance", "kind": "member", - "___id": "T000002R012980", + "___id": "T000002R012963", "___s": true }, { @@ -124572,7 +124618,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#speed", "scope": "instance", "kind": "member", - "___id": "T000002R012984", + "___id": "T000002R012967", "___s": true }, { @@ -124600,7 +124646,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#speedX", "scope": "instance", "kind": "member", - "___id": "T000002R012988", + "___id": "T000002R012971", "___s": true }, { @@ -124628,7 +124674,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#speedY", "scope": "instance", "kind": "member", - "___id": "T000002R012992", + "___id": "T000002R012975", "___s": true }, { @@ -124656,7 +124702,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#moveToX", "scope": "instance", "kind": "member", - "___id": "T000002R012996", + "___id": "T000002R012979", "___s": true }, { @@ -124684,7 +124730,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#moveToY", "scope": "instance", "kind": "member", - "___id": "T000002R013000", + "___id": "T000002R012983", "___s": true }, { @@ -124712,7 +124758,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#bounce", "scope": "instance", "kind": "member", - "___id": "T000002R013004", + "___id": "T000002R012987", "___s": true }, { @@ -124740,7 +124786,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#particleScaleX", "scope": "instance", "kind": "member", - "___id": "T000002R013008", + "___id": "T000002R012991", "___s": true }, { @@ -124768,7 +124814,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#particleScaleY", "scope": "instance", "kind": "member", - "___id": "T000002R013012", + "___id": "T000002R012995", "___s": true }, { @@ -124796,7 +124842,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#particleColor", "scope": "instance", "kind": "member", - "___id": "T000002R013016", + "___id": "T000002R012999", "___s": true }, { @@ -124824,7 +124870,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#colorEase", "scope": "instance", "kind": "member", - "___id": "T000002R013020", + "___id": "T000002R013003", "___s": true }, { @@ -124852,7 +124898,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#particleTint", "scope": "instance", "kind": "member", - "___id": "T000002R013024", + "___id": "T000002R013007", "___s": true }, { @@ -124880,7 +124926,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#particleAlpha", "scope": "instance", "kind": "member", - "___id": "T000002R013028", + "___id": "T000002R013011", "___s": true }, { @@ -124908,7 +124954,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#lifespan", "scope": "instance", "kind": "member", - "___id": "T000002R013032", + "___id": "T000002R013015", "___s": true }, { @@ -124936,7 +124982,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#particleAngle", "scope": "instance", "kind": "member", - "___id": "T000002R013036", + "___id": "T000002R013019", "___s": true }, { @@ -124964,7 +125010,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#particleRotate", "scope": "instance", "kind": "member", - "___id": "T000002R013040", + "___id": "T000002R013023", "___s": true }, { @@ -124996,7 +125042,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#quantity", "scope": "instance", "kind": "member", - "___id": "T000002R013044", + "___id": "T000002R013027", "___s": true }, { @@ -125024,7 +125070,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#delay", "scope": "instance", "kind": "member", - "___id": "T000002R013048", + "___id": "T000002R013031", "___s": true }, { @@ -125052,7 +125098,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#hold", "scope": "instance", "kind": "member", - "___id": "T000002R013052", + "___id": "T000002R013035", "___s": true }, { @@ -125080,7 +125126,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#flowCounter", "scope": "instance", "kind": "member", - "___id": "T000002R013056", + "___id": "T000002R013039", "___s": true }, { @@ -125108,7 +125154,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#frameCounter", "scope": "instance", "kind": "member", - "___id": "T000002R013061", + "___id": "T000002R013044", "___s": true }, { @@ -125136,7 +125182,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#animCounter", "scope": "instance", "kind": "member", - "___id": "T000002R013066", + "___id": "T000002R013049", "___s": true }, { @@ -125164,7 +125210,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#elapsed", "scope": "instance", "kind": "member", - "___id": "T000002R013071", + "___id": "T000002R013054", "___s": true }, { @@ -125192,7 +125238,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#stopCounter", "scope": "instance", "kind": "member", - "___id": "T000002R013076", + "___id": "T000002R013059", "___s": true }, { @@ -125220,7 +125266,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#completeFlag", "scope": "instance", "kind": "member", - "___id": "T000002R013081", + "___id": "T000002R013064", "___s": true }, { @@ -125248,7 +125294,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#zoneIndex", "scope": "instance", "kind": "member", - "___id": "T000002R013086", + "___id": "T000002R013069", "___s": true }, { @@ -125276,7 +125322,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#zoneTotal", "scope": "instance", "kind": "member", - "___id": "T000002R013091", + "___id": "T000002R013074", "___s": true }, { @@ -125304,7 +125350,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#currentFrame", "scope": "instance", "kind": "member", - "___id": "T000002R013096", + "___id": "T000002R013079", "___s": true }, { @@ -125332,7 +125378,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleEmitter#currentAnim", "scope": "instance", "kind": "member", - "___id": "T000002R013101", + "___id": "T000002R013084", "___s": true }, { @@ -125351,7 +125397,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "longname": "Phaser.GameObjects.Particles.ParticleEmitter#preDestroy", "scope": "instance", - "___id": "T000002R013106", + "___id": "T000002R013089", "___s": true }, { @@ -125413,7 +125459,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#particles", "scope": "instance", - "___id": "T000002R013171", + "___id": "T000002R013154", "___s": true }, { @@ -125514,7 +125560,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#particles", "scope": "instance", - "___id": "T000002R013179", + "___id": "T000002R013162", "___s": true }, { @@ -125580,7 +125626,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Particles.ParticleProcessor", - "___id": "T000002R013226", + "___id": "T000002R013209", "___s": true }, { @@ -125608,7 +125654,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleProcessor#manager", "scope": "instance", "kind": "member", - "___id": "T000002R013232", + "___id": "T000002R013215", "___s": true }, { @@ -125636,7 +125682,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleProcessor#x", "scope": "instance", "kind": "member", - "___id": "T000002R013234", + "___id": "T000002R013217", "___s": true }, { @@ -125664,7 +125710,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleProcessor#y", "scope": "instance", "kind": "member", - "___id": "T000002R013236", + "___id": "T000002R013219", "___s": true }, { @@ -125692,7 +125738,7 @@ "longname": "Phaser.GameObjects.Particles.ParticleProcessor#active", "scope": "instance", "kind": "member", - "___id": "T000002R013238", + "___id": "T000002R013221", "___s": true }, { @@ -125765,7 +125811,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleProcessor", "longname": "Phaser.GameObjects.Particles.ParticleProcessor#update", "scope": "instance", - "___id": "T000002R013240", + "___id": "T000002R013223", "___s": true }, { @@ -125784,7 +125830,7 @@ "memberof": "Phaser.GameObjects.Particles.ParticleProcessor", "longname": "Phaser.GameObjects.Particles.ParticleProcessor#destroy", "scope": "instance", - "___id": "T000002R013242", + "___id": "T000002R013225", "___s": true }, { @@ -125826,7 +125872,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.DeathZoneObject", "scope": "static", - "___id": "T000002R013246", + "___id": "T000002R013229", "___s": true }, { @@ -125874,7 +125920,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.DeathZoneSource", "scope": "static", - "___id": "T000002R013247", + "___id": "T000002R013230", "___s": true }, { @@ -125939,7 +125985,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.DeathZoneSourceCallback", "scope": "static", - "___id": "T000002R013248", + "___id": "T000002R013231", "___s": true }, { @@ -125991,7 +126037,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EdgeZoneSource", "scope": "static", - "___id": "T000002R013249", + "___id": "T000002R013232", "___s": true }, { @@ -126066,7 +126112,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EdgeZoneSourceCallback", "scope": "static", - "___id": "T000002R013250", + "___id": "T000002R013233", "___s": true }, { @@ -126108,7 +126154,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitterOpCustomEmitConfig", "scope": "static", - "___id": "T000002R013251", + "___id": "T000002R013234", "___s": true }, { @@ -126164,7 +126210,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitterOpCustomUpdateConfig", "scope": "static", - "___id": "T000002R013252", + "___id": "T000002R013235", "___s": true }, { @@ -126282,7 +126328,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitterOpEaseConfig", "scope": "static", - "___id": "T000002R013253", + "___id": "T000002R013236", "___s": true }, { @@ -126407,7 +126453,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitterOpInterpolationConfig", "scope": "static", - "___id": "T000002R013254", + "___id": "T000002R013237", "___s": true }, { @@ -126489,7 +126535,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitterOpOnEmitCallback", "scope": "static", - "___id": "T000002R013255", + "___id": "T000002R013238", "___s": true }, { @@ -126560,7 +126606,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitterOpOnEmitType", "scope": "static", - "___id": "T000002R013256", + "___id": "T000002R013239", "___s": true }, { @@ -126652,7 +126698,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitterOpOnUpdateCallback", "scope": "static", - "___id": "T000002R013257", + "___id": "T000002R013240", "___s": true }, { @@ -126699,7 +126745,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitterOpOnUpdateType", "scope": "static", - "___id": "T000002R013258", + "___id": "T000002R013241", "___s": true }, { @@ -126751,7 +126797,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitterOpRandomConfig", "scope": "static", - "___id": "T000002R013259", + "___id": "T000002R013242", "___s": true }, { @@ -126821,7 +126867,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitterOpRandomMinMaxConfig", "scope": "static", - "___id": "T000002R013260", + "___id": "T000002R013243", "___s": true }, { @@ -126890,7 +126936,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitterOpSteppedConfig", "scope": "static", - "___id": "T000002R013261", + "___id": "T000002R013244", "___s": true }, { @@ -126937,7 +126983,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitZoneData", "scope": "static", - "___id": "T000002R013262", + "___id": "T000002R013245", "___s": true }, { @@ -126974,7 +127020,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.EmitZoneObject", "scope": "static", - "___id": "T000002R013263", + "___id": "T000002R013246", "___s": true }, { @@ -127078,7 +127124,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.GravityWellConfig", "scope": "static", - "___id": "T000002R013264", + "___id": "T000002R013247", "___s": true }, { @@ -127095,7 +127141,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Particles", "scope": "static", - "___id": "T000002R013265", + "___id": "T000002R013248", "___s": true }, { @@ -127133,7 +127179,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleClassConstructor", "scope": "static", - "___id": "T000002R013266", + "___id": "T000002R013249", "___s": true }, { @@ -127358,7 +127404,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleData", "scope": "static", - "___id": "T000002R013267", + "___id": "T000002R013250", "___s": true }, { @@ -127413,7 +127459,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleDataValue", "scope": "static", - "___id": "T000002R013268", + "___id": "T000002R013251", "___s": true }, { @@ -127451,7 +127497,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleDeathCallback", "scope": "static", - "___id": "T000002R013269", + "___id": "T000002R013252", "___s": true }, { @@ -127562,7 +127608,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleEmitterAnimConfig", "scope": "static", - "___id": "T000002R013270", + "___id": "T000002R013253", "___s": true }, { @@ -127646,7 +127692,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleEmitterBounds", "scope": "static", - "___id": "T000002R013271", + "___id": "T000002R013254", "___s": true }, { @@ -127730,7 +127776,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleEmitterBoundsAlt", "scope": "static", - "___id": "T000002R013272", + "___id": "T000002R013255", "___s": true }, { @@ -127781,7 +127827,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleEmitterCallback", "scope": "static", - "___id": "T000002R013273", + "___id": "T000002R013256", "___s": true }, { @@ -129030,7 +129076,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleEmitterConfig", "scope": "static", - "___id": "T000002R013274", + "___id": "T000002R013257", "___s": true }, { @@ -129090,7 +129136,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleEmitterCreatorConfig", "scope": "static", - "___id": "T000002R013275", + "___id": "T000002R013258", "___s": true }, { @@ -129147,7 +129193,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleEmitterDeathZoneConfig", "scope": "static", - "___id": "T000002R013276", + "___id": "T000002R013259", "___s": true }, { @@ -129274,7 +129320,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleEmitterEdgeZoneConfig", "scope": "static", - "___id": "T000002R013277", + "___id": "T000002R013260", "___s": true }, { @@ -129387,7 +129433,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleEmitterFrameConfig", "scope": "static", - "___id": "T000002R013278", + "___id": "T000002R013261", "___s": true }, { @@ -129702,7 +129748,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleEmitterOps", "scope": "static", - "___id": "T000002R013279", + "___id": "T000002R013262", "___s": true }, { @@ -129758,7 +129804,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleEmitterRandomZoneConfig", "scope": "static", - "___id": "T000002R013280", + "___id": "T000002R013263", "___s": true }, { @@ -129809,7 +129855,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.ParticleSortCallback", "scope": "static", - "___id": "T000002R013281", + "___id": "T000002R013264", "___s": true }, { @@ -129859,7 +129905,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.RandomZoneSource", "scope": "static", - "___id": "T000002R013282", + "___id": "T000002R013265", "___s": true }, { @@ -129897,7 +129943,7 @@ "memberof": "Phaser.Types.GameObjects.Particles", "longname": "Phaser.Types.GameObjects.Particles.RandomZoneSourceCallback", "scope": "static", - "___id": "T000002R013283", + "___id": "T000002R013266", "___s": true }, { @@ -129944,7 +129990,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Particles.Zones.DeathZone", - "___id": "T000002R013285", + "___id": "T000002R013268", "___s": true }, { @@ -129972,7 +130018,7 @@ "longname": "Phaser.GameObjects.Particles.Zones.DeathZone#source", "scope": "instance", "kind": "member", - "___id": "T000002R013288", + "___id": "T000002R013271", "___s": true }, { @@ -130000,7 +130046,7 @@ "longname": "Phaser.GameObjects.Particles.Zones.DeathZone#killOnEnter", "scope": "instance", "kind": "member", - "___id": "T000002R013290", + "___id": "T000002R013273", "___s": true }, { @@ -130048,7 +130094,7 @@ "memberof": "Phaser.GameObjects.Particles.Zones.DeathZone", "longname": "Phaser.GameObjects.Particles.Zones.DeathZone#willKill", "scope": "instance", - "___id": "T000002R013292", + "___id": "T000002R013275", "___s": true }, { @@ -130154,7 +130200,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Particles.Zones.EdgeZone", - "___id": "T000002R013297", + "___id": "T000002R013280", "___s": true }, { @@ -130192,7 +130238,7 @@ "longname": "Phaser.GameObjects.Particles.Zones.EdgeZone#source", "scope": "instance", "kind": "member", - "___id": "T000002R013303", + "___id": "T000002R013286", "___s": true }, { @@ -130230,7 +130276,7 @@ "longname": "Phaser.GameObjects.Particles.Zones.EdgeZone#points", "scope": "instance", "kind": "member", - "___id": "T000002R013305", + "___id": "T000002R013288", "___s": true }, { @@ -130258,7 +130304,7 @@ "longname": "Phaser.GameObjects.Particles.Zones.EdgeZone#quantity", "scope": "instance", "kind": "member", - "___id": "T000002R013307", + "___id": "T000002R013290", "___s": true }, { @@ -130286,7 +130332,7 @@ "longname": "Phaser.GameObjects.Particles.Zones.EdgeZone#stepRate", "scope": "instance", "kind": "member", - "___id": "T000002R013309", + "___id": "T000002R013292", "___s": true }, { @@ -130314,7 +130360,7 @@ "longname": "Phaser.GameObjects.Particles.Zones.EdgeZone#yoyo", "scope": "instance", "kind": "member", - "___id": "T000002R013311", + "___id": "T000002R013294", "___s": true }, { @@ -130343,7 +130389,7 @@ "longname": "Phaser.GameObjects.Particles.Zones.EdgeZone#counter", "scope": "instance", "kind": "member", - "___id": "T000002R013313", + "___id": "T000002R013296", "___s": true }, { @@ -130371,7 +130417,7 @@ "longname": "Phaser.GameObjects.Particles.Zones.EdgeZone#seamless", "scope": "instance", "kind": "member", - "___id": "T000002R013315", + "___id": "T000002R013298", "___s": true }, { @@ -130399,7 +130445,7 @@ "longname": "Phaser.GameObjects.Particles.Zones.EdgeZone#total", "scope": "instance", "kind": "member", - "___id": "T000002R013321", + "___id": "T000002R013304", "___s": true }, { @@ -130433,7 +130479,7 @@ "memberof": "Phaser.GameObjects.Particles.Zones.EdgeZone", "longname": "Phaser.GameObjects.Particles.Zones.EdgeZone#updateSource", "scope": "instance", - "___id": "T000002R013323", + "___id": "T000002R013306", "___s": true }, { @@ -130482,7 +130528,7 @@ "memberof": "Phaser.GameObjects.Particles.Zones.EdgeZone", "longname": "Phaser.GameObjects.Particles.Zones.EdgeZone#changeSource", "scope": "instance", - "___id": "T000002R013331", + "___id": "T000002R013314", "___s": true }, { @@ -130516,7 +130562,7 @@ "memberof": "Phaser.GameObjects.Particles.Zones.EdgeZone", "longname": "Phaser.GameObjects.Particles.Zones.EdgeZone#getPoint", "scope": "instance", - "___id": "T000002R013334", + "___id": "T000002R013317", "___s": true }, { @@ -130533,7 +130579,7 @@ "memberof": "Phaser.GameObjects.Particles", "longname": "Phaser.GameObjects.Particles.Zones", "scope": "static", - "___id": "T000002R013346", + "___id": "T000002R013329", "___s": true }, { @@ -130567,7 +130613,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Particles.Zones.RandomZone", - "___id": "T000002R013353", + "___id": "T000002R013336", "___s": true }, { @@ -130595,7 +130641,7 @@ "longname": "Phaser.GameObjects.Particles.Zones.RandomZone#source", "scope": "instance", "kind": "member", - "___id": "T000002R013356", + "___id": "T000002R013339", "___s": true }, { @@ -130623,7 +130669,7 @@ "longname": "Phaser.GameObjects.Particles.Zones.RandomZone#total", "scope": "instance", "kind": "member", - "___id": "T000002R013360", + "___id": "T000002R013343", "___s": true }, { @@ -130657,7 +130703,7 @@ "memberof": "Phaser.GameObjects.Particles.Zones.RandomZone", "longname": "Phaser.GameObjects.Particles.Zones.RandomZone#getPoint", "scope": "instance", - "___id": "T000002R013362", + "___id": "T000002R013345", "___s": true }, { @@ -130781,7 +130827,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.PathFollower", - "___id": "T000002R013371", + "___id": "T000002R013354", "___s": true }, { @@ -130830,7 +130876,7 @@ "longname": "Phaser.GameObjects.PathFollower#preUpdate", "scope": "instance", "overrides": "Phaser.GameObjects.Sprite#preUpdate", - "___id": "T000002R013377", + "___id": "T000002R013360", "___s": true }, { @@ -130951,7 +130997,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#follower", "scope": "instance", - "___id": "T000002R013382", + "___id": "T000002R013365", "___s": true }, { @@ -130968,7 +131014,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.PathFollower", "scope": "static", - "___id": "T000002R013384", + "___id": "T000002R013367", "___s": true }, { @@ -131103,7 +131149,7 @@ "memberof": "Phaser.Types.GameObjects.PathFollower", "longname": "Phaser.Types.GameObjects.PathFollower.PathConfig", "scope": "static", - "___id": "T000002R013385", + "___id": "T000002R013368", "___s": true }, { @@ -131261,7 +131307,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Plane", - "___id": "T000002R013392", + "___id": "T000002R013375", "___s": true }, { @@ -131289,7 +131335,7 @@ "longname": "Phaser.GameObjects.Plane#anims", "scope": "instance", "kind": "member", - "___id": "T000002R013398", + "___id": "T000002R013381", "___s": true }, { @@ -131318,7 +131364,7 @@ "longname": "Phaser.GameObjects.Plane#gridWidth", "scope": "instance", "kind": "member", - "___id": "T000002R013400", + "___id": "T000002R013383", "___s": true }, { @@ -131347,7 +131393,7 @@ "longname": "Phaser.GameObjects.Plane#gridHeight", "scope": "instance", "kind": "member", - "___id": "T000002R013402", + "___id": "T000002R013385", "___s": true }, { @@ -131376,7 +131422,7 @@ "longname": "Phaser.GameObjects.Plane#isTiled", "scope": "instance", "kind": "member", - "___id": "T000002R013404", + "___id": "T000002R013387", "___s": true }, { @@ -131406,7 +131452,7 @@ "longname": "Phaser.GameObjects.Plane#originX", "scope": "instance", "kind": "member", - "___id": "T000002R013409", + "___id": "T000002R013392", "___s": true }, { @@ -131436,7 +131482,7 @@ "longname": "Phaser.GameObjects.Plane#originY", "scope": "instance", "kind": "member", - "___id": "T000002R013412", + "___id": "T000002R013395", "___s": true }, { @@ -131503,7 +131549,7 @@ "longname": "Phaser.GameObjects.Plane#preDestroy", "scope": "instance", "overrides": "Phaser.GameObjects.Mesh#preDestroy", - "___id": "T000002R013415", + "___id": "T000002R013398", "___s": true }, { @@ -131538,7 +131584,7 @@ "memberof": "Phaser.GameObjects.Plane", "longname": "Phaser.GameObjects.Plane#setViewHeight", "scope": "instance", - "___id": "T000002R013464", + "___id": "T000002R013447", "___s": true }, { @@ -131634,7 +131680,7 @@ "memberof": "Phaser.GameObjects.Plane", "longname": "Phaser.GameObjects.Plane#createCheckerboard", "scope": "instance", - "___id": "T000002R013470", + "___id": "T000002R013453", "___s": true }, { @@ -131653,7 +131699,7 @@ "memberof": "Phaser.GameObjects.Plane", "longname": "Phaser.GameObjects.Plane#removeCheckerboard", "scope": "instance", - "___id": "T000002R013483", + "___id": "T000002R013466", "___s": true }, { @@ -131735,7 +131781,7 @@ "memberof": "Phaser.GameObjects.Plane", "longname": "Phaser.GameObjects.Plane#play", "scope": "instance", - "___id": "T000002R013486", + "___id": "T000002R013469", "___s": true }, { @@ -131817,7 +131863,7 @@ "memberof": "Phaser.GameObjects.Plane", "longname": "Phaser.GameObjects.Plane#playReverse", "scope": "instance", - "___id": "T000002R013488", + "___id": "T000002R013471", "___s": true }, { @@ -131897,7 +131943,7 @@ "memberof": "Phaser.GameObjects.Plane", "longname": "Phaser.GameObjects.Plane#playAfterDelay", "scope": "instance", - "___id": "T000002R013490", + "___id": "T000002R013473", "___s": true }, { @@ -131979,7 +132025,7 @@ "memberof": "Phaser.GameObjects.Plane", "longname": "Phaser.GameObjects.Plane#playAfterRepeat", "scope": "instance", - "___id": "T000002R013492", + "___id": "T000002R013475", "___s": true }, { @@ -132016,7 +132062,7 @@ "memberof": "Phaser.GameObjects.Plane", "longname": "Phaser.GameObjects.Plane#stop", "scope": "instance", - "___id": "T000002R013494", + "___id": "T000002R013477", "___s": true }, { @@ -132068,7 +132114,7 @@ "memberof": "Phaser.GameObjects.Plane", "longname": "Phaser.GameObjects.Plane#stopAfterDelay", "scope": "instance", - "___id": "T000002R013496", + "___id": "T000002R013479", "___s": true }, { @@ -132122,7 +132168,7 @@ "memberof": "Phaser.GameObjects.Plane", "longname": "Phaser.GameObjects.Plane#stopAfterRepeat", "scope": "instance", - "___id": "T000002R013498", + "___id": "T000002R013481", "___s": true }, { @@ -132174,7 +132220,7 @@ "memberof": "Phaser.GameObjects.Plane", "longname": "Phaser.GameObjects.Plane#stopOnFrame", "scope": "instance", - "___id": "T000002R013500", + "___id": "T000002R013483", "___s": true }, { @@ -132223,7 +132269,7 @@ "longname": "Phaser.GameObjects.Plane#preUpdate", "scope": "instance", "overrides": "Phaser.GameObjects.Mesh#preUpdate", - "___id": "T000002R013502", + "___id": "T000002R013485", "___s": true }, { @@ -132285,7 +132331,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#plane", "scope": "instance", - "___id": "T000002R013516", + "___id": "T000002R013499", "___s": true }, { @@ -132441,7 +132487,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#plane", "scope": "instance", - "___id": "T000002R013533", + "___id": "T000002R013516", "___s": true }, { @@ -132458,7 +132504,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Plane", "scope": "static", - "___id": "T000002R013534", + "___id": "T000002R013517", "___s": true }, { @@ -132562,7 +132608,7 @@ "memberof": "Phaser.Types.GameObjects.Plane", "longname": "Phaser.Types.GameObjects.Plane.PlaneCheckerboardConfig", "scope": "static", - "___id": "T000002R013535", + "___id": "T000002R013518", "___s": true }, { @@ -132701,7 +132747,7 @@ "memberof": "Phaser.Types.GameObjects.Plane", "longname": "Phaser.Types.GameObjects.Plane.PlaneConfig", "scope": "static", - "___id": "T000002R013536", + "___id": "T000002R013519", "___s": true }, { @@ -132834,7 +132880,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.PointLight", - "___id": "T000002R013543", + "___id": "T000002R013526", "___s": true }, { @@ -132862,7 +132908,7 @@ "longname": "Phaser.GameObjects.PointLight#color", "scope": "instance", "kind": "member", - "___id": "T000002R013552", + "___id": "T000002R013535", "___s": true }, { @@ -132890,7 +132936,7 @@ "longname": "Phaser.GameObjects.PointLight#intensity", "scope": "instance", "kind": "member", - "___id": "T000002R013554", + "___id": "T000002R013537", "___s": true }, { @@ -132918,7 +132964,7 @@ "longname": "Phaser.GameObjects.PointLight#attenuation", "scope": "instance", "kind": "member", - "___id": "T000002R013556", + "___id": "T000002R013539", "___s": true }, { @@ -132946,7 +132992,7 @@ "longname": "Phaser.GameObjects.PointLight#radius", "scope": "instance", "kind": "member", - "___id": "T000002R013561", + "___id": "T000002R013544", "___s": true }, { @@ -133008,7 +133054,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#pointlight", "scope": "instance", - "___id": "T000002R013581", + "___id": "T000002R013564", "___s": true }, { @@ -133129,7 +133175,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#pointlight", "scope": "instance", - "___id": "T000002R013591", + "___id": "T000002R013574", "___s": true }, { @@ -133226,7 +133272,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.RenderTexture", - "___id": "T000002R013624", + "___id": "T000002R013607", "___s": true }, { @@ -133254,7 +133300,7 @@ "longname": "Phaser.GameObjects.RenderTexture#camera", "scope": "instance", "kind": "member", - "___id": "T000002R013634", + "___id": "T000002R013617", "___s": true }, { @@ -133317,7 +133363,7 @@ "longname": "Phaser.GameObjects.RenderTexture#setSize", "scope": "instance", "overrides": "Phaser.GameObjects.Image#setSize", - "___id": "T000002R013638", + "___id": "T000002R013621", "___s": true }, { @@ -133381,7 +133427,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#resize", "scope": "instance", - "___id": "T000002R013645", + "___id": "T000002R013628", "___s": true }, { @@ -133429,7 +133475,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#saveTexture", "scope": "instance", - "___id": "T000002R013647", + "___id": "T000002R013630", "___s": true }, { @@ -133553,7 +133599,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#fill", "scope": "instance", - "___id": "T000002R013652", + "___id": "T000002R013635", "___s": true }, { @@ -133587,7 +133633,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#clear", "scope": "instance", - "___id": "T000002R013654", + "___id": "T000002R013637", "___s": true }, { @@ -133704,7 +133750,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#stamp", "scope": "instance", - "___id": "T000002R013656", + "___id": "T000002R013639", "___s": true }, { @@ -133783,7 +133829,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#erase", "scope": "instance", - "___id": "T000002R013658", + "___id": "T000002R013641", "___s": true }, { @@ -133892,7 +133938,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#draw", "scope": "instance", - "___id": "T000002R013660", + "___id": "T000002R013643", "___s": true }, { @@ -134025,7 +134071,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#drawFrame", "scope": "instance", - "___id": "T000002R013662", + "___id": "T000002R013645", "___s": true }, { @@ -134203,7 +134249,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#repeat", "scope": "instance", - "___id": "T000002R013664", + "___id": "T000002R013647", "___s": true }, { @@ -134237,7 +134283,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#beginDraw", "scope": "instance", - "___id": "T000002R013666", + "___id": "T000002R013649", "___s": true }, { @@ -134346,7 +134392,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#batchDraw", "scope": "instance", - "___id": "T000002R013668", + "___id": "T000002R013651", "___s": true }, { @@ -134479,7 +134525,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#batchDrawFrame", "scope": "instance", - "___id": "T000002R013670", + "___id": "T000002R013653", "___s": true }, { @@ -134530,7 +134576,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#endDraw", "scope": "instance", - "___id": "T000002R013672", + "___id": "T000002R013655", "___s": true }, { @@ -134661,7 +134707,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#snapshotArea", "scope": "instance", - "___id": "T000002R013674", + "___id": "T000002R013657", "___s": true }, { @@ -134740,7 +134786,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#snapshot", "scope": "instance", - "___id": "T000002R013676", + "___id": "T000002R013659", "___s": true }, { @@ -134815,7 +134861,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#snapshotPixel", "scope": "instance", - "___id": "T000002R013678", + "___id": "T000002R013661", "___s": true }, { @@ -134835,7 +134881,7 @@ "memberof": "Phaser.GameObjects.RenderTexture", "longname": "Phaser.GameObjects.RenderTexture#preDestroy", "scope": "instance", - "___id": "T000002R013680", + "___id": "T000002R013663", "___s": true }, { @@ -134897,7 +134943,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#renderTexture", "scope": "instance", - "___id": "T000002R013688", + "___id": "T000002R013671", "___s": true }, { @@ -134988,7 +135034,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#renderTexture", "scope": "instance", - "___id": "T000002R013698", + "___id": "T000002R013681", "___s": true }, { @@ -135005,7 +135051,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.RenderTexture", "scope": "static", - "___id": "T000002R013699", + "___id": "T000002R013682", "___s": true }, { @@ -135094,7 +135140,7 @@ "memberof": "Phaser.Types.GameObjects.RenderTexture", "longname": "Phaser.Types.GameObjects.RenderTexture.RenderTextureConfig", "scope": "static", - "___id": "T000002R013700", + "___id": "T000002R013683", "___s": true }, { @@ -135317,7 +135363,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Rope", - "___id": "T000002R013708", + "___id": "T000002R013691", "___s": true }, { @@ -135345,7 +135391,7 @@ "longname": "Phaser.GameObjects.Rope#anims", "scope": "instance", "kind": "member", - "___id": "T000002R013716", + "___id": "T000002R013699", "___s": true }, { @@ -135382,7 +135428,7 @@ "longname": "Phaser.GameObjects.Rope#points", "scope": "instance", "kind": "member", - "___id": "T000002R013718", + "___id": "T000002R013701", "___s": true }, { @@ -135410,7 +135456,7 @@ "longname": "Phaser.GameObjects.Rope#vertices", "scope": "instance", "kind": "member", - "___id": "T000002R013720", + "___id": "T000002R013703", "___s": true }, { @@ -135438,7 +135484,7 @@ "longname": "Phaser.GameObjects.Rope#uv", "scope": "instance", "kind": "member", - "___id": "T000002R013722", + "___id": "T000002R013705", "___s": true }, { @@ -135466,7 +135512,7 @@ "longname": "Phaser.GameObjects.Rope#colors", "scope": "instance", "kind": "member", - "___id": "T000002R013724", + "___id": "T000002R013707", "___s": true }, { @@ -135494,7 +135540,7 @@ "longname": "Phaser.GameObjects.Rope#alphas", "scope": "instance", "kind": "member", - "___id": "T000002R013726", + "___id": "T000002R013709", "___s": true }, { @@ -135522,7 +135568,7 @@ "longname": "Phaser.GameObjects.Rope#tintFill", "scope": "instance", "kind": "member", - "___id": "T000002R013728", + "___id": "T000002R013711", "___s": true }, { @@ -135550,7 +135596,7 @@ "longname": "Phaser.GameObjects.Rope#dirty", "scope": "instance", "kind": "member", - "___id": "T000002R013730", + "___id": "T000002R013713", "___s": true }, { @@ -135579,7 +135625,7 @@ "longname": "Phaser.GameObjects.Rope#horizontal", "scope": "instance", "kind": "member", - "___id": "T000002R013732", + "___id": "T000002R013715", "___s": true }, { @@ -135607,7 +135653,7 @@ "longname": "Phaser.GameObjects.Rope#debugCallback", "scope": "instance", "kind": "member", - "___id": "T000002R013740", + "___id": "T000002R013723", "___s": true }, { @@ -135635,7 +135681,7 @@ "longname": "Phaser.GameObjects.Rope#debugGraphic", "scope": "instance", "kind": "member", - "___id": "T000002R013742", + "___id": "T000002R013725", "___s": true }, { @@ -135683,7 +135729,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#preUpdate", "scope": "instance", - "___id": "T000002R013746", + "___id": "T000002R013729", "___s": true }, { @@ -135762,7 +135808,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#play", "scope": "instance", - "___id": "T000002R013749", + "___id": "T000002R013732", "___s": true }, { @@ -135796,7 +135842,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#setDirty", "scope": "instance", - "___id": "T000002R013751", + "___id": "T000002R013734", "___s": true }, { @@ -135931,7 +135977,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#setHorizontal", "scope": "instance", - "___id": "T000002R013754", + "___id": "T000002R013737", "___s": true }, { @@ -136066,7 +136112,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#setVertical", "scope": "instance", - "___id": "T000002R013758", + "___id": "T000002R013741", "___s": true }, { @@ -136124,7 +136170,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#setTintFill", "scope": "instance", - "___id": "T000002R013762", + "___id": "T000002R013745", "___s": true }, { @@ -136207,7 +136253,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#setAlphas", "scope": "instance", - "___id": "T000002R013766", + "___id": "T000002R013749", "___s": true }, { @@ -136276,7 +136322,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#setColors", "scope": "instance", - "___id": "T000002R013789", + "___id": "T000002R013772", "___s": true }, { @@ -136412,7 +136458,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#setPoints", "scope": "instance", - "___id": "T000002R013808", + "___id": "T000002R013791", "___s": true }, { @@ -136446,7 +136492,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#updateUVs", "scope": "instance", - "___id": "T000002R013833", + "___id": "T000002R013816", "___s": true }, { @@ -136495,7 +136541,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#resizeArrays", "scope": "instance", - "___id": "T000002R013869", + "___id": "T000002R013852", "___s": true }, { @@ -136529,7 +136575,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#updateVertices", "scope": "instance", - "___id": "T000002R013883", + "___id": "T000002R013866", "___s": true }, { @@ -136593,7 +136639,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#setDebug", "scope": "instance", - "___id": "T000002R013910", + "___id": "T000002R013893", "___s": true }, { @@ -136662,7 +136708,7 @@ "memberof": "Phaser.GameObjects.Rope", "longname": "Phaser.GameObjects.Rope#renderDebugVerts", "scope": "instance", - "___id": "T000002R013916", + "___id": "T000002R013899", "___s": true }, { @@ -136692,7 +136738,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.Flip#flipX", - "___id": "T000002R013943", + "___id": "T000002R013926", "___s": true }, { @@ -136722,7 +136768,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.Flip#flipY", - "___id": "T000002R013948", + "___id": "T000002R013931", "___s": true }, { @@ -136784,7 +136830,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#rope", "scope": "instance", - "___id": "T000002R013962", + "___id": "T000002R013945", "___s": true }, { @@ -136983,7 +137029,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#rope", "scope": "instance", - "___id": "T000002R013974", + "___id": "T000002R013957", "___s": true }, { @@ -137000,7 +137046,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Rope", "scope": "static", - "___id": "T000002R014026", + "___id": "T000002R014009", "___s": true }, { @@ -137169,7 +137215,7 @@ "memberof": "Phaser.Types.GameObjects.Rope", "longname": "Phaser.Types.GameObjects.Rope.RopeConfig", "scope": "static", - "___id": "T000002R014027", + "___id": "T000002R014010", "___s": true }, { @@ -137341,7 +137387,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Shader", - "___id": "T000002R014038", + "___id": "T000002R014021", "___s": true }, { @@ -137369,7 +137415,7 @@ "longname": "Phaser.GameObjects.Shader#shader", "scope": "instance", "kind": "member", - "___id": "T000002R014049", + "___id": "T000002R014032", "___s": true }, { @@ -137407,7 +137453,7 @@ "longname": "Phaser.GameObjects.Shader#renderer", "scope": "instance", "kind": "member", - "___id": "T000002R014052", + "___id": "T000002R014035", "___s": true }, { @@ -137435,7 +137481,7 @@ "longname": "Phaser.GameObjects.Shader#gl", "scope": "instance", "kind": "member", - "___id": "T000002R014054", + "___id": "T000002R014037", "___s": true }, { @@ -137463,7 +137509,7 @@ "longname": "Phaser.GameObjects.Shader#vertexData", "scope": "instance", "kind": "member", - "___id": "T000002R014056", + "___id": "T000002R014039", "___s": true }, { @@ -137491,7 +137537,7 @@ "longname": "Phaser.GameObjects.Shader#vertexBuffer", "scope": "instance", "kind": "member", - "___id": "T000002R014058", + "___id": "T000002R014041", "___s": true }, { @@ -137519,7 +137565,7 @@ "longname": "Phaser.GameObjects.Shader#program", "scope": "instance", "kind": "member", - "___id": "T000002R014064", + "___id": "T000002R014047", "___s": true }, { @@ -137547,7 +137593,7 @@ "longname": "Phaser.GameObjects.Shader#bytes", "scope": "instance", "kind": "member", - "___id": "T000002R014066", + "___id": "T000002R014049", "___s": true }, { @@ -137575,7 +137621,7 @@ "longname": "Phaser.GameObjects.Shader#vertexViewF32", "scope": "instance", "kind": "member", - "___id": "T000002R014068", + "___id": "T000002R014051", "___s": true }, { @@ -137604,7 +137650,7 @@ "longname": "Phaser.GameObjects.Shader#viewMatrix", "scope": "instance", "kind": "member", - "___id": "T000002R014076", + "___id": "T000002R014059", "___s": true }, { @@ -137633,7 +137679,7 @@ "longname": "Phaser.GameObjects.Shader#projectionMatrix", "scope": "instance", "kind": "member", - "___id": "T000002R014078", + "___id": "T000002R014061", "___s": true }, { @@ -137661,7 +137707,7 @@ "longname": "Phaser.GameObjects.Shader#uniforms", "scope": "instance", "kind": "member", - "___id": "T000002R014080", + "___id": "T000002R014063", "___s": true }, { @@ -137689,7 +137735,7 @@ "longname": "Phaser.GameObjects.Shader#pointer", "scope": "instance", "kind": "member", - "___id": "T000002R014082", + "___id": "T000002R014065", "___s": true }, { @@ -137719,7 +137765,7 @@ "longname": "Phaser.GameObjects.Shader#framebuffer", "scope": "instance", "kind": "member", - "___id": "T000002R014090", + "___id": "T000002R014073", "___s": true }, { @@ -137749,7 +137795,7 @@ "longname": "Phaser.GameObjects.Shader#glTexture", "scope": "instance", "kind": "member", - "___id": "T000002R014092", + "___id": "T000002R014075", "___s": true }, { @@ -137778,7 +137824,7 @@ "longname": "Phaser.GameObjects.Shader#renderToTexture", "scope": "instance", "kind": "member", - "___id": "T000002R014094", + "___id": "T000002R014077", "___s": true }, { @@ -137806,7 +137852,7 @@ "longname": "Phaser.GameObjects.Shader#texture", "scope": "instance", "kind": "member", - "___id": "T000002R014096", + "___id": "T000002R014079", "___s": true }, { @@ -137855,7 +137901,7 @@ "longname": "Phaser.GameObjects.Shader#willRender", "scope": "instance", "overrides": "Phaser.GameObjects.GameObject#willRender", - "___id": "T000002R014098", + "___id": "T000002R014081", "___s": true }, { @@ -137920,7 +137966,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#setRenderToTexture", "scope": "instance", - "___id": "T000002R014100", + "___id": "T000002R014083", "___s": true }, { @@ -138016,7 +138062,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#setShader", "scope": "instance", - "___id": "T000002R014112", + "___id": "T000002R014095", "___s": true }, { @@ -138066,7 +138112,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#setPointer", "scope": "instance", - "___id": "T000002R014170", + "___id": "T000002R014153", "___s": true }, { @@ -138139,7 +138185,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#projOrtho", "scope": "instance", - "___id": "T000002R014173", + "___id": "T000002R014156", "___s": true }, { @@ -138256,7 +138302,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#setSampler2DBuffer", "scope": "instance", - "___id": "T000002R014210", + "___id": "T000002R014193", "___s": true }, { @@ -138347,7 +138393,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#setSampler2D", "scope": "instance", - "___id": "T000002R014220", + "___id": "T000002R014203", "___s": true }, { @@ -138409,7 +138455,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#setUniform", "scope": "instance", - "___id": "T000002R014235", + "___id": "T000002R014218", "___s": true }, { @@ -138457,7 +138503,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#getUniform", "scope": "instance", - "___id": "T000002R014237", + "___id": "T000002R014220", "___s": true }, { @@ -138520,7 +138566,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#setChannel0", "scope": "instance", - "___id": "T000002R014239", + "___id": "T000002R014222", "___s": true }, { @@ -138583,7 +138629,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#setChannel1", "scope": "instance", - "___id": "T000002R014241", + "___id": "T000002R014224", "___s": true }, { @@ -138646,7 +138692,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#setChannel2", "scope": "instance", - "___id": "T000002R014243", + "___id": "T000002R014226", "___s": true }, { @@ -138709,7 +138755,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#setChannel3", "scope": "instance", - "___id": "T000002R014245", + "___id": "T000002R014228", "___s": true }, { @@ -138744,7 +138790,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#load", "scope": "instance", - "___id": "T000002R014280", + "___id": "T000002R014263", "___s": true }, { @@ -138763,7 +138809,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#flush", "scope": "instance", - "___id": "T000002R014309", + "___id": "T000002R014292", "___s": true }, { @@ -138782,7 +138828,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#onContextRestored", "scope": "instance", - "___id": "T000002R014331", + "___id": "T000002R014314", "___s": true }, { @@ -138802,7 +138848,7 @@ "memberof": "Phaser.GameObjects.Shader", "longname": "Phaser.GameObjects.Shader#preDestroy", "scope": "instance", - "___id": "T000002R014342", + "___id": "T000002R014325", "___s": true }, { @@ -138864,7 +138910,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#shader", "scope": "instance", - "___id": "T000002R014357", + "___id": "T000002R014340", "___s": true }, { @@ -139026,7 +139072,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#shader", "scope": "instance", - "___id": "T000002R014368", + "___id": "T000002R014351", "___s": true }, { @@ -139043,7 +139089,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Shader", "scope": "static", - "___id": "T000002R014382", + "___id": "T000002R014365", "___s": true }, { @@ -139128,7 +139174,7 @@ "memberof": "Phaser.Types.GameObjects.Shader", "longname": "Phaser.Types.GameObjects.Shader.ShaderConfig", "scope": "static", - "___id": "T000002R014383", + "___id": "T000002R014366", "___s": true }, { @@ -139283,7 +139329,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Arc", - "___id": "T000002R014391", + "___id": "T000002R014374", "___s": true }, { @@ -139312,7 +139358,7 @@ "longname": "Phaser.GameObjects.Arc#iterations", "scope": "instance", "kind": "member", - "___id": "T000002R014411", + "___id": "T000002R014394", "___s": true }, { @@ -139340,7 +139386,7 @@ "longname": "Phaser.GameObjects.Arc#radius", "scope": "instance", "kind": "member", - "___id": "T000002R014416", + "___id": "T000002R014399", "___s": true }, { @@ -139368,7 +139414,7 @@ "longname": "Phaser.GameObjects.Arc#startAngle", "scope": "instance", "kind": "member", - "___id": "T000002R014422", + "___id": "T000002R014405", "___s": true }, { @@ -139396,7 +139442,7 @@ "longname": "Phaser.GameObjects.Arc#endAngle", "scope": "instance", "kind": "member", - "___id": "T000002R014427", + "___id": "T000002R014410", "___s": true }, { @@ -139424,7 +139470,7 @@ "longname": "Phaser.GameObjects.Arc#anticlockwise", "scope": "instance", "kind": "member", - "___id": "T000002R014432", + "___id": "T000002R014415", "___s": true }, { @@ -139473,7 +139519,7 @@ "memberof": "Phaser.GameObjects.Arc", "longname": "Phaser.GameObjects.Arc#setRadius", "scope": "instance", - "___id": "T000002R014437", + "___id": "T000002R014420", "___s": true }, { @@ -139522,7 +139568,7 @@ "memberof": "Phaser.GameObjects.Arc", "longname": "Phaser.GameObjects.Arc#setIterations", "scope": "instance", - "___id": "T000002R014440", + "___id": "T000002R014423", "___s": true }, { @@ -139571,7 +139617,7 @@ "memberof": "Phaser.GameObjects.Arc", "longname": "Phaser.GameObjects.Arc#setStartAngle", "scope": "instance", - "___id": "T000002R014444", + "___id": "T000002R014427", "___s": true }, { @@ -139620,7 +139666,7 @@ "memberof": "Phaser.GameObjects.Arc", "longname": "Phaser.GameObjects.Arc#setEndAngle", "scope": "instance", - "___id": "T000002R014448", + "___id": "T000002R014431", "___s": true }, { @@ -139773,7 +139819,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#arc", "scope": "instance", - "___id": "T000002R014486", + "___id": "T000002R014469", "___s": true }, { @@ -139881,7 +139927,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#circle", "scope": "instance", - "___id": "T000002R014487", + "___id": "T000002R014470", "___s": true }, { @@ -139990,7 +140036,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Curve", - "___id": "T000002R014513", + "___id": "T000002R014496", "___s": true }, { @@ -140019,7 +140065,7 @@ "longname": "Phaser.GameObjects.Curve#smoothness", "scope": "instance", "kind": "member", - "___id": "T000002R014525", + "___id": "T000002R014508", "___s": true }, { @@ -140068,7 +140114,7 @@ "memberof": "Phaser.GameObjects.Curve", "longname": "Phaser.GameObjects.Curve#setSmoothness", "scope": "instance", - "___id": "T000002R014530", + "___id": "T000002R014513", "___s": true }, { @@ -140175,7 +140221,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#curve", "scope": "instance", - "___id": "T000002R014563", + "___id": "T000002R014546", "___s": true }, { @@ -140300,7 +140346,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Ellipse", - "___id": "T000002R014589", + "___id": "T000002R014572", "___s": true }, { @@ -140329,7 +140375,7 @@ "longname": "Phaser.GameObjects.Ellipse#smoothness", "scope": "instance", "kind": "member", - "___id": "T000002R014602", + "___id": "T000002R014585", "___s": true }, { @@ -140392,7 +140438,7 @@ "longname": "Phaser.GameObjects.Ellipse#setSize", "scope": "instance", "overrides": "Phaser.GameObjects.Shape#setSize", - "___id": "T000002R014607", + "___id": "T000002R014590", "___s": true }, { @@ -140441,7 +140487,7 @@ "memberof": "Phaser.GameObjects.Ellipse", "longname": "Phaser.GameObjects.Ellipse#setSmoothness", "scope": "instance", - "___id": "T000002R014611", + "___id": "T000002R014594", "___s": true }, { @@ -140564,7 +140610,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#ellipse", "scope": "instance", - "___id": "T000002R014642", + "___id": "T000002R014625", "___s": true }, { @@ -140747,7 +140793,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Grid", - "___id": "T000002R014699", + "___id": "T000002R014682", "___s": true }, { @@ -140775,7 +140821,7 @@ "longname": "Phaser.GameObjects.Grid#cellWidth", "scope": "instance", "kind": "member", - "___id": "T000002R014710", + "___id": "T000002R014693", "___s": true }, { @@ -140803,7 +140849,7 @@ "longname": "Phaser.GameObjects.Grid#cellHeight", "scope": "instance", "kind": "member", - "___id": "T000002R014712", + "___id": "T000002R014695", "___s": true }, { @@ -140831,7 +140877,7 @@ "longname": "Phaser.GameObjects.Grid#showCells", "scope": "instance", "kind": "member", - "___id": "T000002R014714", + "___id": "T000002R014697", "___s": true }, { @@ -140859,7 +140905,7 @@ "longname": "Phaser.GameObjects.Grid#outlineFillColor", "scope": "instance", "kind": "member", - "___id": "T000002R014716", + "___id": "T000002R014699", "___s": true }, { @@ -140887,7 +140933,7 @@ "longname": "Phaser.GameObjects.Grid#outlineFillAlpha", "scope": "instance", "kind": "member", - "___id": "T000002R014718", + "___id": "T000002R014701", "___s": true }, { @@ -140915,7 +140961,7 @@ "longname": "Phaser.GameObjects.Grid#showOutline", "scope": "instance", "kind": "member", - "___id": "T000002R014720", + "___id": "T000002R014703", "___s": true }, { @@ -140943,7 +140989,7 @@ "longname": "Phaser.GameObjects.Grid#showAltCells", "scope": "instance", "kind": "member", - "___id": "T000002R014722", + "___id": "T000002R014705", "___s": true }, { @@ -140971,7 +141017,7 @@ "longname": "Phaser.GameObjects.Grid#altFillColor", "scope": "instance", "kind": "member", - "___id": "T000002R014724", + "___id": "T000002R014707", "___s": true }, { @@ -140999,7 +141045,7 @@ "longname": "Phaser.GameObjects.Grid#altFillAlpha", "scope": "instance", "kind": "member", - "___id": "T000002R014726", + "___id": "T000002R014709", "___s": true }, { @@ -141065,7 +141111,7 @@ "longname": "Phaser.GameObjects.Grid#setFillStyle", "scope": "instance", "overrides": "Phaser.GameObjects.Shape#setFillStyle", - "___id": "T000002R014728", + "___id": "T000002R014711", "___s": true }, { @@ -141130,7 +141176,7 @@ "memberof": "Phaser.GameObjects.Grid", "longname": "Phaser.GameObjects.Grid#setAltFillStyle", "scope": "instance", - "___id": "T000002R014735", + "___id": "T000002R014718", "___s": true }, { @@ -141195,7 +141241,7 @@ "memberof": "Phaser.GameObjects.Grid", "longname": "Phaser.GameObjects.Grid#setOutlineStyle", "scope": "instance", - "___id": "T000002R014742", + "___id": "T000002R014725", "___s": true }, { @@ -141376,7 +141422,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#grid", "scope": "instance", - "___id": "T000002R014797", + "___id": "T000002R014780", "___s": true }, { @@ -141518,7 +141564,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.IsoBox", - "___id": "T000002R014873", + "___id": "T000002R014856", "___s": true }, { @@ -141547,7 +141593,7 @@ "longname": "Phaser.GameObjects.IsoBox#projection", "scope": "instance", "kind": "member", - "___id": "T000002R014885", + "___id": "T000002R014868", "___s": true }, { @@ -141575,7 +141621,7 @@ "longname": "Phaser.GameObjects.IsoBox#fillTop", "scope": "instance", "kind": "member", - "___id": "T000002R014887", + "___id": "T000002R014870", "___s": true }, { @@ -141603,7 +141649,7 @@ "longname": "Phaser.GameObjects.IsoBox#fillLeft", "scope": "instance", "kind": "member", - "___id": "T000002R014889", + "___id": "T000002R014872", "___s": true }, { @@ -141631,7 +141677,7 @@ "longname": "Phaser.GameObjects.IsoBox#fillRight", "scope": "instance", "kind": "member", - "___id": "T000002R014891", + "___id": "T000002R014874", "___s": true }, { @@ -141660,7 +141706,7 @@ "longname": "Phaser.GameObjects.IsoBox#showTop", "scope": "instance", "kind": "member", - "___id": "T000002R014893", + "___id": "T000002R014876", "___s": true }, { @@ -141689,7 +141735,7 @@ "longname": "Phaser.GameObjects.IsoBox#showLeft", "scope": "instance", "kind": "member", - "___id": "T000002R014895", + "___id": "T000002R014878", "___s": true }, { @@ -141718,7 +141764,7 @@ "longname": "Phaser.GameObjects.IsoBox#showRight", "scope": "instance", "kind": "member", - "___id": "T000002R014897", + "___id": "T000002R014880", "___s": true }, { @@ -141767,7 +141813,7 @@ "memberof": "Phaser.GameObjects.IsoBox", "longname": "Phaser.GameObjects.IsoBox#setProjection", "scope": "instance", - "___id": "T000002R014900", + "___id": "T000002R014883", "___s": true }, { @@ -141848,7 +141894,7 @@ "memberof": "Phaser.GameObjects.IsoBox", "longname": "Phaser.GameObjects.IsoBox#setFaces", "scope": "instance", - "___id": "T000002R014903", + "___id": "T000002R014886", "___s": true }, { @@ -141927,7 +141973,7 @@ "longname": "Phaser.GameObjects.IsoBox#setFillStyle", "scope": "instance", "overrides": "Phaser.GameObjects.Shape#setFillStyle", - "___id": "T000002R014911", + "___id": "T000002R014894", "___s": true }, { @@ -142067,7 +142113,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#isobox", "scope": "instance", - "___id": "T000002R014930", + "___id": "T000002R014913", "___s": true }, { @@ -142224,7 +142270,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.IsoTriangle", - "___id": "T000002R014991", + "___id": "T000002R014974", "___s": true }, { @@ -142253,7 +142299,7 @@ "longname": "Phaser.GameObjects.IsoTriangle#projection", "scope": "instance", "kind": "member", - "___id": "T000002R015004", + "___id": "T000002R014987", "___s": true }, { @@ -142281,7 +142327,7 @@ "longname": "Phaser.GameObjects.IsoTriangle#fillTop", "scope": "instance", "kind": "member", - "___id": "T000002R015006", + "___id": "T000002R014989", "___s": true }, { @@ -142309,7 +142355,7 @@ "longname": "Phaser.GameObjects.IsoTriangle#fillLeft", "scope": "instance", "kind": "member", - "___id": "T000002R015008", + "___id": "T000002R014991", "___s": true }, { @@ -142337,7 +142383,7 @@ "longname": "Phaser.GameObjects.IsoTriangle#fillRight", "scope": "instance", "kind": "member", - "___id": "T000002R015010", + "___id": "T000002R014993", "___s": true }, { @@ -142366,7 +142412,7 @@ "longname": "Phaser.GameObjects.IsoTriangle#showTop", "scope": "instance", "kind": "member", - "___id": "T000002R015012", + "___id": "T000002R014995", "___s": true }, { @@ -142395,7 +142441,7 @@ "longname": "Phaser.GameObjects.IsoTriangle#showLeft", "scope": "instance", "kind": "member", - "___id": "T000002R015014", + "___id": "T000002R014997", "___s": true }, { @@ -142424,7 +142470,7 @@ "longname": "Phaser.GameObjects.IsoTriangle#showRight", "scope": "instance", "kind": "member", - "___id": "T000002R015016", + "___id": "T000002R014999", "___s": true }, { @@ -142453,7 +142499,7 @@ "longname": "Phaser.GameObjects.IsoTriangle#isReversed", "scope": "instance", "kind": "member", - "___id": "T000002R015018", + "___id": "T000002R015001", "___s": true }, { @@ -142502,7 +142548,7 @@ "memberof": "Phaser.GameObjects.IsoTriangle", "longname": "Phaser.GameObjects.IsoTriangle#setProjection", "scope": "instance", - "___id": "T000002R015021", + "___id": "T000002R015004", "___s": true }, { @@ -142551,7 +142597,7 @@ "memberof": "Phaser.GameObjects.IsoTriangle", "longname": "Phaser.GameObjects.IsoTriangle#setReversed", "scope": "instance", - "___id": "T000002R015024", + "___id": "T000002R015007", "___s": true }, { @@ -142632,7 +142678,7 @@ "memberof": "Phaser.GameObjects.IsoTriangle", "longname": "Phaser.GameObjects.IsoTriangle#setFaces", "scope": "instance", - "___id": "T000002R015027", + "___id": "T000002R015010", "___s": true }, { @@ -142711,7 +142757,7 @@ "longname": "Phaser.GameObjects.IsoTriangle#setFillStyle", "scope": "instance", "overrides": "Phaser.GameObjects.Shape#setFillStyle", - "___id": "T000002R015035", + "___id": "T000002R015018", "___s": true }, { @@ -142866,7 +142912,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#isotriangle", "scope": "instance", - "___id": "T000002R015055", + "___id": "T000002R015038", "___s": true }, { @@ -143021,7 +143067,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Line", - "___id": "T000002R015124", + "___id": "T000002R015107", "___s": true }, { @@ -143050,7 +143096,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Shape#lineWidth", - "___id": "T000002R015137", + "___id": "T000002R015120", "___s": true }, { @@ -143113,7 +143159,7 @@ "memberof": "Phaser.GameObjects.Line", "longname": "Phaser.GameObjects.Line#setLineWidth", "scope": "instance", - "___id": "T000002R015143", + "___id": "T000002R015126", "___s": true }, { @@ -143209,7 +143255,7 @@ "memberof": "Phaser.GameObjects.Line", "longname": "Phaser.GameObjects.Line#setTo", "scope": "instance", - "___id": "T000002R015149", + "___id": "T000002R015132", "___s": true }, { @@ -143362,7 +143408,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#line", "scope": "instance", - "___id": "T000002R015162", + "___id": "T000002R015145", "___s": true }, { @@ -143471,7 +143517,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Polygon", - "___id": "T000002R015204", + "___id": "T000002R015187", "___s": true }, { @@ -143522,7 +143568,7 @@ "memberof": "Phaser.GameObjects.Polygon", "longname": "Phaser.GameObjects.Polygon#smooth", "scope": "instance", - "___id": "T000002R015212", + "___id": "T000002R015195", "___s": true }, { @@ -143605,7 +143651,7 @@ "memberof": "Phaser.GameObjects.Polygon", "longname": "Phaser.GameObjects.Polygon#setTo", "scope": "instance", - "___id": "T000002R015216", + "___id": "T000002R015199", "___s": true }, { @@ -143712,7 +143758,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#polygon", "scope": "instance", - "___id": "T000002R015247", + "___id": "T000002R015230", "___s": true }, { @@ -143833,7 +143879,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Rectangle", - "___id": "T000002R015272", + "___id": "T000002R015255", "___s": true }, { @@ -143896,7 +143942,7 @@ "longname": "Phaser.GameObjects.Rectangle#setSize", "scope": "instance", "overrides": "Phaser.GameObjects.Shape#setSize", - "___id": "T000002R015281", + "___id": "T000002R015264", "___s": true }, { @@ -144019,7 +144065,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#rectangle", "scope": "instance", - "___id": "T000002R015306", + "___id": "T000002R015289", "___s": true }, { @@ -144095,7 +144141,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Shape", - "___id": "T000002R015336", + "___id": "T000002R015319", "___s": true }, { @@ -144124,7 +144170,7 @@ "longname": "Phaser.GameObjects.Shape#geom", "scope": "instance", "kind": "member", - "___id": "T000002R015342", + "___id": "T000002R015325", "___s": true }, { @@ -144162,7 +144208,7 @@ "longname": "Phaser.GameObjects.Shape#pathData", "scope": "instance", "kind": "member", - "___id": "T000002R015344", + "___id": "T000002R015327", "___s": true }, { @@ -144200,7 +144246,7 @@ "longname": "Phaser.GameObjects.Shape#pathIndexes", "scope": "instance", "kind": "member", - "___id": "T000002R015346", + "___id": "T000002R015329", "___s": true }, { @@ -144228,7 +144274,7 @@ "longname": "Phaser.GameObjects.Shape#fillColor", "scope": "instance", "kind": "member", - "___id": "T000002R015348", + "___id": "T000002R015331", "___s": true }, { @@ -144256,7 +144302,7 @@ "longname": "Phaser.GameObjects.Shape#fillAlpha", "scope": "instance", "kind": "member", - "___id": "T000002R015350", + "___id": "T000002R015333", "___s": true }, { @@ -144284,7 +144330,7 @@ "longname": "Phaser.GameObjects.Shape#strokeColor", "scope": "instance", "kind": "member", - "___id": "T000002R015352", + "___id": "T000002R015335", "___s": true }, { @@ -144312,7 +144358,7 @@ "longname": "Phaser.GameObjects.Shape#strokeAlpha", "scope": "instance", "kind": "member", - "___id": "T000002R015354", + "___id": "T000002R015337", "___s": true }, { @@ -144340,7 +144386,7 @@ "longname": "Phaser.GameObjects.Shape#lineWidth", "scope": "instance", "kind": "member", - "___id": "T000002R015356", + "___id": "T000002R015339", "___s": true }, { @@ -144368,7 +144414,7 @@ "longname": "Phaser.GameObjects.Shape#isFilled", "scope": "instance", "kind": "member", - "___id": "T000002R015358", + "___id": "T000002R015341", "___s": true }, { @@ -144396,7 +144442,7 @@ "longname": "Phaser.GameObjects.Shape#isStroked", "scope": "instance", "kind": "member", - "___id": "T000002R015360", + "___id": "T000002R015343", "___s": true }, { @@ -144424,7 +144470,7 @@ "longname": "Phaser.GameObjects.Shape#closePath", "scope": "instance", "kind": "member", - "___id": "T000002R015362", + "___id": "T000002R015345", "___s": true }, { @@ -144452,7 +144498,7 @@ "longname": "Phaser.GameObjects.Shape#width", "scope": "instance", "kind": "member", - "___id": "T000002R015366", + "___id": "T000002R015349", "___s": true }, { @@ -144480,7 +144526,7 @@ "longname": "Phaser.GameObjects.Shape#height", "scope": "instance", "kind": "member", - "___id": "T000002R015368", + "___id": "T000002R015351", "___s": true }, { @@ -144545,7 +144591,7 @@ "memberof": "Phaser.GameObjects.Shape", "longname": "Phaser.GameObjects.Shape#setFillStyle", "scope": "instance", - "___id": "T000002R015370", + "___id": "T000002R015353", "___s": true }, { @@ -144624,7 +144670,7 @@ "memberof": "Phaser.GameObjects.Shape", "longname": "Phaser.GameObjects.Shape#setStrokeStyle", "scope": "instance", - "___id": "T000002R015377", + "___id": "T000002R015360", "___s": true }, { @@ -144673,7 +144719,7 @@ "memberof": "Phaser.GameObjects.Shape", "longname": "Phaser.GameObjects.Shape#setClosePath", "scope": "instance", - "___id": "T000002R015385", + "___id": "T000002R015368", "___s": true }, { @@ -144735,7 +144781,7 @@ "memberof": "Phaser.GameObjects.Shape", "longname": "Phaser.GameObjects.Shape#setDisplaySize", "scope": "instance", - "___id": "T000002R015392", + "___id": "T000002R015375", "___s": true }, { @@ -144755,7 +144801,7 @@ "memberof": "Phaser.GameObjects.Shape", "longname": "Phaser.GameObjects.Shape#preDestroy", "scope": "instance", - "___id": "T000002R015396", + "___id": "T000002R015379", "___s": true }, { @@ -144783,7 +144829,7 @@ "longname": "Phaser.GameObjects.Shape#displayWidth", "scope": "instance", "kind": "member", - "___id": "T000002R015402", + "___id": "T000002R015385", "___s": true }, { @@ -144811,7 +144857,7 @@ "longname": "Phaser.GameObjects.Shape#displayHeight", "scope": "instance", "kind": "member", - "___id": "T000002R015407", + "___id": "T000002R015390", "___s": true }, { @@ -144951,7 +144997,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Star", - "___id": "T000002R015417", + "___id": "T000002R015400", "___s": true }, { @@ -145000,7 +145046,7 @@ "memberof": "Phaser.GameObjects.Star", "longname": "Phaser.GameObjects.Star#setPoints", "scope": "instance", - "___id": "T000002R015433", + "___id": "T000002R015416", "___s": true }, { @@ -145049,7 +145095,7 @@ "memberof": "Phaser.GameObjects.Star", "longname": "Phaser.GameObjects.Star#setInnerRadius", "scope": "instance", - "___id": "T000002R015436", + "___id": "T000002R015419", "___s": true }, { @@ -145098,7 +145144,7 @@ "memberof": "Phaser.GameObjects.Star", "longname": "Phaser.GameObjects.Star#setOuterRadius", "scope": "instance", - "___id": "T000002R015439", + "___id": "T000002R015422", "___s": true }, { @@ -145127,7 +145173,7 @@ "longname": "Phaser.GameObjects.Star#points", "scope": "instance", "kind": "member", - "___id": "T000002R015442", + "___id": "T000002R015425", "___s": true }, { @@ -145156,7 +145202,7 @@ "longname": "Phaser.GameObjects.Star#innerRadius", "scope": "instance", "kind": "member", - "___id": "T000002R015447", + "___id": "T000002R015430", "___s": true }, { @@ -145185,7 +145231,7 @@ "longname": "Phaser.GameObjects.Star#outerRadius", "scope": "instance", "kind": "member", - "___id": "T000002R015452", + "___id": "T000002R015435", "___s": true }, { @@ -145323,7 +145369,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#star", "scope": "instance", - "___id": "T000002R015493", + "___id": "T000002R015476", "___s": true }, { @@ -145508,7 +145554,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Triangle", - "___id": "T000002R015541", + "___id": "T000002R015524", "___s": true }, { @@ -145634,7 +145680,7 @@ "memberof": "Phaser.GameObjects.Triangle", "longname": "Phaser.GameObjects.Triangle#setTo", "scope": "instance", - "___id": "T000002R015556", + "___id": "T000002R015539", "___s": true }, { @@ -145817,7 +145863,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#triangle", "scope": "instance", - "___id": "T000002R015582", + "___id": "T000002R015565", "___s": true }, { @@ -145942,7 +145988,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Sprite", - "___id": "T000002R015619", + "___id": "T000002R015602", "___s": true }, { @@ -145970,7 +146016,7 @@ "longname": "Phaser.GameObjects.Sprite#anims", "scope": "instance", "kind": "member", - "___id": "T000002R015626", + "___id": "T000002R015609", "___s": true }, { @@ -146018,7 +146064,7 @@ "memberof": "Phaser.GameObjects.Sprite", "longname": "Phaser.GameObjects.Sprite#preUpdate", "scope": "instance", - "___id": "T000002R015630", + "___id": "T000002R015613", "___s": true }, { @@ -146100,7 +146146,7 @@ "memberof": "Phaser.GameObjects.Sprite", "longname": "Phaser.GameObjects.Sprite#play", "scope": "instance", - "___id": "T000002R015632", + "___id": "T000002R015615", "___s": true }, { @@ -146182,7 +146228,7 @@ "memberof": "Phaser.GameObjects.Sprite", "longname": "Phaser.GameObjects.Sprite#playReverse", "scope": "instance", - "___id": "T000002R015634", + "___id": "T000002R015617", "___s": true }, { @@ -146262,7 +146308,7 @@ "memberof": "Phaser.GameObjects.Sprite", "longname": "Phaser.GameObjects.Sprite#playAfterDelay", "scope": "instance", - "___id": "T000002R015636", + "___id": "T000002R015619", "___s": true }, { @@ -146344,7 +146390,7 @@ "memberof": "Phaser.GameObjects.Sprite", "longname": "Phaser.GameObjects.Sprite#playAfterRepeat", "scope": "instance", - "___id": "T000002R015638", + "___id": "T000002R015621", "___s": true }, { @@ -146451,7 +146497,7 @@ "memberof": "Phaser.GameObjects.Sprite", "longname": "Phaser.GameObjects.Sprite#chain", "scope": "instance", - "___id": "T000002R015640", + "___id": "T000002R015623", "___s": true }, { @@ -146488,7 +146534,7 @@ "memberof": "Phaser.GameObjects.Sprite", "longname": "Phaser.GameObjects.Sprite#stop", "scope": "instance", - "___id": "T000002R015642", + "___id": "T000002R015625", "___s": true }, { @@ -146540,7 +146586,7 @@ "memberof": "Phaser.GameObjects.Sprite", "longname": "Phaser.GameObjects.Sprite#stopAfterDelay", "scope": "instance", - "___id": "T000002R015644", + "___id": "T000002R015627", "___s": true }, { @@ -146594,7 +146640,7 @@ "memberof": "Phaser.GameObjects.Sprite", "longname": "Phaser.GameObjects.Sprite#stopAfterRepeat", "scope": "instance", - "___id": "T000002R015646", + "___id": "T000002R015629", "___s": true }, { @@ -146646,7 +146692,7 @@ "memberof": "Phaser.GameObjects.Sprite", "longname": "Phaser.GameObjects.Sprite#stopOnFrame", "scope": "instance", - "___id": "T000002R015648", + "___id": "T000002R015631", "___s": true }, { @@ -146680,7 +146726,7 @@ "longname": "Phaser.GameObjects.Sprite#toJSON", "scope": "instance", "overrides": "Phaser.GameObjects.GameObject#toJSON", - "___id": "T000002R015650", + "___id": "T000002R015633", "___s": true }, { @@ -146743,7 +146789,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#sprite", "scope": "instance", - "___id": "T000002R015664", + "___id": "T000002R015647", "___s": true }, { @@ -146851,7 +146897,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#sprite", "scope": "instance", - "___id": "T000002R015672", + "___id": "T000002R015655", "___s": true }, { @@ -146868,7 +146914,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Sprite", "scope": "static", - "___id": "T000002R015684", + "___id": "T000002R015667", "___s": true }, { @@ -146991,7 +147037,7 @@ "memberof": "Phaser.Types.GameObjects.Sprite", "longname": "Phaser.Types.GameObjects.Sprite.SpriteConfig", "scope": "static", - "___id": "T000002R015685", + "___id": "T000002R015668", "___s": true }, { @@ -147074,7 +147120,7 @@ "memberof": "Phaser.GameObjects", "longname": "Phaser.GameObjects.GetTextSize", "scope": "static", - "___id": "T000002R015686", + "___id": "T000002R015669", "___s": true }, { @@ -147122,7 +147168,7 @@ "memberof": "Phaser.GameObjects", "longname": "Phaser.GameObjects.MeasureText", "scope": "static", - "___id": "T000002R015714", + "___id": "T000002R015697", "___s": true }, { @@ -147248,7 +147294,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Text", - "___id": "T000002R015777", + "___id": "T000002R015760", "___s": true }, { @@ -147286,7 +147332,7 @@ "longname": "Phaser.GameObjects.Text#renderer", "scope": "instance", "kind": "member", - "___id": "T000002R015784", + "___id": "T000002R015767", "___s": true }, { @@ -147314,7 +147360,7 @@ "longname": "Phaser.GameObjects.Text#canvas", "scope": "instance", "kind": "member", - "___id": "T000002R015786", + "___id": "T000002R015769", "___s": true }, { @@ -147342,7 +147388,7 @@ "longname": "Phaser.GameObjects.Text#context", "scope": "instance", "kind": "member", - "___id": "T000002R015788", + "___id": "T000002R015771", "___s": true }, { @@ -147370,7 +147416,7 @@ "longname": "Phaser.GameObjects.Text#style", "scope": "instance", "kind": "member", - "___id": "T000002R015790", + "___id": "T000002R015773", "___s": true }, { @@ -147399,7 +147445,7 @@ "longname": "Phaser.GameObjects.Text#autoRound", "scope": "instance", "kind": "member", - "___id": "T000002R015792", + "___id": "T000002R015775", "___s": true }, { @@ -147427,7 +147473,7 @@ "longname": "Phaser.GameObjects.Text#splitRegExp", "scope": "instance", "kind": "member", - "___id": "T000002R015794", + "___id": "T000002R015777", "___s": true }, { @@ -147455,7 +147501,7 @@ "longname": "Phaser.GameObjects.Text#padding", "scope": "instance", "kind": "member", - "___id": "T000002R015798", + "___id": "T000002R015781", "___s": true }, { @@ -147485,7 +147531,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.ComputedSize#width", - "___id": "T000002R015804", + "___id": "T000002R015787", "___s": true }, { @@ -147515,7 +147561,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.ComputedSize#height", - "___id": "T000002R015806", + "___id": "T000002R015789", "___s": true }, { @@ -147543,7 +147589,7 @@ "longname": "Phaser.GameObjects.Text#lineSpacing", "scope": "instance", "kind": "member", - "___id": "T000002R015808", + "___id": "T000002R015791", "___s": true }, { @@ -147571,7 +147617,7 @@ "longname": "Phaser.GameObjects.Text#letterSpacing", "scope": "instance", "kind": "member", - "___id": "T000002R015810", + "___id": "T000002R015793", "___s": true }, { @@ -147590,7 +147636,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#initRTL", "scope": "instance", - "___id": "T000002R015822", + "___id": "T000002R015805", "___s": true }, { @@ -147638,7 +147684,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#runWordWrap", "scope": "instance", - "___id": "T000002R015828", + "___id": "T000002R015811", "___s": true }, { @@ -147712,7 +147758,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#advancedWordWrap", "scope": "instance", - "___id": "T000002R015833", + "___id": "T000002R015816", "___s": true }, { @@ -147786,7 +147832,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#basicWordWrap", "scope": "instance", - "___id": "T000002R015863", + "___id": "T000002R015846", "___s": true }, { @@ -147844,7 +147890,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#getWrappedText", "scope": "instance", - "___id": "T000002R015885", + "___id": "T000002R015868", "___s": true }, { @@ -147912,7 +147958,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setText", "scope": "instance", - "___id": "T000002R015889", + "___id": "T000002R015872", "___s": true }, { @@ -147995,7 +148041,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#appendText", "scope": "instance", - "___id": "T000002R015894", + "___id": "T000002R015877", "___s": true }, { @@ -148047,7 +148093,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setStyle", "scope": "instance", - "___id": "T000002R015902", + "___id": "T000002R015885", "___s": true }, { @@ -148099,7 +148145,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setFont", "scope": "instance", - "___id": "T000002R015904", + "___id": "T000002R015887", "___s": true }, { @@ -148151,7 +148197,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setFontFamily", "scope": "instance", - "___id": "T000002R015906", + "___id": "T000002R015889", "___s": true }, { @@ -148210,7 +148256,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setFontSize", "scope": "instance", - "___id": "T000002R015908", + "___id": "T000002R015891", "___s": true }, { @@ -148259,7 +148305,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setFontStyle", "scope": "instance", - "___id": "T000002R015910", + "___id": "T000002R015893", "___s": true }, { @@ -148321,7 +148367,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setFixedSize", "scope": "instance", - "___id": "T000002R015912", + "___id": "T000002R015895", "___s": true }, { @@ -148370,7 +148416,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setBackgroundColor", "scope": "instance", - "___id": "T000002R015914", + "___id": "T000002R015897", "___s": true }, { @@ -148434,7 +148480,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setFill", "scope": "instance", - "___id": "T000002R015916", + "___id": "T000002R015899", "___s": true }, { @@ -148498,7 +148544,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setColor", "scope": "instance", - "___id": "T000002R015918", + "___id": "T000002R015901", "___s": true }, { @@ -148575,7 +148621,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setStroke", "scope": "instance", - "___id": "T000002R015920", + "___id": "T000002R015903", "___s": true }, { @@ -148701,7 +148747,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setShadow", "scope": "instance", - "___id": "T000002R015922", + "___id": "T000002R015905", "___s": true }, { @@ -148763,7 +148809,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setShadowOffset", "scope": "instance", - "___id": "T000002R015924", + "___id": "T000002R015907", "___s": true }, { @@ -148812,7 +148858,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setShadowColor", "scope": "instance", - "___id": "T000002R015926", + "___id": "T000002R015909", "___s": true }, { @@ -148861,7 +148907,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setShadowBlur", "scope": "instance", - "___id": "T000002R015928", + "___id": "T000002R015911", "___s": true }, { @@ -148910,7 +148956,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setShadowStroke", "scope": "instance", - "___id": "T000002R015930", + "___id": "T000002R015913", "___s": true }, { @@ -148959,7 +149005,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setShadowFill", "scope": "instance", - "___id": "T000002R015932", + "___id": "T000002R015915", "___s": true }, { @@ -149032,7 +149078,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setWordWrapWidth", "scope": "instance", - "___id": "T000002R015934", + "___id": "T000002R015917", "___s": true }, { @@ -149096,7 +149142,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setWordWrapCallback", "scope": "instance", - "___id": "T000002R015936", + "___id": "T000002R015919", "___s": true }, { @@ -149147,7 +149193,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setAlign", "scope": "instance", - "___id": "T000002R015938", + "___id": "T000002R015921", "___s": true }, { @@ -149196,7 +149242,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setResolution", "scope": "instance", - "___id": "T000002R015940", + "___id": "T000002R015923", "___s": true }, { @@ -149245,7 +149291,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setLineSpacing", "scope": "instance", - "___id": "T000002R015942", + "___id": "T000002R015925", "___s": true }, { @@ -149294,7 +149340,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setLetterSpacing", "scope": "instance", - "___id": "T000002R015945", + "___id": "T000002R015928", "___s": true }, { @@ -149395,7 +149441,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setPadding", "scope": "instance", - "___id": "T000002R015948", + "___id": "T000002R015931", "___s": true }, { @@ -149446,7 +149492,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setMaxLines", "scope": "instance", - "___id": "T000002R015969", + "___id": "T000002R015952", "___s": true }, { @@ -149497,7 +149543,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#setRTL", "scope": "instance", - "___id": "T000002R015971", + "___id": "T000002R015954", "___s": true }, { @@ -149531,14 +149577,14 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#updateText", "scope": "instance", - "___id": "T000002R015983", + "___id": "T000002R015966", "___s": true }, { "comment": "/**\r\n * Get the current text metrics.\r\n *\r\n * @method Phaser.GameObjects.Text#getTextMetrics\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.Text.TextMetrics} The text metrics.\r\n */", "meta": { "filename": "Text.js", - "lineno": 1453, + "lineno": 1464, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\text", "code": {} @@ -149564,14 +149610,14 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#getTextMetrics", "scope": "instance", - "___id": "T000002R016046", + "___id": "T000002R016029", "___s": true }, { "comment": "/**\r\n * The text string being rendered by this Text Game Object.\r\n *\r\n * @name Phaser.GameObjects.Text#text\r\n * @type {string}\r\n * @since 3.0.0\r\n */", "meta": { "filename": "Text.js", - "lineno": 1466, + "lineno": 1477, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\text", "code": {} @@ -149592,14 +149638,14 @@ "longname": "Phaser.GameObjects.Text#text", "scope": "instance", "kind": "member", - "___id": "T000002R016048", + "___id": "T000002R016031", "___s": true }, { "comment": "/**\r\n * Build a JSON representation of the Text object.\r\n *\r\n * @method Phaser.GameObjects.Text#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Text object.\r\n */", "meta": { "filename": "Text.js", - "lineno": 1487, + "lineno": 1498, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\text", "code": {} @@ -149626,14 +149672,14 @@ "longname": "Phaser.GameObjects.Text#toJSON", "scope": "instance", "overrides": "Phaser.GameObjects.GameObject#toJSON", - "___id": "T000002R016052", + "___id": "T000002R016035", "___s": true }, { "comment": "/**\r\n * Internal destroy handler, called as part of the destroy process.\r\n *\r\n * @method Phaser.GameObjects.Text#preDestroy\r\n * @protected\r\n * @since 3.0.0\r\n */", "meta": { "filename": "Text.js", - "lineno": 1518, + "lineno": 1529, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\text", "code": {} @@ -149646,7 +149692,7 @@ "memberof": "Phaser.GameObjects.Text", "longname": "Phaser.GameObjects.Text#preDestroy", "scope": "instance", - "___id": "T000002R016065", + "___id": "T000002R016048", "___s": true }, { @@ -149708,7 +149754,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#text", "scope": "instance", - "___id": "T000002R016076", + "___id": "T000002R016059", "___s": true }, { @@ -149815,7 +149861,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#text", "scope": "instance", - "___id": "T000002R016088", + "___id": "T000002R016071", "___s": true }, { @@ -149862,7 +149908,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.TextStyle", - "___id": "T000002R016128", + "___id": "T000002R016111", "___s": true }, { @@ -149890,7 +149936,7 @@ "longname": "Phaser.GameObjects.TextStyle#parent", "scope": "instance", "kind": "member", - "___id": "T000002R016131", + "___id": "T000002R016114", "___s": true }, { @@ -149919,7 +149965,7 @@ "longname": "Phaser.GameObjects.TextStyle#fontFamily", "scope": "instance", "kind": "member", - "___id": "T000002R016133", + "___id": "T000002R016116", "___s": true }, { @@ -149958,7 +150004,7 @@ "longname": "Phaser.GameObjects.TextStyle#fontSize", "scope": "instance", "kind": "member", - "___id": "T000002R016135", + "___id": "T000002R016118", "___s": true }, { @@ -149986,7 +150032,7 @@ "longname": "Phaser.GameObjects.TextStyle#fontStyle", "scope": "instance", "kind": "member", - "___id": "T000002R016137", + "___id": "T000002R016120", "___s": true }, { @@ -150014,7 +150060,7 @@ "longname": "Phaser.GameObjects.TextStyle#backgroundColor", "scope": "instance", "kind": "member", - "___id": "T000002R016139", + "___id": "T000002R016122", "___s": true }, { @@ -150058,7 +150104,7 @@ "longname": "Phaser.GameObjects.TextStyle#color", "scope": "instance", "kind": "member", - "___id": "T000002R016141", + "___id": "T000002R016124", "___s": true }, { @@ -150102,7 +150148,7 @@ "longname": "Phaser.GameObjects.TextStyle#stroke", "scope": "instance", "kind": "member", - "___id": "T000002R016143", + "___id": "T000002R016126", "___s": true }, { @@ -150131,7 +150177,7 @@ "longname": "Phaser.GameObjects.TextStyle#strokeThickness", "scope": "instance", "kind": "member", - "___id": "T000002R016145", + "___id": "T000002R016128", "___s": true }, { @@ -150160,7 +150206,7 @@ "longname": "Phaser.GameObjects.TextStyle#shadowOffsetX", "scope": "instance", "kind": "member", - "___id": "T000002R016147", + "___id": "T000002R016130", "___s": true }, { @@ -150189,7 +150235,7 @@ "longname": "Phaser.GameObjects.TextStyle#shadowOffsetY", "scope": "instance", "kind": "member", - "___id": "T000002R016149", + "___id": "T000002R016132", "___s": true }, { @@ -150218,7 +150264,7 @@ "longname": "Phaser.GameObjects.TextStyle#shadowColor", "scope": "instance", "kind": "member", - "___id": "T000002R016151", + "___id": "T000002R016134", "___s": true }, { @@ -150247,7 +150293,7 @@ "longname": "Phaser.GameObjects.TextStyle#shadowBlur", "scope": "instance", "kind": "member", - "___id": "T000002R016153", + "___id": "T000002R016136", "___s": true }, { @@ -150276,7 +150322,7 @@ "longname": "Phaser.GameObjects.TextStyle#shadowStroke", "scope": "instance", "kind": "member", - "___id": "T000002R016155", + "___id": "T000002R016138", "___s": true }, { @@ -150305,7 +150351,7 @@ "longname": "Phaser.GameObjects.TextStyle#shadowFill", "scope": "instance", "kind": "member", - "___id": "T000002R016157", + "___id": "T000002R016140", "___s": true }, { @@ -150334,7 +150380,7 @@ "longname": "Phaser.GameObjects.TextStyle#align", "scope": "instance", "kind": "member", - "___id": "T000002R016159", + "___id": "T000002R016142", "___s": true }, { @@ -150363,7 +150409,7 @@ "longname": "Phaser.GameObjects.TextStyle#maxLines", "scope": "instance", "kind": "member", - "___id": "T000002R016161", + "___id": "T000002R016144", "___s": true }, { @@ -150392,7 +150438,7 @@ "longname": "Phaser.GameObjects.TextStyle#fixedWidth", "scope": "instance", "kind": "member", - "___id": "T000002R016163", + "___id": "T000002R016146", "___s": true }, { @@ -150421,7 +150467,7 @@ "longname": "Phaser.GameObjects.TextStyle#fixedHeight", "scope": "instance", "kind": "member", - "___id": "T000002R016165", + "___id": "T000002R016148", "___s": true }, { @@ -150450,7 +150496,7 @@ "longname": "Phaser.GameObjects.TextStyle#resolution", "scope": "instance", "kind": "member", - "___id": "T000002R016167", + "___id": "T000002R016150", "___s": true }, { @@ -150479,7 +150525,7 @@ "longname": "Phaser.GameObjects.TextStyle#rtl", "scope": "instance", "kind": "member", - "___id": "T000002R016169", + "___id": "T000002R016152", "___s": true }, { @@ -150508,7 +150554,7 @@ "longname": "Phaser.GameObjects.TextStyle#testString", "scope": "instance", "kind": "member", - "___id": "T000002R016171", + "___id": "T000002R016154", "___s": true }, { @@ -150537,7 +150583,7 @@ "longname": "Phaser.GameObjects.TextStyle#baselineX", "scope": "instance", "kind": "member", - "___id": "T000002R016173", + "___id": "T000002R016156", "___s": true }, { @@ -150566,7 +150612,7 @@ "longname": "Phaser.GameObjects.TextStyle#baselineY", "scope": "instance", "kind": "member", - "___id": "T000002R016175", + "___id": "T000002R016158", "___s": true }, { @@ -150604,7 +150650,7 @@ "longname": "Phaser.GameObjects.TextStyle#wordWrapWidth", "scope": "instance", "kind": "member", - "___id": "T000002R016177", + "___id": "T000002R016160", "___s": true }, { @@ -150642,7 +150688,7 @@ "longname": "Phaser.GameObjects.TextStyle#wordWrapCallback", "scope": "instance", "kind": "member", - "___id": "T000002R016179", + "___id": "T000002R016162", "___s": true }, { @@ -150680,7 +150726,7 @@ "longname": "Phaser.GameObjects.TextStyle#wordWrapCallbackScope", "scope": "instance", "kind": "member", - "___id": "T000002R016181", + "___id": "T000002R016164", "___s": true }, { @@ -150709,7 +150755,7 @@ "longname": "Phaser.GameObjects.TextStyle#wordWrapUseAdvanced", "scope": "instance", "kind": "member", - "___id": "T000002R016183", + "___id": "T000002R016166", "___s": true }, { @@ -150790,7 +150836,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setStyle", "scope": "instance", - "___id": "T000002R016187", + "___id": "T000002R016170", "___s": true }, { @@ -150837,7 +150883,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#syncFont", "scope": "instance", - "___id": "T000002R016206", + "___id": "T000002R016189", "___s": true }, { @@ -150884,7 +150930,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#syncStyle", "scope": "instance", - "___id": "T000002R016209", + "___id": "T000002R016192", "___s": true }, { @@ -150931,7 +150977,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#syncShadow", "scope": "instance", - "___id": "T000002R016217", + "___id": "T000002R016200", "___s": true }, { @@ -150979,7 +151025,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#update", "scope": "instance", - "___id": "T000002R016227", + "___id": "T000002R016210", "___s": true }, { @@ -151052,7 +151098,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setFont", "scope": "instance", - "___id": "T000002R016231", + "___id": "T000002R016214", "___s": true }, { @@ -151100,7 +151146,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setFontFamily", "scope": "instance", - "___id": "T000002R016248", + "___id": "T000002R016231", "___s": true }, { @@ -151148,7 +151194,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setFontStyle", "scope": "instance", - "___id": "T000002R016251", + "___id": "T000002R016234", "___s": true }, { @@ -151206,7 +151252,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setFontSize", "scope": "instance", - "___id": "T000002R016254", + "___id": "T000002R016237", "___s": true }, { @@ -151254,7 +151300,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setTestString", "scope": "instance", - "___id": "T000002R016258", + "___id": "T000002R016241", "___s": true }, { @@ -151315,7 +151361,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setFixedSize", "scope": "instance", - "___id": "T000002R016261", + "___id": "T000002R016244", "___s": true }, { @@ -151363,7 +151409,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setBackgroundColor", "scope": "instance", - "___id": "T000002R016267", + "___id": "T000002R016250", "___s": true }, { @@ -151426,7 +151472,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setFill", "scope": "instance", - "___id": "T000002R016270", + "___id": "T000002R016253", "___s": true }, { @@ -151489,7 +151535,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setColor", "scope": "instance", - "___id": "T000002R016273", + "___id": "T000002R016256", "___s": true }, { @@ -151537,7 +151583,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setResolution", "scope": "instance", - "___id": "T000002R016276", + "___id": "T000002R016259", "___s": true }, { @@ -151613,7 +151659,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setStroke", "scope": "instance", - "___id": "T000002R016279", + "___id": "T000002R016262", "___s": true }, { @@ -151738,7 +151784,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setShadow", "scope": "instance", - "___id": "T000002R016285", + "___id": "T000002R016268", "___s": true }, { @@ -151803,7 +151849,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setShadowOffset", "scope": "instance", - "___id": "T000002R016299", + "___id": "T000002R016282", "___s": true }, { @@ -151853,7 +151899,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setShadowColor", "scope": "instance", - "___id": "T000002R016305", + "___id": "T000002R016288", "___s": true }, { @@ -151903,7 +151949,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setShadowBlur", "scope": "instance", - "___id": "T000002R016309", + "___id": "T000002R016292", "___s": true }, { @@ -151951,7 +151997,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setShadowStroke", "scope": "instance", - "___id": "T000002R016313", + "___id": "T000002R016296", "___s": true }, { @@ -151999,7 +152045,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setShadowFill", "scope": "instance", - "___id": "T000002R016316", + "___id": "T000002R016299", "___s": true }, { @@ -152071,7 +152117,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setWordWrapWidth", "scope": "instance", - "___id": "T000002R016319", + "___id": "T000002R016302", "___s": true }, { @@ -152134,7 +152180,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setWordWrapCallback", "scope": "instance", - "___id": "T000002R016324", + "___id": "T000002R016307", "___s": true }, { @@ -152184,7 +152230,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setAlign", "scope": "instance", - "___id": "T000002R016329", + "___id": "T000002R016312", "___s": true }, { @@ -152234,7 +152280,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#setMaxLines", "scope": "instance", - "___id": "T000002R016333", + "___id": "T000002R016316", "___s": true }, { @@ -152267,7 +152313,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#getTextMetrics", "scope": "instance", - "___id": "T000002R016337", + "___id": "T000002R016320", "___s": true }, { @@ -152300,7 +152346,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#toJSON", "scope": "instance", - "___id": "T000002R016343", + "___id": "T000002R016326", "___s": true }, { @@ -152319,7 +152365,7 @@ "memberof": "Phaser.GameObjects.TextStyle", "longname": "Phaser.GameObjects.TextStyle#destroy", "scope": "instance", - "___id": "T000002R016349", + "___id": "T000002R016332", "___s": true }, { @@ -152436,7 +152482,7 @@ "memberof": "Phaser.Types.GameObjects.Text", "longname": "Phaser.Types.GameObjects.Text.GetTextSizeObject", "scope": "static", - "___id": "T000002R016363", + "___id": "T000002R016346", "___s": true }, { @@ -152453,7 +152499,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Text", "scope": "static", - "___id": "T000002R016364", + "___id": "T000002R016347", "___s": true }, { @@ -152546,7 +152592,7 @@ "memberof": "Phaser.Types.GameObjects.Text", "longname": "Phaser.Types.GameObjects.Text.TextConfig", "scope": "static", - "___id": "T000002R016365", + "___id": "T000002R016348", "___s": true }, { @@ -152615,7 +152661,7 @@ "memberof": "Phaser.Types.GameObjects.Text", "longname": "Phaser.Types.GameObjects.Text.TextMetrics", "scope": "static", - "___id": "T000002R016366", + "___id": "T000002R016349", "___s": true }, { @@ -152729,7 +152775,7 @@ "memberof": "Phaser.Types.GameObjects.Text", "longname": "Phaser.Types.GameObjects.Text.TextPadding", "scope": "static", - "___id": "T000002R016367", + "___id": "T000002R016350", "___s": true }, { @@ -152849,11 +152895,11 @@ "memberof": "Phaser.Types.GameObjects.Text", "longname": "Phaser.Types.GameObjects.Text.TextShadow", "scope": "static", - "___id": "T000002R016368", + "___id": "T000002R016351", "___s": true }, { - "comment": "/**\r\n * A Text Style configuration object as used by the Text Game Object.\r\n *\r\n * @typedef {object} Phaser.Types.GameObjects.Text.TextStyle\r\n * @since 3.0.0\r\n *\r\n * @property {string} [fontFamily='Courier'] - The font the Text object will render with. This is a Canvas style font string.\r\n * @property {(number|string)} [fontSize='16px'] - The font size, as a CSS size string.\r\n * @property {string} [fontStyle] - Any addition font styles, such as 'strong'.\r\n * @property {string} [font] - The font family or font settings to set. Overrides the other font settings.\r\n * @property {string} [backgroundColor] - A solid fill color that is rendered behind the Text object. Given as a CSS string color such as `#ff0`.\r\n * @property {(string|CanvasGradient|CanvasPattern)} [color='#fff'] - The color the Text is drawn in. Given as a CSS string color such as `#fff` or `rgb()`.\r\n * @property {(string|CanvasGradient|CanvasPattern)} [stroke='#fff'] - The color used to stroke the Text if the `strokeThickness` property is greater than zero.\r\n * @property {number} [strokeThickness=0] - The thickness of the stroke around the Text. Set to zero for no stroke.\r\n * @property {Phaser.Types.GameObjects.Text.TextShadow} [shadow] - The Text shadow configuration object.\r\n * @property {Phaser.Types.GameObjects.Text.TextPadding} [padding] - A Text Padding object.\r\n * @property {string} [align='left'] - The alignment of the Text. This only impacts multi-line text. Either `left`, `right`, `center` or `justify`.\r\n * @property {number} [maxLines=0] - The maximum number of lines to display within the Text object.\r\n * @property {number} [fixedWidth=0] - Force the Text object to have the exact width specified in this property. Leave as zero for it to change accordingly to content.\r\n * @property {number} [fixedHeight=0] - Force the Text object to have the exact height specified in this property. Leave as zero for it to change accordingly to content.\r\n * @property {number} [resolution=0] - Sets the resolution (DPI setting) of the Text object. Leave at zero for it to use the game resolution.\r\n * @property {boolean} [rtl=false] - Set to `true` if this Text object should render from right-to-left.\r\n * @property {string} [testString='|MÉqgy'] - This is the string used to aid Canvas in calculating the height of the font.\r\n * @property {number} [baselineX=1.2] - The amount of horizontal padding added to the width of the text when calculating the font metrics.\r\n * @property {number} [baselineY=1.4] - The amount of vertical padding added to the height of the text when calculating the font metrics.\r\n * @property {Phaser.Types.GameObjects.Text.TextWordWrap} [wordWrap] - The Text Word wrap configuration object.\r\n * @property {Phaser.Types.GameObjects.Text.TextMetrics} [metrics] - A Text Metrics object. Use this to avoid expensive font size calculations in text heavy games.\r\n * @property {number} [lineSpacing] - The amount to add to the font height to achieve the overall line height.\r\n */", + "comment": "/**\r\n * A Text Style configuration object as used by the Text Game Object.\r\n *\r\n * @typedef {object} Phaser.Types.GameObjects.Text.TextStyle\r\n * @since 3.0.0\r\n *\r\n * @property {string} [fontFamily='Courier'] - The font the Text object will render with. This is a Canvas style font string.\r\n * @property {(number|string)} [fontSize='16px'] - The font size, as a CSS size string.\r\n * @property {string} [fontStyle] - Any addition font styles, such as 'bold'.\r\n * @property {string} [font] - The font family or font settings to set. Overrides the other font settings.\r\n * @property {string} [backgroundColor] - A solid fill color that is rendered behind the Text object. Given as a CSS string color such as `#ff0`.\r\n * @property {(string|CanvasGradient|CanvasPattern)} [color='#fff'] - The color the Text is drawn in. Given as a CSS string color such as `#fff` or `rgb()`.\r\n * @property {(string|CanvasGradient|CanvasPattern)} [stroke='#fff'] - The color used to stroke the Text if the `strokeThickness` property is greater than zero.\r\n * @property {number} [strokeThickness=0] - The thickness of the stroke around the Text. Set to zero for no stroke.\r\n * @property {Phaser.Types.GameObjects.Text.TextShadow} [shadow] - The Text shadow configuration object.\r\n * @property {Phaser.Types.GameObjects.Text.TextPadding} [padding] - A Text Padding object.\r\n * @property {string} [align='left'] - The alignment of the Text. This only impacts multi-line text. Either `left`, `right`, `center` or `justify`.\r\n * @property {number} [maxLines=0] - The maximum number of lines to display within the Text object.\r\n * @property {number} [fixedWidth=0] - Force the Text object to have the exact width specified in this property. Leave as zero for it to change accordingly to content.\r\n * @property {number} [fixedHeight=0] - Force the Text object to have the exact height specified in this property. Leave as zero for it to change accordingly to content.\r\n * @property {number} [resolution=0] - Sets the resolution (DPI setting) of the Text object. Leave at zero for it to use the game resolution.\r\n * @property {boolean} [rtl=false] - Set to `true` if this Text object should render from right-to-left.\r\n * @property {string} [testString='|MÉqgy'] - This is the string used to aid Canvas in calculating the height of the font.\r\n * @property {number} [baselineX=1.2] - The amount of horizontal padding added to the width of the text when calculating the font metrics.\r\n * @property {number} [baselineY=1.4] - The amount of vertical padding added to the height of the text when calculating the font metrics.\r\n * @property {Phaser.Types.GameObjects.Text.TextWordWrap} [wordWrap] - The Text Word wrap configuration object.\r\n * @property {Phaser.Types.GameObjects.Text.TextMetrics} [metrics] - A Text Metrics object. Use this to avoid expensive font size calculations in text heavy games.\r\n * @property {number} [lineSpacing] - The amount to add to the font height to achieve the overall line height.\r\n */", "meta": { "filename": "TextStyle.js", "lineno": 1, @@ -152926,7 +152972,7 @@ } }, "optional": true, - "description": "Any addition font styles, such as 'strong'.", + "description": "Any addition font styles, such as 'bold'.", "name": "fontStyle" }, { @@ -153241,7 +153287,7 @@ "memberof": "Phaser.Types.GameObjects.Text", "longname": "Phaser.Types.GameObjects.Text.TextStyle", "scope": "static", - "___id": "T000002R016369", + "___id": "T000002R016352", "___s": true }, { @@ -153328,7 +153374,7 @@ "memberof": "Phaser.Types.GameObjects.Text", "longname": "Phaser.Types.GameObjects.Text.TextWordWrap", "scope": "static", - "___id": "T000002R016370", + "___id": "T000002R016353", "___s": true }, { @@ -153411,7 +153457,7 @@ ], "longname": "TextStyleWordWrapCallback", "scope": "global", - "___id": "T000002R016371", + "___id": "T000002R016354", "___s": true }, { @@ -153552,7 +153598,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.TileSprite", - "___id": "T000002R016382", + "___id": "T000002R016365", "___s": true }, { @@ -153581,7 +153627,7 @@ "longname": "Phaser.GameObjects.TileSprite#dirty", "scope": "instance", "kind": "member", - "___id": "T000002R016402", + "___id": "T000002R016385", "___s": true }, { @@ -153619,7 +153665,7 @@ "longname": "Phaser.GameObjects.TileSprite#renderer", "scope": "instance", "kind": "member", - "___id": "T000002R016404", + "___id": "T000002R016387", "___s": true }, { @@ -153649,7 +153695,7 @@ "longname": "Phaser.GameObjects.TileSprite#canvas", "scope": "instance", "kind": "member", - "___id": "T000002R016406", + "___id": "T000002R016389", "___s": true }, { @@ -153677,7 +153723,7 @@ "longname": "Phaser.GameObjects.TileSprite#context", "scope": "instance", "kind": "member", - "___id": "T000002R016408", + "___id": "T000002R016391", "___s": true }, { @@ -153716,7 +153762,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.Crop#texture", - "___id": "T000002R016419", + "___id": "T000002R016402", "___s": true }, { @@ -153745,7 +153791,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.Crop#frame", - "___id": "T000002R016421", + "___id": "T000002R016404", "___s": true }, { @@ -153773,7 +153819,7 @@ "longname": "Phaser.GameObjects.TileSprite#potWidth", "scope": "instance", "kind": "member", - "___id": "T000002R016423", + "___id": "T000002R016406", "___s": true }, { @@ -153801,7 +153847,7 @@ "longname": "Phaser.GameObjects.TileSprite#potHeight", "scope": "instance", "kind": "member", - "___id": "T000002R016425", + "___id": "T000002R016408", "___s": true }, { @@ -153829,7 +153875,7 @@ "longname": "Phaser.GameObjects.TileSprite#fillCanvas", "scope": "instance", "kind": "member", - "___id": "T000002R016427", + "___id": "T000002R016410", "___s": true }, { @@ -153857,7 +153903,7 @@ "longname": "Phaser.GameObjects.TileSprite#fillContext", "scope": "instance", "kind": "member", - "___id": "T000002R016429", + "___id": "T000002R016412", "___s": true }, { @@ -153897,7 +153943,7 @@ "longname": "Phaser.GameObjects.TileSprite#fillPattern", "scope": "instance", "kind": "member", - "___id": "T000002R016432", + "___id": "T000002R016415", "___s": true }, { @@ -153970,7 +154016,7 @@ "memberof": "Phaser.GameObjects.TileSprite", "longname": "Phaser.GameObjects.TileSprite#setTexture", "scope": "instance", - "___id": "T000002R016434", + "___id": "T000002R016417", "___s": true }, { @@ -154029,7 +154075,7 @@ "memberof": "Phaser.GameObjects.TileSprite", "longname": "Phaser.GameObjects.TileSprite#setFrame", "scope": "instance", - "___id": "T000002R016437", + "___id": "T000002R016420", "___s": true }, { @@ -154093,7 +154139,7 @@ "memberof": "Phaser.GameObjects.TileSprite", "longname": "Phaser.GameObjects.TileSprite#setTilePosition", "scope": "instance", - "___id": "T000002R016447", + "___id": "T000002R016430", "___s": true }, { @@ -154158,7 +154204,7 @@ "memberof": "Phaser.GameObjects.TileSprite", "longname": "Phaser.GameObjects.TileSprite#setTileScale", "scope": "instance", - "___id": "T000002R016451", + "___id": "T000002R016434", "___s": true }, { @@ -154178,7 +154224,7 @@ "memberof": "Phaser.GameObjects.TileSprite", "longname": "Phaser.GameObjects.TileSprite#preDestroy", "scope": "instance", - "___id": "T000002R016488", + "___id": "T000002R016471", "___s": true }, { @@ -154207,7 +154253,7 @@ "longname": "Phaser.GameObjects.TileSprite#tilePositionX", "scope": "instance", "kind": "member", - "___id": "T000002R016497", + "___id": "T000002R016480", "___s": true }, { @@ -154236,7 +154282,7 @@ "longname": "Phaser.GameObjects.TileSprite#tilePositionY", "scope": "instance", "kind": "member", - "___id": "T000002R016503", + "___id": "T000002R016486", "___s": true }, { @@ -154265,7 +154311,7 @@ "longname": "Phaser.GameObjects.TileSprite#tileScaleX", "scope": "instance", "kind": "member", - "___id": "T000002R016509", + "___id": "T000002R016492", "___s": true }, { @@ -154294,7 +154340,7 @@ "longname": "Phaser.GameObjects.TileSprite#tileScaleY", "scope": "instance", "kind": "member", - "___id": "T000002R016515", + "___id": "T000002R016498", "___s": true }, { @@ -154356,7 +154402,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#tileSprite", "scope": "instance", - "___id": "T000002R016529", + "___id": "T000002R016512", "___s": true }, { @@ -154490,7 +154536,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#tileSprite", "scope": "instance", - "___id": "T000002R016541", + "___id": "T000002R016524", "___s": true }, { @@ -154507,7 +154553,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.TileSprite", "scope": "static", - "___id": "T000002R016559", + "___id": "T000002R016542", "___s": true }, { @@ -154644,7 +154690,7 @@ "memberof": "Phaser.Types.GameObjects.TileSprite", "longname": "Phaser.Types.GameObjects.TileSprite.TileSpriteConfig", "scope": "static", - "___id": "T000002R016560", + "___id": "T000002R016543", "___s": true }, { @@ -154738,7 +154784,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.DecomposeMatrixResults", "scope": "static", - "___id": "T000002R016561", + "___id": "T000002R016544", "___s": true }, { @@ -154819,7 +154865,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Face", "scope": "static", - "___id": "T000002R016562", + "___id": "T000002R016545", "___s": true }, { @@ -155161,7 +155207,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.GameObjectConfig", "scope": "static", - "___id": "T000002R016563", + "___id": "T000002R016546", "___s": true }, { @@ -155229,7 +155275,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.GetCalcMatrixResults", "scope": "static", - "___id": "T000002R016564", + "___id": "T000002R016547", "___s": true }, { @@ -155246,7 +155292,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.GameObjects", "scope": "static", - "___id": "T000002R016565", + "___id": "T000002R016548", "___s": true }, { @@ -155545,7 +155591,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.JSONGameObject", "scope": "static", - "___id": "T000002R016566", + "___id": "T000002R016549", "___s": true }, { @@ -155691,7 +155737,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Vertex", "scope": "static", - "___id": "T000002R016567", + "___id": "T000002R016550", "___s": true }, { @@ -155728,7 +155774,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.UpdateList", - "___id": "T000002R016572", + "___id": "T000002R016555", "___s": true }, { @@ -155756,7 +155802,7 @@ "longname": "Phaser.GameObjects.UpdateList#scene", "scope": "instance", "kind": "member", - "___id": "T000002R016577", + "___id": "T000002R016560", "___s": true }, { @@ -155784,7 +155830,7 @@ "longname": "Phaser.GameObjects.UpdateList#systems", "scope": "instance", "kind": "member", - "___id": "T000002R016579", + "___id": "T000002R016562", "___s": true }, { @@ -155831,7 +155877,7 @@ "memberof": "Phaser.GameObjects.UpdateList", "longname": "Phaser.GameObjects.UpdateList#sceneUpdate", "scope": "instance", - "___id": "T000002R016590", + "___id": "T000002R016573", "___s": true }, { @@ -155850,7 +155896,7 @@ "memberof": "Phaser.GameObjects.UpdateList", "longname": "Phaser.GameObjects.UpdateList#shutdown", "scope": "instance", - "___id": "T000002R016596", + "___id": "T000002R016579", "___s": true }, { @@ -155869,7 +155915,7 @@ "memberof": "Phaser.GameObjects.UpdateList", "longname": "Phaser.GameObjects.UpdateList#destroy", "scope": "instance", - "___id": "T000002R016606", + "___id": "T000002R016589", "___s": true }, { @@ -155886,7 +155932,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Video", "scope": "static", - "___id": "T000002R016611", + "___id": "T000002R016594", "___s": true }, { @@ -155932,7 +155978,7 @@ "memberof": "Phaser.Types.GameObjects.Video", "longname": "Phaser.Types.GameObjects.Video.VideoConfig", "scope": "static", - "___id": "T000002R016612", + "___id": "T000002R016595", "___s": true }, { @@ -156024,7 +156070,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Video", - "___id": "T000002R016623", + "___id": "T000002R016606", "___s": true }, { @@ -156054,7 +156100,7 @@ "longname": "Phaser.GameObjects.Video#video", "scope": "instance", "kind": "member", - "___id": "T000002R016628", + "___id": "T000002R016611", "___s": true }, { @@ -156084,7 +156130,7 @@ "longname": "Phaser.GameObjects.Video#videoTexture", "scope": "instance", "kind": "member", - "___id": "T000002R016630", + "___id": "T000002R016613", "___s": true }, { @@ -156114,7 +156160,7 @@ "longname": "Phaser.GameObjects.Video#videoTextureSource", "scope": "instance", "kind": "member", - "___id": "T000002R016632", + "___id": "T000002R016615", "___s": true }, { @@ -156144,7 +156190,7 @@ "longname": "Phaser.GameObjects.Video#snapshotTexture", "scope": "instance", "kind": "member", - "___id": "T000002R016634", + "___id": "T000002R016617", "___s": true }, { @@ -156173,7 +156219,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.Flip#flipY", - "___id": "T000002R016636", + "___id": "T000002R016619", "___s": true }, { @@ -156202,7 +156248,7 @@ "longname": "Phaser.GameObjects.Video#touchLocked", "scope": "instance", "kind": "member", - "___id": "T000002R016640", + "___id": "T000002R016623", "___s": true }, { @@ -156230,7 +156276,7 @@ "longname": "Phaser.GameObjects.Video#playWhenUnlocked", "scope": "instance", "kind": "member", - "___id": "T000002R016642", + "___id": "T000002R016625", "___s": true }, { @@ -156258,7 +156304,7 @@ "longname": "Phaser.GameObjects.Video#frameReady", "scope": "instance", "kind": "member", - "___id": "T000002R016644", + "___id": "T000002R016627", "___s": true }, { @@ -156287,7 +156333,7 @@ "longname": "Phaser.GameObjects.Video#isStalled", "scope": "instance", "kind": "member", - "___id": "T000002R016646", + "___id": "T000002R016629", "___s": true }, { @@ -156315,7 +156361,7 @@ "longname": "Phaser.GameObjects.Video#failedPlayAttempts", "scope": "instance", "kind": "member", - "___id": "T000002R016648", + "___id": "T000002R016631", "___s": true }, { @@ -156343,7 +156389,7 @@ "longname": "Phaser.GameObjects.Video#metadata", "scope": "instance", "kind": "member", - "___id": "T000002R016650", + "___id": "T000002R016633", "___s": true }, { @@ -156371,7 +156417,7 @@ "longname": "Phaser.GameObjects.Video#retry", "scope": "instance", "kind": "member", - "___id": "T000002R016652", + "___id": "T000002R016635", "___s": true }, { @@ -156399,7 +156445,7 @@ "longname": "Phaser.GameObjects.Video#retryInterval", "scope": "instance", "kind": "member", - "___id": "T000002R016654", + "___id": "T000002R016637", "___s": true }, { @@ -156427,7 +156473,7 @@ "longname": "Phaser.GameObjects.Video#markers", "scope": "instance", "kind": "member", - "___id": "T000002R016680", + "___id": "T000002R016663", "___s": true }, { @@ -156456,7 +156502,7 @@ "longname": "Phaser.GameObjects.Video#cacheKey", "scope": "instance", "kind": "member", - "___id": "T000002R016690", + "___id": "T000002R016673", "___s": true }, { @@ -156485,14 +156531,14 @@ "longname": "Phaser.GameObjects.Video#isSeeking", "scope": "instance", "kind": "member", - "___id": "T000002R016692", + "___id": "T000002R016675", "___s": true }, { "comment": "/**\r\n * Loads a Video from the Video Cache, ready for playback with the `Video.play` method.\r\n *\r\n * If a video is already playing, this method allows you to change the source of the current video element.\r\n * It works by first stopping the current video and then starts playback of the new source through the existing video element.\r\n *\r\n * The reason you may wish to do this is because videos that require interaction to unlock, remain in an unlocked\r\n * state, even if you change the source of the video. By changing the source to a new video you avoid having to\r\n * go through the unlock process again.\r\n *\r\n * @method Phaser.GameObjects.Video#load\r\n * @since 3.60.0\r\n *\r\n * @param {string} key - The key of the Video this Game Object will play, as stored in the Video Cache.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 551, + "lineno": 561, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -156534,14 +156580,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#load", "scope": "instance", - "___id": "T000002R016704", + "___id": "T000002R016689", "___s": true }, { "comment": "/**\r\n * This method allows you to change the source of the current video element. It works by first stopping the\r\n * current video, if playing. Then deleting the video texture, if one has been created. Finally, it makes a\r\n * new video texture and starts playback of the new source through the existing video element.\r\n *\r\n * The reason you may wish to do this is because videos that require interaction to unlock, remain in an unlocked\r\n * state, even if you change the source of the video. By changing the source to a new video you avoid having to\r\n * go through the unlock process again.\r\n *\r\n * @method Phaser.GameObjects.Video#changeSource\r\n * @since 3.20.0\r\n *\r\n * @param {string} key - The key of the Video this Game Object will swap to playing, as stored in the Video Cache.\r\n * @param {boolean} [autoplay=true] - Should the video start playing immediately, once the swap is complete?\r\n * @param {boolean} [loop=false] - Should the video loop automatically when it reaches the end? Please note that not all browsers support _seamless_ video looping for all encoding formats.\r\n * @param {number} [markerIn] - Optional in marker time, in seconds, for playback of a sequence of the video.\r\n * @param {number} [markerOut] - Optional out marker time, in seconds, for playback of a sequence of the video.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 586, + "lineno": 596, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -156641,14 +156687,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#changeSource", "scope": "instance", - "___id": "T000002R016708", + "___id": "T000002R016693", "___s": true }, { "comment": "/**\r\n * Returns the key of the currently played video, as stored in the Video Cache.\r\n *\r\n * If the video did not come from the cache this will return an empty string.\r\n *\r\n * @method Phaser.GameObjects.Video#getVideoKey\r\n * @since 3.20.0\r\n *\r\n * @return {string} The key of the video being played from the Video Cache, if any.\r\n */", "meta": { "filename": "Video.js", - "lineno": 622, + "lineno": 632, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -156674,14 +156720,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#getVideoKey", "scope": "instance", - "___id": "T000002R016712", + "___id": "T000002R016697", "___s": true }, { "comment": "/**\r\n * Loads a Video from the given URL, ready for playback with the `Video.play` method.\r\n *\r\n * If a video is already playing, this method allows you to change the source of the current video element.\r\n * It works by first stopping the current video and then starts playback of the new source through the existing video element.\r\n *\r\n * The reason you may wish to do this is because videos that require interaction to unlock, remain in an unlocked\r\n * state, even if you change the source of the video. By changing the source to a new video you avoid having to\r\n * go through the unlock process again.\r\n *\r\n * @method Phaser.GameObjects.Video#loadURL\r\n * @since 3.60.0\r\n *\r\n * @param {(string|string[]|Phaser.Types.Loader.FileTypes.VideoFileURLConfig|Phaser.Types.Loader.FileTypes.VideoFileURLConfig[])} [urls] - The absolute or relative URL to load the video files from.\r\n * @param {boolean} [noAudio=false] - Does the video have an audio track? If not you can enable auto-playing on it.\r\n * @param {string} [crossOrigin] - The value to use for the `crossOrigin` property in the video load request. Either undefined, `anonymous` or `use-credentials`. If no value is given, `crossorigin` will not be set in the request.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 637, + "lineno": 647, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -156791,14 +156837,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#loadURL", "scope": "instance", - "___id": "T000002R016714", + "___id": "T000002R016699", "___s": true }, { "comment": "/**\r\n * Loads a Video from the given MediaStream object, ready for playback with the `Video.play` method.\r\n *\r\n * @method Phaser.GameObjects.Video#loadMediaStream\r\n * @since 3.50.0\r\n *\r\n * @param {string} stream - The MediaStream object.\r\n * @param {boolean} [noAudio=false] - Does the video have an audio track? If not you can enable auto-playing on it.\r\n * @param {string} [crossOrigin] - The value to use for the `crossOrigin` property in the video load request. Either undefined, `anonymous` or `use-credentials`. If no value is given, `crossorigin` will not be set in the request.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 676, + "lineno": 686, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -156869,14 +156915,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#loadMediaStream", "scope": "instance", - "___id": "T000002R016719", + "___id": "T000002R016704", "___s": true }, { "comment": "/**\r\n * Internal method that loads a Video from the given URL, ready for playback with the\r\n * `Video.play` method.\r\n *\r\n * Normally you don't call this method directly, but instead use the `Video.loadURL` method,\r\n * or the `Video.load` method if you have preloaded the video.\r\n *\r\n * Calling this method will skip checking if the browser supports the given format in\r\n * the URL, where-as the other two methods enforce these checks.\r\n *\r\n * @method Phaser.GameObjects.Video#loadHandler\r\n * @since 3.60.0\r\n *\r\n * @param {string} [url] - The absolute or relative URL to load the video file from. Set to `null` if passing in a MediaStream object.\r\n * @param {boolean} [noAudio] - Does the video have an audio track? If not you can enable auto-playing on it.\r\n * @param {string} [crossOrigin] - The value to use for the `crossOrigin` property in the video load request. Either undefined, `anonymous` or `use-credentials`. If no value is given, `crossorigin` will not be set in the request.\r\n * @param {string} [stream] - A MediaStream object if this is playing a stream instead of a file.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 693, + "lineno": 703, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -156961,14 +157007,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#loadHandler", "scope": "instance", - "___id": "T000002R016721", + "___id": "T000002R016706", "___s": true }, { "comment": "/**\r\n * This method handles the Request Video Frame callback.\r\n *\r\n * It is called by the browser when a new video frame is ready to be displayed.\r\n *\r\n * It's also responsible for the creation of the video texture, if it doesn't\r\n * already exist. If it does, it updates the texture as required.\r\n *\r\n * For more details about the Request Video Frame callback, see:\r\n * https://web.dev/requestvideoframecallback-rvfc\r\n *\r\n * @method Phaser.GameObjects.Video#requestVideoFrame\r\n * @fires Phaser.GameObjects.Events#VIDEO_CREATED\r\n * @fires Phaser.GameObjects.Events#VIDEO_LOOP\r\n * @fires Phaser.GameObjects.Events#VIDEO_COMPLETE\r\n * @fires Phaser.GameObjects.Events#VIDEO_PLAY\r\n * @fires Phaser.GameObjects.Events#VIDEO_TEXTURE\r\n * @since 3.60.0\r\n *\r\n * @param {DOMHighResTimeStamp} now - The current time in milliseconds.\r\n * @param {VideoFrameCallbackMetadata} metadata - Useful metadata about the video frame that was most recently presented for composition. See https://wicg.github.io/video-rvfc/#video-frame-metadata-callback\r\n */", "meta": { "filename": "Video.js", - "lineno": 806, + "lineno": 816, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157015,14 +157061,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#requestVideoFrame", "scope": "instance", - "___id": "T000002R016739", + "___id": "T000002R016724", "___s": true }, { "comment": "/**\r\n * Starts this video playing.\r\n *\r\n * If the video is already playing, or has been queued to play with `changeSource` then this method just returns.\r\n *\r\n * Videos can only autoplay if the browser has been unlocked. This happens if you have interacted with the browser, i.e.\r\n * by clicking on it or pressing a key, or due to server settings. The policies that control autoplaying are vast and\r\n * vary between browser. You can read more here: https://developer.mozilla.org/en-US/docs/Web/Media/Autoplay_guide\r\n *\r\n * If your video doesn't contain any audio, then set the `noAudio` parameter to `true` when the video is loaded,\r\n * and it will often allow the video to play immediately:\r\n *\r\n * ```javascript\r\n * preload () {\r\n * this.load.video('pixar', 'nemo.mp4', true);\r\n * }\r\n * ```\r\n *\r\n * The 3rd parameter in the load call tells Phaser that the video doesn't contain any audio tracks. Video without\r\n * audio can autoplay without requiring a user interaction. Video with audio cannot do this unless it satisfies\r\n * the browsers MEI settings. See the MDN Autoplay Guide for details.\r\n *\r\n * If you need audio in your videos, then you'll have to consider the fact that the video cannot start playing until the\r\n * user has interacted with the browser, into your game flow.\r\n *\r\n * @method Phaser.GameObjects.Video#play\r\n * @since 3.20.0\r\n *\r\n * @param {boolean} [loop=false] - Should the video loop automatically when it reaches the end? Please note that not all browsers support _seamless_ video looping for all encoding formats.\r\n * @param {number} [markerIn] - Optional in marker time, in seconds, for playback of a sequence of the video.\r\n * @param {number} [markerOut] - Optional out marker time, in seconds, for playback of a sequence of the video.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 932, + "lineno": 953, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157094,14 +157140,48 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#play", "scope": "instance", - "___id": "T000002R016763", + "___id": "T000002R016749", + "___s": true + }, + { + "comment": "/**\r\n * Attempts to get the first frame of the video by running the `requestVideoFrame` callback once,\r\n * then stopping. This is useful if you need to grab the first frame of the video to display behind\r\n * a 'play' button, without actually calling the 'play' method.\r\n *\r\n * If the video is already playing, or has been queued to play with `changeSource` then this method just returns.\r\n *\r\n * @method Phaser.GameObjects.Video#getFirstFrame\r\n * @since 3.85.0\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", + "meta": { + "filename": "Video.js", + "lineno": 1030, + "columnno": 4, + "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", + "code": {} + }, + "description": "Attempts to get the first frame of the video by running the `requestVideoFrame` callback once,\rthen stopping. This is useful if you need to grab the first frame of the video to display behind\ra 'play' button, without actually calling the 'play' method.\r\rIf the video is already playing, or has been queued to play with `changeSource` then this method just returns.", + "kind": "function", + "name": "getFirstFrame", + "since": "3.85.0", + "returns": [ + { + "type": { + "names": [ + "this" + ], + "parsedType": { + "type": "NameExpression", + "name": "this", + "reservedWord": true + } + }, + "description": "This Video Game Object for method chaining." + } + ], + "memberof": "Phaser.GameObjects.Video", + "longname": "Phaser.GameObjects.Video#getFirstFrame", + "scope": "instance", + "___id": "T000002R016762", "___s": true }, { "comment": "/**\r\n * Adds the loading specific event handlers to the video element.\r\n *\r\n * @method Phaser.GameObjects.Video#addLoadEventHandlers\r\n * @since 3.60.0\r\n */", "meta": { "filename": "Video.js", - "lineno": 1007, + "lineno": 1068, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157113,14 +157193,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#addLoadEventHandlers", "scope": "instance", - "___id": "T000002R016775", + "___id": "T000002R016767", "___s": true }, { "comment": "/**\r\n * Removes the loading specific event handlers from the video element.\r\n *\r\n * @method Phaser.GameObjects.Video#removeLoadEventHandlers\r\n * @since 3.60.0\r\n */", "meta": { "filename": "Video.js", - "lineno": 1025, + "lineno": 1086, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157132,14 +157212,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#removeLoadEventHandlers", "scope": "instance", - "___id": "T000002R016778", + "___id": "T000002R016770", "___s": true }, { "comment": "/**\r\n * Adds the playback specific event handlers to the video element.\r\n *\r\n * @method Phaser.GameObjects.Video#addEventHandlers\r\n * @since 3.60.0\r\n */", "meta": { "filename": "Video.js", - "lineno": 1042, + "lineno": 1103, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157151,14 +157231,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#addEventHandlers", "scope": "instance", - "___id": "T000002R016781", + "___id": "T000002R016773", "___s": true }, { "comment": "/**\r\n * Removes the playback specific event handlers from the video element.\r\n *\r\n * @method Phaser.GameObjects.Video#removeEventHandlers\r\n * @since 3.60.0\r\n */", "meta": { "filename": "Video.js", - "lineno": 1066, + "lineno": 1127, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157170,14 +157250,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#removeEventHandlers", "scope": "instance", - "___id": "T000002R016786", + "___id": "T000002R016778", "___s": true }, { "comment": "/**\r\n * Creates the video.play promise and adds the success and error handlers to it.\r\n *\r\n * Not all browsers support the video.play promise, so this method will fall back to\r\n * the old-school way of handling the video.play call.\r\n *\r\n * See https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/play#browser_compatibility for details.\r\n *\r\n * @method Phaser.GameObjects.Video#createPlayPromise\r\n * @since 3.60.0\r\n *\r\n * @param {boolean} [catchError=true] - Should the error be caught and the video marked as failed to play?\r\n */", "meta": { "filename": "Video.js", - "lineno": 1087, + "lineno": 1148, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157206,14 +157286,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#createPlayPromise", "scope": "instance", - "___id": "T000002R016791", + "___id": "T000002R016783", "___s": true }, { "comment": "/**\r\n * Adds a sequence marker to this video.\r\n *\r\n * Markers allow you to split a video up into sequences, delineated by a start and end time, given in seconds.\r\n *\r\n * You can then play back specific markers via the `playMarker` method.\r\n *\r\n * Note that marker timing is _not_ frame-perfect. You should construct your videos in such a way that you allow for\r\n * plenty of extra padding before and after each sequence to allow for discrepancies in browser seek and currentTime accuracy.\r\n *\r\n * See https://github.com/w3c/media-and-entertainment/issues/4 for more details about this issue.\r\n *\r\n * @method Phaser.GameObjects.Video#addMarker\r\n * @since 3.20.0\r\n *\r\n * @param {string} key - A unique name to give this marker.\r\n * @param {number} markerIn - The time, in seconds, representing the start of this marker.\r\n * @param {number} markerOut - The time, in seconds, representing the end of this marker.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1137, + "lineno": 1198, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157281,14 +157361,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#addMarker", "scope": "instance", - "___id": "T000002R016800", + "___id": "T000002R016792", "___s": true }, { "comment": "/**\r\n * Plays a pre-defined sequence in this video.\r\n *\r\n * Markers allow you to split a video up into sequences, delineated by a start and end time, given in seconds and\r\n * specified via the `addMarker` method.\r\n *\r\n * Note that marker timing is _not_ frame-perfect. You should construct your videos in such a way that you allow for\r\n * plenty of extra padding before and after each sequence to allow for discrepancies in browser seek and currentTime accuracy.\r\n *\r\n * See https://github.com/w3c/media-and-entertainment/issues/4 for more details about this issue.\r\n *\r\n * @method Phaser.GameObjects.Video#playMarker\r\n * @since 3.20.0\r\n *\r\n * @param {string} key - The name of the marker sequence to play.\r\n * @param {boolean} [loop=false] - Should the video loop automatically when it reaches the end? Please note that not all browsers support _seamless_ video looping for all encoding formats.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1168, + "lineno": 1229, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157345,14 +157425,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#playMarker", "scope": "instance", - "___id": "T000002R016803", + "___id": "T000002R016795", "___s": true }, { "comment": "/**\r\n * Removes a previously set marker from this video.\r\n *\r\n * If the marker is currently playing it will _not_ stop playback.\r\n *\r\n * @method Phaser.GameObjects.Video#removeMarker\r\n * @since 3.20.0\r\n *\r\n * @param {string} key - The name of the marker to remove.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1199, + "lineno": 1260, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157394,14 +157474,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#removeMarker", "scope": "instance", - "___id": "T000002R016806", + "___id": "T000002R016798", "___s": true }, { "comment": "/**\r\n * Takes a snapshot of the current frame of the video and renders it to a CanvasTexture object,\r\n * which is then returned. You can optionally resize the grab by passing a width and height.\r\n *\r\n * This method returns a reference to the `Video.snapshotTexture` object. Calling this method\r\n * multiple times will overwrite the previous snapshot with the most recent one.\r\n *\r\n * @method Phaser.GameObjects.Video#snapshot\r\n * @since 3.20.0\r\n *\r\n * @param {number} [width] - The width of the resulting CanvasTexture.\r\n * @param {number} [height] - The height of the resulting CanvasTexture.\r\n *\r\n * @return {Phaser.Textures.CanvasTexture}\r\n */", "meta": { "filename": "Video.js", - "lineno": 1218, + "lineno": 1279, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157456,14 +157536,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#snapshot", "scope": "instance", - "___id": "T000002R016808", + "___id": "T000002R016800", "___s": true }, { "comment": "/**\r\n * Takes a snapshot of the specified area of the current frame of the video and renders it to a CanvasTexture object,\r\n * which is then returned. You can optionally resize the grab by passing a different `destWidth` and `destHeight`.\r\n *\r\n * This method returns a reference to the `Video.snapshotTexture` object. Calling this method\r\n * multiple times will overwrite the previous snapshot with the most recent one.\r\n *\r\n * @method Phaser.GameObjects.Video#snapshotArea\r\n * @since 3.20.0\r\n *\r\n * @param {number} [x=0] - The horizontal location of the top-left of the area to grab from.\r\n * @param {number} [y=0] - The vertical location of the top-left of the area to grab from.\r\n * @param {number} [srcWidth] - The width of area to grab from the video. If not given it will grab the full video dimensions.\r\n * @param {number} [srcHeight] - The height of area to grab from the video. If not given it will grab the full video dimensions.\r\n * @param {number} [destWidth] - The destination width of the grab, allowing you to resize it.\r\n * @param {number} [destHeight] - The destination height of the grab, allowing you to resize it.\r\n *\r\n * @return {Phaser.Textures.CanvasTexture}\r\n */", "meta": { "filename": "Video.js", - "lineno": 1241, + "lineno": 1302, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157576,14 +157656,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#snapshotArea", "scope": "instance", - "___id": "T000002R016812", + "___id": "T000002R016804", "___s": true }, { "comment": "/**\r\n * Stores a copy of this Videos `snapshotTexture` in the Texture Manager using the given key.\r\n *\r\n * This texture is created when the `snapshot` or `snapshotArea` methods are called.\r\n *\r\n * After doing this, any texture based Game Object, such as a Sprite, can use the contents of the\r\n * snapshot by using the texture key:\r\n *\r\n * ```javascript\r\n * var vid = this.add.video(0, 0, 'intro');\r\n *\r\n * vid.snapshot();\r\n *\r\n * vid.saveSnapshotTexture('doodle');\r\n *\r\n * this.add.image(400, 300, 'doodle');\r\n * ```\r\n *\r\n * Updating the contents of the `snapshotTexture`, for example by calling `snapshot` again,\r\n * will automatically update _any_ Game Object that is using it as a texture.\r\n * Calling `saveSnapshotTexture` again will not save another copy of the same texture,\r\n * it will just rename the existing one.\r\n *\r\n * By default it will create a single base texture. You can add frames to the texture\r\n * by using the `Texture.add` method. After doing this, you can then allow Game Objects\r\n * to use a specific frame.\r\n *\r\n * @method Phaser.GameObjects.Video#saveSnapshotTexture\r\n * @since 3.20.0\r\n *\r\n * @param {string} key - The unique key to store the texture as within the global Texture Manager.\r\n *\r\n * @return {Phaser.Textures.CanvasTexture} The Texture that was saved.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1296, + "lineno": 1357, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157624,14 +157704,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#saveSnapshotTexture", "scope": "instance", - "___id": "T000002R016824", + "___id": "T000002R016816", "___s": true }, { "comment": "/**\r\n * This internal method is called automatically if the playback Promise resolves successfully.\r\n *\r\n * @method Phaser.GameObjects.Video#playSuccess\r\n * @fires Phaser.GameObjects.Events#VIDEO_UNLOCKED\r\n * @since 3.60.0\r\n */", "meta": { "filename": "Video.js", - "lineno": 1344, + "lineno": 1405, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157646,14 +157726,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#playSuccess", "scope": "instance", - "___id": "T000002R016827", + "___id": "T000002R016819", "___s": true }, { "comment": "/**\r\n * This internal method is called automatically if the playback Promise fails to resolve.\r\n *\r\n * @method Phaser.GameObjects.Video#playError\r\n * @fires Phaser.GameObjects.Events#VIDEO_ERROR\r\n * @fires Phaser.GameObjects.Events#VIDEO_UNSUPPORTED\r\n * @fires Phaser.GameObjects.Events#VIDEO_LOCKED\r\n * @since 3.60.0\r\n *\r\n * @param {DOMException} error - The Promise DOM Exception error.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1385, + "lineno": 1446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157685,14 +157765,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#playError", "scope": "instance", - "___id": "T000002R016833", + "___id": "T000002R016825", "___s": true }, { "comment": "/**\r\n * Called when the video emits a `playing` event.\r\n *\r\n * This is the legacy handler for browsers that don't support Promise based playback.\r\n *\r\n * @method Phaser.GameObjects.Video#legacyPlayHandler\r\n * @since 3.60.0\r\n */", "meta": { "filename": "Video.js", - "lineno": 1422, + "lineno": 1483, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157704,14 +157784,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#legacyPlayHandler", "scope": "instance", - "___id": "T000002R016839", + "___id": "T000002R016831", "___s": true }, { "comment": "/**\r\n * Called when the video emits a `playing` event.\r\n *\r\n * @method Phaser.GameObjects.Video#playingHandler\r\n * @fires Phaser.GameObjects.Events#VIDEO_PLAYING\r\n * @since 3.60.0\r\n */", "meta": { "filename": "Video.js", - "lineno": 1442, + "lineno": 1503, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157726,14 +157806,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#playingHandler", "scope": "instance", - "___id": "T000002R016842", + "___id": "T000002R016834", "___s": true }, { "comment": "/**\r\n * This internal method is called automatically if the video fails to load.\r\n *\r\n * @method Phaser.GameObjects.Video#loadErrorHandler\r\n * @fires Phaser.GameObjects.Events#VIDEO_ERROR\r\n * @since 3.20.0\r\n *\r\n * @param {Event} event - The error Event.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1456, + "lineno": 1517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157763,14 +157843,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#loadErrorHandler", "scope": "instance", - "___id": "T000002R016845", + "___id": "T000002R016837", "___s": true }, { "comment": "/**\r\n * This internal method is called automatically when the video metadata is available.\r\n *\r\n * @method Phaser.GameObjects.Video#metadataHandler\r\n * @fires Phaser.GameObjects.Events#VIDEO_METADATA\r\n * @since 3.80.0\r\n *\r\n * @param {Event} event - The loadedmetadata Event.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1472, + "lineno": 1533, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157800,14 +157880,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#metadataHandler", "scope": "instance", - "___id": "T000002R016847", + "___id": "T000002R016839", "___s": true }, { "comment": "/**\r\n * Sets the size of this Game Object to be that of the given Frame.\r\n *\r\n * This will not change the size that the Game Object is rendered in-game.\r\n * For that you need to either set the scale of the Game Object (`setScale`) or call the\r\n * `setDisplaySize` method, which is the same thing as changing the scale but allows you\r\n * to do so by giving pixel values.\r\n *\r\n * If you have enabled this Game Object for input, changing the size will _not_ change the\r\n * size of the hit area. To do this you should adjust the `input.hitArea` object directly.\r\n *\r\n * @method Phaser.GameObjects.Video#setSizeToFrame\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Textures.Frame|boolean} [frame] - The frame to base the size of this Game Object on.\r\n *\r\n * @return {this} This Game Object instance.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1486, + "lineno": 1547, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157860,14 +157940,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#setSizeToFrame", "scope": "instance", - "___id": "T000002R016849", + "___id": "T000002R016841", "___s": true }, { "comment": "/**\r\n * This internal method is called automatically if the video stalls, for whatever reason.\r\n *\r\n * @method Phaser.GameObjects.Video#stalledHandler\r\n * @fires Phaser.GameObjects.Events#VIDEO_STALLED\r\n * @since 3.60.0\r\n *\r\n * @param {Event} event - The error Event.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1532, + "lineno": 1593, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157897,14 +157977,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#stalledHandler", "scope": "instance", - "___id": "T000002R016859", + "___id": "T000002R016851", "___s": true }, { "comment": "/**\r\n * Called when the video completes playback, i.e. reaches an `ended` state.\r\n *\r\n * This will never happen if the video is coming from a live stream, where the duration is `Infinity`.\r\n *\r\n * @method Phaser.GameObjects.Video#completeHandler\r\n * @fires Phaser.GameObjects.Events#VIDEO_COMPLETE\r\n * @since 3.20.0\r\n */", "meta": { "filename": "Video.js", - "lineno": 1548, + "lineno": 1609, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157919,14 +157999,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#completeHandler", "scope": "instance", - "___id": "T000002R016862", + "___id": "T000002R016854", "___s": true }, { "comment": "/**\r\n * Seeks to a given point in the video. The value is given as a float between 0 and 1,\r\n * where 0 represents the start of the video and 1 represents the end.\r\n *\r\n * Seeking only works if the video has a duration, so will not work for live streams.\r\n *\r\n * When seeking begins, this video will emit a `seeking` event. When the video completes\r\n * seeking (i.e. reaches its designated timestamp) it will emit a `seeked` event.\r\n *\r\n * If you wish to seek based on time instead, use the `Video.setCurrentTime` method.\r\n *\r\n * Unfortunately, the DOM video element does not guarantee frame-accurate seeking.\r\n * This has been an ongoing subject of discussion: https://github.com/w3c/media-and-entertainment/issues/4\r\n *\r\n * @method Phaser.GameObjects.Video#seekTo\r\n * @since 3.20.0\r\n *\r\n * @param {number} value - The point in the video to seek to. A value between 0 and 1.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1596, + "lineno": 1657, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -157968,14 +158048,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#seekTo", "scope": "instance", - "___id": "T000002R016870", + "___id": "T000002R016862", "___s": true }, { "comment": "/**\r\n * A double-precision floating-point value indicating the current playback time in seconds.\r\n *\r\n * If the media has not started to play and has not been seeked, this value is the media's initial playback time.\r\n *\r\n * For a more accurate value, use the `Video.metadata.mediaTime` property instead.\r\n *\r\n * @method Phaser.GameObjects.Video#getCurrentTime\r\n * @since 3.20.0\r\n *\r\n * @return {number} A double-precision floating-point value indicating the current playback time in seconds.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1636, + "lineno": 1697, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158001,14 +158081,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#getCurrentTime", "scope": "instance", - "___id": "T000002R016875", + "___id": "T000002R016867", "___s": true }, { "comment": "/**\r\n * Seeks to a given playback time in the video. The value is given in _seconds_ or as a string.\r\n *\r\n * Seeking only works if the video has a duration, so will not work for live streams.\r\n *\r\n * When seeking begins, this video will emit a `seeking` event. When the video completes\r\n * seeking (i.e. reaches its designated timestamp) it will emit a `seeked` event.\r\n *\r\n * You can provide a string prefixed with either a `+` or a `-`, such as `+2.5` or `-2.5`.\r\n * In this case it will seek to +/- the value given, relative to the _current time_.\r\n *\r\n * If you wish to seek based on a duration percentage instead, use the `Video.seekTo` method.\r\n *\r\n * @method Phaser.GameObjects.Video#setCurrentTime\r\n * @since 3.20.0\r\n *\r\n * @param {(string|number)} value - The playback time to seek to in seconds. Can be expressed as a string, such as `+2` to seek 2 seconds ahead from the current time.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1653, + "lineno": 1714, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158060,14 +158140,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#setCurrentTime", "scope": "instance", - "___id": "T000002R016877", + "___id": "T000002R016869", "___s": true }, { "comment": "/**\r\n * Returns the current progress of the video as a float.\r\n *\r\n * Progress is defined as a value between 0 (the start) and 1 (the end).\r\n *\r\n * Progress can only be returned if the video has a duration. Some videos,\r\n * such as those coming from a live stream, do not have a duration. In this\r\n * case the method will return -1.\r\n *\r\n * @method Phaser.GameObjects.Video#getProgress\r\n * @since 3.20.0\r\n *\r\n * @return {number} The current progress of playback. If the video has no duration, will always return -1.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1730, + "lineno": 1791, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158093,14 +158173,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#getProgress", "scope": "instance", - "___id": "T000002R016891", + "___id": "T000002R016883", "___s": true }, { "comment": "/**\r\n * A double-precision floating-point value which indicates the duration (total length) of the media in seconds,\r\n * on the media's timeline. If no media is present on the element, or the media is not valid, the returned value is NaN.\r\n *\r\n * If the media has no known end (such as for live streams of unknown duration, web radio, media incoming from WebRTC,\r\n * and so forth), this value is +Infinity.\r\n *\r\n * If no video has been loaded, this method will return 0.\r\n *\r\n * @method Phaser.GameObjects.Video#getDuration\r\n * @since 3.20.0\r\n *\r\n * @return {number} A double-precision floating-point value indicating the duration of the media in seconds.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1761, + "lineno": 1822, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158126,14 +158206,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#getDuration", "scope": "instance", - "___id": "T000002R016895", + "___id": "T000002R016887", "___s": true }, { "comment": "/**\r\n * Sets the muted state of the currently playing video, if one is loaded.\r\n *\r\n * @method Phaser.GameObjects.Video#setMute\r\n * @since 3.20.0\r\n *\r\n * @param {boolean} [value=true] - The mute value. `true` if the video should be muted, otherwise `false`.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1780, + "lineno": 1841, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158177,14 +158257,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#setMute", "scope": "instance", - "___id": "T000002R016897", + "___id": "T000002R016889", "___s": true }, { "comment": "/**\r\n * Returns a boolean indicating if this Video is currently muted.\r\n *\r\n * @method Phaser.GameObjects.Video#isMuted\r\n * @since 3.20.0\r\n *\r\n * @return {boolean} A boolean indicating if this Video is currently muted, or not.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1806, + "lineno": 1867, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158210,14 +158290,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#isMuted", "scope": "instance", - "___id": "T000002R016903", + "___id": "T000002R016895", "___s": true }, { "comment": "/**\r\n * Sets the paused state of the currently loaded video.\r\n *\r\n * If the video is playing, calling this method with `true` will pause playback.\r\n * If the video is paused, calling this method with `false` will resume playback.\r\n *\r\n * If no video is loaded, this method does nothing.\r\n *\r\n * If the video has not yet been played, `Video.play` will be called with no parameters.\r\n *\r\n * If the video has ended, this method will do nothing.\r\n *\r\n * @method Phaser.GameObjects.Video#setPaused\r\n * @since 3.20.0\r\n *\r\n * @param {boolean} [value=true] - The paused value. `true` if the video should be paused, `false` to resume it.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1877, + "lineno": 1938, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158261,14 +158341,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#setPaused", "scope": "instance", - "___id": "T000002R016916", + "___id": "T000002R016908", "___s": true }, { "comment": "/**\r\n * Pauses the current Video, if one is playing.\r\n *\r\n * If no video is loaded, this method does nothing.\r\n *\r\n * Call `Video.resume` to resume playback.\r\n *\r\n * @method Phaser.GameObjects.Video#pause\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1931, + "lineno": 1992, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158295,14 +158375,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#pause", "scope": "instance", - "___id": "T000002R016921", + "___id": "T000002R016913", "___s": true }, { "comment": "/**\r\n * Resumes the current Video, if one was previously playing and has been paused.\r\n *\r\n * If no video is loaded, this method does nothing.\r\n *\r\n * Call `Video.pause` to pause playback.\r\n *\r\n * @method Phaser.GameObjects.Video#resume\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1948, + "lineno": 2009, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158329,14 +158409,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#resume", "scope": "instance", - "___id": "T000002R016923", + "___id": "T000002R016915", "___s": true }, { "comment": "/**\r\n * Returns a double indicating the audio volume, from 0.0 (silent) to 1.0 (loudest).\r\n *\r\n * @method Phaser.GameObjects.Video#getVolume\r\n * @since 3.20.0\r\n *\r\n * @return {number} A double indicating the audio volume, from 0.0 (silent) to 1.0 (loudest).\r\n */", "meta": { "filename": "Video.js", - "lineno": 1965, + "lineno": 2026, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158362,14 +158442,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#getVolume", "scope": "instance", - "___id": "T000002R016925", + "___id": "T000002R016917", "___s": true }, { "comment": "/**\r\n * Sets the volume of the currently playing video.\r\n *\r\n * The value given is a double indicating the audio volume, from 0.0 (silent) to 1.0 (loudest).\r\n *\r\n * @method Phaser.GameObjects.Video#setVolume\r\n * @since 3.20.0\r\n *\r\n * @param {number} [value=1] - A double indicating the audio volume, from 0.0 (silent) to 1.0 (loudest).\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 1978, + "lineno": 2039, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158413,14 +158493,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#setVolume", "scope": "instance", - "___id": "T000002R016927", + "___id": "T000002R016919", "___s": true }, { "comment": "/**\r\n * Returns a double that indicates the rate at which the media is being played back.\r\n *\r\n * @method Phaser.GameObjects.Video#getPlaybackRate\r\n * @since 3.20.0\r\n *\r\n * @return {number} A double that indicates the rate at which the media is being played back.\r\n */", "meta": { "filename": "Video.js", - "lineno": 2002, + "lineno": 2063, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158446,14 +158526,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#getPlaybackRate", "scope": "instance", - "___id": "T000002R016931", + "___id": "T000002R016923", "___s": true }, { "comment": "/**\r\n * Sets the playback rate of the current video.\r\n *\r\n * The value given is a double that indicates the rate at which the media is being played back.\r\n *\r\n * @method Phaser.GameObjects.Video#setPlaybackRate\r\n * @since 3.20.0\r\n *\r\n * @param {number} [rate] - A double that indicates the rate at which the media is being played back.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 2015, + "lineno": 2076, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158496,14 +158576,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#setPlaybackRate", "scope": "instance", - "___id": "T000002R016933", + "___id": "T000002R016925", "___s": true }, { "comment": "/**\r\n * Returns a boolean which indicates whether the media element should start over when it reaches the end.\r\n *\r\n * @method Phaser.GameObjects.Video#getLoop\r\n * @since 3.20.0\r\n *\r\n * @return {boolean} A boolean which indicates whether the media element will start over when it reaches the end.\r\n */", "meta": { "filename": "Video.js", - "lineno": 2037, + "lineno": 2098, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158529,14 +158609,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#getLoop", "scope": "instance", - "___id": "T000002R016936", + "___id": "T000002R016928", "___s": true }, { "comment": "/**\r\n * Sets the loop state of the current video.\r\n *\r\n * The value given is a boolean which indicates whether the media element will start over when it reaches the end.\r\n *\r\n * Not all videos can loop, for example live streams.\r\n *\r\n * Please note that not all browsers support _seamless_ video looping for all encoding formats.\r\n *\r\n * @method Phaser.GameObjects.Video#setLoop\r\n * @since 3.20.0\r\n *\r\n * @param {boolean} [value=true] - A boolean which indicates whether the media element will start over when it reaches the end.\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 2050, + "lineno": 2111, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158580,14 +158660,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#setLoop", "scope": "instance", - "___id": "T000002R016938", + "___id": "T000002R016930", "___s": true }, { "comment": "/**\r\n * Returns a boolean which indicates whether the video is currently playing.\r\n *\r\n * @method Phaser.GameObjects.Video#isPlaying\r\n * @since 3.20.0\r\n *\r\n * @return {boolean} A boolean which indicates whether the video is playing, or not.\r\n */", "meta": { "filename": "Video.js", - "lineno": 2078, + "lineno": 2139, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158613,14 +158693,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#isPlaying", "scope": "instance", - "___id": "T000002R016942", + "___id": "T000002R016934", "___s": true }, { "comment": "/**\r\n * Returns a boolean which indicates whether the video is currently paused.\r\n *\r\n * @method Phaser.GameObjects.Video#isPaused\r\n * @since 3.20.0\r\n *\r\n * @return {boolean} A boolean which indicates whether the video is paused, or not.\r\n */", "meta": { "filename": "Video.js", - "lineno": 2091, + "lineno": 2152, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158646,14 +158726,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#isPaused", "scope": "instance", - "___id": "T000002R016944", + "___id": "T000002R016936", "___s": true }, { "comment": "/**\r\n * Stores this Video in the Texture Manager using the given key as a dynamic texture,\r\n * which any texture-based Game Object, such as a Sprite, can use as its source:\r\n *\r\n * ```javascript\r\n * const vid = this.add.video(0, 0, 'intro');\r\n *\r\n * vid.play();\r\n *\r\n * vid.saveTexture('doodle');\r\n *\r\n * this.add.image(400, 300, 'doodle');\r\n * ```\r\n *\r\n * If the video is not yet playing then you need to listen for the `TEXTURE_READY` event before\r\n * you can use this texture on a Game Object:\r\n *\r\n * ```javascript\r\n * const vid = this.add.video(0, 0, 'intro');\r\n *\r\n * vid.play();\r\n *\r\n * vid.once('textureready', (video, texture, key) => {\r\n *\r\n * this.add.image(400, 300, key);\r\n *\r\n * });\r\n *\r\n * vid.saveTexture('doodle');\r\n * ```\r\n *\r\n * The saved texture is automatically updated as the video plays. If you pause this video,\r\n * or change its source, then the saved texture updates instantly.\r\n *\r\n * Calling `saveTexture` again will not save another copy of the same texture, it will just rename the existing one.\r\n *\r\n * By default it will create a single base texture. You can add frames to the texture\r\n * by using the `Texture.add` method. After doing this, you can then allow Game Objects\r\n * to use a specific frame.\r\n *\r\n * If you intend to save the texture so you can use it as the input for a Shader, you may need to set the\r\n * `flipY` parameter to `true` if you find the video renders upside down in your shader.\r\n *\r\n * @method Phaser.GameObjects.Video#saveTexture\r\n * @since 3.20.0\r\n *\r\n * @param {string} key - The unique key to store the texture as within the global Texture Manager.\r\n * @param {boolean} [flipY=false] - Should the WebGL Texture set `UNPACK_MULTIPLY_FLIP_Y` during upload?\r\n *\r\n * @return {boolean} Returns `true` if the texture is available immediately, otherwise returns `false` and you should listen for the `TEXTURE_READY` event.\r\n */", "meta": { "filename": "Video.js", - "lineno": 2104, + "lineno": 2165, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158709,14 +158789,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#saveTexture", "scope": "instance", - "___id": "T000002R016946", + "___id": "T000002R016938", "___s": true }, { "comment": "/**\r\n * Stops the video playing and clears all internal event listeners.\r\n *\r\n * If you only wish to pause playback of the video, and resume it a later time, use the `Video.pause` method instead.\r\n *\r\n * If the video hasn't finished downloading, calling this method will not abort the download. To do that you need to\r\n * call `destroy` instead.\r\n *\r\n * @method Phaser.GameObjects.Video#stop\r\n * @fires Phaser.GameObjects.Events#VIDEO_STOP\r\n * @since 3.20.0\r\n *\r\n * @param {boolean} [emitStopEvent=true] - Should the `VIDEO_STOP` event be emitted?\r\n *\r\n * @return {this} This Video Game Object for method chaining.\r\n */", "meta": { "filename": "Video.js", - "lineno": 2171, + "lineno": 2232, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158763,14 +158843,14 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#stop", "scope": "instance", - "___id": "T000002R016951", + "___id": "T000002R016943", "___s": true }, { "comment": "/**\r\n * Removes the Video element from the DOM by calling parentNode.removeChild on itself.\r\n *\r\n * Also removes the autoplay and src attributes and nulls the `Video.video` reference.\r\n *\r\n * If you loaded an external video via `Video.loadURL` then you should call this function\r\n * to clear up once you are done with the instance, but don't want to destroy this\r\n * Video Game Object.\r\n *\r\n * This method is called automatically by `Video.destroy`.\r\n *\r\n * @method Phaser.GameObjects.Video#removeVideoElement\r\n * @since 3.20.0\r\n */", "meta": { "filename": "Video.js", - "lineno": 2213, + "lineno": 2274, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects\\video", "code": {} @@ -158782,7 +158862,7 @@ "memberof": "Phaser.GameObjects.Video", "longname": "Phaser.GameObjects.Video#removeVideoElement", "scope": "instance", - "___id": "T000002R016957", + "___id": "T000002R016949", "___s": true }, { @@ -158844,7 +158924,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#video", "scope": "instance", - "___id": "T000002R016973", + "___id": "T000002R016965", "___s": true }, { @@ -158919,7 +158999,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#video", "scope": "instance", - "___id": "T000002R016980", + "___id": "T000002R016972", "___s": true }, { @@ -158936,7 +159016,7 @@ "memberof": "Phaser.Types.GameObjects", "longname": "Phaser.Types.GameObjects.Zone", "scope": "static", - "___id": "T000002R016992", + "___id": "T000002R016984", "___s": true }, { @@ -158998,7 +159078,7 @@ "memberof": "Phaser.Types.GameObjects.Zone", "longname": "Phaser.Types.GameObjects.Zone.ZoneConfig", "scope": "static", - "___id": "T000002R016993", + "___id": "T000002R016985", "___s": true }, { @@ -159097,7 +159177,7 @@ ], "scope": "static", "longname": "Phaser.GameObjects.Zone", - "___id": "T000002R017002", + "___id": "T000002R016994", "___s": true }, { @@ -159125,7 +159205,7 @@ "longname": "Phaser.GameObjects.Zone#width", "scope": "instance", "kind": "member", - "___id": "T000002R017009", + "___id": "T000002R017001", "___s": true }, { @@ -159153,7 +159233,7 @@ "longname": "Phaser.GameObjects.Zone#height", "scope": "instance", "kind": "member", - "___id": "T000002R017011", + "___id": "T000002R017003", "___s": true }, { @@ -159181,7 +159261,7 @@ "longname": "Phaser.GameObjects.Zone#blendMode", "scope": "instance", "kind": "member", - "___id": "T000002R017013", + "___id": "T000002R017005", "___s": true }, { @@ -159209,7 +159289,7 @@ "longname": "Phaser.GameObjects.Zone#displayWidth", "scope": "instance", "kind": "member", - "___id": "T000002R017015", + "___id": "T000002R017007", "___s": true }, { @@ -159237,7 +159317,7 @@ "longname": "Phaser.GameObjects.Zone#displayHeight", "scope": "instance", "kind": "member", - "___id": "T000002R017020", + "___id": "T000002R017012", "___s": true }, { @@ -159314,7 +159394,7 @@ "memberof": "Phaser.GameObjects.Zone", "longname": "Phaser.GameObjects.Zone#setSize", "scope": "instance", - "___id": "T000002R017025", + "___id": "T000002R017017", "___s": true }, { @@ -159376,7 +159456,7 @@ "memberof": "Phaser.GameObjects.Zone", "longname": "Phaser.GameObjects.Zone#setDisplaySize", "scope": "instance", - "___id": "T000002R017033", + "___id": "T000002R017025", "___s": true }, { @@ -159425,7 +159505,7 @@ "memberof": "Phaser.GameObjects.Zone", "longname": "Phaser.GameObjects.Zone#setCircleDropZone", "scope": "instance", - "___id": "T000002R017037", + "___id": "T000002R017029", "___s": true }, { @@ -159487,7 +159567,7 @@ "memberof": "Phaser.GameObjects.Zone", "longname": "Phaser.GameObjects.Zone#setRectangleDropZone", "scope": "instance", - "___id": "T000002R017039", + "___id": "T000002R017031", "___s": true }, { @@ -159551,7 +159631,7 @@ "memberof": "Phaser.GameObjects.Zone", "longname": "Phaser.GameObjects.Zone#setDropZone", "scope": "instance", - "___id": "T000002R017041", + "___id": "T000002R017033", "___s": true }, { @@ -159599,7 +159679,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#zone", "scope": "instance", - "___id": "T000002R017055", + "___id": "T000002R017047", "___s": true }, { @@ -159686,7 +159766,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#zone", "scope": "instance", - "___id": "T000002R017062", + "___id": "T000002R017054", "___s": true }, { @@ -159734,7 +159814,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.Area", "scope": "static", - "___id": "T000002R017063", + "___id": "T000002R017055", "___s": true }, { @@ -159800,7 +159880,7 @@ ], "scope": "static", "longname": "Phaser.Geom.Circle", - "___id": "T000002R017072", + "___id": "T000002R017064", "___s": true }, { @@ -159829,7 +159909,7 @@ "longname": "Phaser.Geom.Circle#type", "scope": "instance", "kind": "member", - "___id": "T000002R017078", + "___id": "T000002R017070", "___s": true }, { @@ -159858,7 +159938,7 @@ "longname": "Phaser.Geom.Circle#x", "scope": "instance", "kind": "member", - "___id": "T000002R017080", + "___id": "T000002R017072", "___s": true }, { @@ -159887,7 +159967,7 @@ "longname": "Phaser.Geom.Circle#y", "scope": "instance", "kind": "member", - "___id": "T000002R017082", + "___id": "T000002R017074", "___s": true }, { @@ -159948,7 +160028,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle#contains", "scope": "instance", - "___id": "T000002R017088", + "___id": "T000002R017080", "___s": true }, { @@ -160038,7 +160118,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle#getPoint", "scope": "instance", - "___id": "T000002R017090", + "___id": "T000002R017082", "___s": true }, { @@ -160160,7 +160240,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle#getPoints", "scope": "instance", - "___id": "T000002R017092", + "___id": "T000002R017084", "___s": true }, { @@ -160237,7 +160317,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle#getRandomPoint", "scope": "instance", - "___id": "T000002R017094", + "___id": "T000002R017086", "___s": true }, { @@ -160318,7 +160398,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle#setTo", "scope": "instance", - "___id": "T000002R017096", + "___id": "T000002R017088", "___s": true }, { @@ -160352,7 +160432,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle#setEmpty", "scope": "instance", - "___id": "T000002R017102", + "___id": "T000002R017094", "___s": true }, { @@ -160418,7 +160498,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle#setPosition", "scope": "instance", - "___id": "T000002R017106", + "___id": "T000002R017098", "___s": true }, { @@ -160451,7 +160531,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle#isEmpty", "scope": "instance", - "___id": "T000002R017111", + "___id": "T000002R017103", "___s": true }, { @@ -160479,7 +160559,7 @@ "longname": "Phaser.Geom.Circle#radius", "scope": "instance", "kind": "member", - "___id": "T000002R017113", + "___id": "T000002R017105", "___s": true }, { @@ -160507,7 +160587,7 @@ "longname": "Phaser.Geom.Circle#diameter", "scope": "instance", "kind": "member", - "___id": "T000002R017119", + "___id": "T000002R017111", "___s": true }, { @@ -160535,7 +160615,7 @@ "longname": "Phaser.Geom.Circle#left", "scope": "instance", "kind": "member", - "___id": "T000002R017125", + "___id": "T000002R017117", "___s": true }, { @@ -160563,7 +160643,7 @@ "longname": "Phaser.Geom.Circle#right", "scope": "instance", "kind": "member", - "___id": "T000002R017130", + "___id": "T000002R017122", "___s": true }, { @@ -160591,7 +160671,7 @@ "longname": "Phaser.Geom.Circle#top", "scope": "instance", "kind": "member", - "___id": "T000002R017135", + "___id": "T000002R017127", "___s": true }, { @@ -160619,7 +160699,7 @@ "longname": "Phaser.Geom.Circle#bottom", "scope": "instance", "kind": "member", - "___id": "T000002R017140", + "___id": "T000002R017132", "___s": true }, { @@ -160667,7 +160747,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.Circumference", "scope": "static", - "___id": "T000002R017146", + "___id": "T000002R017138", "___s": true }, { @@ -160770,7 +160850,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.CircumferencePoint", "scope": "static", - "___id": "T000002R017150", + "___id": "T000002R017142", "___s": true }, { @@ -160828,7 +160908,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.Clone", "scope": "static", - "___id": "T000002R017157", + "___id": "T000002R017149", "___s": true }, { @@ -160902,7 +160982,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.Contains", "scope": "static", - "___id": "T000002R017160", + "___id": "T000002R017152", "___s": true }, { @@ -160973,7 +161053,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.ContainsPoint", "scope": "static", - "___id": "T000002R017166", + "___id": "T000002R017158", "___s": true }, { @@ -161044,7 +161124,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.ContainsRect", "scope": "static", - "___id": "T000002R017170", + "___id": "T000002R017162", "___s": true }, { @@ -161113,7 +161193,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.CopyFrom", "scope": "static", - "___id": "T000002R017173", + "___id": "T000002R017165", "___s": true }, { @@ -161174,7 +161254,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.Equals", "scope": "static", - "___id": "T000002R017176", + "___id": "T000002R017168", "___s": true }, { @@ -161264,7 +161344,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.GetBounds", "scope": "static", - "___id": "T000002R017180", + "___id": "T000002R017172", "___s": true }, { @@ -161367,7 +161447,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.GetPoint", "scope": "static", - "___id": "T000002R017192", + "___id": "T000002R017184", "___s": true }, { @@ -161465,7 +161545,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.GetPoints", "scope": "static", - "___id": "T000002R017201", + "___id": "T000002R017193", "___s": true }, { @@ -161547,7 +161627,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.Offset", "scope": "static", - "___id": "T000002R017225", + "___id": "T000002R017217", "___s": true }, { @@ -161626,7 +161706,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.OffsetPoint", "scope": "static", - "___id": "T000002R017230", + "___id": "T000002R017222", "___s": true }, { @@ -161716,7 +161796,7 @@ "memberof": "Phaser.Geom.Circle", "longname": "Phaser.Geom.Circle.Random", "scope": "static", - "___id": "T000002R017236", + "___id": "T000002R017228", "___s": true }, { @@ -161744,7 +161824,7 @@ "longname": "Phaser.Geom.CIRCLE", "scope": "static", "kind": "member", - "___id": "T000002R017248", + "___id": "T000002R017240", "___s": true }, { @@ -161772,7 +161852,7 @@ "longname": "Phaser.Geom.ELLIPSE", "scope": "static", "kind": "member", - "___id": "T000002R017250", + "___id": "T000002R017242", "___s": true }, { @@ -161800,7 +161880,7 @@ "longname": "Phaser.Geom.LINE", "scope": "static", "kind": "member", - "___id": "T000002R017252", + "___id": "T000002R017244", "___s": true }, { @@ -161828,7 +161908,7 @@ "longname": "Phaser.Geom.POINT", "scope": "static", "kind": "member", - "___id": "T000002R017254", + "___id": "T000002R017246", "___s": true }, { @@ -161856,7 +161936,7 @@ "longname": "Phaser.Geom.POLYGON", "scope": "static", "kind": "member", - "___id": "T000002R017256", + "___id": "T000002R017248", "___s": true }, { @@ -161884,7 +161964,7 @@ "longname": "Phaser.Geom.RECTANGLE", "scope": "static", "kind": "member", - "___id": "T000002R017258", + "___id": "T000002R017250", "___s": true }, { @@ -161912,7 +161992,7 @@ "longname": "Phaser.Geom.TRIANGLE", "scope": "static", "kind": "member", - "___id": "T000002R017260", + "___id": "T000002R017252", "___s": true }, { @@ -161960,7 +162040,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.Area", "scope": "static", - "___id": "T000002R017263", + "___id": "T000002R017255", "___s": true }, { @@ -162008,7 +162088,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.Circumference", "scope": "static", - "___id": "T000002R017266", + "___id": "T000002R017258", "___s": true }, { @@ -162111,7 +162191,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.CircumferencePoint", "scope": "static", - "___id": "T000002R017273", + "___id": "T000002R017265", "___s": true }, { @@ -162159,7 +162239,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.Clone", "scope": "static", - "___id": "T000002R017282", + "___id": "T000002R017274", "___s": true }, { @@ -162233,7 +162313,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.Contains", "scope": "static", - "___id": "T000002R017285", + "___id": "T000002R017277", "___s": true }, { @@ -162304,7 +162384,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.ContainsPoint", "scope": "static", - "___id": "T000002R017293", + "___id": "T000002R017285", "___s": true }, { @@ -162375,7 +162455,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.ContainsRect", "scope": "static", - "___id": "T000002R017297", + "___id": "T000002R017289", "___s": true }, { @@ -162444,7 +162524,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.CopyFrom", "scope": "static", - "___id": "T000002R017300", + "___id": "T000002R017292", "___s": true }, { @@ -162525,7 +162605,7 @@ ], "scope": "static", "longname": "Phaser.Geom.Ellipse", - "___id": "T000002R017309", + "___id": "T000002R017301", "___s": true }, { @@ -162554,7 +162634,7 @@ "longname": "Phaser.Geom.Ellipse#type", "scope": "instance", "kind": "member", - "___id": "T000002R017316", + "___id": "T000002R017308", "___s": true }, { @@ -162583,7 +162663,7 @@ "longname": "Phaser.Geom.Ellipse#x", "scope": "instance", "kind": "member", - "___id": "T000002R017318", + "___id": "T000002R017310", "___s": true }, { @@ -162612,7 +162692,7 @@ "longname": "Phaser.Geom.Ellipse#y", "scope": "instance", "kind": "member", - "___id": "T000002R017320", + "___id": "T000002R017312", "___s": true }, { @@ -162641,7 +162721,7 @@ "longname": "Phaser.Geom.Ellipse#width", "scope": "instance", "kind": "member", - "___id": "T000002R017322", + "___id": "T000002R017314", "___s": true }, { @@ -162670,7 +162750,7 @@ "longname": "Phaser.Geom.Ellipse#height", "scope": "instance", "kind": "member", - "___id": "T000002R017324", + "___id": "T000002R017316", "___s": true }, { @@ -162731,7 +162811,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse#contains", "scope": "instance", - "___id": "T000002R017326", + "___id": "T000002R017318", "___s": true }, { @@ -162821,7 +162901,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse#getPoint", "scope": "instance", - "___id": "T000002R017328", + "___id": "T000002R017320", "___s": true }, { @@ -162943,7 +163023,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse#getPoints", "scope": "instance", - "___id": "T000002R017330", + "___id": "T000002R017322", "___s": true }, { @@ -163020,7 +163100,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse#getRandomPoint", "scope": "instance", - "___id": "T000002R017332", + "___id": "T000002R017324", "___s": true }, { @@ -163108,7 +163188,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse#setTo", "scope": "instance", - "___id": "T000002R017334", + "___id": "T000002R017326", "___s": true }, { @@ -163142,7 +163222,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse#setEmpty", "scope": "instance", - "___id": "T000002R017340", + "___id": "T000002R017332", "___s": true }, { @@ -163204,7 +163284,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse#setPosition", "scope": "instance", - "___id": "T000002R017344", + "___id": "T000002R017336", "___s": true }, { @@ -163268,7 +163348,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse#setSize", "scope": "instance", - "___id": "T000002R017349", + "___id": "T000002R017341", "___s": true }, { @@ -163301,7 +163381,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse#isEmpty", "scope": "instance", - "___id": "T000002R017354", + "___id": "T000002R017346", "___s": true }, { @@ -163334,7 +163414,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse#getMinorRadius", "scope": "instance", - "___id": "T000002R017356", + "___id": "T000002R017348", "___s": true }, { @@ -163367,7 +163447,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse#getMajorRadius", "scope": "instance", - "___id": "T000002R017358", + "___id": "T000002R017350", "___s": true }, { @@ -163395,7 +163475,7 @@ "longname": "Phaser.Geom.Ellipse#left", "scope": "instance", "kind": "member", - "___id": "T000002R017360", + "___id": "T000002R017352", "___s": true }, { @@ -163423,7 +163503,7 @@ "longname": "Phaser.Geom.Ellipse#right", "scope": "instance", "kind": "member", - "___id": "T000002R017365", + "___id": "T000002R017357", "___s": true }, { @@ -163451,7 +163531,7 @@ "longname": "Phaser.Geom.Ellipse#top", "scope": "instance", "kind": "member", - "___id": "T000002R017370", + "___id": "T000002R017362", "___s": true }, { @@ -163479,7 +163559,7 @@ "longname": "Phaser.Geom.Ellipse#bottom", "scope": "instance", "kind": "member", - "___id": "T000002R017375", + "___id": "T000002R017367", "___s": true }, { @@ -163540,7 +163620,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.Equals", "scope": "static", - "___id": "T000002R017381", + "___id": "T000002R017373", "___s": true }, { @@ -163630,7 +163710,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.GetBounds", "scope": "static", - "___id": "T000002R017385", + "___id": "T000002R017377", "___s": true }, { @@ -163733,7 +163813,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.GetPoint", "scope": "static", - "___id": "T000002R017397", + "___id": "T000002R017389", "___s": true }, { @@ -163868,7 +163948,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.GetPoints", "scope": "static", - "___id": "T000002R017406", + "___id": "T000002R017398", "___s": true }, { @@ -163950,7 +164030,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.Offset", "scope": "static", - "___id": "T000002R017430", + "___id": "T000002R017422", "___s": true }, { @@ -164029,7 +164109,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.OffsetPoint", "scope": "static", - "___id": "T000002R017435", + "___id": "T000002R017427", "___s": true }, { @@ -164119,7 +164199,7 @@ "memberof": "Phaser.Geom.Ellipse", "longname": "Phaser.Geom.Ellipse.Random", "scope": "static", - "___id": "T000002R017441", + "___id": "T000002R017433", "___s": true }, { @@ -164136,7 +164216,7 @@ "memberof": "Phaser", "longname": "Phaser.Geom", "scope": "static", - "___id": "T000002R017451", + "___id": "T000002R017443", "___s": true }, { @@ -164197,7 +164277,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.CircleToCircle", "scope": "static", - "___id": "T000002R017465", + "___id": "T000002R017457", "___s": true }, { @@ -164258,7 +164338,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.CircleToRectangle", "scope": "static", - "___id": "T000002R017468", + "___id": "T000002R017460", "___s": true }, { @@ -164333,7 +164413,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetCircleToCircle", "scope": "static", - "___id": "T000002R017484", + "___id": "T000002R017476", "___s": true }, { @@ -164408,7 +164488,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetCircleToRectangle", "scope": "static", - "___id": "T000002R017515", + "___id": "T000002R017507", "___s": true }, { @@ -164483,7 +164563,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetLineToCircle", "scope": "static", - "___id": "T000002R017525", + "___id": "T000002R017517", "___s": true }, { @@ -164573,7 +164653,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetLineToLine", "scope": "static", - "___id": "T000002R017556", + "___id": "T000002R017548", "___s": true }, { @@ -164691,7 +164771,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetLineToPoints", "scope": "static", - "___id": "T000002R017589", + "___id": "T000002R017581", "___s": true }, { @@ -164800,7 +164880,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetLineToPolygon", "scope": "static", - "___id": "T000002R017604", + "___id": "T000002R017596", "___s": true }, { @@ -164885,7 +164965,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetLineToRectangle", "scope": "static", - "___id": "T000002R017615", + "___id": "T000002R017607", "___s": true }, { @@ -164987,7 +165067,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetRaysFromPointToPolygon", "scope": "static", - "___id": "T000002R017635", + "___id": "T000002R017627", "___s": true }, { @@ -165070,7 +165150,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetRectangleIntersection", "scope": "static", - "___id": "T000002R017647", + "___id": "T000002R017639", "___s": true }, { @@ -165145,7 +165225,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetRectangleToRectangle", "scope": "static", - "___id": "T000002R017657", + "___id": "T000002R017649", "___s": true }, { @@ -165220,7 +165300,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetRectangleToTriangle", "scope": "static", - "___id": "T000002R017667", + "___id": "T000002R017659", "___s": true }, { @@ -165295,7 +165375,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetTriangleToCircle", "scope": "static", - "___id": "T000002R017676", + "___id": "T000002R017668", "___s": true }, { @@ -165370,7 +165450,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetTriangleToLine", "scope": "static", - "___id": "T000002R017686", + "___id": "T000002R017678", "___s": true }, { @@ -165445,7 +165525,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.GetTriangleToTriangle", "scope": "static", - "___id": "T000002R017698", + "___id": "T000002R017690", "___s": true }, { @@ -165462,7 +165542,7 @@ "memberof": "Phaser.Geom", "longname": "Phaser.Geom.Intersects", "scope": "static", - "___id": "T000002R017705", + "___id": "T000002R017697", "___s": true }, { @@ -165547,7 +165627,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.LineToCircle", "scope": "static", - "___id": "T000002R017737", + "___id": "T000002R017729", "___s": true }, { @@ -165622,7 +165702,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.LineToLine", "scope": "static", - "___id": "T000002R017758", + "___id": "T000002R017750", "___s": true }, { @@ -165693,7 +165773,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.LineToRectangle", "scope": "static", - "___id": "T000002R017774", + "___id": "T000002R017766", "___s": true }, { @@ -165779,7 +165859,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.PointToLine", "scope": "static", - "___id": "T000002R017790", + "___id": "T000002R017782", "___s": true }, { @@ -165840,7 +165920,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.PointToLineSegment", "scope": "static", - "___id": "T000002R017804", + "___id": "T000002R017796", "___s": true }, { @@ -165901,7 +165981,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.RectangleToRectangle", "scope": "static", - "___id": "T000002R017811", + "___id": "T000002R017803", "___s": true }, { @@ -165962,7 +166042,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.RectangleToTriangle", "scope": "static", - "___id": "T000002R017818", + "___id": "T000002R017810", "___s": true }, { @@ -166077,7 +166157,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.RectangleToValues", "scope": "static", - "___id": "T000002R017830", + "___id": "T000002R017822", "___s": true }, { @@ -166138,7 +166218,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.TriangleToCircle", "scope": "static", - "___id": "T000002R017836", + "___id": "T000002R017828", "___s": true }, { @@ -166199,7 +166279,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.TriangleToLine", "scope": "static", - "___id": "T000002R017840", + "___id": "T000002R017832", "___s": true }, { @@ -166260,7 +166340,7 @@ "memberof": "Phaser.Geom.Intersects", "longname": "Phaser.Geom.Intersects.TriangleToTriangle", "scope": "static", - "___id": "T000002R017846", + "___id": "T000002R017838", "___s": true }, { @@ -166308,7 +166388,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.Angle", "scope": "static", - "___id": "T000002R017859", + "___id": "T000002R017851", "___s": true }, { @@ -166403,7 +166483,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.BresenhamPoints", "scope": "static", - "___id": "T000002R017862", + "___id": "T000002R017854", "___s": true }, { @@ -166477,7 +166557,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.CenterOn", "scope": "static", - "___id": "T000002R017886", + "___id": "T000002R017878", "___s": true }, { @@ -166525,7 +166605,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.Clone", "scope": "static", - "___id": "T000002R017896", + "___id": "T000002R017888", "___s": true }, { @@ -166594,7 +166674,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.CopyFrom", "scope": "static", - "___id": "T000002R017899", + "___id": "T000002R017891", "___s": true }, { @@ -166655,7 +166735,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.Equals", "scope": "static", - "___id": "T000002R017902", + "___id": "T000002R017894", "___s": true }, { @@ -166730,7 +166810,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.Extend", "scope": "static", - "___id": "T000002R017906", + "___id": "T000002R017898", "___s": true }, { @@ -166869,7 +166949,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.GetEasedPoints", "scope": "static", - "___id": "T000002R017920", + "___id": "T000002R017912", "___s": true }, { @@ -166959,7 +167039,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.GetMidPoint", "scope": "static", - "___id": "T000002R017944", + "___id": "T000002R017936", "___s": true }, { @@ -167072,7 +167152,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.GetNearestPoint", "scope": "static", - "___id": "T000002R017951", + "___id": "T000002R017943", "___s": true }, { @@ -167162,7 +167242,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.GetNormal", "scope": "static", - "___id": "T000002R017966", + "___id": "T000002R017958", "___s": true }, { @@ -167265,7 +167345,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.GetPoint", "scope": "static", - "___id": "T000002R017974", + "___id": "T000002R017966", "___s": true }, { @@ -167400,7 +167480,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.GetPoints", "scope": "static", - "___id": "T000002R017982", + "___id": "T000002R017974", "___s": true }, { @@ -167471,7 +167551,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.GetShortestDistance", "scope": "static", - "___id": "T000002R017995", + "___id": "T000002R017987", "___s": true }, { @@ -167519,7 +167599,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.Height", "scope": "static", - "___id": "T000002R018004", + "___id": "T000002R017996", "___s": true }, { @@ -167567,7 +167647,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.Length", "scope": "static", - "___id": "T000002R018038", + "___id": "T000002R018030", "___s": true }, { @@ -167648,7 +167728,7 @@ ], "scope": "static", "longname": "Phaser.Geom.Line", - "___id": "T000002R018047", + "___id": "T000002R018039", "___s": true }, { @@ -167677,7 +167757,7 @@ "longname": "Phaser.Geom.Line#type", "scope": "instance", "kind": "member", - "___id": "T000002R018054", + "___id": "T000002R018046", "___s": true }, { @@ -167705,7 +167785,7 @@ "longname": "Phaser.Geom.Line#x1", "scope": "instance", "kind": "member", - "___id": "T000002R018056", + "___id": "T000002R018048", "___s": true }, { @@ -167733,7 +167813,7 @@ "longname": "Phaser.Geom.Line#y1", "scope": "instance", "kind": "member", - "___id": "T000002R018058", + "___id": "T000002R018050", "___s": true }, { @@ -167761,7 +167841,7 @@ "longname": "Phaser.Geom.Line#x2", "scope": "instance", "kind": "member", - "___id": "T000002R018060", + "___id": "T000002R018052", "___s": true }, { @@ -167789,7 +167869,7 @@ "longname": "Phaser.Geom.Line#y2", "scope": "instance", "kind": "member", - "___id": "T000002R018062", + "___id": "T000002R018054", "___s": true }, { @@ -167879,7 +167959,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line#getPoint", "scope": "instance", - "___id": "T000002R018064", + "___id": "T000002R018056", "___s": true }, { @@ -168001,7 +168081,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line#getPoints", "scope": "instance", - "___id": "T000002R018066", + "___id": "T000002R018058", "___s": true }, { @@ -168068,7 +168148,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line#getRandomPoint", "scope": "instance", - "___id": "T000002R018068", + "___id": "T000002R018060", "___s": true }, { @@ -168164,7 +168244,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line#setTo", "scope": "instance", - "___id": "T000002R018070", + "___id": "T000002R018062", "___s": true }, { @@ -168226,7 +168306,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line#setFromObjects", "scope": "instance", - "___id": "T000002R018080", + "___id": "T000002R018072", "___s": true }, { @@ -168283,7 +168363,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line#getPointA", "scope": "instance", - "___id": "T000002R018086", + "___id": "T000002R018078", "___s": true }, { @@ -168340,7 +168420,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line#getPointB", "scope": "instance", - "___id": "T000002R018089", + "___id": "T000002R018081", "___s": true }, { @@ -168368,7 +168448,7 @@ "longname": "Phaser.Geom.Line#left", "scope": "instance", "kind": "member", - "___id": "T000002R018092", + "___id": "T000002R018084", "___s": true }, { @@ -168396,7 +168476,7 @@ "longname": "Phaser.Geom.Line#right", "scope": "instance", "kind": "member", - "___id": "T000002R018098", + "___id": "T000002R018090", "___s": true }, { @@ -168424,7 +168504,7 @@ "longname": "Phaser.Geom.Line#top", "scope": "instance", "kind": "member", - "___id": "T000002R018104", + "___id": "T000002R018096", "___s": true }, { @@ -168452,7 +168532,7 @@ "longname": "Phaser.Geom.Line#bottom", "scope": "instance", "kind": "member", - "___id": "T000002R018110", + "___id": "T000002R018102", "___s": true }, { @@ -168500,7 +168580,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.NormalAngle", "scope": "static", - "___id": "T000002R018120", + "___id": "T000002R018112", "___s": true }, { @@ -168548,7 +168628,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.NormalX", "scope": "static", - "___id": "T000002R018126", + "___id": "T000002R018118", "___s": true }, { @@ -168596,7 +168676,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.NormalY", "scope": "static", - "___id": "T000002R018131", + "___id": "T000002R018123", "___s": true }, { @@ -168678,7 +168758,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.Offset", "scope": "static", - "___id": "T000002R018134", + "___id": "T000002R018126", "___s": true }, { @@ -168726,7 +168806,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.PerpSlope", "scope": "static", - "___id": "T000002R018141", + "___id": "T000002R018133", "___s": true }, { @@ -168816,7 +168896,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.Random", "scope": "static", - "___id": "T000002R018145", + "___id": "T000002R018137", "___s": true }, { @@ -168877,7 +168957,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.ReflectAngle", "scope": "static", - "___id": "T000002R018154", + "___id": "T000002R018146", "___s": true }, { @@ -168946,7 +169026,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.Rotate", "scope": "static", - "___id": "T000002R018158", + "___id": "T000002R018150", "___s": true }, { @@ -169038,7 +169118,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.RotateAroundPoint", "scope": "static", - "___id": "T000002R018164", + "___id": "T000002R018156", "___s": true }, { @@ -169133,7 +169213,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.RotateAroundXY", "scope": "static", - "___id": "T000002R018167", + "___id": "T000002R018159", "___s": true }, { @@ -169241,7 +169321,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.SetToAngle", "scope": "static", - "___id": "T000002R018180", + "___id": "T000002R018172", "___s": true }, { @@ -169289,7 +169369,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.Slope", "scope": "static", - "___id": "T000002R018187", + "___id": "T000002R018179", "___s": true }, { @@ -169337,7 +169417,7 @@ "memberof": "Phaser.Geom.Line", "longname": "Phaser.Geom.Line.Width", "scope": "static", - "___id": "T000002R018190", + "___id": "T000002R018182", "___s": true }, { @@ -169397,7 +169477,7 @@ ], "scope": "static", "longname": "Phaser.Geom.Mesh.Face", - "___id": "T000002R018200", + "___id": "T000002R018192", "___s": true }, { @@ -169425,7 +169505,7 @@ "longname": "Phaser.Geom.Mesh.Face#vertex1", "scope": "instance", "kind": "member", - "___id": "T000002R018203", + "___id": "T000002R018195", "___s": true }, { @@ -169453,7 +169533,7 @@ "longname": "Phaser.Geom.Mesh.Face#vertex2", "scope": "instance", "kind": "member", - "___id": "T000002R018205", + "___id": "T000002R018197", "___s": true }, { @@ -169481,7 +169561,7 @@ "longname": "Phaser.Geom.Mesh.Face#vertex3", "scope": "instance", "kind": "member", - "___id": "T000002R018207", + "___id": "T000002R018199", "___s": true }, { @@ -169509,7 +169589,7 @@ "longname": "Phaser.Geom.Mesh.Face#bounds", "scope": "instance", "kind": "member", - "___id": "T000002R018209", + "___id": "T000002R018201", "___s": true }, { @@ -169559,7 +169639,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#getInCenter", "scope": "instance", - "___id": "T000002R018213", + "___id": "T000002R018205", "___s": true }, { @@ -169634,7 +169714,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#contains", "scope": "instance", - "___id": "T000002R018241", + "___id": "T000002R018233", "___s": true }, { @@ -169682,7 +169762,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#isCounterClockwise", "scope": "instance", - "___id": "T000002R018279", + "___id": "T000002R018271", "___s": true }, { @@ -169782,7 +169862,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#load", "scope": "instance", - "___id": "T000002R018285", + "___id": "T000002R018277", "___s": true }, { @@ -169870,7 +169950,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#transformCoordinatesLocal", "scope": "instance", - "___id": "T000002R018290", + "___id": "T000002R018282", "___s": true }, { @@ -169904,7 +169984,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#updateBounds", "scope": "instance", - "___id": "T000002R018292", + "___id": "T000002R018284", "___s": true }, { @@ -170082,7 +170162,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#isInView", "scope": "instance", - "___id": "T000002R018302", + "___id": "T000002R018294", "___s": true }, { @@ -170144,7 +170224,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#scrollUV", "scope": "instance", - "___id": "T000002R018314", + "___id": "T000002R018306", "___s": true }, { @@ -170206,7 +170286,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#scaleUV", "scope": "instance", - "___id": "T000002R018316", + "___id": "T000002R018308", "___s": true }, { @@ -170255,7 +170335,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#setColor", "scope": "instance", - "___id": "T000002R018318", + "___id": "T000002R018310", "___s": true }, { @@ -170395,7 +170475,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#update", "scope": "instance", - "___id": "T000002R018323", + "___id": "T000002R018315", "___s": true }, { @@ -170459,7 +170539,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#translate", "scope": "instance", - "___id": "T000002R018325", + "___id": "T000002R018317", "___s": true }, { @@ -170487,7 +170567,7 @@ "longname": "Phaser.Geom.Mesh.Face#x", "scope": "instance", "kind": "member", - "___id": "T000002R018337", + "___id": "T000002R018329", "___s": true }, { @@ -170515,7 +170595,7 @@ "longname": "Phaser.Geom.Mesh.Face#y", "scope": "instance", "kind": "member", - "___id": "T000002R018342", + "___id": "T000002R018334", "___s": true }, { @@ -170543,7 +170623,7 @@ "longname": "Phaser.Geom.Mesh.Face#alpha", "scope": "instance", "kind": "member", - "___id": "T000002R018347", + "___id": "T000002R018339", "___s": true }, { @@ -170572,7 +170652,7 @@ "longname": "Phaser.Geom.Mesh.Face#depth", "scope": "instance", "kind": "member", - "___id": "T000002R018357", + "___id": "T000002R018349", "___s": true }, { @@ -170591,7 +170671,7 @@ "memberof": "Phaser.Geom.Mesh.Face", "longname": "Phaser.Geom.Mesh.Face#destroy", "scope": "instance", - "___id": "T000002R018363", + "___id": "T000002R018355", "___s": true }, { @@ -170639,7 +170719,7 @@ "memberof": "Phaser.Geom.Mesh", "longname": "Phaser.Geom.Mesh.GenerateGridVerts", "scope": "static", - "___id": "T000002R018377", + "___id": "T000002R018369", "___s": true }, { @@ -170821,7 +170901,7 @@ "memberof": "Phaser.Geom.Mesh", "longname": "Phaser.Geom.Mesh.GenerateObjVerts", "scope": "static", - "___id": "T000002R018469", + "___id": "T000002R018461", "___s": true }, { @@ -171044,7 +171124,7 @@ "memberof": "Phaser.Geom.Mesh", "longname": "Phaser.Geom.Mesh.GenerateVerts", "scope": "static", - "___id": "T000002R018518", + "___id": "T000002R018510", "___s": true }, { @@ -171061,7 +171141,7 @@ "memberof": "Phaser.Geom", "longname": "Phaser.Geom.Mesh", "scope": "static", - "___id": "T000002R018583", + "___id": "T000002R018575", "___s": true }, { @@ -171124,7 +171204,7 @@ "memberof": "Phaser.Geom.Mesh", "longname": "Phaser.Geom.Mesh.ParseObj", "scope": "static", - "___id": "T000002R018671", + "___id": "T000002R018663", "___s": true }, { @@ -171172,7 +171252,7 @@ "memberof": "Phaser.Geom.Mesh", "longname": "Phaser.Geom.Mesh.ParseObjMaterial", "scope": "static", - "___id": "T000002R018687", + "___id": "T000002R018679", "___s": true }, { @@ -171247,7 +171327,7 @@ "memberof": "Phaser.Geom.Mesh", "longname": "Phaser.Geom.Mesh.RotateFace", "scope": "static", - "___id": "T000002R018701", + "___id": "T000002R018693", "___s": true }, { @@ -171540,7 +171620,7 @@ "memberof": "Phaser.Types.Geom.Mesh", "longname": "Phaser.Types.Geom.Mesh.GenerateGridConfig", "scope": "static", - "___id": "T000002R018720", + "___id": "T000002R018712", "___s": true }, { @@ -171703,7 +171783,7 @@ "memberof": "Phaser.Types.Geom.Mesh", "longname": "Phaser.Types.Geom.Mesh.GenerateGridVertsResult", "scope": "static", - "___id": "T000002R018721", + "___id": "T000002R018713", "___s": true }, { @@ -171776,7 +171856,7 @@ "memberof": "Phaser.Types.Geom.Mesh", "longname": "Phaser.Types.Geom.Mesh.GenerateVertsResult", "scope": "static", - "___id": "T000002R018722", + "___id": "T000002R018714", "___s": true }, { @@ -171793,7 +171873,7 @@ "memberof": "Phaser.Types.Geom", "longname": "Phaser.Types.Geom.Mesh", "scope": "static", - "___id": "T000002R018723", + "___id": "T000002R018715", "___s": true }, { @@ -171879,7 +171959,7 @@ "memberof": "Phaser.Types.Geom.Mesh", "longname": "Phaser.Types.Geom.Mesh.OBJData", "scope": "static", - "___id": "T000002R018724", + "___id": "T000002R018716", "___s": true }, { @@ -171956,7 +172036,7 @@ "memberof": "Phaser.Types.Geom.Mesh", "longname": "Phaser.Types.Geom.Mesh.OBJFace", "scope": "static", - "___id": "T000002R018725", + "___id": "T000002R018717", "___s": true }, { @@ -172024,7 +172104,7 @@ "memberof": "Phaser.Types.Geom.Mesh", "longname": "Phaser.Types.Geom.Mesh.OBJFaceVertice", "scope": "static", - "___id": "T000002R018726", + "___id": "T000002R018718", "___s": true }, { @@ -172154,7 +172234,7 @@ "memberof": "Phaser.Types.Geom.Mesh", "longname": "Phaser.Types.Geom.Mesh.OBJModel", "scope": "static", - "___id": "T000002R018727", + "___id": "T000002R018719", "___s": true }, { @@ -172222,7 +172302,7 @@ "memberof": "Phaser.Types.Geom.Mesh", "longname": "Phaser.Types.Geom.Mesh.UV", "scope": "static", - "___id": "T000002R018728", + "___id": "T000002R018720", "___s": true }, { @@ -172386,7 +172466,7 @@ ], "scope": "static", "longname": "Phaser.Geom.Mesh.Vertex", - "___id": "T000002R018732", + "___id": "T000002R018724", "___s": true }, { @@ -172414,7 +172494,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#vx", "scope": "instance", "kind": "member", - "___id": "T000002R018741", + "___id": "T000002R018733", "___s": true }, { @@ -172442,7 +172522,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#vy", "scope": "instance", "kind": "member", - "___id": "T000002R018743", + "___id": "T000002R018735", "___s": true }, { @@ -172470,7 +172550,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#vz", "scope": "instance", "kind": "member", - "___id": "T000002R018745", + "___id": "T000002R018737", "___s": true }, { @@ -172498,7 +172578,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#nx", "scope": "instance", "kind": "member", - "___id": "T000002R018747", + "___id": "T000002R018739", "___s": true }, { @@ -172526,7 +172606,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#ny", "scope": "instance", "kind": "member", - "___id": "T000002R018749", + "___id": "T000002R018741", "___s": true }, { @@ -172554,7 +172634,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#nz", "scope": "instance", "kind": "member", - "___id": "T000002R018751", + "___id": "T000002R018743", "___s": true }, { @@ -172582,7 +172662,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#u", "scope": "instance", "kind": "member", - "___id": "T000002R018753", + "___id": "T000002R018745", "___s": true }, { @@ -172610,7 +172690,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#v", "scope": "instance", "kind": "member", - "___id": "T000002R018755", + "___id": "T000002R018747", "___s": true }, { @@ -172638,7 +172718,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#color", "scope": "instance", "kind": "member", - "___id": "T000002R018757", + "___id": "T000002R018749", "___s": true }, { @@ -172666,7 +172746,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#alpha", "scope": "instance", "kind": "member", - "___id": "T000002R018759", + "___id": "T000002R018751", "___s": true }, { @@ -172694,7 +172774,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#tx", "scope": "instance", "kind": "member", - "___id": "T000002R018761", + "___id": "T000002R018753", "___s": true }, { @@ -172722,7 +172802,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#ty", "scope": "instance", "kind": "member", - "___id": "T000002R018763", + "___id": "T000002R018755", "___s": true }, { @@ -172750,7 +172830,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#ta", "scope": "instance", "kind": "member", - "___id": "T000002R018765", + "___id": "T000002R018757", "___s": true }, { @@ -172778,7 +172858,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#tu", "scope": "instance", "kind": "member", - "___id": "T000002R018767", + "___id": "T000002R018759", "___s": true }, { @@ -172806,7 +172886,7 @@ "longname": "Phaser.Geom.Mesh.Vertex#tv", "scope": "instance", "kind": "member", - "___id": "T000002R018769", + "___id": "T000002R018761", "___s": true }, { @@ -172868,7 +172948,7 @@ "memberof": "Phaser.Geom.Mesh.Vertex", "longname": "Phaser.Geom.Mesh.Vertex#setUVs", "scope": "instance", - "___id": "T000002R018771", + "___id": "T000002R018763", "___s": true }, { @@ -172930,7 +173010,7 @@ "memberof": "Phaser.Geom.Mesh.Vertex", "longname": "Phaser.Geom.Mesh.Vertex#scrollUV", "scope": "instance", - "___id": "T000002R018777", + "___id": "T000002R018769", "___s": true }, { @@ -172992,7 +173072,7 @@ "memberof": "Phaser.Geom.Mesh.Vertex", "longname": "Phaser.Geom.Mesh.Vertex#scaleUV", "scope": "instance", - "___id": "T000002R018781", + "___id": "T000002R018773", "___s": true }, { @@ -173065,7 +173145,7 @@ "memberof": "Phaser.Geom.Mesh.Vertex", "longname": "Phaser.Geom.Mesh.Vertex#transformCoordinatesLocal", "scope": "instance", - "___id": "T000002R018785", + "___id": "T000002R018777", "___s": true }, { @@ -173179,7 +173259,7 @@ "memberof": "Phaser.Geom.Mesh.Vertex", "longname": "Phaser.Geom.Mesh.Vertex#resize", "scope": "instance", - "___id": "T000002R018799", + "___id": "T000002R018791", "___s": true }, { @@ -173319,7 +173399,7 @@ "memberof": "Phaser.Geom.Mesh.Vertex", "longname": "Phaser.Geom.Mesh.Vertex#update", "scope": "instance", - "___id": "T000002R018810", + "___id": "T000002R018802", "___s": true }, { @@ -173419,7 +173499,7 @@ "memberof": "Phaser.Geom.Mesh.Vertex", "longname": "Phaser.Geom.Mesh.Vertex#load", "scope": "instance", - "___id": "T000002R018819", + "___id": "T000002R018811", "___s": true }, { @@ -173475,7 +173555,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.Ceil", "scope": "static", - "___id": "T000002R018829", + "___id": "T000002R018821", "___s": true }, { @@ -173523,7 +173603,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.Clone", "scope": "static", - "___id": "T000002R018833", + "___id": "T000002R018825", "___s": true }, { @@ -173592,7 +173672,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.CopyFrom", "scope": "static", - "___id": "T000002R018836", + "___id": "T000002R018828", "___s": true }, { @@ -173653,7 +173733,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.Equals", "scope": "static", - "___id": "T000002R018839", + "___id": "T000002R018831", "___s": true }, { @@ -173709,7 +173789,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.Floor", "scope": "static", - "___id": "T000002R018842", + "___id": "T000002R018834", "___s": true }, { @@ -173788,7 +173868,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.GetCentroid", "scope": "static", - "___id": "T000002R018846", + "___id": "T000002R018838", "___s": true }, { @@ -173836,7 +173916,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.GetMagnitude", "scope": "static", - "___id": "T000002R018858", + "___id": "T000002R018850", "___s": true }, { @@ -173884,7 +173964,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.GetMagnitudeSq", "scope": "static", - "___id": "T000002R018861", + "___id": "T000002R018853", "___s": true }, { @@ -173963,7 +174043,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.GetRectangleFromPoints", "scope": "static", - "___id": "T000002R018865", + "___id": "T000002R018857", "___s": true }, { @@ -174081,7 +174161,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.Interpolate", "scope": "static", - "___id": "T000002R018901", + "___id": "T000002R018893", "___s": true }, { @@ -174137,7 +174217,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.Invert", "scope": "static", - "___id": "T000002R018908", + "___id": "T000002R018900", "___s": true }, { @@ -174207,7 +174287,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.Negative", "scope": "static", - "___id": "T000002R018912", + "___id": "T000002R018904", "___s": true }, { @@ -174258,7 +174338,7 @@ ], "scope": "static", "longname": "Phaser.Geom.Point", - "___id": "T000002R018918", + "___id": "T000002R018910", "___s": true }, { @@ -174287,7 +174367,7 @@ "longname": "Phaser.Geom.Point#type", "scope": "instance", "kind": "member", - "___id": "T000002R018923", + "___id": "T000002R018915", "___s": true }, { @@ -174316,7 +174396,7 @@ "longname": "Phaser.Geom.Point#x", "scope": "instance", "kind": "member", - "___id": "T000002R018925", + "___id": "T000002R018917", "___s": true }, { @@ -174345,7 +174425,7 @@ "longname": "Phaser.Geom.Point#y", "scope": "instance", "kind": "member", - "___id": "T000002R018927", + "___id": "T000002R018919", "___s": true }, { @@ -174411,7 +174491,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point#setTo", "scope": "instance", - "___id": "T000002R018929", + "___id": "T000002R018921", "___s": true }, { @@ -174494,7 +174574,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.Project", "scope": "static", - "___id": "T000002R018938", + "___id": "T000002R018930", "___s": true }, { @@ -174577,7 +174657,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.ProjectUnit", "scope": "static", - "___id": "T000002R018947", + "___id": "T000002R018939", "___s": true }, { @@ -174646,7 +174726,7 @@ "memberof": "Phaser.Geom.Point", "longname": "Phaser.Geom.Point.SetMagnitude", "scope": "static", - "___id": "T000002R018955", + "___id": "T000002R018947", "___s": true }, { @@ -174694,7 +174774,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon.Clone", "scope": "static", - "___id": "T000002R018964", + "___id": "T000002R018956", "___s": true }, { @@ -174768,7 +174848,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon.Contains", "scope": "static", - "___id": "T000002R018967", + "___id": "T000002R018959", "___s": true }, { @@ -174829,7 +174909,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon.ContainsPoint", "scope": "static", - "___id": "T000002R018980", + "___id": "T000002R018972", "___s": true }, { @@ -174933,7 +175013,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon.Earcut", "scope": "static", - "___id": "T000002R018983", + "___id": "T000002R018975", "___s": true }, { @@ -175023,7 +175103,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon.GetAABB", "scope": "static", - "___id": "T000002R019282", + "___id": "T000002R019274", "___s": true }, { @@ -175131,7 +175211,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon.GetNumberArray", "scope": "static", - "___id": "T000002R019301", + "___id": "T000002R019293", "___s": true }, { @@ -175229,7 +175309,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon.GetPoints", "scope": "static", - "___id": "T000002R019309", + "___id": "T000002R019301", "___s": true }, { @@ -175277,7 +175357,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon.Perimeter", "scope": "static", - "___id": "T000002R019342", + "___id": "T000002R019334", "___s": true }, { @@ -175345,7 +175425,7 @@ ], "scope": "static", "longname": "Phaser.Geom.Polygon", - "___id": "T000002R019356", + "___id": "T000002R019348", "___s": true }, { @@ -175374,7 +175454,7 @@ "longname": "Phaser.Geom.Polygon#type", "scope": "instance", "kind": "member", - "___id": "T000002R019359", + "___id": "T000002R019351", "___s": true }, { @@ -175403,7 +175483,7 @@ "longname": "Phaser.Geom.Polygon#area", "scope": "instance", "kind": "member", - "___id": "T000002R019361", + "___id": "T000002R019353", "___s": true }, { @@ -175440,7 +175520,7 @@ "longname": "Phaser.Geom.Polygon#points", "scope": "instance", "kind": "member", - "___id": "T000002R019363", + "___id": "T000002R019355", "___s": true }, { @@ -175501,7 +175581,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon#contains", "scope": "instance", - "___id": "T000002R019365", + "___id": "T000002R019357", "___s": true }, { @@ -175584,7 +175664,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon#setTo", "scope": "instance", - "___id": "T000002R019367", + "___id": "T000002R019359", "___s": true }, { @@ -175617,7 +175697,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon#calculateArea", "scope": "instance", - "___id": "T000002R019383", + "___id": "T000002R019375", "___s": true }, { @@ -175739,7 +175819,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon#getPoints", "scope": "instance", - "___id": "T000002R019397", + "___id": "T000002R019389", "___s": true }, { @@ -175795,7 +175875,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon.Reverse", "scope": "static", - "___id": "T000002R019400", + "___id": "T000002R019392", "___s": true }, { @@ -175881,7 +175961,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon.Simplify", "scope": "static", - "___id": "T000002R019436", + "___id": "T000002R019428", "___s": true }, { @@ -175937,7 +176017,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon.Smooth", "scope": "static", - "___id": "T000002R019447", + "___id": "T000002R019439", "___s": true }, { @@ -176019,7 +176099,7 @@ "memberof": "Phaser.Geom.Polygon", "longname": "Phaser.Geom.Polygon.Translate", "scope": "static", - "___id": "T000002R019462", + "___id": "T000002R019454", "___s": true }, { @@ -176067,7 +176147,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Area", "scope": "static", - "___id": "T000002R019469", + "___id": "T000002R019461", "___s": true }, { @@ -176123,7 +176203,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Ceil", "scope": "static", - "___id": "T000002R019472", + "___id": "T000002R019464", "___s": true }, { @@ -176179,7 +176259,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.CeilAll", "scope": "static", - "___id": "T000002R019477", + "___id": "T000002R019469", "___s": true }, { @@ -176261,7 +176341,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.CenterOn", "scope": "static", - "___id": "T000002R019484", + "___id": "T000002R019476", "___s": true }, { @@ -176309,7 +176389,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Clone", "scope": "static", - "___id": "T000002R019490", + "___id": "T000002R019482", "___s": true }, { @@ -176383,7 +176463,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Contains", "scope": "static", - "___id": "T000002R019493", + "___id": "T000002R019485", "___s": true }, { @@ -176444,7 +176524,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.ContainsPoint", "scope": "static", - "___id": "T000002R019497", + "___id": "T000002R019489", "___s": true }, { @@ -176505,7 +176585,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.ContainsRect", "scope": "static", - "___id": "T000002R019500", + "___id": "T000002R019492", "___s": true }, { @@ -176574,7 +176654,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.CopyFrom", "scope": "static", - "___id": "T000002R019503", + "___id": "T000002R019495", "___s": true }, { @@ -176636,7 +176716,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Decompose", "scope": "static", - "___id": "T000002R019506", + "___id": "T000002R019498", "___s": true }, { @@ -176697,7 +176777,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Equals", "scope": "static", - "___id": "T000002R019518", + "___id": "T000002R019510", "___s": true }, { @@ -176766,7 +176846,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.FitInside", "scope": "static", - "___id": "T000002R019522", + "___id": "T000002R019514", "___s": true }, { @@ -176835,7 +176915,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.FitOutside", "scope": "static", - "___id": "T000002R019527", + "___id": "T000002R019519", "___s": true }, { @@ -176891,7 +176971,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Floor", "scope": "static", - "___id": "T000002R019531", + "___id": "T000002R019523", "___s": true }, { @@ -176947,7 +177027,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.FloorAll", "scope": "static", - "___id": "T000002R019536", + "___id": "T000002R019528", "___s": true }, { @@ -177017,7 +177097,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.FromPoints", "scope": "static", - "___id": "T000002R019545", + "___id": "T000002R019537", "___s": true }, { @@ -177126,7 +177206,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.FromXY", "scope": "static", - "___id": "T000002R019571", + "___id": "T000002R019563", "___s": true }, { @@ -177174,7 +177254,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.GetAspectRatio", "scope": "static", - "___id": "T000002R019575", + "___id": "T000002R019567", "___s": true }, { @@ -177264,7 +177344,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.GetCenter", "scope": "static", - "___id": "T000002R019579", + "___id": "T000002R019571", "___s": true }, { @@ -177357,7 +177437,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.GetPoint", "scope": "static", - "___id": "T000002R019587", + "___id": "T000002R019579", "___s": true }, { @@ -177491,7 +177571,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.GetPoints", "scope": "static", - "___id": "T000002R019605", + "___id": "T000002R019597", "___s": true }, { @@ -177581,7 +177661,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.GetSize", "scope": "static", - "___id": "T000002R019613", + "___id": "T000002R019605", "___s": true }, { @@ -177663,7 +177743,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Inflate", "scope": "static", - "___id": "T000002R019660", + "___id": "T000002R019652", "___s": true }, { @@ -177746,7 +177826,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Intersection", "scope": "static", - "___id": "T000002R019667", + "___id": "T000002R019659", "___s": true }, { @@ -177882,7 +177962,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.MarchingAnts", "scope": "static", - "___id": "T000002R019677", + "___id": "T000002R019669", "___s": true }, { @@ -177960,7 +178040,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.MergePoints", "scope": "static", - "___id": "T000002R019702", + "___id": "T000002R019694", "___s": true }, { @@ -178029,7 +178109,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.MergeRect", "scope": "static", - "___id": "T000002R019718", + "___id": "T000002R019710", "___s": true }, { @@ -178111,7 +178191,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.MergeXY", "scope": "static", - "___id": "T000002R019729", + "___id": "T000002R019721", "___s": true }, { @@ -178193,7 +178273,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Offset", "scope": "static", - "___id": "T000002R019740", + "___id": "T000002R019732", "___s": true }, { @@ -178272,7 +178352,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.OffsetPoint", "scope": "static", - "___id": "T000002R019745", + "___id": "T000002R019737", "___s": true }, { @@ -178333,7 +178413,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Overlaps", "scope": "static", - "___id": "T000002R019750", + "___id": "T000002R019742", "___s": true }, { @@ -178381,7 +178461,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Perimeter", "scope": "static", - "___id": "T000002R019753", + "___id": "T000002R019745", "___s": true }, { @@ -178464,7 +178544,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.PerimeterPoint", "scope": "static", - "___id": "T000002R019758", + "___id": "T000002R019750", "___s": true }, { @@ -178533,7 +178613,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Random", "scope": "static", - "___id": "T000002R019772", + "___id": "T000002R019764", "___s": true }, { @@ -178616,7 +178696,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.RandomOutside", "scope": "static", - "___id": "T000002R019781", + "___id": "T000002R019773", "___s": true }, { @@ -178697,7 +178777,7 @@ ], "scope": "static", "longname": "Phaser.Geom.Rectangle", - "___id": "T000002R019800", + "___id": "T000002R019792", "___s": true }, { @@ -178726,7 +178806,7 @@ "longname": "Phaser.Geom.Rectangle#type", "scope": "instance", "kind": "member", - "___id": "T000002R019807", + "___id": "T000002R019799", "___s": true }, { @@ -178755,7 +178835,7 @@ "longname": "Phaser.Geom.Rectangle#x", "scope": "instance", "kind": "member", - "___id": "T000002R019809", + "___id": "T000002R019801", "___s": true }, { @@ -178784,7 +178864,7 @@ "longname": "Phaser.Geom.Rectangle#y", "scope": "instance", "kind": "member", - "___id": "T000002R019811", + "___id": "T000002R019803", "___s": true }, { @@ -178813,7 +178893,7 @@ "longname": "Phaser.Geom.Rectangle#width", "scope": "instance", "kind": "member", - "___id": "T000002R019813", + "___id": "T000002R019805", "___s": true }, { @@ -178842,7 +178922,7 @@ "longname": "Phaser.Geom.Rectangle#height", "scope": "instance", "kind": "member", - "___id": "T000002R019815", + "___id": "T000002R019807", "___s": true }, { @@ -178903,7 +178983,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#contains", "scope": "instance", - "___id": "T000002R019817", + "___id": "T000002R019809", "___s": true }, { @@ -178993,7 +179073,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#getPoint", "scope": "instance", - "___id": "T000002R019819", + "___id": "T000002R019811", "___s": true }, { @@ -179115,7 +179195,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#getPoints", "scope": "instance", - "___id": "T000002R019821", + "___id": "T000002R019813", "___s": true }, { @@ -179172,7 +179252,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#getRandomPoint", "scope": "instance", - "___id": "T000002R019823", + "___id": "T000002R019815", "___s": true }, { @@ -179260,7 +179340,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#setTo", "scope": "instance", - "___id": "T000002R019825", + "___id": "T000002R019817", "___s": true }, { @@ -179294,7 +179374,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#setEmpty", "scope": "instance", - "___id": "T000002R019831", + "___id": "T000002R019823", "___s": true }, { @@ -179358,7 +179438,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#setPosition", "scope": "instance", - "___id": "T000002R019833", + "___id": "T000002R019825", "___s": true }, { @@ -179422,7 +179502,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#setSize", "scope": "instance", - "___id": "T000002R019838", + "___id": "T000002R019830", "___s": true }, { @@ -179455,7 +179535,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#isEmpty", "scope": "instance", - "___id": "T000002R019843", + "___id": "T000002R019835", "___s": true }, { @@ -179512,7 +179592,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#getLineA", "scope": "instance", - "___id": "T000002R019845", + "___id": "T000002R019837", "___s": true }, { @@ -179569,7 +179649,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#getLineB", "scope": "instance", - "___id": "T000002R019848", + "___id": "T000002R019840", "___s": true }, { @@ -179626,7 +179706,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#getLineC", "scope": "instance", - "___id": "T000002R019851", + "___id": "T000002R019843", "___s": true }, { @@ -179683,7 +179763,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle#getLineD", "scope": "instance", - "___id": "T000002R019854", + "___id": "T000002R019846", "___s": true }, { @@ -179711,7 +179791,7 @@ "longname": "Phaser.Geom.Rectangle#left", "scope": "instance", "kind": "member", - "___id": "T000002R019857", + "___id": "T000002R019849", "___s": true }, { @@ -179739,7 +179819,7 @@ "longname": "Phaser.Geom.Rectangle#right", "scope": "instance", "kind": "member", - "___id": "T000002R019864", + "___id": "T000002R019856", "___s": true }, { @@ -179767,7 +179847,7 @@ "longname": "Phaser.Geom.Rectangle#top", "scope": "instance", "kind": "member", - "___id": "T000002R019870", + "___id": "T000002R019862", "___s": true }, { @@ -179795,7 +179875,7 @@ "longname": "Phaser.Geom.Rectangle#bottom", "scope": "instance", "kind": "member", - "___id": "T000002R019877", + "___id": "T000002R019869", "___s": true }, { @@ -179823,7 +179903,7 @@ "longname": "Phaser.Geom.Rectangle#centerX", "scope": "instance", "kind": "member", - "___id": "T000002R019883", + "___id": "T000002R019875", "___s": true }, { @@ -179851,7 +179931,7 @@ "longname": "Phaser.Geom.Rectangle#centerY", "scope": "instance", "kind": "member", - "___id": "T000002R019888", + "___id": "T000002R019880", "___s": true }, { @@ -179912,7 +179992,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.SameDimensions", "scope": "static", - "___id": "T000002R019894", + "___id": "T000002R019886", "___s": true }, { @@ -179994,7 +180074,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Scale", "scope": "static", - "___id": "T000002R019897", + "___id": "T000002R019889", "___s": true }, { @@ -180077,7 +180157,7 @@ "memberof": "Phaser.Geom.Rectangle", "longname": "Phaser.Geom.Rectangle.Union", "scope": "static", - "___id": "T000002R019904", + "___id": "T000002R019896", "___s": true }, { @@ -180125,7 +180205,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.Area", "scope": "static", - "___id": "T000002R019912", + "___id": "T000002R019904", "___s": true }, { @@ -180199,7 +180279,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.BuildEquilateral", "scope": "static", - "___id": "T000002R019922", + "___id": "T000002R019914", "___s": true }, { @@ -180352,7 +180432,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.BuildFromPolygon", "scope": "static", - "___id": "T000002R019934", + "___id": "T000002R019926", "___s": true }, { @@ -180439,7 +180519,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.BuildRight", "scope": "static", - "___id": "T000002R019963", + "___id": "T000002R019955", "___s": true }, { @@ -180489,7 +180569,7 @@ ], "longname": "CenterFunction", "scope": "global", - "___id": "T000002R019975", + "___id": "T000002R019967", "___s": true }, { @@ -180585,7 +180665,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.CenterOn", "scope": "static", - "___id": "T000002R019976", + "___id": "T000002R019968", "___s": true }, { @@ -180675,7 +180755,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.Centroid", "scope": "static", - "___id": "T000002R019984", + "___id": "T000002R019976", "___s": true }, { @@ -180745,7 +180825,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.CircumCenter", "scope": "static", - "___id": "T000002R019993", + "___id": "T000002R019985", "___s": true }, { @@ -180815,7 +180895,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.CircumCircle", "scope": "static", - "___id": "T000002R020009", + "___id": "T000002R020001", "___s": true }, { @@ -180863,7 +180943,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.Clone", "scope": "static", - "___id": "T000002R020041", + "___id": "T000002R020033", "___s": true }, { @@ -180937,7 +181017,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.Contains", "scope": "static", - "___id": "T000002R020044", + "___id": "T000002R020036", "___s": true }, { @@ -181045,7 +181125,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.ContainsArray", "scope": "static", - "___id": "T000002R020062", + "___id": "T000002R020054", "___s": true }, { @@ -181121,7 +181201,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.ContainsPoint", "scope": "static", - "___id": "T000002R020094", + "___id": "T000002R020086", "___s": true }, { @@ -181190,7 +181270,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.CopyFrom", "scope": "static", - "___id": "T000002R020097", + "___id": "T000002R020089", "___s": true }, { @@ -181252,7 +181332,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.Decompose", "scope": "static", - "___id": "T000002R020100", + "___id": "T000002R020092", "___s": true }, { @@ -181313,7 +181393,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.Equals", "scope": "static", - "___id": "T000002R020110", + "___id": "T000002R020102", "___s": true }, { @@ -181416,7 +181496,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.GetPoint", "scope": "static", - "___id": "T000002R020115", + "___id": "T000002R020107", "___s": true }, { @@ -181550,7 +181630,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.GetPoints", "scope": "static", - "___id": "T000002R020143", + "___id": "T000002R020135", "___s": true }, { @@ -181620,7 +181700,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.InCenter", "scope": "static", - "___id": "T000002R020175", + "___id": "T000002R020167", "___s": true }, { @@ -181702,7 +181782,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.Offset", "scope": "static", - "___id": "T000002R020217", + "___id": "T000002R020209", "___s": true }, { @@ -181750,7 +181830,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.Perimeter", "scope": "static", - "___id": "T000002R020227", + "___id": "T000002R020219", "___s": true }, { @@ -181820,7 +181900,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.Random", "scope": "static", - "___id": "T000002R020234", + "___id": "T000002R020226", "___s": true }, { @@ -181889,7 +181969,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.Rotate", "scope": "static", - "___id": "T000002R020250", + "___id": "T000002R020242", "___s": true }, { @@ -181971,7 +182051,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.RotateAroundPoint", "scope": "static", - "___id": "T000002R020255", + "___id": "T000002R020247", "___s": true }, { @@ -182066,7 +182146,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle.RotateAroundXY", "scope": "static", - "___id": "T000002R020258", + "___id": "T000002R020250", "___s": true }, { @@ -182177,7 +182257,7 @@ ], "scope": "static", "longname": "Phaser.Geom.Triangle", - "___id": "T000002R020282", + "___id": "T000002R020274", "___s": true }, { @@ -182206,7 +182286,7 @@ "longname": "Phaser.Geom.Triangle#type", "scope": "instance", "kind": "member", - "___id": "T000002R020291", + "___id": "T000002R020283", "___s": true }, { @@ -182235,7 +182315,7 @@ "longname": "Phaser.Geom.Triangle#x1", "scope": "instance", "kind": "member", - "___id": "T000002R020293", + "___id": "T000002R020285", "___s": true }, { @@ -182264,7 +182344,7 @@ "longname": "Phaser.Geom.Triangle#y1", "scope": "instance", "kind": "member", - "___id": "T000002R020295", + "___id": "T000002R020287", "___s": true }, { @@ -182293,7 +182373,7 @@ "longname": "Phaser.Geom.Triangle#x2", "scope": "instance", "kind": "member", - "___id": "T000002R020297", + "___id": "T000002R020289", "___s": true }, { @@ -182322,7 +182402,7 @@ "longname": "Phaser.Geom.Triangle#y2", "scope": "instance", "kind": "member", - "___id": "T000002R020299", + "___id": "T000002R020291", "___s": true }, { @@ -182351,7 +182431,7 @@ "longname": "Phaser.Geom.Triangle#x3", "scope": "instance", "kind": "member", - "___id": "T000002R020301", + "___id": "T000002R020293", "___s": true }, { @@ -182380,7 +182460,7 @@ "longname": "Phaser.Geom.Triangle#y3", "scope": "instance", "kind": "member", - "___id": "T000002R020303", + "___id": "T000002R020295", "___s": true }, { @@ -182441,7 +182521,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle#contains", "scope": "instance", - "___id": "T000002R020305", + "___id": "T000002R020297", "___s": true }, { @@ -182531,7 +182611,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle#getPoint", "scope": "instance", - "___id": "T000002R020307", + "___id": "T000002R020299", "___s": true }, { @@ -182653,7 +182733,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle#getPoints", "scope": "instance", - "___id": "T000002R020309", + "___id": "T000002R020301", "___s": true }, { @@ -182710,7 +182790,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle#getRandomPoint", "scope": "instance", - "___id": "T000002R020311", + "___id": "T000002R020303", "___s": true }, { @@ -182836,7 +182916,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle#setTo", "scope": "instance", - "___id": "T000002R020313", + "___id": "T000002R020305", "___s": true }, { @@ -182893,7 +182973,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle#getLineA", "scope": "instance", - "___id": "T000002R020327", + "___id": "T000002R020319", "___s": true }, { @@ -182950,7 +183030,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle#getLineB", "scope": "instance", - "___id": "T000002R020330", + "___id": "T000002R020322", "___s": true }, { @@ -183007,7 +183087,7 @@ "memberof": "Phaser.Geom.Triangle", "longname": "Phaser.Geom.Triangle#getLineC", "scope": "instance", - "___id": "T000002R020333", + "___id": "T000002R020325", "___s": true }, { @@ -183035,7 +183115,7 @@ "longname": "Phaser.Geom.Triangle#left", "scope": "instance", "kind": "member", - "___id": "T000002R020336", + "___id": "T000002R020328", "___s": true }, { @@ -183063,7 +183143,7 @@ "longname": "Phaser.Geom.Triangle#right", "scope": "instance", "kind": "member", - "___id": "T000002R020347", + "___id": "T000002R020339", "___s": true }, { @@ -183091,7 +183171,7 @@ "longname": "Phaser.Geom.Triangle#top", "scope": "instance", "kind": "member", - "___id": "T000002R020358", + "___id": "T000002R020350", "___s": true }, { @@ -183119,7 +183199,7 @@ "longname": "Phaser.Geom.Triangle#bottom", "scope": "instance", "kind": "member", - "___id": "T000002R020369", + "___id": "T000002R020361", "___s": true }, { @@ -183136,7 +183216,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Geom", "scope": "static", - "___id": "T000002R020381", + "___id": "T000002R020373", "___s": true }, { @@ -183164,7 +183244,7 @@ "longname": "Phaser.Input.MOUSE_DOWN", "scope": "static", "kind": "member", - "___id": "T000002R020383", + "___id": "T000002R020375", "___s": true }, { @@ -183192,7 +183272,7 @@ "longname": "Phaser.Input.MOUSE_MOVE", "scope": "static", "kind": "member", - "___id": "T000002R020385", + "___id": "T000002R020377", "___s": true }, { @@ -183220,7 +183300,7 @@ "longname": "Phaser.Input.MOUSE_UP", "scope": "static", "kind": "member", - "___id": "T000002R020387", + "___id": "T000002R020379", "___s": true }, { @@ -183248,7 +183328,7 @@ "longname": "Phaser.Input.TOUCH_START", "scope": "static", "kind": "member", - "___id": "T000002R020389", + "___id": "T000002R020381", "___s": true }, { @@ -183276,7 +183356,7 @@ "longname": "Phaser.Input.TOUCH_MOVE", "scope": "static", "kind": "member", - "___id": "T000002R020391", + "___id": "T000002R020383", "___s": true }, { @@ -183304,7 +183384,7 @@ "longname": "Phaser.Input.TOUCH_END", "scope": "static", "kind": "member", - "___id": "T000002R020393", + "___id": "T000002R020385", "___s": true }, { @@ -183332,7 +183412,7 @@ "longname": "Phaser.Input.POINTER_LOCK_CHANGE", "scope": "static", "kind": "member", - "___id": "T000002R020395", + "___id": "T000002R020387", "___s": true }, { @@ -183360,7 +183440,7 @@ "longname": "Phaser.Input.TOUCH_CANCEL", "scope": "static", "kind": "member", - "___id": "T000002R020397", + "___id": "T000002R020389", "___s": true }, { @@ -183388,7 +183468,7 @@ "longname": "Phaser.Input.MOUSE_WHEEL", "scope": "static", "kind": "member", - "___id": "T000002R020399", + "___id": "T000002R020391", "___s": true }, { @@ -183462,7 +183542,7 @@ "memberof": "Phaser.Input", "longname": "Phaser.Input.CreateInteractiveObject", "scope": "static", - "___id": "T000002R020402", + "___id": "T000002R020394", "___s": true }, { @@ -183523,7 +183603,7 @@ "memberof": "Phaser.Input", "longname": "Phaser.Input.CreatePixelPerfectHandler", "scope": "static", - "___id": "T000002R020426", + "___id": "T000002R020418", "___s": true }, { @@ -183551,7 +183631,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:BOOT", "scope": "instance", - "___id": "T000002R020430", + "___id": "T000002R020422", "___s": true }, { @@ -183579,7 +183659,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:DESTROY", "scope": "instance", - "___id": "T000002R020432", + "___id": "T000002R020424", "___s": true }, { @@ -183648,7 +183728,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:DRAG_END", "scope": "instance", - "___id": "T000002R020434", + "___id": "T000002R020426", "___s": true }, { @@ -183717,7 +183797,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:DRAG_ENTER", "scope": "instance", - "___id": "T000002R020436", + "___id": "T000002R020428", "___s": true }, { @@ -183799,7 +183879,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:DRAG", "scope": "instance", - "___id": "T000002R020438", + "___id": "T000002R020430", "___s": true }, { @@ -183868,7 +183948,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:DRAG_LEAVE", "scope": "instance", - "___id": "T000002R020440", + "___id": "T000002R020432", "___s": true }, { @@ -183937,7 +184017,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:DRAG_OVER", "scope": "instance", - "___id": "T000002R020442", + "___id": "T000002R020434", "___s": true }, { @@ -183993,7 +184073,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:DRAG_START", "scope": "instance", - "___id": "T000002R020444", + "___id": "T000002R020436", "___s": true }, { @@ -184062,7 +184142,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:DROP", "scope": "instance", - "___id": "T000002R020446", + "___id": "T000002R020438", "___s": true }, { @@ -184131,7 +184211,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_DOWN", "scope": "instance", - "___id": "T000002R020448", + "___id": "T000002R020440", "___s": true }, { @@ -184213,7 +184293,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_DRAG_END", "scope": "instance", - "___id": "T000002R020450", + "___id": "T000002R020442", "___s": true }, { @@ -184269,7 +184349,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_DRAG_ENTER", "scope": "instance", - "___id": "T000002R020452", + "___id": "T000002R020444", "___s": true }, { @@ -184338,7 +184418,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_DRAG", "scope": "instance", - "___id": "T000002R020454", + "___id": "T000002R020446", "___s": true }, { @@ -184394,7 +184474,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_DRAG_LEAVE", "scope": "instance", - "___id": "T000002R020456", + "___id": "T000002R020448", "___s": true }, { @@ -184450,7 +184530,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_DRAG_OVER", "scope": "instance", - "___id": "T000002R020458", + "___id": "T000002R020450", "___s": true }, { @@ -184519,7 +184599,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_DRAG_START", "scope": "instance", - "___id": "T000002R020460", + "___id": "T000002R020452", "___s": true }, { @@ -184575,7 +184655,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_DROP", "scope": "instance", - "___id": "T000002R020462", + "___id": "T000002R020454", "___s": true }, { @@ -184644,7 +184724,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_MOVE", "scope": "instance", - "___id": "T000002R020464", + "___id": "T000002R020456", "___s": true }, { @@ -184713,7 +184793,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_OUT", "scope": "instance", - "___id": "T000002R020466", + "___id": "T000002R020458", "___s": true }, { @@ -184782,7 +184862,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_OVER", "scope": "instance", - "___id": "T000002R020468", + "___id": "T000002R020460", "___s": true }, { @@ -184864,7 +184944,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_POINTER_DOWN", "scope": "instance", - "___id": "T000002R020470", + "___id": "T000002R020462", "___s": true }, { @@ -184946,7 +185026,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_POINTER_MOVE", "scope": "instance", - "___id": "T000002R020472", + "___id": "T000002R020464", "___s": true }, { @@ -185002,7 +185082,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_POINTER_OUT", "scope": "instance", - "___id": "T000002R020474", + "___id": "T000002R020466", "___s": true }, { @@ -185084,7 +185164,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_POINTER_OVER", "scope": "instance", - "___id": "T000002R020476", + "___id": "T000002R020468", "___s": true }, { @@ -185166,7 +185246,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_POINTER_UP", "scope": "instance", - "___id": "T000002R020478", + "___id": "T000002R020470", "___s": true }, { @@ -185261,7 +185341,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_POINTER_WHEEL", "scope": "instance", - "___id": "T000002R020480", + "___id": "T000002R020472", "___s": true }, { @@ -185330,7 +185410,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_UP", "scope": "instance", - "___id": "T000002R020482", + "___id": "T000002R020474", "___s": true }, { @@ -185438,7 +185518,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAMEOBJECT_WHEEL", "scope": "instance", - "___id": "T000002R020484", + "___id": "T000002R020476", "___s": true }, { @@ -185504,7 +185584,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAME_OUT", "scope": "instance", - "___id": "T000002R020486", + "___id": "T000002R020478", "___s": true }, { @@ -185570,7 +185650,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:GAME_OVER", "scope": "instance", - "___id": "T000002R020488", + "___id": "T000002R020480", "___s": true }, { @@ -185587,7 +185667,7 @@ "memberof": "Phaser.Input", "longname": "Phaser.Input.Events", "scope": "static", - "___id": "T000002R020490", + "___id": "T000002R020482", "___s": true }, { @@ -185615,7 +185695,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:MANAGER_BOOT", "scope": "instance", - "___id": "T000002R020538", + "___id": "T000002R020530", "___s": true }, { @@ -185671,7 +185751,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:MANAGER_PROCESS", "scope": "instance", - "___id": "T000002R020540", + "___id": "T000002R020532", "___s": true }, { @@ -185699,7 +185779,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:MANAGER_UPDATE", "scope": "instance", - "___id": "T000002R020542", + "___id": "T000002R020534", "___s": true }, { @@ -185755,7 +185835,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:POINTERLOCK_CHANGE", "scope": "instance", - "___id": "T000002R020544", + "___id": "T000002R020536", "___s": true }, { @@ -185820,7 +185900,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:POINTER_DOWN", "scope": "instance", - "___id": "T000002R020546", + "___id": "T000002R020538", "___s": true }, { @@ -185863,7 +185943,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:POINTER_DOWN_OUTSIDE", "scope": "instance", - "___id": "T000002R020548", + "___id": "T000002R020540", "___s": true }, { @@ -185928,7 +186008,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:POINTER_MOVE", "scope": "instance", - "___id": "T000002R020550", + "___id": "T000002R020542", "___s": true }, { @@ -185993,7 +186073,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:POINTER_OUT", "scope": "instance", - "___id": "T000002R020552", + "___id": "T000002R020544", "___s": true }, { @@ -186058,7 +186138,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:POINTER_OVER", "scope": "instance", - "___id": "T000002R020554", + "___id": "T000002R020546", "___s": true }, { @@ -186123,7 +186203,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:POINTER_UP", "scope": "instance", - "___id": "T000002R020556", + "___id": "T000002R020548", "___s": true }, { @@ -186166,7 +186246,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:POINTER_UP_OUTSIDE", "scope": "instance", - "___id": "T000002R020558", + "___id": "T000002R020550", "___s": true }, { @@ -186270,7 +186350,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:POINTER_WHEEL", "scope": "instance", - "___id": "T000002R020560", + "___id": "T000002R020552", "___s": true }, { @@ -186298,7 +186378,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:PRE_UPDATE", "scope": "instance", - "___id": "T000002R020562", + "___id": "T000002R020554", "___s": true }, { @@ -186326,7 +186406,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:SHUTDOWN", "scope": "instance", - "___id": "T000002R020564", + "___id": "T000002R020556", "___s": true }, { @@ -186354,7 +186434,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:START", "scope": "instance", - "___id": "T000002R020566", + "___id": "T000002R020558", "___s": true }, { @@ -186410,7 +186490,7 @@ "memberof": "Phaser.Input.Events", "longname": "Phaser.Input.Events#event:UPDATE", "scope": "instance", - "___id": "T000002R020568", + "___id": "T000002R020560", "___s": true }, { @@ -186457,7 +186537,7 @@ ], "scope": "static", "longname": "Phaser.Input.Gamepad.Axis", - "___id": "T000002R020571", + "___id": "T000002R020563", "___s": true }, { @@ -186485,7 +186565,7 @@ "longname": "Phaser.Input.Gamepad.Axis#pad", "scope": "instance", "kind": "member", - "___id": "T000002R020574", + "___id": "T000002R020566", "___s": true }, { @@ -186513,7 +186593,7 @@ "longname": "Phaser.Input.Gamepad.Axis#events", "scope": "instance", "kind": "member", - "___id": "T000002R020576", + "___id": "T000002R020568", "___s": true }, { @@ -186541,7 +186621,7 @@ "longname": "Phaser.Input.Gamepad.Axis#index", "scope": "instance", "kind": "member", - "___id": "T000002R020578", + "___id": "T000002R020570", "___s": true }, { @@ -186570,7 +186650,7 @@ "longname": "Phaser.Input.Gamepad.Axis#value", "scope": "instance", "kind": "member", - "___id": "T000002R020580", + "___id": "T000002R020572", "___s": true }, { @@ -186599,7 +186679,7 @@ "longname": "Phaser.Input.Gamepad.Axis#threshold", "scope": "instance", "kind": "member", - "___id": "T000002R020582", + "___id": "T000002R020574", "___s": true }, { @@ -186632,7 +186712,7 @@ "memberof": "Phaser.Input.Gamepad.Axis", "longname": "Phaser.Input.Gamepad.Axis#getValue", "scope": "instance", - "___id": "T000002R020587", + "___id": "T000002R020579", "___s": true }, { @@ -186651,7 +186731,7 @@ "memberof": "Phaser.Input.Gamepad.Axis", "longname": "Phaser.Input.Gamepad.Axis#destroy", "scope": "instance", - "___id": "T000002R020589", + "___id": "T000002R020581", "___s": true }, { @@ -186698,7 +186778,7 @@ ], "scope": "static", "longname": "Phaser.Input.Gamepad.Button", - "___id": "T000002R020596", + "___id": "T000002R020588", "___s": true }, { @@ -186726,7 +186806,7 @@ "longname": "Phaser.Input.Gamepad.Button#pad", "scope": "instance", "kind": "member", - "___id": "T000002R020599", + "___id": "T000002R020591", "___s": true }, { @@ -186754,7 +186834,7 @@ "longname": "Phaser.Input.Gamepad.Button#events", "scope": "instance", "kind": "member", - "___id": "T000002R020601", + "___id": "T000002R020593", "___s": true }, { @@ -186782,7 +186862,7 @@ "longname": "Phaser.Input.Gamepad.Button#index", "scope": "instance", "kind": "member", - "___id": "T000002R020603", + "___id": "T000002R020595", "___s": true }, { @@ -186811,7 +186891,7 @@ "longname": "Phaser.Input.Gamepad.Button#value", "scope": "instance", "kind": "member", - "___id": "T000002R020605", + "___id": "T000002R020597", "___s": true }, { @@ -186840,7 +186920,7 @@ "longname": "Phaser.Input.Gamepad.Button#threshold", "scope": "instance", "kind": "member", - "___id": "T000002R020607", + "___id": "T000002R020599", "___s": true }, { @@ -186869,7 +186949,7 @@ "longname": "Phaser.Input.Gamepad.Button#pressed", "scope": "instance", "kind": "member", - "___id": "T000002R020609", + "___id": "T000002R020601", "___s": true }, { @@ -186888,7 +186968,7 @@ "memberof": "Phaser.Input.Gamepad.Button", "longname": "Phaser.Input.Gamepad.Button#destroy", "scope": "instance", - "___id": "T000002R020618", + "___id": "T000002R020610", "___s": true }, { @@ -186905,7 +186985,7 @@ "memberof": "Phaser.Input.Gamepad", "longname": "Phaser.Input.Gamepad.Configs", "scope": "static", - "___id": "T000002R020623", + "___id": "T000002R020615", "___s": true }, { @@ -186924,7 +187004,7 @@ "memberof": "Phaser.Input.Gamepad.Configs", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB", "scope": "static", - "___id": "T000002R020628", + "___id": "T000002R020620", "___s": true }, { @@ -186952,7 +187032,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.SNES_USB", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB.UP", "scope": "static", - "___id": "T000002R020630", + "___id": "T000002R020622", "___s": true }, { @@ -186980,7 +187060,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.SNES_USB", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB.DOWN", "scope": "static", - "___id": "T000002R020632", + "___id": "T000002R020624", "___s": true }, { @@ -187008,7 +187088,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.SNES_USB", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB.LEFT", "scope": "static", - "___id": "T000002R020634", + "___id": "T000002R020626", "___s": true }, { @@ -187036,7 +187116,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.SNES_USB", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB.RIGHT", "scope": "static", - "___id": "T000002R020636", + "___id": "T000002R020628", "___s": true }, { @@ -187064,7 +187144,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.SNES_USB", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB.SELECT", "scope": "static", - "___id": "T000002R020638", + "___id": "T000002R020630", "___s": true }, { @@ -187092,7 +187172,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.SNES_USB", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB.START", "scope": "static", - "___id": "T000002R020640", + "___id": "T000002R020632", "___s": true }, { @@ -187120,7 +187200,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.SNES_USB", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB.B", "scope": "static", - "___id": "T000002R020642", + "___id": "T000002R020634", "___s": true }, { @@ -187148,7 +187228,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.SNES_USB", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB.A", "scope": "static", - "___id": "T000002R020644", + "___id": "T000002R020636", "___s": true }, { @@ -187176,7 +187256,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.SNES_USB", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB.Y", "scope": "static", - "___id": "T000002R020646", + "___id": "T000002R020638", "___s": true }, { @@ -187204,7 +187284,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.SNES_USB", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB.X", "scope": "static", - "___id": "T000002R020648", + "___id": "T000002R020640", "___s": true }, { @@ -187232,7 +187312,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.SNES_USB", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB.LEFT_SHOULDER", "scope": "static", - "___id": "T000002R020650", + "___id": "T000002R020642", "___s": true }, { @@ -187260,7 +187340,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.SNES_USB", "longname": "Phaser.Input.Gamepad.Configs.SNES_USB.RIGHT_SHOULDER", "scope": "static", - "___id": "T000002R020652", + "___id": "T000002R020644", "___s": true }, { @@ -187279,7 +187359,7 @@ "memberof": "Phaser.Input.Gamepad.Configs", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "scope": "static", - "___id": "T000002R020654", + "___id": "T000002R020646", "___s": true }, { @@ -187307,7 +187387,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.UP", "scope": "static", - "___id": "T000002R020656", + "___id": "T000002R020648", "___s": true }, { @@ -187335,7 +187415,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.DOWN", "scope": "static", - "___id": "T000002R020658", + "___id": "T000002R020650", "___s": true }, { @@ -187363,7 +187443,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.LEFT", "scope": "static", - "___id": "T000002R020660", + "___id": "T000002R020652", "___s": true }, { @@ -187391,7 +187471,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.RIGHT", "scope": "static", - "___id": "T000002R020662", + "___id": "T000002R020654", "___s": true }, { @@ -187419,7 +187499,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.SHARE", "scope": "static", - "___id": "T000002R020664", + "___id": "T000002R020656", "___s": true }, { @@ -187447,7 +187527,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.OPTIONS", "scope": "static", - "___id": "T000002R020666", + "___id": "T000002R020658", "___s": true }, { @@ -187475,7 +187555,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.PS", "scope": "static", - "___id": "T000002R020668", + "___id": "T000002R020660", "___s": true }, { @@ -187503,7 +187583,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.TOUCHBAR", "scope": "static", - "___id": "T000002R020670", + "___id": "T000002R020662", "___s": true }, { @@ -187531,7 +187611,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.X", "scope": "static", - "___id": "T000002R020672", + "___id": "T000002R020664", "___s": true }, { @@ -187559,7 +187639,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.CIRCLE", "scope": "static", - "___id": "T000002R020674", + "___id": "T000002R020666", "___s": true }, { @@ -187587,7 +187667,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.SQUARE", "scope": "static", - "___id": "T000002R020676", + "___id": "T000002R020668", "___s": true }, { @@ -187615,7 +187695,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.TRIANGLE", "scope": "static", - "___id": "T000002R020678", + "___id": "T000002R020670", "___s": true }, { @@ -187643,7 +187723,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.L1", "scope": "static", - "___id": "T000002R020680", + "___id": "T000002R020672", "___s": true }, { @@ -187671,7 +187751,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.R1", "scope": "static", - "___id": "T000002R020682", + "___id": "T000002R020674", "___s": true }, { @@ -187699,7 +187779,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.L2", "scope": "static", - "___id": "T000002R020684", + "___id": "T000002R020676", "___s": true }, { @@ -187727,7 +187807,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.R2", "scope": "static", - "___id": "T000002R020686", + "___id": "T000002R020678", "___s": true }, { @@ -187755,7 +187835,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.L3", "scope": "static", - "___id": "T000002R020688", + "___id": "T000002R020680", "___s": true }, { @@ -187783,7 +187863,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.R3", "scope": "static", - "___id": "T000002R020690", + "___id": "T000002R020682", "___s": true }, { @@ -187811,7 +187891,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.LEFT_STICK_H", "scope": "static", - "___id": "T000002R020692", + "___id": "T000002R020684", "___s": true }, { @@ -187839,7 +187919,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.LEFT_STICK_V", "scope": "static", - "___id": "T000002R020694", + "___id": "T000002R020686", "___s": true }, { @@ -187867,7 +187947,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.RIGHT_STICK_H", "scope": "static", - "___id": "T000002R020696", + "___id": "T000002R020688", "___s": true }, { @@ -187895,7 +187975,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4", "longname": "Phaser.Input.Gamepad.Configs.DUALSHOCK_4.RIGHT_STICK_V", "scope": "static", - "___id": "T000002R020698", + "___id": "T000002R020690", "___s": true }, { @@ -187914,7 +187994,7 @@ "memberof": "Phaser.Input.Gamepad.Configs", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360", "scope": "static", - "___id": "T000002R020700", + "___id": "T000002R020692", "___s": true }, { @@ -187942,7 +188022,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.UP", "scope": "static", - "___id": "T000002R020702", + "___id": "T000002R020694", "___s": true }, { @@ -187970,7 +188050,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.DOWN", "scope": "static", - "___id": "T000002R020704", + "___id": "T000002R020696", "___s": true }, { @@ -187998,7 +188078,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.LEFT", "scope": "static", - "___id": "T000002R020706", + "___id": "T000002R020698", "___s": true }, { @@ -188026,7 +188106,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.RIGHT", "scope": "static", - "___id": "T000002R020708", + "___id": "T000002R020700", "___s": true }, { @@ -188054,7 +188134,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.MENU", "scope": "static", - "___id": "T000002R020710", + "___id": "T000002R020702", "___s": true }, { @@ -188082,7 +188162,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.A", "scope": "static", - "___id": "T000002R020712", + "___id": "T000002R020704", "___s": true }, { @@ -188110,7 +188190,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.B", "scope": "static", - "___id": "T000002R020714", + "___id": "T000002R020706", "___s": true }, { @@ -188138,7 +188218,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.X", "scope": "static", - "___id": "T000002R020716", + "___id": "T000002R020708", "___s": true }, { @@ -188166,7 +188246,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.Y", "scope": "static", - "___id": "T000002R020718", + "___id": "T000002R020710", "___s": true }, { @@ -188194,7 +188274,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.LB", "scope": "static", - "___id": "T000002R020720", + "___id": "T000002R020712", "___s": true }, { @@ -188222,7 +188302,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.RB", "scope": "static", - "___id": "T000002R020722", + "___id": "T000002R020714", "___s": true }, { @@ -188250,7 +188330,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.LT", "scope": "static", - "___id": "T000002R020724", + "___id": "T000002R020716", "___s": true }, { @@ -188278,7 +188358,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.RT", "scope": "static", - "___id": "T000002R020726", + "___id": "T000002R020718", "___s": true }, { @@ -188306,7 +188386,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.BACK", "scope": "static", - "___id": "T000002R020728", + "___id": "T000002R020720", "___s": true }, { @@ -188334,7 +188414,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.START", "scope": "static", - "___id": "T000002R020730", + "___id": "T000002R020722", "___s": true }, { @@ -188362,7 +188442,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.LS", "scope": "static", - "___id": "T000002R020732", + "___id": "T000002R020724", "___s": true }, { @@ -188390,7 +188470,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.RS", "scope": "static", - "___id": "T000002R020734", + "___id": "T000002R020726", "___s": true }, { @@ -188418,7 +188498,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.LEFT_STICK_H", "scope": "static", - "___id": "T000002R020736", + "___id": "T000002R020728", "___s": true }, { @@ -188446,7 +188526,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.LEFT_STICK_V", "scope": "static", - "___id": "T000002R020738", + "___id": "T000002R020730", "___s": true }, { @@ -188474,7 +188554,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.RIGHT_STICK_H", "scope": "static", - "___id": "T000002R020740", + "___id": "T000002R020732", "___s": true }, { @@ -188502,7 +188582,7 @@ "memberof": "Phaser.Input.Gamepad.Configs.XBOX_360", "longname": "Phaser.Input.Gamepad.Configs.XBOX_360.RIGHT_STICK_V", "scope": "static", - "___id": "T000002R020742", + "___id": "T000002R020734", "___s": true }, { @@ -188571,7 +188651,7 @@ "memberof": "Phaser.Input.Gamepad.Events", "longname": "Phaser.Input.Gamepad.Events#event:BUTTON_DOWN", "scope": "instance", - "___id": "T000002R020744", + "___id": "T000002R020736", "___s": true }, { @@ -188640,7 +188720,7 @@ "memberof": "Phaser.Input.Gamepad.Events", "longname": "Phaser.Input.Gamepad.Events#event:BUTTON_UP", "scope": "instance", - "___id": "T000002R020746", + "___id": "T000002R020738", "___s": true }, { @@ -188696,7 +188776,7 @@ "memberof": "Phaser.Input.Gamepad.Events", "longname": "Phaser.Input.Gamepad.Events#event:CONNECTED", "scope": "instance", - "___id": "T000002R020748", + "___id": "T000002R020740", "___s": true }, { @@ -188752,7 +188832,7 @@ "memberof": "Phaser.Input.Gamepad.Events", "longname": "Phaser.Input.Gamepad.Events#event:DISCONNECTED", "scope": "instance", - "___id": "T000002R020750", + "___id": "T000002R020742", "___s": true }, { @@ -188821,7 +188901,7 @@ "memberof": "Phaser.Input.Gamepad.Events", "longname": "Phaser.Input.Gamepad.Events#event:GAMEPAD_BUTTON_DOWN", "scope": "instance", - "___id": "T000002R020752", + "___id": "T000002R020744", "___s": true }, { @@ -188890,7 +188970,7 @@ "memberof": "Phaser.Input.Gamepad.Events", "longname": "Phaser.Input.Gamepad.Events#event:GAMEPAD_BUTTON_UP", "scope": "instance", - "___id": "T000002R020754", + "___id": "T000002R020746", "___s": true }, { @@ -188907,7 +188987,7 @@ "memberof": "Phaser.Input.Gamepad", "longname": "Phaser.Input.Gamepad.Events", "scope": "static", - "___id": "T000002R020756", + "___id": "T000002R020748", "___s": true }, { @@ -188957,7 +189037,7 @@ ], "scope": "static", "longname": "Phaser.Input.Gamepad.Gamepad", - "___id": "T000002R020769", + "___id": "T000002R020761", "___s": true }, { @@ -188985,7 +189065,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#manager", "scope": "instance", "kind": "member", - "___id": "T000002R020773", + "___id": "T000002R020765", "___s": true }, { @@ -189013,7 +189093,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#pad", "scope": "instance", "kind": "member", - "___id": "T000002R020775", + "___id": "T000002R020767", "___s": true }, { @@ -189041,7 +189121,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#id", "scope": "instance", "kind": "member", - "___id": "T000002R020777", + "___id": "T000002R020769", "___s": true }, { @@ -189069,7 +189149,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#index", "scope": "instance", "kind": "member", - "___id": "T000002R020779", + "___id": "T000002R020771", "___s": true }, { @@ -189106,7 +189186,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#buttons", "scope": "instance", "kind": "member", - "___id": "T000002R020783", + "___id": "T000002R020775", "___s": true }, { @@ -189143,7 +189223,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#axes", "scope": "instance", "kind": "member", - "___id": "T000002R020787", + "___id": "T000002R020779", "___s": true }, { @@ -189171,7 +189251,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#vibration", "scope": "instance", "kind": "member", - "___id": "T000002R020789", + "___id": "T000002R020781", "___s": true }, { @@ -189199,7 +189279,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#leftStick", "scope": "instance", "kind": "member", - "___id": "T000002R020828", + "___id": "T000002R020820", "___s": true }, { @@ -189227,7 +189307,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#rightStick", "scope": "instance", "kind": "member", - "___id": "T000002R020830", + "___id": "T000002R020822", "___s": true }, { @@ -189260,7 +189340,7 @@ "memberof": "Phaser.Input.Gamepad.Gamepad", "longname": "Phaser.Input.Gamepad.Gamepad#getAxisTotal", "scope": "instance", - "___id": "T000002R020834", + "___id": "T000002R020826", "___s": true }, { @@ -189308,7 +189388,7 @@ "memberof": "Phaser.Input.Gamepad.Gamepad", "longname": "Phaser.Input.Gamepad.Gamepad#getAxisValue", "scope": "instance", - "___id": "T000002R020836", + "___id": "T000002R020828", "___s": true }, { @@ -189342,7 +189422,7 @@ "memberof": "Phaser.Input.Gamepad.Gamepad", "longname": "Phaser.Input.Gamepad.Gamepad#setAxisThreshold", "scope": "instance", - "___id": "T000002R020838", + "___id": "T000002R020830", "___s": true }, { @@ -189375,7 +189455,7 @@ "memberof": "Phaser.Input.Gamepad.Gamepad", "longname": "Phaser.Input.Gamepad.Gamepad#getButtonTotal", "scope": "instance", - "___id": "T000002R020842", + "___id": "T000002R020834", "___s": true }, { @@ -189423,7 +189503,7 @@ "memberof": "Phaser.Input.Gamepad.Gamepad", "longname": "Phaser.Input.Gamepad.Gamepad#getButtonValue", "scope": "instance", - "___id": "T000002R020844", + "___id": "T000002R020836", "___s": true }, { @@ -189471,7 +189551,7 @@ "memberof": "Phaser.Input.Gamepad.Gamepad", "longname": "Phaser.Input.Gamepad.Gamepad#isButtonDown", "scope": "instance", - "___id": "T000002R020846", + "___id": "T000002R020838", "___s": true }, { @@ -189491,7 +189571,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R020859", + "___id": "T000002R020851", "___s": true }, { @@ -189520,7 +189600,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#connected", "scope": "instance", "kind": "member", - "___id": "T000002R020868", + "___id": "T000002R020860", "___s": true }, { @@ -189548,7 +189628,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#timestamp", "scope": "instance", "kind": "member", - "___id": "T000002R020871", + "___id": "T000002R020863", "___s": true }, { @@ -189576,7 +189656,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#left", "scope": "instance", "kind": "member", - "___id": "T000002R020874", + "___id": "T000002R020866", "___s": true }, { @@ -189604,7 +189684,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#right", "scope": "instance", "kind": "member", - "___id": "T000002R020877", + "___id": "T000002R020869", "___s": true }, { @@ -189632,7 +189712,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#up", "scope": "instance", "kind": "member", - "___id": "T000002R020880", + "___id": "T000002R020872", "___s": true }, { @@ -189660,7 +189740,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#down", "scope": "instance", "kind": "member", - "___id": "T000002R020883", + "___id": "T000002R020875", "___s": true }, { @@ -189688,7 +189768,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#A", "scope": "instance", "kind": "member", - "___id": "T000002R020886", + "___id": "T000002R020878", "___s": true }, { @@ -189716,7 +189796,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#Y", "scope": "instance", "kind": "member", - "___id": "T000002R020889", + "___id": "T000002R020881", "___s": true }, { @@ -189744,7 +189824,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#X", "scope": "instance", "kind": "member", - "___id": "T000002R020892", + "___id": "T000002R020884", "___s": true }, { @@ -189772,7 +189852,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#B", "scope": "instance", "kind": "member", - "___id": "T000002R020895", + "___id": "T000002R020887", "___s": true }, { @@ -189800,7 +189880,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#L1", "scope": "instance", "kind": "member", - "___id": "T000002R020898", + "___id": "T000002R020890", "___s": true }, { @@ -189828,7 +189908,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#L2", "scope": "instance", "kind": "member", - "___id": "T000002R020901", + "___id": "T000002R020893", "___s": true }, { @@ -189856,7 +189936,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#R1", "scope": "instance", "kind": "member", - "___id": "T000002R020904", + "___id": "T000002R020896", "___s": true }, { @@ -189884,7 +189964,7 @@ "longname": "Phaser.Input.Gamepad.Gamepad#R2", "scope": "instance", "kind": "member", - "___id": "T000002R020907", + "___id": "T000002R020899", "___s": true }, { @@ -189921,7 +190001,7 @@ ], "scope": "static", "longname": "Phaser.Input.Gamepad.GamepadPlugin", - "___id": "T000002R020918", + "___id": "T000002R020910", "___s": true }, { @@ -189949,7 +190029,7 @@ "longname": "Phaser.Input.Gamepad.GamepadPlugin#scene", "scope": "instance", "kind": "member", - "___id": "T000002R020922", + "___id": "T000002R020914", "___s": true }, { @@ -189977,7 +190057,7 @@ "longname": "Phaser.Input.Gamepad.GamepadPlugin#settings", "scope": "instance", "kind": "member", - "___id": "T000002R020924", + "___id": "T000002R020916", "___s": true }, { @@ -190005,7 +190085,7 @@ "longname": "Phaser.Input.Gamepad.GamepadPlugin#sceneInputPlugin", "scope": "instance", "kind": "member", - "___id": "T000002R020926", + "___id": "T000002R020918", "___s": true }, { @@ -190034,7 +190114,7 @@ "longname": "Phaser.Input.Gamepad.GamepadPlugin#enabled", "scope": "instance", "kind": "member", - "___id": "T000002R020928", + "___id": "T000002R020920", "___s": true }, { @@ -190062,7 +190142,7 @@ "longname": "Phaser.Input.Gamepad.GamepadPlugin#target", "scope": "instance", "kind": "member", - "___id": "T000002R020930", + "___id": "T000002R020922", "___s": true }, { @@ -190100,7 +190180,7 @@ "longname": "Phaser.Input.Gamepad.GamepadPlugin#gamepads", "scope": "instance", "kind": "member", - "___id": "T000002R020932", + "___id": "T000002R020924", "___s": true }, { @@ -190133,7 +190213,7 @@ "memberof": "Phaser.Input.Gamepad.GamepadPlugin", "longname": "Phaser.Input.Gamepad.GamepadPlugin#isActive", "scope": "instance", - "___id": "T000002R020955", + "___id": "T000002R020947", "___s": true }, { @@ -190152,7 +190232,7 @@ "memberof": "Phaser.Input.Gamepad.GamepadPlugin", "longname": "Phaser.Input.Gamepad.GamepadPlugin#disconnectAll", "scope": "instance", - "___id": "T000002R020966", + "___id": "T000002R020958", "___s": true }, { @@ -190194,7 +190274,7 @@ "memberof": "Phaser.Input.Gamepad.GamepadPlugin", "longname": "Phaser.Input.Gamepad.GamepadPlugin#getAll", "scope": "instance", - "___id": "T000002R020986", + "___id": "T000002R020978", "___s": true }, { @@ -190242,7 +190322,7 @@ "memberof": "Phaser.Input.Gamepad.GamepadPlugin", "longname": "Phaser.Input.Gamepad.GamepadPlugin#getPad", "scope": "instance", - "___id": "T000002R020991", + "___id": "T000002R020983", "___s": true }, { @@ -190270,7 +190350,7 @@ "longname": "Phaser.Input.Gamepad.GamepadPlugin#total", "scope": "instance", "kind": "member", - "___id": "T000002R021012", + "___id": "T000002R021004", "___s": true }, { @@ -190298,7 +190378,7 @@ "longname": "Phaser.Input.Gamepad.GamepadPlugin#pad1", "scope": "instance", "kind": "member", - "___id": "T000002R021015", + "___id": "T000002R021007", "___s": true }, { @@ -190326,7 +190406,7 @@ "longname": "Phaser.Input.Gamepad.GamepadPlugin#pad2", "scope": "instance", "kind": "member", - "___id": "T000002R021018", + "___id": "T000002R021010", "___s": true }, { @@ -190354,7 +190434,7 @@ "longname": "Phaser.Input.Gamepad.GamepadPlugin#pad3", "scope": "instance", "kind": "member", - "___id": "T000002R021021", + "___id": "T000002R021013", "___s": true }, { @@ -190382,7 +190462,7 @@ "longname": "Phaser.Input.Gamepad.GamepadPlugin#pad4", "scope": "instance", "kind": "member", - "___id": "T000002R021024", + "___id": "T000002R021016", "___s": true }, { @@ -190412,7 +190492,7 @@ "longname": "Phaser.Input.InputPlugin#gamepad", "scope": "instance", "kind": "member", - "___id": "T000002R021027", + "___id": "T000002R021019", "___s": true }, { @@ -190429,7 +190509,7 @@ "memberof": "Phaser.Input", "longname": "Phaser.Input.Gamepad", "scope": "static", - "___id": "T000002R021029", + "___id": "T000002R021021", "___s": true }, { @@ -190446,7 +190526,7 @@ "memberof": "Phaser.Types.Input", "longname": "Phaser.Types.Input.Gamepad", "scope": "static", - "___id": "T000002R021037", + "___id": "T000002R021029", "___s": true }, { @@ -190502,7 +190582,7 @@ "memberof": "Phaser.Types.Input.Gamepad", "longname": "Phaser.Types.Input.Gamepad.Pad", "scope": "static", - "___id": "T000002R021038", + "___id": "T000002R021030", "___s": true }, { @@ -190519,7 +190599,7 @@ "memberof": "Phaser", "longname": "Phaser.Input", "scope": "static", - "___id": "T000002R021041", + "___id": "T000002R021033", "___s": true }, { @@ -190566,7 +190646,7 @@ ], "scope": "static", "longname": "Phaser.Input.InputManager", - "___id": "T000002R021067", + "___id": "T000002R021059", "___s": true }, { @@ -190595,7 +190675,7 @@ "longname": "Phaser.Input.InputManager#game", "scope": "instance", "kind": "member", - "___id": "T000002R021070", + "___id": "T000002R021062", "___s": true }, { @@ -190623,7 +190703,7 @@ "longname": "Phaser.Input.InputManager#scaleManager", "scope": "instance", "kind": "member", - "___id": "T000002R021072", + "___id": "T000002R021064", "___s": true }, { @@ -190651,7 +190731,7 @@ "longname": "Phaser.Input.InputManager#canvas", "scope": "instance", "kind": "member", - "___id": "T000002R021074", + "___id": "T000002R021066", "___s": true }, { @@ -190679,7 +190759,7 @@ "longname": "Phaser.Input.InputManager#config", "scope": "instance", "kind": "member", - "___id": "T000002R021076", + "___id": "T000002R021068", "___s": true }, { @@ -190708,7 +190788,7 @@ "longname": "Phaser.Input.InputManager#enabled", "scope": "instance", "kind": "member", - "___id": "T000002R021078", + "___id": "T000002R021070", "___s": true }, { @@ -190736,7 +190816,7 @@ "longname": "Phaser.Input.InputManager#events", "scope": "instance", "kind": "member", - "___id": "T000002R021080", + "___id": "T000002R021072", "___s": true }, { @@ -190765,7 +190845,7 @@ "longname": "Phaser.Input.InputManager#isOver", "scope": "instance", "kind": "member", - "___id": "T000002R021082", + "___id": "T000002R021074", "___s": true }, { @@ -190793,7 +190873,7 @@ "longname": "Phaser.Input.InputManager#defaultCursor", "scope": "instance", "kind": "member", - "___id": "T000002R021084", + "___id": "T000002R021076", "___s": true }, { @@ -190823,7 +190903,7 @@ "longname": "Phaser.Input.InputManager#keyboard", "scope": "instance", "kind": "member", - "___id": "T000002R021086", + "___id": "T000002R021078", "___s": true }, { @@ -190853,7 +190933,7 @@ "longname": "Phaser.Input.InputManager#mouse", "scope": "instance", "kind": "member", - "___id": "T000002R021088", + "___id": "T000002R021080", "___s": true }, { @@ -190881,7 +190961,7 @@ "longname": "Phaser.Input.InputManager#touch", "scope": "instance", "kind": "member", - "___id": "T000002R021090", + "___id": "T000002R021082", "___s": true }, { @@ -190918,7 +190998,7 @@ "longname": "Phaser.Input.InputManager#pointers", "scope": "instance", "kind": "member", - "___id": "T000002R021092", + "___id": "T000002R021084", "___s": true }, { @@ -190947,7 +191027,7 @@ "longname": "Phaser.Input.InputManager#pointersTotal", "scope": "instance", "kind": "member", - "___id": "T000002R021094", + "___id": "T000002R021086", "___s": true }, { @@ -190977,7 +191057,7 @@ "longname": "Phaser.Input.InputManager#mousePointer", "scope": "instance", "kind": "member", - "___id": "T000002R021099", + "___id": "T000002R021091", "___s": true }, { @@ -191005,7 +191085,7 @@ "longname": "Phaser.Input.InputManager#activePointer", "scope": "instance", "kind": "member", - "___id": "T000002R021101", + "___id": "T000002R021093", "___s": true }, { @@ -191034,7 +191114,7 @@ "longname": "Phaser.Input.InputManager#globalTopOnly", "scope": "instance", "kind": "member", - "___id": "T000002R021103", + "___id": "T000002R021095", "___s": true }, { @@ -191063,7 +191143,7 @@ "longname": "Phaser.Input.InputManager#time", "scope": "instance", "kind": "member", - "___id": "T000002R021105", + "___id": "T000002R021097", "___s": true }, { @@ -191086,7 +191166,7 @@ "memberof": "Phaser.Input.InputManager", "longname": "Phaser.Input.InputManager#boot", "scope": "instance", - "___id": "T000002R021121", + "___id": "T000002R021113", "___s": true }, { @@ -191120,14 +191200,14 @@ "memberof": "Phaser.Input.InputManager", "longname": "Phaser.Input.InputManager#setDefaultCursor", "scope": "instance", - "___id": "T000002R021141", + "___id": "T000002R021133", "___s": true }, { "comment": "/**\r\n * Adds new Pointer objects to the Input Manager.\r\n *\r\n * By default Phaser creates 2 pointer objects: `mousePointer` and `pointer1`.\r\n *\r\n * You can create more either by calling this method, or by setting the `input.activePointers` property\r\n * in the Game Config, up to a maximum of 10 pointers.\r\n *\r\n * The first 10 pointers are available via the `InputPlugin.pointerX` properties, once they have been added\r\n * via this method.\r\n *\r\n * @method Phaser.Input.InputManager#addPointer\r\n * @since 3.10.0\r\n *\r\n * @param {number} [quantity=1] The number of new Pointers to create. A maximum of 10 is allowed in total.\r\n *\r\n * @return {Phaser.Input.Pointer[]} An array containing all of the new Pointer objects that were created.\r\n */", "meta": { "filename": "InputManager.js", - "lineno": 465, + "lineno": 466, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -191179,14 +191259,14 @@ "memberof": "Phaser.Input.InputManager", "longname": "Phaser.Input.InputManager#addPointer", "scope": "instance", - "___id": "T000002R021151", + "___id": "T000002R021143", "___s": true }, { "comment": "/**\r\n * Internal method that gets a list of all the active Input Plugins in the game\r\n * and updates each of them in turn, in reverse order (top to bottom), to allow\r\n * for DOM top-level event handling simulation.\r\n *\r\n * @method Phaser.Input.InputManager#updateInputPlugins\r\n * @since 3.16.0\r\n *\r\n * @param {number} type - The type of event to process.\r\n * @param {Phaser.Input.Pointer[]} pointers - An array of Pointers on which the event occurred.\r\n */", "meta": { "filename": "InputManager.js", - "lineno": 512, + "lineno": 513, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -191235,14 +191315,14 @@ "memberof": "Phaser.Input.InputManager", "longname": "Phaser.Input.InputManager#updateInputPlugins", "scope": "instance", - "___id": "T000002R021160", + "___id": "T000002R021152", "___s": true }, { "comment": "/**\r\n * Performs a hit test using the given Pointer and camera, against an array of interactive Game Objects.\r\n *\r\n * The Game Objects are culled against the camera, and then the coordinates are translated into the local camera space\r\n * and used to determine if they fall within the remaining Game Objects hit areas or not.\r\n *\r\n * If nothing is matched an empty array is returned.\r\n *\r\n * This method is called automatically by InputPlugin.hitTestPointer and doesn't usually need to be invoked directly.\r\n *\r\n * @method Phaser.Input.InputManager#hitTest\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Input.Pointer} pointer - The Pointer to test against.\r\n * @param {array} gameObjects - An array of interactive Game Objects to check.\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera which is being tested against.\r\n * @param {array} [output] - An array to store the results in. If not given, a new empty array is created.\r\n *\r\n * @return {array} An array of the Game Objects that were hit during this hit test.\r\n */", "meta": { "filename": "InputManager.js", - "lineno": 867, + "lineno": 868, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -191323,14 +191403,14 @@ "memberof": "Phaser.Input.InputManager", "longname": "Phaser.Input.InputManager#hitTest", "scope": "instance", - "___id": "T000002R021230", + "___id": "T000002R021222", "___s": true }, { "comment": "/**\r\n * Checks if the given x and y coordinate are within the hit area of the Game Object.\r\n *\r\n * This method assumes that the coordinate values have already been translated into the space of the Game Object.\r\n *\r\n * If the coordinates are within the hit area they are set into the Game Objects Input `localX` and `localY` properties.\r\n *\r\n * @method Phaser.Input.InputManager#pointWithinHitArea\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject} gameObject - The interactive Game Object to check against.\r\n * @param {number} x - The translated x coordinate for the hit test.\r\n * @param {number} y - The translated y coordinate for the hit test.\r\n *\r\n * @return {boolean} `true` if the coordinates were inside the Game Objects hit area, otherwise `false`.\r\n */", "meta": { "filename": "InputManager.js", - "lineno": 946, + "lineno": 947, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -191397,14 +191477,14 @@ "memberof": "Phaser.Input.InputManager", "longname": "Phaser.Input.InputManager#pointWithinHitArea", "scope": "instance", - "___id": "T000002R021250", + "___id": "T000002R021242", "___s": true }, { "comment": "/**\r\n * Checks if the given x and y coordinate are within the hit area of the Interactive Object.\r\n *\r\n * This method assumes that the coordinate values have already been translated into the space of the Interactive Object.\r\n *\r\n * If the coordinates are within the hit area they are set into the Interactive Objects Input `localX` and `localY` properties.\r\n *\r\n * @method Phaser.Input.InputManager#pointWithinInteractiveObject\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Types.Input.InteractiveObject} object - The Interactive Object to check against.\r\n * @param {number} x - The translated x coordinate for the hit test.\r\n * @param {number} y - The translated y coordinate for the hit test.\r\n *\r\n * @return {boolean} `true` if the coordinates were inside the Game Objects hit area, otherwise `false`.\r\n */", "meta": { "filename": "InputManager.js", - "lineno": 983, + "lineno": 984, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -191471,14 +191551,14 @@ "memberof": "Phaser.Input.InputManager", "longname": "Phaser.Input.InputManager#pointWithinInteractiveObject", "scope": "instance", - "___id": "T000002R021257", + "___id": "T000002R021249", "___s": true }, { "comment": "/**\r\n * Transforms the pageX and pageY values of a Pointer into the scaled coordinate space of the Input Manager.\r\n *\r\n * @method Phaser.Input.InputManager#transformPointer\r\n * @since 3.10.0\r\n *\r\n * @param {Phaser.Input.Pointer} pointer - The Pointer to transform the values for.\r\n * @param {number} pageX - The Page X value.\r\n * @param {number} pageY - The Page Y value.\r\n * @param {boolean} wasMove - Are we transforming the Pointer from a move event, or an up / down event?\r\n */", "meta": { "filename": "InputManager.js", - "lineno": 1016, + "lineno": 1017, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -191544,14 +191624,14 @@ "memberof": "Phaser.Input.InputManager", "longname": "Phaser.Input.InputManager#transformPointer", "scope": "instance", - "___id": "T000002R021263", + "___id": "T000002R021255", "___s": true }, { "comment": "/**\r\n * Destroys the Input Manager and all of its systems.\r\n *\r\n * There is no way to recover from doing this.\r\n *\r\n * @method Phaser.Input.InputManager#destroy\r\n * @since 3.0.0\r\n */", "meta": { "filename": "InputManager.js", - "lineno": 1056, + "lineno": 1057, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -191563,7 +191643,7 @@ "memberof": "Phaser.Input.InputManager", "longname": "Phaser.Input.InputManager#destroy", "scope": "instance", - "___id": "T000002R021276", + "___id": "T000002R021268", "___s": true }, { @@ -191600,7 +191680,7 @@ ], "scope": "static", "longname": "Phaser.Input.InputPlugin", - "___id": "T000002R021305", + "___id": "T000002R021297", "___s": true }, { @@ -191628,7 +191708,7 @@ "longname": "Phaser.Input.InputPlugin#scene", "scope": "instance", "kind": "member", - "___id": "T000002R021309", + "___id": "T000002R021301", "___s": true }, { @@ -191656,7 +191736,7 @@ "longname": "Phaser.Input.InputPlugin#systems", "scope": "instance", "kind": "member", - "___id": "T000002R021311", + "___id": "T000002R021303", "___s": true }, { @@ -191684,7 +191764,7 @@ "longname": "Phaser.Input.InputPlugin#settings", "scope": "instance", "kind": "member", - "___id": "T000002R021313", + "___id": "T000002R021305", "___s": true }, { @@ -191712,7 +191792,7 @@ "longname": "Phaser.Input.InputPlugin#manager", "scope": "instance", "kind": "member", - "___id": "T000002R021315", + "___id": "T000002R021307", "___s": true }, { @@ -191741,7 +191821,7 @@ "longname": "Phaser.Input.InputPlugin#enabled", "scope": "instance", "kind": "member", - "___id": "T000002R021319", + "___id": "T000002R021311", "___s": true }, { @@ -191769,7 +191849,7 @@ "longname": "Phaser.Input.InputPlugin#displayList", "scope": "instance", "kind": "member", - "___id": "T000002R021321", + "___id": "T000002R021313", "___s": true }, { @@ -191797,7 +191877,7 @@ "longname": "Phaser.Input.InputPlugin#cameras", "scope": "instance", "kind": "member", - "___id": "T000002R021323", + "___id": "T000002R021315", "___s": true }, { @@ -191827,7 +191907,7 @@ "longname": "Phaser.Input.InputPlugin#mouse", "scope": "instance", "kind": "member", - "___id": "T000002R021325", + "___id": "T000002R021317", "___s": true }, { @@ -191856,7 +191936,7 @@ "longname": "Phaser.Input.InputPlugin#topOnly", "scope": "instance", "kind": "member", - "___id": "T000002R021327", + "___id": "T000002R021319", "___s": true }, { @@ -191885,7 +191965,7 @@ "longname": "Phaser.Input.InputPlugin#pollRate", "scope": "instance", "kind": "member", - "___id": "T000002R021329", + "___id": "T000002R021321", "___s": true }, { @@ -191914,7 +191994,7 @@ "longname": "Phaser.Input.InputPlugin#dragDistanceThreshold", "scope": "instance", "kind": "member", - "___id": "T000002R021341", + "___id": "T000002R021333", "___s": true }, { @@ -191943,11 +192023,11 @@ "longname": "Phaser.Input.InputPlugin#dragTimeThreshold", "scope": "instance", "kind": "member", - "___id": "T000002R021343", + "___id": "T000002R021335", "___s": true }, { - "comment": "/**\r\n * Checks to see if both this plugin and the Scene to which it belongs is active.\r\n *\r\n * @method Phaser.Input.InputPlugin#isActive\r\n * @since 3.10.0\r\n *\r\n * @return {boolean} `true` if the plugin and the Scene it belongs to is active.\r\n */", + "comment": "/**\r\n * Checks to see if the Input Manager, this plugin and the Scene to which it belongs are all active and input enabled.\r\n *\r\n * @method Phaser.Input.InputPlugin#isActive\r\n * @since 3.10.0\r\n *\r\n * @return {boolean} `true` if the plugin and the Scene it belongs to is active.\r\n */", "meta": { "filename": "InputPlugin.js", "lineno": 528, @@ -191955,7 +192035,7 @@ "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} }, - "description": "Checks to see if both this plugin and the Scene to which it belongs is active.", + "description": "Checks to see if the Input Manager, this plugin and the Scene to which it belongs are all active and input enabled.", "kind": "function", "name": "isActive", "since": "3.10.0", @@ -191976,14 +192056,67 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#isActive", "scope": "instance", - "___id": "T000002R021414", + "___id": "T000002R021406", + "___s": true + }, + { + "comment": "/**\r\n * Sets a custom cursor on the parent canvas element of the game, based on the `cursor`\r\n * setting of the given Interactive Object (i.e. a Sprite).\r\n * \r\n * See the CSS property `cursor` for more information on MDN:\r\n *\r\n * https://developer.mozilla.org/en-US/docs/Web/CSS/cursor\r\n *\r\n * @method Phaser.Input.InputPlugin#setCursor\r\n * @since 3.85.0\r\n *\r\n * @param {Phaser.Types.Input.InteractiveObject} interactiveObject - The Interactive Object that will set the cursor on the canvas.\r\n */", + "meta": { + "filename": "InputPlugin.js", + "lineno": 541, + "columnno": 4, + "path": "D:\\wamp\\www\\phaser\\src\\input", + "code": {} + }, + "description": "Sets a custom cursor on the parent canvas element of the game, based on the `cursor`\rsetting of the given Interactive Object (i.e. a Sprite).\r\rSee the CSS property `cursor` for more information on MDN:\r\rhttps://developer.mozilla.org/en-US/docs/Web/CSS/cursor", + "kind": "function", + "name": "setCursor", + "since": "3.85.0", + "params": [ + { + "type": { + "names": [ + "Phaser.Types.Input.InteractiveObject" + ], + "parsedType": { + "type": "NameExpression", + "name": "Phaser.Types.Input.InteractiveObject" + } + }, + "description": "The Interactive Object that will set the cursor on the canvas.", + "name": "interactiveObject" + } + ], + "memberof": "Phaser.Input.InputPlugin", + "longname": "Phaser.Input.InputPlugin#setCursor", + "scope": "instance", + "___id": "T000002R021408", + "___s": true + }, + { + "comment": "/**\r\n * Forces the Input Manager to clear the custom or hand cursor, regardless of the\r\n * interactive state of any Game Objects.\r\n *\r\n * @method Phaser.Input.InputPlugin#resetCursor\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "InputPlugin.js", + "lineno": 562, + "columnno": 4, + "path": "D:\\wamp\\www\\phaser\\src\\input", + "code": {} + }, + "description": "Forces the Input Manager to clear the custom or hand cursor, regardless of the\rinteractive state of any Game Objects.", + "kind": "function", + "name": "resetCursor", + "since": "3.85.0", + "memberof": "Phaser.Input.InputPlugin", + "longname": "Phaser.Input.InputPlugin#resetCursor", + "scope": "instance", + "___id": "T000002R021410", "___s": true }, { "comment": "/**\r\n * This is called automatically by the Input Manager.\r\n * It emits events for plugins to listen to and also handles polling updates, if enabled.\r\n *\r\n * @method Phaser.Input.InputPlugin#updatePoll\r\n * @since 3.18.0\r\n *\r\n * @param {number} time - The current time. Either a High Resolution Timer value if it comes from Request Animation Frame, or Date.now if using SetTimeout.\r\n * @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.\r\n *\r\n * @return {boolean} `true` if the plugin and the Scene it belongs to is active.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 541, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192037,14 +192170,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#updatePoll", "scope": "instance", - "___id": "T000002R021416", + "___id": "T000002R021412", "___s": true }, { "comment": "/**\r\n * Clears a Game Object so it no longer has an Interactive Object associated with it.\r\n * The Game Object is then queued for removal from the Input Plugin on the next update.\r\n *\r\n * @method Phaser.Input.InputPlugin#clear\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject} gameObject - The Game Object that will have its Interactive Object removed.\r\n * @param {boolean} [skipQueue=false] - Skip adding this Game Object into the removal queue?\r\n *\r\n * @return {Phaser.GameObjects.GameObject} The Game Object that had its Interactive Object removed.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 761, + "lineno": 797, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192100,14 +192233,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#clear", "scope": "instance", - "___id": "T000002R021460", + "___id": "T000002R021456", "___s": true }, { - "comment": "/**\r\n * Disables Input on a single Game Object.\r\n *\r\n * An input disabled Game Object still retains its Interactive Object component and can be re-enabled\r\n * at any time, by passing it to `InputPlugin.enable`.\r\n *\r\n * @method Phaser.Input.InputPlugin#disable\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject} gameObject - The Game Object to have its input system disabled.\r\n *\r\n * @return {this} This Input Plugin.\r\n */", + "comment": "/**\r\n * Disables Input on a single Game Object.\r\n *\r\n * An input disabled Game Object still retains its Interactive Object component and can be re-enabled\r\n * at any time, by passing it to `InputPlugin.enable`.\r\n *\r\n * @method Phaser.Input.InputPlugin#disable\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject} gameObject - The Game Object to have its input system disabled.\r\n * @param {boolean} [resetCursor=false] - Reset the cursor to the default?\r\n *\r\n * @return {this} This Input Plugin.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 811, + "lineno": 847, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192129,6 +192262,21 @@ }, "description": "The Game Object to have its input system disabled.", "name": "gameObject" + }, + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Reset the cursor to the default?", + "name": "resetCursor" } ], "returns": [ @@ -192149,14 +192297,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#disable", "scope": "instance", - "___id": "T000002R021471", + "___id": "T000002R021467", "___s": true }, { "comment": "/**\r\n * Enable a Game Object for interaction.\r\n *\r\n * If the Game Object already has an Interactive Object component, it is enabled and returned.\r\n *\r\n * Otherwise, a new Interactive Object component is created and assigned to the Game Object's `input` property.\r\n *\r\n * Input works by using hit areas, these are nearly always geometric shapes, such as rectangles or circles, that act as the hit area\r\n * for the Game Object. However, you can provide your own hit area shape and callback, should you wish to handle some more advanced\r\n * input detection.\r\n *\r\n * If no arguments are provided it will try and create a rectangle hit area based on the texture frame the Game Object is using. If\r\n * this isn't a texture-bound object, such as a Graphics or BitmapText object, this will fail, and you'll need to provide a specific\r\n * shape for it to use.\r\n *\r\n * You can also provide an Input Configuration Object as the only argument to this method.\r\n *\r\n * @method Phaser.Input.InputPlugin#enable\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject} gameObject - The Game Object to be enabled for input.\r\n * @param {(Phaser.Types.Input.InputConfiguration|any)} [hitArea] - Either an input configuration object, or a geometric shape that defines the hit area for the Game Object. If not specified a Rectangle will be used.\r\n * @param {Phaser.Types.Input.HitAreaCallback} [hitAreaCallback] - The 'contains' function to invoke to check if the pointer is within the hit area.\r\n * @param {boolean} [dropZone=false] - Is this Game Object a drop zone or not?\r\n *\r\n * @return {this} This Input Plugin.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 859, + "lineno": 903, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192251,14 +192399,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#enable", "scope": "instance", - "___id": "T000002R021483", + "___id": "T000002R021480", "___s": true }, { "comment": "/**\r\n * Takes the given Pointer and performs a hit test against it, to see which interactive Game Objects\r\n * it is currently above.\r\n *\r\n * The hit test is performed against which-ever Camera the Pointer is over. If it is over multiple\r\n * cameras, it starts checking the camera at the top of the camera list, and if nothing is found, iterates down the list.\r\n *\r\n * @method Phaser.Input.InputPlugin#hitTestPointer\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Input.Pointer} pointer - The Pointer to check against the Game Objects.\r\n *\r\n * @return {Phaser.GameObjects.GameObject[]} An array of all the interactive Game Objects the Pointer was above.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 909, + "lineno": 953, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192308,14 +192456,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#hitTestPointer", "scope": "instance", - "___id": "T000002R021488", + "___id": "T000002R021485", "___s": true }, { "comment": "/**\r\n * Returns the drag state of the given Pointer for this Input Plugin.\r\n *\r\n * The state will be one of the following:\r\n *\r\n * 0 = Not dragging anything\r\n * 1 = Primary button down and objects below, so collect a draglist\r\n * 2 = Pointer being checked if meets drag criteria\r\n * 3 = Pointer meets criteria, notify the draglist\r\n * 4 = Pointer actively dragging the draglist and has moved\r\n * 5 = Pointer actively dragging but has been released, notify draglist\r\n *\r\n * @method Phaser.Input.InputPlugin#getDragState\r\n * @since 3.16.0\r\n *\r\n * @param {Phaser.Input.Pointer} pointer - The Pointer to get the drag state for.\r\n *\r\n * @return {number} The drag state of the given Pointer.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 1034, + "lineno": 1085, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192356,14 +192504,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#getDragState", "scope": "instance", - "___id": "T000002R021510", + "___id": "T000002R021504", "___s": true }, { "comment": "/**\r\n * Sets the drag state of the given Pointer for this Input Plugin.\r\n *\r\n * The state must be one of the following values:\r\n *\r\n * 0 = Not dragging anything\r\n * 1 = Primary button down and objects below, so collect a draglist\r\n * 2 = Pointer being checked if meets drag criteria\r\n * 3 = Pointer meets criteria, notify the draglist\r\n * 4 = Pointer actively dragging the draglist and has moved\r\n * 5 = Pointer actively dragging but has been released, notify draglist\r\n *\r\n * @method Phaser.Input.InputPlugin#setDragState\r\n * @since 3.16.0\r\n *\r\n * @param {Phaser.Input.Pointer} pointer - The Pointer to set the drag state for.\r\n * @param {number} state - The drag state value. An integer between 0 and 5.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 1058, + "lineno": 1109, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192403,14 +192551,306 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setDragState", "scope": "instance", - "___id": "T000002R021512", + "___id": "T000002R021506", + "___s": true + }, + { + "comment": "/**\r\n * This method will force the given Game Object into the 'down' input state.\r\n * \r\n * This will check to see if the Game Object is enabled for input, and if so,\r\n * it will emit the `GAMEOBJECT_POINTER_DOWN` event for it. If that doesn't change\r\n * the input state, it will then emit the `GAMEOBJECT_DOWN` event.\r\n * \r\n * The Game Object is not checked against the Pointer to see if it can enter this state,\r\n * that is up to you to do before calling this method.\r\n *\r\n * @method Phaser.Input.InputPlugin#forceDownState\r\n * @fires Phaser.Input.Events#GAMEOBJECT_POINTER_DOWN\r\n * @fires Phaser.Input.Events#GAMEOBJECT_DOWN\r\n * @since 3.85.0\r\n *\r\n * @param {Phaser.Input.Pointer} pointer - The pointer to use when setting the state.\r\n * @param {Phaser.GameObjects.GameObject} gameObject - The Game Object to have its state set.\r\n */", + "meta": { + "filename": "InputPlugin.js", + "lineno": 2080, + "columnno": 4, + "path": "D:\\wamp\\www\\phaser\\src\\input", + "code": {} + }, + "description": "This method will force the given Game Object into the 'down' input state.\r\rThis will check to see if the Game Object is enabled for input, and if so,\rit will emit the `GAMEOBJECT_POINTER_DOWN` event for it. If that doesn't change\rthe input state, it will then emit the `GAMEOBJECT_DOWN` event.\r\rThe Game Object is not checked against the Pointer to see if it can enter this state,\rthat is up to you to do before calling this method.", + "kind": "function", + "name": "forceDownState", + "fires": [ + "Phaser.Input.Events#event:GAMEOBJECT_POINTER_DOWN", + "Phaser.Input.Events#event:GAMEOBJECT_DOWN" + ], + "since": "3.85.0", + "params": [ + { + "type": { + "names": [ + "Phaser.Input.Pointer" + ], + "parsedType": { + "type": "NameExpression", + "name": "Phaser.Input.Pointer" + } + }, + "description": "The pointer to use when setting the state.", + "name": "pointer" + }, + { + "type": { + "names": [ + "Phaser.GameObjects.GameObject" + ], + "parsedType": { + "type": "NameExpression", + "name": "Phaser.GameObjects.GameObject" + } + }, + "description": "The Game Object to have its state set.", + "name": "gameObject" + } + ], + "memberof": "Phaser.Input.InputPlugin", + "longname": "Phaser.Input.InputPlugin#forceDownState", + "scope": "instance", + "___id": "T000002R021667", + "___s": true + }, + { + "comment": "/**\r\n * This method will force the given Game Object into the 'up' input state.\r\n * \r\n * This will check to see if the Game Object is enabled for input, and if so,\r\n * it will emit the `GAMEOBJECT_POINTER_UP` event for it. If that doesn't change\r\n * the input state, it will then emit the `GAMEOBJECT_UP` event.\r\n * \r\n * The Game Object is not checked against the Pointer to see if it can enter this state,\r\n * that is up to you to do before calling this method.\r\n *\r\n * @method Phaser.Input.InputPlugin#forceUpState\r\n * @fires Phaser.Input.Events#GAMEOBJECT_POINTER_UP\r\n * @fires Phaser.Input.Events#GAMEOBJECT_UP\r\n * @since 3.85.0\r\n *\r\n * @param {Phaser.Input.Pointer} pointer - The pointer to use when setting the state.\r\n * @param {Phaser.GameObjects.GameObject} gameObject - The Game Object to have its state set.\r\n */", + "meta": { + "filename": "InputPlugin.js", + "lineno": 2103, + "columnno": 4, + "path": "D:\\wamp\\www\\phaser\\src\\input", + "code": {} + }, + "description": "This method will force the given Game Object into the 'up' input state.\r\rThis will check to see if the Game Object is enabled for input, and if so,\rit will emit the `GAMEOBJECT_POINTER_UP` event for it. If that doesn't change\rthe input state, it will then emit the `GAMEOBJECT_UP` event.\r\rThe Game Object is not checked against the Pointer to see if it can enter this state,\rthat is up to you to do before calling this method.", + "kind": "function", + "name": "forceUpState", + "fires": [ + "Phaser.Input.Events#event:GAMEOBJECT_POINTER_UP", + "Phaser.Input.Events#event:GAMEOBJECT_UP" + ], + "since": "3.85.0", + "params": [ + { + "type": { + "names": [ + "Phaser.Input.Pointer" + ], + "parsedType": { + "type": "NameExpression", + "name": "Phaser.Input.Pointer" + } + }, + "description": "The pointer to use when setting the state.", + "name": "pointer" + }, + { + "type": { + "names": [ + "Phaser.GameObjects.GameObject" + ], + "parsedType": { + "type": "NameExpression", + "name": "Phaser.GameObjects.GameObject" + } + }, + "description": "The Game Object to have its state set.", + "name": "gameObject" + } + ], + "memberof": "Phaser.Input.InputPlugin", + "longname": "Phaser.Input.InputPlugin#forceUpState", + "scope": "instance", + "___id": "T000002R021669", + "___s": true + }, + { + "comment": "/**\r\n * This method will force the given Game Object into the 'over' input state.\r\n * \r\n * This will check to see if the Game Object is enabled for input, and if so,\r\n * it will emit the `GAMEOBJECT_POINTER_OVER` event for it. If that doesn't change\r\n * the input state, it will then emit the `GAMEOBJECT_OVER` event.\r\n * \r\n * The Game Object is not checked against the Pointer to see if it can enter this state,\r\n * that is up to you to do before calling this method.\r\n *\r\n * @method Phaser.Input.InputPlugin#forceOverState\r\n * @fires Phaser.Input.Events#GAMEOBJECT_POINTER_OVER\r\n * @fires Phaser.Input.Events#GAMEOBJECT_OVER\r\n * @since 3.85.0\r\n *\r\n * @param {Phaser.Input.Pointer} pointer - The pointer to use when setting the state.\r\n * @param {Phaser.GameObjects.GameObject} gameObject - The Game Object to have its state set.\r\n */", + "meta": { + "filename": "InputPlugin.js", + "lineno": 2126, + "columnno": 4, + "path": "D:\\wamp\\www\\phaser\\src\\input", + "code": {} + }, + "description": "This method will force the given Game Object into the 'over' input state.\r\rThis will check to see if the Game Object is enabled for input, and if so,\rit will emit the `GAMEOBJECT_POINTER_OVER` event for it. If that doesn't change\rthe input state, it will then emit the `GAMEOBJECT_OVER` event.\r\rThe Game Object is not checked against the Pointer to see if it can enter this state,\rthat is up to you to do before calling this method.", + "kind": "function", + "name": "forceOverState", + "fires": [ + "Phaser.Input.Events#event:GAMEOBJECT_POINTER_OVER", + "Phaser.Input.Events#event:GAMEOBJECT_OVER" + ], + "since": "3.85.0", + "params": [ + { + "type": { + "names": [ + "Phaser.Input.Pointer" + ], + "parsedType": { + "type": "NameExpression", + "name": "Phaser.Input.Pointer" + } + }, + "description": "The pointer to use when setting the state.", + "name": "pointer" + }, + { + "type": { + "names": [ + "Phaser.GameObjects.GameObject" + ], + "parsedType": { + "type": "NameExpression", + "name": "Phaser.GameObjects.GameObject" + } + }, + "description": "The Game Object to have its state set.", + "name": "gameObject" + } + ], + "memberof": "Phaser.Input.InputPlugin", + "longname": "Phaser.Input.InputPlugin#forceOverState", + "scope": "instance", + "___id": "T000002R021671", + "___s": true + }, + { + "comment": "/**\r\n * This method will force the given Game Object into the 'out' input state.\r\n * \r\n * This will check to see if the Game Object is enabled for input, and if so,\r\n * it will emit the `GAMEOBJECT_POINTER_OUT` event for it. If that doesn't change\r\n * the input state, it will then emit the `GAMEOBJECT_OUT` event.\r\n * \r\n * The Game Object is not checked against the Pointer to see if it can enter this state,\r\n * that is up to you to do before calling this method.\r\n *\r\n * @method Phaser.Input.InputPlugin#forceOutState\r\n * @fires Phaser.Input.Events#GAMEOBJECT_POINTER_OUT\r\n * @fires Phaser.Input.Events#GAMEOBJECT_OUT\r\n * @since 3.85.0\r\n *\r\n * @param {Phaser.Input.Pointer} pointer - The pointer to use when setting the state.\r\n * @param {Phaser.GameObjects.GameObject} gameObject - The Game Object to have its state set.\r\n */", + "meta": { + "filename": "InputPlugin.js", + "lineno": 2149, + "columnno": 4, + "path": "D:\\wamp\\www\\phaser\\src\\input", + "code": {} + }, + "description": "This method will force the given Game Object into the 'out' input state.\r\rThis will check to see if the Game Object is enabled for input, and if so,\rit will emit the `GAMEOBJECT_POINTER_OUT` event for it. If that doesn't change\rthe input state, it will then emit the `GAMEOBJECT_OUT` event.\r\rThe Game Object is not checked against the Pointer to see if it can enter this state,\rthat is up to you to do before calling this method.", + "kind": "function", + "name": "forceOutState", + "fires": [ + "Phaser.Input.Events#event:GAMEOBJECT_POINTER_OUT", + "Phaser.Input.Events#event:GAMEOBJECT_OUT" + ], + "since": "3.85.0", + "params": [ + { + "type": { + "names": [ + "Phaser.Input.Pointer" + ], + "parsedType": { + "type": "NameExpression", + "name": "Phaser.Input.Pointer" + } + }, + "description": "The pointer to use when setting the state.", + "name": "pointer" + }, + { + "type": { + "names": [ + "Phaser.GameObjects.GameObject" + ], + "parsedType": { + "type": "NameExpression", + "name": "Phaser.GameObjects.GameObject" + } + }, + "description": "The Game Object to have its state set.", + "name": "gameObject" + } + ], + "memberof": "Phaser.Input.InputPlugin", + "longname": "Phaser.Input.InputPlugin#forceOutState", + "scope": "instance", + "___id": "T000002R021673", + "___s": true + }, + { + "comment": "/**\r\n * This method will force the given Game Object into the given input state.\r\n * \r\n * @method Phaser.Input.InputPlugin#forceState\r\n * @since 3.85.0\r\n * \r\n * @param {Phaser.Input.Pointer} pointer - The pointer to use when setting the state.\r\n * @param {Phaser.GameObjects.GameObject} gameObject - The Game Object to have its state set.\r\n * @param {string} gameObjectEvent - The event to emit on the Game Object.\r\n * @param {string} inputPluginEvent - The event to emit on the Input Plugin.\r\n * @param {boolean} [setCursor=false] - Should the cursor be set to the Game Object's cursor?\r\n */", + "meta": { + "filename": "InputPlugin.js", + "lineno": 2172, + "columnno": 4, + "path": "D:\\wamp\\www\\phaser\\src\\input", + "code": {} + }, + "description": "This method will force the given Game Object into the given input state.", + "kind": "function", + "name": "forceState", + "since": "3.85.0", + "params": [ + { + "type": { + "names": [ + "Phaser.Input.Pointer" + ], + "parsedType": { + "type": "NameExpression", + "name": "Phaser.Input.Pointer" + } + }, + "description": "The pointer to use when setting the state.", + "name": "pointer" + }, + { + "type": { + "names": [ + "Phaser.GameObjects.GameObject" + ], + "parsedType": { + "type": "NameExpression", + "name": "Phaser.GameObjects.GameObject" + } + }, + "description": "The Game Object to have its state set.", + "name": "gameObject" + }, + { + "type": { + "names": [ + "string" + ], + "parsedType": { + "type": "NameExpression", + "name": "string" + } + }, + "description": "The event to emit on the Game Object.", + "name": "gameObjectEvent" + }, + { + "type": { + "names": [ + "string" + ], + "parsedType": { + "type": "NameExpression", + "name": "string" + } + }, + "description": "The event to emit on the Input Plugin.", + "name": "inputPluginEvent" + }, + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the cursor be set to the Game Object's cursor?", + "name": "setCursor" + } + ], + "memberof": "Phaser.Input.InputPlugin", + "longname": "Phaser.Input.InputPlugin#forceState", + "scope": "instance", + "___id": "T000002R021675", "___s": true }, { "comment": "/**\r\n * Sets the draggable state of the given array of Game Objects.\r\n *\r\n * They can either be set to be draggable, or can have their draggable state removed by passing `false`.\r\n *\r\n * A Game Object will not fire drag events unless it has been specifically enabled for drag.\r\n *\r\n * @method Phaser.Input.InputPlugin#setDraggable\r\n * @since 3.0.0\r\n *\r\n * @param {(Phaser.GameObjects.GameObject|Phaser.GameObjects.GameObject[])} gameObjects - An array of Game Objects to change the draggable state on.\r\n * @param {boolean} [value=true] - Set to `true` if the Game Objects should be made draggable, `false` if they should be unset.\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2052, + "lineno": 2246, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192486,14 +192926,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setDraggable", "scope": "instance", - "___id": "T000002R021698", + "___id": "T000002R021684", "___s": true }, { "comment": "/**\r\n * Creates a function that can be passed to `setInteractive`, `enable` or `setHitArea` that will handle\r\n * pixel-perfect input detection on an Image or Sprite based Game Object, or any custom class that extends them.\r\n *\r\n * The following will create a sprite that is clickable on any pixel that has an alpha value >= 1.\r\n *\r\n * ```javascript\r\n * this.add.sprite(x, y, key).setInteractive(this.input.makePixelPerfect());\r\n * ```\r\n *\r\n * The following will create a sprite that is clickable on any pixel that has an alpha value >= 150.\r\n *\r\n * ```javascript\r\n * this.add.sprite(x, y, key).setInteractive(this.input.makePixelPerfect(150));\r\n * ```\r\n *\r\n * Once you have made an Interactive Object pixel perfect it impacts all input related events for it: down, up,\r\n * dragstart, drag, etc.\r\n *\r\n * As a pointer interacts with the Game Object it will constantly poll the texture, extracting a single pixel from\r\n * the given coordinates and checking its color values. This is an expensive process, so should only be enabled on\r\n * Game Objects that really need it.\r\n *\r\n * You cannot make non-texture based Game Objects pixel perfect. So this will not work on Graphics, BitmapText,\r\n * Render Textures, Text, Tilemaps, Containers or Particles.\r\n *\r\n * @method Phaser.Input.InputPlugin#makePixelPerfect\r\n * @since 3.10.0\r\n *\r\n * @param {number} [alphaTolerance=1] - The alpha level that the pixel should be above to be included as a successful interaction.\r\n *\r\n * @return {function} A Pixel Perfect Handler for use as a hitArea shape callback.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2097, + "lineno": 2291, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192536,14 +192976,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#makePixelPerfect", "scope": "instance", - "___id": "T000002R021706", + "___id": "T000002R021692", "___s": true }, { "comment": "/**\r\n * Sets the hit area for the given array of Game Objects.\r\n *\r\n * A hit area is typically one of the geometric shapes Phaser provides, such as a `Phaser.Geom.Rectangle`\r\n * or `Phaser.Geom.Circle`. However, it can be any object as long as it works with the provided callback.\r\n *\r\n * If no hit area is provided a Rectangle is created based on the size of the Game Object, if possible\r\n * to calculate.\r\n *\r\n * The hit area callback is the function that takes an `x` and `y` coordinate and returns a boolean if\r\n * those values fall within the area of the shape or not. All of the Phaser geometry objects provide this,\r\n * such as `Phaser.Geom.Rectangle.Contains`.\r\n * \r\n * A hit area callback can be supplied to the `hitArea` parameter without using the `hitAreaCallback` parameter.\r\n *\r\n * @method Phaser.Input.InputPlugin#setHitArea\r\n * @since 3.0.0\r\n *\r\n * @param {(Phaser.GameObjects.GameObject|Phaser.GameObjects.GameObject[])} gameObjects - An array of Game Objects to set the hit area on.\r\n * @param {(Phaser.Types.Input.InputConfiguration|Phaser.Types.Input.HitAreaCallback|any)} [hitArea] - Either an input configuration object, a geometric shape that defines the hit area or a hit area callback. If not specified a Rectangle hit area will be used.\r\n * @param {Phaser.Types.Input.HitAreaCallback} [hitAreaCallback] - The 'contains' function to invoke to check if the pointer is within the hit area.\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2139, + "lineno": 2333, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192647,14 +193087,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setHitArea", "scope": "instance", - "___id": "T000002R021710", + "___id": "T000002R021696", "___s": true }, { "comment": "/**\r\n * Sets the hit area for an array of Game Objects to be a `Phaser.Geom.Circle` shape, using\r\n * the given coordinates and radius to control its position and size.\r\n *\r\n * @method Phaser.Input.InputPlugin#setHitAreaCircle\r\n * @since 3.0.0\r\n *\r\n * @param {(Phaser.GameObjects.GameObject|Phaser.GameObjects.GameObject[])} gameObjects - An array of Game Objects to set as having a circle hit area.\r\n * @param {number} x - The center of the circle.\r\n * @param {number} y - The center of the circle.\r\n * @param {number} radius - The radius of the circle.\r\n * @param {Phaser.Types.Input.HitAreaCallback} [callback] - The hit area callback. If undefined it uses Circle.Contains.\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2255, + "lineno": 2449, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192768,14 +193208,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setHitAreaCircle", "scope": "instance", - "___id": "T000002R021741", + "___id": "T000002R021727", "___s": true }, { "comment": "/**\r\n * Sets the hit area for an array of Game Objects to be a `Phaser.Geom.Ellipse` shape, using\r\n * the given coordinates and dimensions to control its position and size.\r\n *\r\n * @method Phaser.Input.InputPlugin#setHitAreaEllipse\r\n * @since 3.0.0\r\n *\r\n * @param {(Phaser.GameObjects.GameObject|Phaser.GameObjects.GameObject[])} gameObjects - An array of Game Objects to set as having an ellipse hit area.\r\n * @param {number} x - The center of the ellipse.\r\n * @param {number} y - The center of the ellipse.\r\n * @param {number} width - The width of the ellipse.\r\n * @param {number} height - The height of the ellipse.\r\n * @param {Phaser.Types.Input.HitAreaCallback} [callback] - The hit area callback. If undefined it uses Ellipse.Contains.\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2279, + "lineno": 2473, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192902,14 +193342,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setHitAreaEllipse", "scope": "instance", - "___id": "T000002R021745", + "___id": "T000002R021731", "___s": true }, { "comment": "/**\r\n * Sets the hit area for an array of Game Objects to be a `Phaser.Geom.Rectangle` shape, using\r\n * the Game Objects texture frame to define the position and size of the hit area.\r\n *\r\n * @method Phaser.Input.InputPlugin#setHitAreaFromTexture\r\n * @since 3.0.0\r\n *\r\n * @param {(Phaser.GameObjects.GameObject|Phaser.GameObjects.GameObject[])} gameObjects - An array of Game Objects to set as having an ellipse hit area.\r\n * @param {Phaser.Types.Input.HitAreaCallback} [callback] - The hit area callback. If undefined it uses Rectangle.Contains.\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2304, + "lineno": 2498, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -192984,14 +193424,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setHitAreaFromTexture", "scope": "instance", - "___id": "T000002R021749", + "___id": "T000002R021735", "___s": true }, { "comment": "/**\r\n * Sets the hit area for an array of Game Objects to be a `Phaser.Geom.Rectangle` shape, using\r\n * the given coordinates and dimensions to control its position and size.\r\n *\r\n * @method Phaser.Input.InputPlugin#setHitAreaRectangle\r\n * @since 3.0.0\r\n *\r\n * @param {(Phaser.GameObjects.GameObject|Phaser.GameObjects.GameObject[])} gameObjects - An array of Game Objects to set as having a rectangular hit area.\r\n * @param {number} x - The top-left of the rectangle.\r\n * @param {number} y - The top-left of the rectangle.\r\n * @param {number} width - The width of the rectangle.\r\n * @param {number} height - The height of the rectangle.\r\n * @param {Phaser.Types.Input.HitAreaCallback} [callback] - The hit area callback. If undefined it uses Rectangle.Contains.\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2362, + "lineno": 2556, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193118,14 +193558,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setHitAreaRectangle", "scope": "instance", - "___id": "T000002R021763", + "___id": "T000002R021749", "___s": true }, { "comment": "/**\r\n * Sets the hit area for an array of Game Objects to be a `Phaser.Geom.Triangle` shape, using\r\n * the given coordinates to control the position of its points.\r\n *\r\n * @method Phaser.Input.InputPlugin#setHitAreaTriangle\r\n * @since 3.0.0\r\n *\r\n * @param {(Phaser.GameObjects.GameObject|Phaser.GameObjects.GameObject[])} gameObjects - An array of Game Objects to set as having a triangular hit area.\r\n * @param {number} x1 - The x coordinate of the first point of the triangle.\r\n * @param {number} y1 - The y coordinate of the first point of the triangle.\r\n * @param {number} x2 - The x coordinate of the second point of the triangle.\r\n * @param {number} y2 - The y coordinate of the second point of the triangle.\r\n * @param {number} x3 - The x coordinate of the third point of the triangle.\r\n * @param {number} y3 - The y coordinate of the third point of the triangle.\r\n * @param {Phaser.Types.Input.HitAreaCallback} [callback] - The hit area callback. If undefined it uses Triangle.Contains.\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2387, + "lineno": 2581, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193278,14 +193718,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setHitAreaTriangle", "scope": "instance", - "___id": "T000002R021767", + "___id": "T000002R021753", "___s": true }, { "comment": "/**\r\n * Creates an Input Debug Shape for the given Game Object.\r\n *\r\n * The Game Object must have _already_ been enabled for input prior to calling this method.\r\n *\r\n * This is intended to assist you during development and debugging.\r\n *\r\n * Debug Shapes can only be created for Game Objects that are using standard Phaser Geometry for input,\r\n * including: Circle, Ellipse, Line, Polygon, Rectangle and Triangle.\r\n *\r\n * Game Objects that are using their automatic hit areas are using Rectangles by default, so will also work.\r\n *\r\n * The Debug Shape is created and added to the display list and is then kept in sync with the Game Object\r\n * it is connected with. Should you need to modify it yourself, such as to hide it, you can access it via\r\n * the Game Object property: `GameObject.input.hitAreaDebug`.\r\n *\r\n * Calling this method on a Game Object that already has a Debug Shape will first destroy the old shape,\r\n * before creating a new one. If you wish to remove the Debug Shape entirely, you should call the\r\n * method `InputPlugin.removeDebug`.\r\n *\r\n * Note that the debug shape will only show the outline of the input area. If the input test is using a\r\n * pixel perfect check, for example, then this is not displayed. If you are using a custom shape, that\r\n * doesn't extend one of the base Phaser Geometry objects, as your hit area, then this method will not\r\n * work.\r\n *\r\n * @method Phaser.Input.InputPlugin#enableDebug\r\n * @since 3.19.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject} gameObject - The Game Object to create the input debug shape for.\r\n * @param {number} [color=0x00ff00] - The outline color of the debug shape.\r\n *\r\n * @return {this} This Input Plugin.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2414, + "lineno": 2608, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193342,14 +193782,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#enableDebug", "scope": "instance", - "___id": "T000002R021771", + "___id": "T000002R021757", "___s": true }, { "comment": "/**\r\n * Removes an Input Debug Shape from the given Game Object.\r\n *\r\n * The shape is destroyed immediately and the `hitAreaDebug` property is set to `null`.\r\n *\r\n * @method Phaser.Input.InputPlugin#removeDebug\r\n * @since 3.19.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject} gameObject - The Game Object to remove the input debug shape from.\r\n *\r\n * @return {this} This Input Plugin.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2554, + "lineno": 2748, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193391,14 +193831,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#removeDebug", "scope": "instance", - "___id": "T000002R021810", + "___id": "T000002R021796", "___s": true }, { "comment": "/**\r\n * Sets the Pointers to always poll.\r\n *\r\n * When a pointer is polled it runs a hit test to see which Game Objects are currently below it,\r\n * or being interacted with it, regardless if the Pointer has actually moved or not.\r\n *\r\n * You should enable this if you want objects in your game to fire over / out events, and the objects\r\n * are constantly moving, but the pointer may not have. Polling every frame has additional computation\r\n * costs, especially if there are a large number of interactive objects in your game.\r\n *\r\n * @method Phaser.Input.InputPlugin#setPollAlways\r\n * @since 3.0.0\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2583, + "lineno": 2777, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193425,14 +193865,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setPollAlways", "scope": "instance", - "___id": "T000002R021815", + "___id": "T000002R021801", "___s": true }, { "comment": "/**\r\n * Sets the Pointers to only poll when they are moved or updated.\r\n *\r\n * When a pointer is polled it runs a hit test to see which Game Objects are currently below it,\r\n * or being interacted with it.\r\n *\r\n * @method Phaser.Input.InputPlugin#setPollOnMove\r\n * @since 3.0.0\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2603, + "lineno": 2797, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193459,14 +193899,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setPollOnMove", "scope": "instance", - "___id": "T000002R021817", + "___id": "T000002R021803", "___s": true }, { "comment": "/**\r\n * Sets the poll rate value. This is the amount of time that should have elapsed before a pointer\r\n * will be polled again. See the `setPollAlways` and `setPollOnMove` methods.\r\n *\r\n * @method Phaser.Input.InputPlugin#setPollRate\r\n * @since 3.0.0\r\n *\r\n * @param {number} value - The amount of time, in ms, that should elapsed before re-polling the pointers.\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2619, + "lineno": 2813, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193508,14 +193948,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setPollRate", "scope": "instance", - "___id": "T000002R021819", + "___id": "T000002R021805", "___s": true }, { "comment": "/**\r\n * When set to `true` the global Input Manager will emulate DOM behavior by only emitting events from\r\n * the top-most Scene in the Scene List. By default, if a Scene receives an input event it will then stop the event\r\n * from flowing down to any Scenes below it in the Scene list. To disable this behavior call this method with `false`.\r\n *\r\n * @method Phaser.Input.InputPlugin#setGlobalTopOnly\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} value - Set to `true` to stop processing input events on the Scene that receives it, or `false` to let the event continue down the Scene list.\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2638, + "lineno": 2832, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193557,14 +193997,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setGlobalTopOnly", "scope": "instance", - "___id": "T000002R021823", + "___id": "T000002R021809", "___s": true }, { "comment": "/**\r\n * When set to `true` this Input Plugin will emulate DOM behavior by only emitting events from\r\n * the top-most Game Objects in the Display List.\r\n *\r\n * If set to `false` it will emit events from all Game Objects below a Pointer, not just the top one.\r\n *\r\n * @method Phaser.Input.InputPlugin#setTopOnly\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} value - `true` to only include the top-most Game Object, or `false` to include all Game Objects in a hit test.\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2657, + "lineno": 2851, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193606,14 +194046,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setTopOnly", "scope": "instance", - "___id": "T000002R021826", + "___id": "T000002R021812", "___s": true }, { "comment": "/**\r\n * Given an array of Game Objects and a Pointer, sort the array and return it,\r\n * so that the objects are in render order with the lowest at the bottom.\r\n *\r\n * @method Phaser.Input.InputPlugin#sortGameObjects\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject[]} gameObjects - An array of Game Objects to be sorted.\r\n * @param {Phaser.Input.Pointer} pointer - The Pointer to check against the Game Objects.\r\n *\r\n * @return {Phaser.GameObjects.GameObject[]} The sorted array of Game Objects.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2677, + "lineno": 2871, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193685,14 +194125,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#sortGameObjects", "scope": "instance", - "___id": "T000002R021829", + "___id": "T000002R021815", "___s": true }, { "comment": "/**\r\n * Given an array of Drop Zone Game Objects, sort the array and return it,\r\n * so that the objects are in depth index order with the lowest at the bottom.\r\n *\r\n * @method Phaser.Input.InputPlugin#sortDropZones\r\n * @since 3.52.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject[]} gameObjects - An array of Game Objects to be sorted.\r\n *\r\n * @return {Phaser.GameObjects.GameObject[]} The sorted array of Game Objects.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2707, + "lineno": 2901, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193751,14 +194191,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#sortDropZones", "scope": "instance", - "___id": "T000002R021834", + "___id": "T000002R021820", "___s": true }, { "comment": "/**\r\n * This method should be called from within an input event handler, such as `pointerdown`.\r\n *\r\n * When called, it stops the Input Manager from allowing _this specific event_ to be processed by any other Scene\r\n * not yet handled in the scene list.\r\n *\r\n * @method Phaser.Input.InputPlugin#stopPropagation\r\n * @since 3.0.0\r\n *\r\n * @return {this} This InputPlugin object.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2799, + "lineno": 2993, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193785,14 +194225,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#stopPropagation", "scope": "instance", - "___id": "T000002R021844", + "___id": "T000002R021830", "___s": true }, { "comment": "/**\r\n * Adds new Pointer objects to the Input Manager.\r\n *\r\n * By default Phaser creates 2 pointer objects: `mousePointer` and `pointer1`.\r\n *\r\n * You can create more either by calling this method, or by setting the `input.activePointers` property\r\n * in the Game Config, up to a maximum of 10 pointers.\r\n *\r\n * The first 10 pointers are available via the `InputPlugin.pointerX` properties, once they have been added\r\n * via this method.\r\n *\r\n * @method Phaser.Input.InputPlugin#addPointer\r\n * @since 3.10.0\r\n *\r\n * @param {number} [quantity=1] The number of new Pointers to create. A maximum of 10 is allowed in total.\r\n *\r\n * @return {Phaser.Input.Pointer[]} An array containing all of the new Pointer objects that were created.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2817, + "lineno": 3011, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193844,14 +194284,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#addPointer", "scope": "instance", - "___id": "T000002R021847", + "___id": "T000002R021833", "___s": true }, { "comment": "/**\r\n * Tells the Input system to set a custom cursor.\r\n *\r\n * This cursor will be the default cursor used when interacting with the game canvas.\r\n *\r\n * If an Interactive Object also sets a custom cursor, this is the cursor that is reset after its use.\r\n *\r\n * Any valid CSS cursor value is allowed, including paths to image files, i.e.:\r\n *\r\n * ```javascript\r\n * this.input.setDefaultCursor('url(assets/cursors/sword.cur), pointer');\r\n * ```\r\n *\r\n * Please read about the differences between browsers when it comes to the file formats and sizes they support:\r\n *\r\n * https://developer.mozilla.org/en-US/docs/Web/CSS/cursor\r\n * https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_User_Interface/Using_URL_values_for_the_cursor_property\r\n *\r\n * It's up to you to pick a suitable cursor format that works across the range of browsers you need to support.\r\n *\r\n * @method Phaser.Input.InputPlugin#setDefaultCursor\r\n * @since 3.10.0\r\n *\r\n * @param {string} cursor - The CSS to be used when setting the default cursor.\r\n *\r\n * @return {this} This Input instance.\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2840, + "lineno": 3034, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193893,14 +194333,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#setDefaultCursor", "scope": "instance", - "___id": "T000002R021849", + "___id": "T000002R021835", "___s": true }, { "comment": "/**\r\n * Loops through all of the Input Manager Pointer instances and calls `reset` on them.\r\n *\r\n * Use this function if you find that input has been stolen from Phaser via a 3rd\r\n * party component, such as Vue, and you need to tell Phaser to reset the Pointer states.\r\n *\r\n * @method Phaser.Input.InputPlugin#resetPointers\r\n * @since 3.60.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 2959, + "lineno": 3153, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193912,14 +194352,14 @@ "memberof": "Phaser.Input.InputPlugin", "longname": "Phaser.Input.InputPlugin#resetPointers", "scope": "instance", - "___id": "T000002R021874", + "___id": "T000002R021860", "___s": true }, { "comment": "/**\r\n * The x coordinates of the ActivePointer based on the first camera in the camera list.\r\n * This is only safe to use if your game has just 1 non-transformed camera and doesn't use multi-touch.\r\n *\r\n * @name Phaser.Input.InputPlugin#x\r\n * @type {number}\r\n * @readonly\r\n * @since 3.0.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3005, + "lineno": 3199, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193941,14 +194381,14 @@ "longname": "Phaser.Input.InputPlugin#x", "scope": "instance", "kind": "member", - "___id": "T000002R021885", + "___id": "T000002R021871", "___s": true }, { "comment": "/**\r\n * The y coordinates of the ActivePointer based on the first camera in the camera list.\r\n * This is only safe to use if your game has just 1 non-transformed camera and doesn't use multi-touch.\r\n *\r\n * @name Phaser.Input.InputPlugin#y\r\n * @type {number}\r\n * @readonly\r\n * @since 3.0.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3023, + "lineno": 3217, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193970,14 +194410,14 @@ "longname": "Phaser.Input.InputPlugin#y", "scope": "instance", "kind": "member", - "___id": "T000002R021888", + "___id": "T000002R021874", "___s": true }, { "comment": "/**\r\n * Are any mouse or touch pointers currently over the game canvas?\r\n *\r\n * @name Phaser.Input.InputPlugin#isOver\r\n * @type {boolean}\r\n * @readonly\r\n * @since 3.16.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3041, + "lineno": 3235, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -193999,14 +194439,14 @@ "longname": "Phaser.Input.InputPlugin#isOver", "scope": "instance", "kind": "member", - "___id": "T000002R021891", + "___id": "T000002R021877", "___s": true }, { "comment": "/**\r\n * The mouse has its own unique Pointer object, which you can reference directly if making a _desktop specific game_.\r\n * If you are supporting both desktop and touch devices then do not use this property, instead use `activePointer`\r\n * which will always map to the most recently interacted pointer.\r\n *\r\n * @name Phaser.Input.InputPlugin#mousePointer\r\n * @type {Phaser.Input.Pointer}\r\n * @readonly\r\n * @since 3.10.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3058, + "lineno": 3252, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -194028,14 +194468,14 @@ "longname": "Phaser.Input.InputPlugin#mousePointer", "scope": "instance", "kind": "member", - "___id": "T000002R021894", + "___id": "T000002R021880", "___s": true }, { "comment": "/**\r\n * The current active input Pointer.\r\n *\r\n * @name Phaser.Input.InputPlugin#activePointer\r\n * @type {Phaser.Input.Pointer}\r\n * @readonly\r\n * @since 3.0.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3077, + "lineno": 3271, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -194057,14 +194497,14 @@ "longname": "Phaser.Input.InputPlugin#activePointer", "scope": "instance", "kind": "member", - "___id": "T000002R021897", + "___id": "T000002R021883", "___s": true }, { "comment": "/**\r\n * A touch-based Pointer object.\r\n * This will be `undefined` by default unless you add a new Pointer using `addPointer`.\r\n *\r\n * @name Phaser.Input.InputPlugin#pointer1\r\n * @type {Phaser.Input.Pointer}\r\n * @readonly\r\n * @since 3.10.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3094, + "lineno": 3288, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -194086,14 +194526,14 @@ "longname": "Phaser.Input.InputPlugin#pointer1", "scope": "instance", "kind": "member", - "___id": "T000002R021900", + "___id": "T000002R021886", "___s": true }, { "comment": "/**\r\n * A touch-based Pointer object.\r\n * This will be `undefined` by default unless you add a new Pointer using `addPointer`.\r\n *\r\n * @name Phaser.Input.InputPlugin#pointer2\r\n * @type {Phaser.Input.Pointer}\r\n * @readonly\r\n * @since 3.10.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3112, + "lineno": 3306, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -194115,14 +194555,14 @@ "longname": "Phaser.Input.InputPlugin#pointer2", "scope": "instance", "kind": "member", - "___id": "T000002R021903", + "___id": "T000002R021889", "___s": true }, { "comment": "/**\r\n * A touch-based Pointer object.\r\n * This will be `undefined` by default unless you add a new Pointer using `addPointer`.\r\n *\r\n * @name Phaser.Input.InputPlugin#pointer3\r\n * @type {Phaser.Input.Pointer}\r\n * @readonly\r\n * @since 3.10.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3130, + "lineno": 3324, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -194144,14 +194584,14 @@ "longname": "Phaser.Input.InputPlugin#pointer3", "scope": "instance", "kind": "member", - "___id": "T000002R021906", + "___id": "T000002R021892", "___s": true }, { "comment": "/**\r\n * A touch-based Pointer object.\r\n * This will be `undefined` by default unless you add a new Pointer using `addPointer`.\r\n *\r\n * @name Phaser.Input.InputPlugin#pointer4\r\n * @type {Phaser.Input.Pointer}\r\n * @readonly\r\n * @since 3.10.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3148, + "lineno": 3342, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -194173,14 +194613,14 @@ "longname": "Phaser.Input.InputPlugin#pointer4", "scope": "instance", "kind": "member", - "___id": "T000002R021909", + "___id": "T000002R021895", "___s": true }, { "comment": "/**\r\n * A touch-based Pointer object.\r\n * This will be `undefined` by default unless you add a new Pointer using `addPointer`.\r\n *\r\n * @name Phaser.Input.InputPlugin#pointer5\r\n * @type {Phaser.Input.Pointer}\r\n * @readonly\r\n * @since 3.10.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3166, + "lineno": 3360, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -194202,14 +194642,14 @@ "longname": "Phaser.Input.InputPlugin#pointer5", "scope": "instance", "kind": "member", - "___id": "T000002R021912", + "___id": "T000002R021898", "___s": true }, { "comment": "/**\r\n * A touch-based Pointer object.\r\n * This will be `undefined` by default unless you add a new Pointer using `addPointer`.\r\n *\r\n * @name Phaser.Input.InputPlugin#pointer6\r\n * @type {Phaser.Input.Pointer}\r\n * @readonly\r\n * @since 3.10.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3184, + "lineno": 3378, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -194231,14 +194671,14 @@ "longname": "Phaser.Input.InputPlugin#pointer6", "scope": "instance", "kind": "member", - "___id": "T000002R021915", + "___id": "T000002R021901", "___s": true }, { "comment": "/**\r\n * A touch-based Pointer object.\r\n * This will be `undefined` by default unless you add a new Pointer using `addPointer`.\r\n *\r\n * @name Phaser.Input.InputPlugin#pointer7\r\n * @type {Phaser.Input.Pointer}\r\n * @readonly\r\n * @since 3.10.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3202, + "lineno": 3396, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -194260,14 +194700,14 @@ "longname": "Phaser.Input.InputPlugin#pointer7", "scope": "instance", "kind": "member", - "___id": "T000002R021918", + "___id": "T000002R021904", "___s": true }, { "comment": "/**\r\n * A touch-based Pointer object.\r\n * This will be `undefined` by default unless you add a new Pointer using `addPointer`.\r\n *\r\n * @name Phaser.Input.InputPlugin#pointer8\r\n * @type {Phaser.Input.Pointer}\r\n * @readonly\r\n * @since 3.10.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3220, + "lineno": 3414, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -194289,14 +194729,14 @@ "longname": "Phaser.Input.InputPlugin#pointer8", "scope": "instance", "kind": "member", - "___id": "T000002R021921", + "___id": "T000002R021907", "___s": true }, { "comment": "/**\r\n * A touch-based Pointer object.\r\n * This will be `undefined` by default unless you add a new Pointer using `addPointer`.\r\n *\r\n * @name Phaser.Input.InputPlugin#pointer9\r\n * @type {Phaser.Input.Pointer}\r\n * @readonly\r\n * @since 3.10.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3238, + "lineno": 3432, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -194318,14 +194758,14 @@ "longname": "Phaser.Input.InputPlugin#pointer9", "scope": "instance", "kind": "member", - "___id": "T000002R021924", + "___id": "T000002R021910", "___s": true }, { "comment": "/**\r\n * A touch-based Pointer object.\r\n * This will be `undefined` by default unless you add a new Pointer using `addPointer`.\r\n *\r\n * @name Phaser.Input.InputPlugin#pointer10\r\n * @type {Phaser.Input.Pointer}\r\n * @readonly\r\n * @since 3.10.0\r\n */", "meta": { "filename": "InputPlugin.js", - "lineno": 3256, + "lineno": 3450, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} @@ -194347,7 +194787,7 @@ "longname": "Phaser.Input.InputPlugin#pointer10", "scope": "instance", "kind": "member", - "___id": "T000002R021927", + "___id": "T000002R021913", "___s": true }, { @@ -194364,7 +194804,7 @@ "memberof": "Phaser.Input", "longname": "Phaser.Input.InputPluginCache", "scope": "static", - "___id": "T000002R021933", + "___id": "T000002R021919", "___s": true }, { @@ -194450,7 +194890,7 @@ ], "memberof": "Phaser.Input.InputPluginCache", "longname": "Phaser.Input.InputPluginCache.register", - "___id": "T000002R021935", + "___id": "T000002R021921", "___s": true }, { @@ -194498,7 +194938,7 @@ ], "memberof": "Phaser.Input.InputPluginCache", "longname": "Phaser.Input.InputPluginCache.getPlugin", - "___id": "T000002R021942", + "___id": "T000002R021928", "___s": true }, { @@ -194532,7 +194972,7 @@ ], "memberof": "Phaser.Input.InputPluginCache", "longname": "Phaser.Input.InputPluginCache.install", - "___id": "T000002R021944", + "___id": "T000002R021930", "___s": true }, { @@ -194566,7 +195006,7 @@ ], "memberof": "Phaser.Input.InputPluginCache", "longname": "Phaser.Input.InputPluginCache.remove", - "___id": "T000002R021955", + "___id": "T000002R021941", "___s": true }, { @@ -194663,7 +195103,7 @@ ], "scope": "static", "longname": "Phaser.Input.Keyboard.KeyCombo", - "___id": "T000002R021968", + "___id": "T000002R021954", "___s": true }, { @@ -194691,7 +195131,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#manager", "scope": "instance", "kind": "member", - "___id": "T000002R021972", + "___id": "T000002R021958", "___s": true }, { @@ -194720,7 +195160,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#enabled", "scope": "instance", "kind": "member", - "___id": "T000002R021974", + "___id": "T000002R021960", "___s": true }, { @@ -194749,7 +195189,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#keyCodes", "scope": "instance", "kind": "member", - "___id": "T000002R021976", + "___id": "T000002R021962", "___s": true }, { @@ -194777,7 +195217,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#current", "scope": "instance", "kind": "member", - "___id": "T000002R021980", + "___id": "T000002R021966", "___s": true }, { @@ -194806,7 +195246,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#index", "scope": "instance", "kind": "member", - "___id": "T000002R021982", + "___id": "T000002R021968", "___s": true }, { @@ -194834,7 +195274,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#size", "scope": "instance", "kind": "member", - "___id": "T000002R021984", + "___id": "T000002R021970", "___s": true }, { @@ -194863,7 +195303,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#timeLastMatched", "scope": "instance", "kind": "member", - "___id": "T000002R021986", + "___id": "T000002R021972", "___s": true }, { @@ -194892,7 +195332,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#matched", "scope": "instance", "kind": "member", - "___id": "T000002R021988", + "___id": "T000002R021974", "___s": true }, { @@ -194921,7 +195361,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#timeMatched", "scope": "instance", "kind": "member", - "___id": "T000002R021990", + "___id": "T000002R021976", "___s": true }, { @@ -194950,7 +195390,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#resetOnWrongKey", "scope": "instance", "kind": "member", - "___id": "T000002R021992", + "___id": "T000002R021978", "___s": true }, { @@ -194979,7 +195419,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#maxKeyDelay", "scope": "instance", "kind": "member", - "___id": "T000002R021994", + "___id": "T000002R021980", "___s": true }, { @@ -195008,7 +195448,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#resetOnMatch", "scope": "instance", "kind": "member", - "___id": "T000002R021996", + "___id": "T000002R021982", "___s": true }, { @@ -195037,7 +195477,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#deleteOnMatch", "scope": "instance", "kind": "member", - "___id": "T000002R021998", + "___id": "T000002R021984", "___s": true }, { @@ -195066,7 +195506,7 @@ "longname": "Phaser.Input.Keyboard.KeyCombo#progress", "scope": "instance", "kind": "member", - "___id": "T000002R022005", + "___id": "T000002R021991", "___s": true }, { @@ -195085,7 +195525,7 @@ "memberof": "Phaser.Input.Keyboard.KeyCombo", "longname": "Phaser.Input.Keyboard.KeyCombo#destroy", "scope": "instance", - "___id": "T000002R022008", + "___id": "T000002R021994", "___s": true }, { @@ -195128,7 +195568,7 @@ "memberof": "Phaser.Input.Keyboard.Events", "longname": "Phaser.Input.Keyboard.Events#event:ANY_KEY_DOWN", "scope": "instance", - "___id": "T000002R022038", + "___id": "T000002R022024", "___s": true }, { @@ -195171,7 +195611,7 @@ "memberof": "Phaser.Input.Keyboard.Events", "longname": "Phaser.Input.Keyboard.Events#event:ANY_KEY_UP", "scope": "instance", - "___id": "T000002R022040", + "___id": "T000002R022026", "___s": true }, { @@ -195227,7 +195667,7 @@ "memberof": "Phaser.Input.Keyboard.Events", "longname": "Phaser.Input.Keyboard.Events#event:COMBO_MATCH", "scope": "instance", - "___id": "T000002R022042", + "___id": "T000002R022028", "___s": true }, { @@ -195283,7 +195723,7 @@ "memberof": "Phaser.Input.Keyboard.Events", "longname": "Phaser.Input.Keyboard.Events#event:DOWN", "scope": "instance", - "___id": "T000002R022044", + "___id": "T000002R022030", "___s": true }, { @@ -195300,7 +195740,7 @@ "memberof": "Phaser.Input.Keyboard", "longname": "Phaser.Input.Keyboard.Events", "scope": "static", - "___id": "T000002R022046", + "___id": "T000002R022032", "___s": true }, { @@ -195343,7 +195783,7 @@ "memberof": "Phaser.Input.Keyboard.Events", "longname": "Phaser.Input.Keyboard.Events#event:KEY_DOWN", "scope": "instance", - "___id": "T000002R022055", + "___id": "T000002R022041", "___s": true }, { @@ -195386,7 +195826,7 @@ "memberof": "Phaser.Input.Keyboard.Events", "longname": "Phaser.Input.Keyboard.Events#event:KEY_UP", "scope": "instance", - "___id": "T000002R022057", + "___id": "T000002R022043", "___s": true }, { @@ -195442,7 +195882,7 @@ "memberof": "Phaser.Input.Keyboard.Events", "longname": "Phaser.Input.Keyboard.Events#event:UP", "scope": "instance", - "___id": "T000002R022059", + "___id": "T000002R022045", "___s": true }, { @@ -195459,7 +195899,7 @@ "memberof": "Phaser.Input", "longname": "Phaser.Input.Keyboard", "scope": "static", - "___id": "T000002R022061", + "___id": "T000002R022047", "___s": true }, { @@ -195493,7 +195933,7 @@ ], "scope": "static", "longname": "Phaser.Input.Keyboard.KeyboardManager", - "___id": "T000002R022082", + "___id": "T000002R022068", "___s": true }, { @@ -195521,7 +195961,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardManager#manager", "scope": "instance", "kind": "member", - "___id": "T000002R022085", + "___id": "T000002R022071", "___s": true }, { @@ -195549,7 +195989,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardManager#preventDefault", "scope": "instance", "kind": "member", - "___id": "T000002R022089", + "___id": "T000002R022075", "___s": true }, { @@ -195586,7 +196026,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardManager#captures", "scope": "instance", "kind": "member", - "___id": "T000002R022091", + "___id": "T000002R022077", "___s": true }, { @@ -195615,7 +196055,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardManager#enabled", "scope": "instance", "kind": "member", - "___id": "T000002R022093", + "___id": "T000002R022079", "___s": true }, { @@ -195643,7 +196083,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardManager#target", "scope": "instance", "kind": "member", - "___id": "T000002R022095", + "___id": "T000002R022081", "___s": true }, { @@ -195671,7 +196111,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardManager#onKeyDown", "scope": "instance", "kind": "member", - "___id": "T000002R022097", + "___id": "T000002R022083", "___s": true }, { @@ -195699,7 +196139,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardManager#onKeyUp", "scope": "instance", "kind": "member", - "___id": "T000002R022099", + "___id": "T000002R022085", "___s": true }, { @@ -195718,7 +196158,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardManager", "longname": "Phaser.Input.Keyboard.KeyboardManager#startListeners", "scope": "instance", - "___id": "T000002R022107", + "___id": "T000002R022093", "___s": true }, { @@ -195737,7 +196177,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardManager", "longname": "Phaser.Input.Keyboard.KeyboardManager#stopListeners", "scope": "instance", - "___id": "T000002R022116", + "___id": "T000002R022102", "___s": true }, { @@ -195809,7 +196249,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardManager", "longname": "Phaser.Input.Keyboard.KeyboardManager#addCapture", "scope": "instance", - "___id": "T000002R022123", + "___id": "T000002R022109", "___s": true }, { @@ -195881,7 +196321,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardManager", "longname": "Phaser.Input.Keyboard.KeyboardManager#removeCapture", "scope": "instance", - "___id": "T000002R022132", + "___id": "T000002R022118", "___s": true }, { @@ -195900,7 +196340,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardManager", "longname": "Phaser.Input.Keyboard.KeyboardManager#clearCaptures", "scope": "instance", - "___id": "T000002R022141", + "___id": "T000002R022127", "___s": true }, { @@ -195919,7 +196359,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardManager", "longname": "Phaser.Input.Keyboard.KeyboardManager#destroy", "scope": "instance", - "___id": "T000002R022145", + "___id": "T000002R022131", "___s": true }, { @@ -195956,7 +196396,7 @@ ], "scope": "static", "longname": "Phaser.Input.Keyboard.KeyboardPlugin", - "___id": "T000002R022165", + "___id": "T000002R022151", "___s": true }, { @@ -195984,7 +196424,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardPlugin#game", "scope": "instance", "kind": "member", - "___id": "T000002R022169", + "___id": "T000002R022155", "___s": true }, { @@ -196012,7 +196452,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardPlugin#scene", "scope": "instance", "kind": "member", - "___id": "T000002R022171", + "___id": "T000002R022157", "___s": true }, { @@ -196040,7 +196480,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardPlugin#settings", "scope": "instance", "kind": "member", - "___id": "T000002R022173", + "___id": "T000002R022159", "___s": true }, { @@ -196068,7 +196508,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardPlugin#sceneInputPlugin", "scope": "instance", "kind": "member", - "___id": "T000002R022175", + "___id": "T000002R022161", "___s": true }, { @@ -196096,7 +196536,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardPlugin#manager", "scope": "instance", "kind": "member", - "___id": "T000002R022177", + "___id": "T000002R022163", "___s": true }, { @@ -196125,7 +196565,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardPlugin#enabled", "scope": "instance", "kind": "member", - "___id": "T000002R022179", + "___id": "T000002R022165", "___s": true }, { @@ -196162,7 +196602,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardPlugin#keys", "scope": "instance", "kind": "member", - "___id": "T000002R022181", + "___id": "T000002R022167", "___s": true }, { @@ -196199,7 +196639,7 @@ "longname": "Phaser.Input.Keyboard.KeyboardPlugin#combos", "scope": "instance", "kind": "member", - "___id": "T000002R022183", + "___id": "T000002R022169", "___s": true }, { @@ -196232,7 +196672,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#isActive", "scope": "instance", - "___id": "T000002R022198", + "___id": "T000002R022184", "___s": true }, { @@ -196319,7 +196759,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#addCapture", "scope": "instance", - "___id": "T000002R022200", + "___id": "T000002R022186", "___s": true }, { @@ -196406,7 +196846,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#removeCapture", "scope": "instance", - "___id": "T000002R022202", + "___id": "T000002R022188", "___s": true }, { @@ -196448,7 +196888,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#getCaptures", "scope": "instance", - "___id": "T000002R022204", + "___id": "T000002R022190", "___s": true }, { @@ -196482,7 +196922,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#enableGlobalCapture", "scope": "instance", - "___id": "T000002R022206", + "___id": "T000002R022192", "___s": true }, { @@ -196516,7 +196956,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#disableGlobalCapture", "scope": "instance", - "___id": "T000002R022209", + "___id": "T000002R022195", "___s": true }, { @@ -196550,7 +196990,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#clearCaptures", "scope": "instance", - "___id": "T000002R022212", + "___id": "T000002R022198", "___s": true }, { @@ -196583,7 +197023,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#createCursorKeys", "scope": "instance", - "___id": "T000002R022214", + "___id": "T000002R022200", "___s": true }, { @@ -196671,7 +197111,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#addKeys", "scope": "instance", - "___id": "T000002R022222", + "___id": "T000002R022208", "___s": true }, { @@ -196764,7 +197204,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#addKey", "scope": "instance", - "___id": "T000002R022233", + "___id": "T000002R022219", "___s": true }, { @@ -196858,7 +197298,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#removeKey", "scope": "instance", - "___id": "T000002R022243", + "___id": "T000002R022229", "___s": true }, { @@ -196924,7 +197364,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#removeAllKeys", "scope": "instance", - "___id": "T000002R022256", + "___id": "T000002R022242", "___s": true }, { @@ -197019,7 +197459,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#createCombo", "scope": "instance", - "___id": "T000002R022264", + "___id": "T000002R022250", "___s": true }, { @@ -197082,7 +197522,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#checkDown", "scope": "instance", - "___id": "T000002R022266", + "___id": "T000002R022252", "___s": true }, { @@ -197116,7 +197556,7 @@ "memberof": "Phaser.Input.Keyboard.KeyboardPlugin", "longname": "Phaser.Input.Keyboard.KeyboardPlugin#resetKeys", "scope": "instance", - "___id": "T000002R022291", + "___id": "T000002R022277", "___s": true }, { @@ -197146,7 +197586,7 @@ "longname": "Phaser.Input.InputPlugin#keyboard", "scope": "instance", "kind": "member", - "___id": "T000002R022312", + "___id": "T000002R022298", "___s": true }, { @@ -197209,7 +197649,7 @@ "memberof": "Phaser.Input.Keyboard", "longname": "Phaser.Input.Keyboard.DownDuration", "scope": "static", - "___id": "T000002R022314", + "___id": "T000002R022300", "___s": true }, { @@ -197257,7 +197697,7 @@ "memberof": "Phaser.Input.Keyboard", "longname": "Phaser.Input.Keyboard.JustDown", "scope": "static", - "___id": "T000002R022319", + "___id": "T000002R022305", "___s": true }, { @@ -197305,7 +197745,7 @@ "memberof": "Phaser.Input.Keyboard", "longname": "Phaser.Input.Keyboard.JustUp", "scope": "static", - "___id": "T000002R022323", + "___id": "T000002R022309", "___s": true }, { @@ -197355,7 +197795,7 @@ ], "scope": "static", "longname": "Phaser.Input.Keyboard.Key", - "___id": "T000002R022330", + "___id": "T000002R022316", "___s": true }, { @@ -197383,7 +197823,7 @@ "longname": "Phaser.Input.Keyboard.Key#plugin", "scope": "instance", "kind": "member", - "___id": "T000002R022334", + "___id": "T000002R022320", "___s": true }, { @@ -197411,7 +197851,7 @@ "longname": "Phaser.Input.Keyboard.Key#keyCode", "scope": "instance", "kind": "member", - "___id": "T000002R022336", + "___id": "T000002R022322", "___s": true }, { @@ -197439,7 +197879,7 @@ "longname": "Phaser.Input.Keyboard.Key#originalEvent", "scope": "instance", "kind": "member", - "___id": "T000002R022338", + "___id": "T000002R022324", "___s": true }, { @@ -197468,7 +197908,7 @@ "longname": "Phaser.Input.Keyboard.Key#enabled", "scope": "instance", "kind": "member", - "___id": "T000002R022340", + "___id": "T000002R022326", "___s": true }, { @@ -197497,7 +197937,7 @@ "longname": "Phaser.Input.Keyboard.Key#isDown", "scope": "instance", "kind": "member", - "___id": "T000002R022342", + "___id": "T000002R022328", "___s": true }, { @@ -197526,7 +197966,7 @@ "longname": "Phaser.Input.Keyboard.Key#isUp", "scope": "instance", "kind": "member", - "___id": "T000002R022344", + "___id": "T000002R022330", "___s": true }, { @@ -197555,7 +197995,7 @@ "longname": "Phaser.Input.Keyboard.Key#altKey", "scope": "instance", "kind": "member", - "___id": "T000002R022346", + "___id": "T000002R022332", "___s": true }, { @@ -197584,7 +198024,7 @@ "longname": "Phaser.Input.Keyboard.Key#ctrlKey", "scope": "instance", "kind": "member", - "___id": "T000002R022348", + "___id": "T000002R022334", "___s": true }, { @@ -197613,7 +198053,7 @@ "longname": "Phaser.Input.Keyboard.Key#shiftKey", "scope": "instance", "kind": "member", - "___id": "T000002R022350", + "___id": "T000002R022336", "___s": true }, { @@ -197642,7 +198082,7 @@ "longname": "Phaser.Input.Keyboard.Key#metaKey", "scope": "instance", "kind": "member", - "___id": "T000002R022352", + "___id": "T000002R022338", "___s": true }, { @@ -197671,7 +198111,7 @@ "longname": "Phaser.Input.Keyboard.Key#location", "scope": "instance", "kind": "member", - "___id": "T000002R022354", + "___id": "T000002R022340", "___s": true }, { @@ -197700,7 +198140,7 @@ "longname": "Phaser.Input.Keyboard.Key#timeDown", "scope": "instance", "kind": "member", - "___id": "T000002R022356", + "___id": "T000002R022342", "___s": true }, { @@ -197729,7 +198169,7 @@ "longname": "Phaser.Input.Keyboard.Key#duration", "scope": "instance", "kind": "member", - "___id": "T000002R022358", + "___id": "T000002R022344", "___s": true }, { @@ -197758,7 +198198,7 @@ "longname": "Phaser.Input.Keyboard.Key#timeUp", "scope": "instance", "kind": "member", - "___id": "T000002R022360", + "___id": "T000002R022346", "___s": true }, { @@ -197787,7 +198227,7 @@ "longname": "Phaser.Input.Keyboard.Key#emitOnRepeat", "scope": "instance", "kind": "member", - "___id": "T000002R022362", + "___id": "T000002R022348", "___s": true }, { @@ -197816,7 +198256,7 @@ "longname": "Phaser.Input.Keyboard.Key#repeats", "scope": "instance", "kind": "member", - "___id": "T000002R022364", + "___id": "T000002R022350", "___s": true }, { @@ -197865,7 +198305,7 @@ "memberof": "Phaser.Input.Keyboard.Key", "longname": "Phaser.Input.Keyboard.Key#setEmitOnRepeat", "scope": "instance", - "___id": "T000002R022372", + "___id": "T000002R022358", "___s": true }, { @@ -197902,7 +198342,7 @@ "memberof": "Phaser.Input.Keyboard.Key", "longname": "Phaser.Input.Keyboard.Key#onDown", "scope": "instance", - "___id": "T000002R022375", + "___id": "T000002R022361", "___s": true }, { @@ -197939,7 +198379,7 @@ "memberof": "Phaser.Input.Keyboard.Key", "longname": "Phaser.Input.Keyboard.Key#onUp", "scope": "instance", - "___id": "T000002R022389", + "___id": "T000002R022375", "___s": true }, { @@ -197973,7 +198413,7 @@ "memberof": "Phaser.Input.Keyboard.Key", "longname": "Phaser.Input.Keyboard.Key#reset", "scope": "instance", - "___id": "T000002R022400", + "___id": "T000002R022386", "___s": true }, { @@ -198006,7 +198446,7 @@ "memberof": "Phaser.Input.Keyboard.Key", "longname": "Phaser.Input.Keyboard.Key#getDuration", "scope": "instance", - "___id": "T000002R022415", + "___id": "T000002R022401", "___s": true }, { @@ -198026,7 +198466,7 @@ "longname": "Phaser.Input.Keyboard.Key#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R022417", + "___id": "T000002R022403", "___s": true }, { @@ -198045,7 +198485,7 @@ "since": "3.0.0", "longname": "Phaser.Input.Keyboard.KeyCodes", "scope": "static", - "___id": "T000002R022422", + "___id": "T000002R022408", "___s": true }, { @@ -198073,7 +198513,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.BACKSPACE", "scope": "static", "kind": "member", - "___id": "T000002R022424", + "___id": "T000002R022410", "___s": true }, { @@ -198101,7 +198541,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.TAB", "scope": "static", "kind": "member", - "___id": "T000002R022426", + "___id": "T000002R022412", "___s": true }, { @@ -198129,7 +198569,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.ENTER", "scope": "static", "kind": "member", - "___id": "T000002R022428", + "___id": "T000002R022414", "___s": true }, { @@ -198157,7 +198597,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.SHIFT", "scope": "static", "kind": "member", - "___id": "T000002R022430", + "___id": "T000002R022416", "___s": true }, { @@ -198185,7 +198625,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.CTRL", "scope": "static", "kind": "member", - "___id": "T000002R022432", + "___id": "T000002R022418", "___s": true }, { @@ -198213,7 +198653,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.ALT", "scope": "static", "kind": "member", - "___id": "T000002R022434", + "___id": "T000002R022420", "___s": true }, { @@ -198241,7 +198681,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.PAUSE", "scope": "static", "kind": "member", - "___id": "T000002R022436", + "___id": "T000002R022422", "___s": true }, { @@ -198269,7 +198709,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.CAPS_LOCK", "scope": "static", "kind": "member", - "___id": "T000002R022438", + "___id": "T000002R022424", "___s": true }, { @@ -198297,7 +198737,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.ESC", "scope": "static", "kind": "member", - "___id": "T000002R022440", + "___id": "T000002R022426", "___s": true }, { @@ -198325,7 +198765,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.SPACE", "scope": "static", "kind": "member", - "___id": "T000002R022442", + "___id": "T000002R022428", "___s": true }, { @@ -198353,7 +198793,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.PAGE_UP", "scope": "static", "kind": "member", - "___id": "T000002R022444", + "___id": "T000002R022430", "___s": true }, { @@ -198381,7 +198821,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.PAGE_DOWN", "scope": "static", "kind": "member", - "___id": "T000002R022446", + "___id": "T000002R022432", "___s": true }, { @@ -198409,7 +198849,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.END", "scope": "static", "kind": "member", - "___id": "T000002R022448", + "___id": "T000002R022434", "___s": true }, { @@ -198437,7 +198877,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.HOME", "scope": "static", "kind": "member", - "___id": "T000002R022450", + "___id": "T000002R022436", "___s": true }, { @@ -198465,7 +198905,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.LEFT", "scope": "static", "kind": "member", - "___id": "T000002R022452", + "___id": "T000002R022438", "___s": true }, { @@ -198493,7 +198933,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.UP", "scope": "static", "kind": "member", - "___id": "T000002R022454", + "___id": "T000002R022440", "___s": true }, { @@ -198521,7 +198961,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.RIGHT", "scope": "static", "kind": "member", - "___id": "T000002R022456", + "___id": "T000002R022442", "___s": true }, { @@ -198549,7 +198989,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.DOWN", "scope": "static", "kind": "member", - "___id": "T000002R022458", + "___id": "T000002R022444", "___s": true }, { @@ -198577,7 +199017,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.PRINT_SCREEN", "scope": "static", "kind": "member", - "___id": "T000002R022460", + "___id": "T000002R022446", "___s": true }, { @@ -198605,7 +199045,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.INSERT", "scope": "static", "kind": "member", - "___id": "T000002R022462", + "___id": "T000002R022448", "___s": true }, { @@ -198633,7 +199073,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.DELETE", "scope": "static", "kind": "member", - "___id": "T000002R022464", + "___id": "T000002R022450", "___s": true }, { @@ -198661,7 +199101,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.ZERO", "scope": "static", "kind": "member", - "___id": "T000002R022466", + "___id": "T000002R022452", "___s": true }, { @@ -198689,7 +199129,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.ONE", "scope": "static", "kind": "member", - "___id": "T000002R022468", + "___id": "T000002R022454", "___s": true }, { @@ -198717,7 +199157,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.TWO", "scope": "static", "kind": "member", - "___id": "T000002R022470", + "___id": "T000002R022456", "___s": true }, { @@ -198745,7 +199185,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.THREE", "scope": "static", "kind": "member", - "___id": "T000002R022472", + "___id": "T000002R022458", "___s": true }, { @@ -198773,7 +199213,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.FOUR", "scope": "static", "kind": "member", - "___id": "T000002R022474", + "___id": "T000002R022460", "___s": true }, { @@ -198801,7 +199241,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.FIVE", "scope": "static", "kind": "member", - "___id": "T000002R022476", + "___id": "T000002R022462", "___s": true }, { @@ -198829,7 +199269,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.SIX", "scope": "static", "kind": "member", - "___id": "T000002R022478", + "___id": "T000002R022464", "___s": true }, { @@ -198857,7 +199297,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.SEVEN", "scope": "static", "kind": "member", - "___id": "T000002R022480", + "___id": "T000002R022466", "___s": true }, { @@ -198885,7 +199325,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.EIGHT", "scope": "static", "kind": "member", - "___id": "T000002R022482", + "___id": "T000002R022468", "___s": true }, { @@ -198913,7 +199353,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NINE", "scope": "static", "kind": "member", - "___id": "T000002R022484", + "___id": "T000002R022470", "___s": true }, { @@ -198941,7 +199381,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NUMPAD_ZERO", "scope": "static", "kind": "member", - "___id": "T000002R022486", + "___id": "T000002R022472", "___s": true }, { @@ -198969,7 +199409,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NUMPAD_ONE", "scope": "static", "kind": "member", - "___id": "T000002R022488", + "___id": "T000002R022474", "___s": true }, { @@ -198997,7 +199437,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NUMPAD_TWO", "scope": "static", "kind": "member", - "___id": "T000002R022490", + "___id": "T000002R022476", "___s": true }, { @@ -199025,7 +199465,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NUMPAD_THREE", "scope": "static", "kind": "member", - "___id": "T000002R022492", + "___id": "T000002R022478", "___s": true }, { @@ -199053,7 +199493,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NUMPAD_FOUR", "scope": "static", "kind": "member", - "___id": "T000002R022494", + "___id": "T000002R022480", "___s": true }, { @@ -199081,7 +199521,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NUMPAD_FIVE", "scope": "static", "kind": "member", - "___id": "T000002R022496", + "___id": "T000002R022482", "___s": true }, { @@ -199109,7 +199549,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NUMPAD_SIX", "scope": "static", "kind": "member", - "___id": "T000002R022498", + "___id": "T000002R022484", "___s": true }, { @@ -199137,7 +199577,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NUMPAD_SEVEN", "scope": "static", "kind": "member", - "___id": "T000002R022500", + "___id": "T000002R022486", "___s": true }, { @@ -199165,7 +199605,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NUMPAD_EIGHT", "scope": "static", "kind": "member", - "___id": "T000002R022502", + "___id": "T000002R022488", "___s": true }, { @@ -199193,7 +199633,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NUMPAD_NINE", "scope": "static", "kind": "member", - "___id": "T000002R022504", + "___id": "T000002R022490", "___s": true }, { @@ -199221,7 +199661,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NUMPAD_ADD", "scope": "static", "kind": "member", - "___id": "T000002R022506", + "___id": "T000002R022492", "___s": true }, { @@ -199249,7 +199689,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.NUMPAD_SUBTRACT", "scope": "static", "kind": "member", - "___id": "T000002R022508", + "___id": "T000002R022494", "___s": true }, { @@ -199277,7 +199717,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.A", "scope": "static", "kind": "member", - "___id": "T000002R022510", + "___id": "T000002R022496", "___s": true }, { @@ -199305,7 +199745,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.B", "scope": "static", "kind": "member", - "___id": "T000002R022512", + "___id": "T000002R022498", "___s": true }, { @@ -199333,7 +199773,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.C", "scope": "static", "kind": "member", - "___id": "T000002R022514", + "___id": "T000002R022500", "___s": true }, { @@ -199361,7 +199801,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.D", "scope": "static", "kind": "member", - "___id": "T000002R022516", + "___id": "T000002R022502", "___s": true }, { @@ -199389,7 +199829,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.E", "scope": "static", "kind": "member", - "___id": "T000002R022518", + "___id": "T000002R022504", "___s": true }, { @@ -199417,7 +199857,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F", "scope": "static", "kind": "member", - "___id": "T000002R022520", + "___id": "T000002R022506", "___s": true }, { @@ -199445,7 +199885,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.G", "scope": "static", "kind": "member", - "___id": "T000002R022522", + "___id": "T000002R022508", "___s": true }, { @@ -199473,7 +199913,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.H", "scope": "static", "kind": "member", - "___id": "T000002R022524", + "___id": "T000002R022510", "___s": true }, { @@ -199501,7 +199941,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.I", "scope": "static", "kind": "member", - "___id": "T000002R022526", + "___id": "T000002R022512", "___s": true }, { @@ -199529,7 +199969,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.J", "scope": "static", "kind": "member", - "___id": "T000002R022528", + "___id": "T000002R022514", "___s": true }, { @@ -199557,7 +199997,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.K", "scope": "static", "kind": "member", - "___id": "T000002R022530", + "___id": "T000002R022516", "___s": true }, { @@ -199585,7 +200025,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.L", "scope": "static", "kind": "member", - "___id": "T000002R022532", + "___id": "T000002R022518", "___s": true }, { @@ -199613,7 +200053,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.M", "scope": "static", "kind": "member", - "___id": "T000002R022534", + "___id": "T000002R022520", "___s": true }, { @@ -199641,7 +200081,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.N", "scope": "static", "kind": "member", - "___id": "T000002R022536", + "___id": "T000002R022522", "___s": true }, { @@ -199669,7 +200109,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.O", "scope": "static", "kind": "member", - "___id": "T000002R022538", + "___id": "T000002R022524", "___s": true }, { @@ -199697,7 +200137,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.P", "scope": "static", "kind": "member", - "___id": "T000002R022540", + "___id": "T000002R022526", "___s": true }, { @@ -199725,7 +200165,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.Q", "scope": "static", "kind": "member", - "___id": "T000002R022542", + "___id": "T000002R022528", "___s": true }, { @@ -199753,7 +200193,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.R", "scope": "static", "kind": "member", - "___id": "T000002R022544", + "___id": "T000002R022530", "___s": true }, { @@ -199781,7 +200221,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.S", "scope": "static", "kind": "member", - "___id": "T000002R022546", + "___id": "T000002R022532", "___s": true }, { @@ -199809,7 +200249,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.T", "scope": "static", "kind": "member", - "___id": "T000002R022548", + "___id": "T000002R022534", "___s": true }, { @@ -199837,7 +200277,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.U", "scope": "static", "kind": "member", - "___id": "T000002R022550", + "___id": "T000002R022536", "___s": true }, { @@ -199865,7 +200305,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.V", "scope": "static", "kind": "member", - "___id": "T000002R022552", + "___id": "T000002R022538", "___s": true }, { @@ -199893,7 +200333,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.W", "scope": "static", "kind": "member", - "___id": "T000002R022554", + "___id": "T000002R022540", "___s": true }, { @@ -199921,7 +200361,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.X", "scope": "static", "kind": "member", - "___id": "T000002R022556", + "___id": "T000002R022542", "___s": true }, { @@ -199949,7 +200389,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.Y", "scope": "static", "kind": "member", - "___id": "T000002R022558", + "___id": "T000002R022544", "___s": true }, { @@ -199977,7 +200417,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.Z", "scope": "static", "kind": "member", - "___id": "T000002R022560", + "___id": "T000002R022546", "___s": true }, { @@ -200005,7 +200445,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F1", "scope": "static", "kind": "member", - "___id": "T000002R022562", + "___id": "T000002R022548", "___s": true }, { @@ -200033,7 +200473,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F2", "scope": "static", "kind": "member", - "___id": "T000002R022564", + "___id": "T000002R022550", "___s": true }, { @@ -200061,7 +200501,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F3", "scope": "static", "kind": "member", - "___id": "T000002R022566", + "___id": "T000002R022552", "___s": true }, { @@ -200089,7 +200529,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F4", "scope": "static", "kind": "member", - "___id": "T000002R022568", + "___id": "T000002R022554", "___s": true }, { @@ -200117,7 +200557,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F5", "scope": "static", "kind": "member", - "___id": "T000002R022570", + "___id": "T000002R022556", "___s": true }, { @@ -200145,7 +200585,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F6", "scope": "static", "kind": "member", - "___id": "T000002R022572", + "___id": "T000002R022558", "___s": true }, { @@ -200173,7 +200613,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F7", "scope": "static", "kind": "member", - "___id": "T000002R022574", + "___id": "T000002R022560", "___s": true }, { @@ -200201,7 +200641,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F8", "scope": "static", "kind": "member", - "___id": "T000002R022576", + "___id": "T000002R022562", "___s": true }, { @@ -200229,7 +200669,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F9", "scope": "static", "kind": "member", - "___id": "T000002R022578", + "___id": "T000002R022564", "___s": true }, { @@ -200257,7 +200697,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F10", "scope": "static", "kind": "member", - "___id": "T000002R022580", + "___id": "T000002R022566", "___s": true }, { @@ -200285,7 +200725,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F11", "scope": "static", "kind": "member", - "___id": "T000002R022582", + "___id": "T000002R022568", "___s": true }, { @@ -200313,7 +200753,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.F12", "scope": "static", "kind": "member", - "___id": "T000002R022584", + "___id": "T000002R022570", "___s": true }, { @@ -200341,7 +200781,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.SEMICOLON", "scope": "static", "kind": "member", - "___id": "T000002R022586", + "___id": "T000002R022572", "___s": true }, { @@ -200369,7 +200809,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.PLUS", "scope": "static", "kind": "member", - "___id": "T000002R022588", + "___id": "T000002R022574", "___s": true }, { @@ -200397,7 +200837,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.COMMA", "scope": "static", "kind": "member", - "___id": "T000002R022590", + "___id": "T000002R022576", "___s": true }, { @@ -200425,7 +200865,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.MINUS", "scope": "static", "kind": "member", - "___id": "T000002R022592", + "___id": "T000002R022578", "___s": true }, { @@ -200453,7 +200893,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.PERIOD", "scope": "static", "kind": "member", - "___id": "T000002R022594", + "___id": "T000002R022580", "___s": true }, { @@ -200481,7 +200921,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.FORWARD_SLASH", "scope": "static", "kind": "member", - "___id": "T000002R022596", + "___id": "T000002R022582", "___s": true }, { @@ -200509,7 +200949,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.BACK_SLASH", "scope": "static", "kind": "member", - "___id": "T000002R022598", + "___id": "T000002R022584", "___s": true }, { @@ -200537,7 +200977,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.QUOTES", "scope": "static", "kind": "member", - "___id": "T000002R022600", + "___id": "T000002R022586", "___s": true }, { @@ -200565,7 +201005,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.BACKTICK", "scope": "static", "kind": "member", - "___id": "T000002R022602", + "___id": "T000002R022588", "___s": true }, { @@ -200593,7 +201033,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.OPEN_BRACKET", "scope": "static", "kind": "member", - "___id": "T000002R022604", + "___id": "T000002R022590", "___s": true }, { @@ -200621,7 +201061,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.CLOSED_BRACKET", "scope": "static", "kind": "member", - "___id": "T000002R022606", + "___id": "T000002R022592", "___s": true }, { @@ -200649,7 +201089,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.SEMICOLON_FIREFOX", "scope": "static", "kind": "member", - "___id": "T000002R022608", + "___id": "T000002R022594", "___s": true }, { @@ -200677,7 +201117,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.COLON", "scope": "static", "kind": "member", - "___id": "T000002R022610", + "___id": "T000002R022596", "___s": true }, { @@ -200705,7 +201145,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.COMMA_FIREFOX_WINDOWS", "scope": "static", "kind": "member", - "___id": "T000002R022612", + "___id": "T000002R022598", "___s": true }, { @@ -200733,7 +201173,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.COMMA_FIREFOX", "scope": "static", "kind": "member", - "___id": "T000002R022614", + "___id": "T000002R022600", "___s": true }, { @@ -200761,7 +201201,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.BRACKET_RIGHT_FIREFOX", "scope": "static", "kind": "member", - "___id": "T000002R022616", + "___id": "T000002R022602", "___s": true }, { @@ -200789,7 +201229,7 @@ "longname": "Phaser.Input.Keyboard.KeyCodes.BRACKET_LEFT_FIREFOX", "scope": "static", "kind": "member", - "___id": "T000002R022618", + "___id": "T000002R022604", "___s": true }, { @@ -200852,7 +201292,7 @@ "memberof": "Phaser.Input.Keyboard", "longname": "Phaser.Input.Keyboard.UpDuration", "scope": "static", - "___id": "T000002R022626", + "___id": "T000002R022612", "___s": true }, { @@ -200959,7 +201399,7 @@ "memberof": "Phaser.Types.Input.Keyboard", "longname": "Phaser.Types.Input.Keyboard.CursorKeys", "scope": "static", - "___id": "T000002R022631", + "___id": "T000002R022617", "___s": true }, { @@ -200976,7 +201416,7 @@ "memberof": "Phaser.Types.Input", "longname": "Phaser.Types.Input.Keyboard", "scope": "static", - "___id": "T000002R022632", + "___id": "T000002R022618", "___s": true }, { @@ -201014,7 +201454,7 @@ "memberof": "Phaser.Types.Input.Keyboard", "longname": "Phaser.Types.Input.Keyboard.KeyboardKeydownCallback", "scope": "static", - "___id": "T000002R022633", + "___id": "T000002R022619", "___s": true }, { @@ -201103,7 +201543,7 @@ "memberof": "Phaser.Types.Input.Keyboard", "longname": "Phaser.Types.Input.Keyboard.KeyComboConfig", "scope": "static", - "___id": "T000002R022634", + "___id": "T000002R022620", "___s": true }, { @@ -201120,7 +201560,7 @@ "memberof": "Phaser.Input", "longname": "Phaser.Input.Mouse", "scope": "static", - "___id": "T000002R022635", + "___id": "T000002R022621", "___s": true }, { @@ -201154,7 +201594,7 @@ ], "scope": "static", "longname": "Phaser.Input.Mouse.MouseManager", - "___id": "T000002R022642", + "___id": "T000002R022628", "___s": true }, { @@ -201182,7 +201622,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#manager", "scope": "instance", "kind": "member", - "___id": "T000002R022645", + "___id": "T000002R022631", "___s": true }, { @@ -201211,7 +201651,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#preventDefaultDown", "scope": "instance", "kind": "member", - "___id": "T000002R022647", + "___id": "T000002R022633", "___s": true }, { @@ -201240,7 +201680,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#preventDefaultUp", "scope": "instance", "kind": "member", - "___id": "T000002R022649", + "___id": "T000002R022635", "___s": true }, { @@ -201269,7 +201709,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#preventDefaultMove", "scope": "instance", "kind": "member", - "___id": "T000002R022651", + "___id": "T000002R022637", "___s": true }, { @@ -201298,7 +201738,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#preventDefaultWheel", "scope": "instance", "kind": "member", - "___id": "T000002R022653", + "___id": "T000002R022639", "___s": true }, { @@ -201327,7 +201767,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#enabled", "scope": "instance", "kind": "member", - "___id": "T000002R022655", + "___id": "T000002R022641", "___s": true }, { @@ -201355,7 +201795,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#target", "scope": "instance", "kind": "member", - "___id": "T000002R022657", + "___id": "T000002R022643", "___s": true }, { @@ -201384,7 +201824,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#locked", "scope": "instance", "kind": "member", - "___id": "T000002R022659", + "___id": "T000002R022645", "___s": true }, { @@ -201412,7 +201852,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#onMouseMove", "scope": "instance", "kind": "member", - "___id": "T000002R022661", + "___id": "T000002R022647", "___s": true }, { @@ -201440,7 +201880,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#onMouseDown", "scope": "instance", "kind": "member", - "___id": "T000002R022663", + "___id": "T000002R022649", "___s": true }, { @@ -201468,7 +201908,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#onMouseUp", "scope": "instance", "kind": "member", - "___id": "T000002R022665", + "___id": "T000002R022651", "___s": true }, { @@ -201496,7 +201936,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#onMouseDownWindow", "scope": "instance", "kind": "member", - "___id": "T000002R022667", + "___id": "T000002R022653", "___s": true }, { @@ -201524,7 +201964,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#onMouseUpWindow", "scope": "instance", "kind": "member", - "___id": "T000002R022669", + "___id": "T000002R022655", "___s": true }, { @@ -201552,7 +201992,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#onMouseOver", "scope": "instance", "kind": "member", - "___id": "T000002R022671", + "___id": "T000002R022657", "___s": true }, { @@ -201580,7 +202020,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#onMouseOut", "scope": "instance", "kind": "member", - "___id": "T000002R022673", + "___id": "T000002R022659", "___s": true }, { @@ -201608,7 +202048,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#onMouseWheel", "scope": "instance", "kind": "member", - "___id": "T000002R022675", + "___id": "T000002R022661", "___s": true }, { @@ -201636,7 +202076,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#pointerLockChange", "scope": "instance", "kind": "member", - "___id": "T000002R022677", + "___id": "T000002R022663", "___s": true }, { @@ -201665,7 +202105,7 @@ "longname": "Phaser.Input.Mouse.MouseManager#isTop", "scope": "instance", "kind": "member", - "___id": "T000002R022679", + "___id": "T000002R022665", "___s": true }, { @@ -201699,7 +202139,7 @@ "memberof": "Phaser.Input.Mouse.MouseManager", "longname": "Phaser.Input.Mouse.MouseManager#disableContextMenu", "scope": "instance", - "___id": "T000002R022693", + "___id": "T000002R022679", "___s": true }, { @@ -201718,7 +202158,7 @@ "memberof": "Phaser.Input.Mouse.MouseManager", "longname": "Phaser.Input.Mouse.MouseManager#requestPointerLock", "scope": "instance", - "___id": "T000002R022695", + "___id": "T000002R022681", "___s": true }, { @@ -201737,7 +202177,7 @@ "memberof": "Phaser.Input.Mouse.MouseManager", "longname": "Phaser.Input.Mouse.MouseManager#releasePointerLock", "scope": "instance", - "___id": "T000002R022699", + "___id": "T000002R022685", "___s": true }, { @@ -201756,7 +202196,7 @@ "memberof": "Phaser.Input.Mouse.MouseManager", "longname": "Phaser.Input.Mouse.MouseManager#startListeners", "scope": "instance", - "___id": "T000002R022702", + "___id": "T000002R022688", "___s": true }, { @@ -201775,7 +202215,7 @@ "memberof": "Phaser.Input.Mouse.MouseManager", "longname": "Phaser.Input.Mouse.MouseManager#stopListeners", "scope": "instance", - "___id": "T000002R022725", + "___id": "T000002R022711", "___s": true }, { @@ -201794,7 +202234,7 @@ "memberof": "Phaser.Input.Mouse.MouseManager", "longname": "Phaser.Input.Mouse.MouseManager#destroy", "scope": "instance", - "___id": "T000002R022729", + "___id": "T000002R022715", "___s": true }, { @@ -201841,7 +202281,7 @@ ], "scope": "static", "longname": "Phaser.Input.Pointer", - "___id": "T000002R022742", + "___id": "T000002R022728", "___s": true }, { @@ -201869,7 +202309,7 @@ "longname": "Phaser.Input.Pointer#manager", "scope": "instance", "kind": "member", - "___id": "T000002R022745", + "___id": "T000002R022731", "___s": true }, { @@ -201898,7 +202338,7 @@ "longname": "Phaser.Input.Pointer#id", "scope": "instance", "kind": "member", - "___id": "T000002R022747", + "___id": "T000002R022733", "___s": true }, { @@ -201941,7 +202381,7 @@ "longname": "Phaser.Input.Pointer#event", "scope": "instance", "kind": "member", - "___id": "T000002R022749", + "___id": "T000002R022735", "___s": true }, { @@ -201970,7 +202410,7 @@ "longname": "Phaser.Input.Pointer#downElement", "scope": "instance", "kind": "member", - "___id": "T000002R022751", + "___id": "T000002R022737", "___s": true }, { @@ -201999,7 +202439,7 @@ "longname": "Phaser.Input.Pointer#upElement", "scope": "instance", "kind": "member", - "___id": "T000002R022753", + "___id": "T000002R022739", "___s": true }, { @@ -202028,7 +202468,7 @@ "longname": "Phaser.Input.Pointer#camera", "scope": "instance", "kind": "member", - "___id": "T000002R022755", + "___id": "T000002R022741", "___s": true }, { @@ -202058,7 +202498,7 @@ "longname": "Phaser.Input.Pointer#button", "scope": "instance", "kind": "member", - "___id": "T000002R022757", + "___id": "T000002R022743", "___s": true }, { @@ -202087,7 +202527,7 @@ "longname": "Phaser.Input.Pointer#buttons", "scope": "instance", "kind": "member", - "___id": "T000002R022759", + "___id": "T000002R022745", "___s": true }, { @@ -202116,7 +202556,7 @@ "longname": "Phaser.Input.Pointer#position", "scope": "instance", "kind": "member", - "___id": "T000002R022761", + "___id": "T000002R022747", "___s": true }, { @@ -202145,7 +202585,7 @@ "longname": "Phaser.Input.Pointer#prevPosition", "scope": "instance", "kind": "member", - "___id": "T000002R022763", + "___id": "T000002R022749", "___s": true }, { @@ -202174,7 +202614,7 @@ "longname": "Phaser.Input.Pointer#velocity", "scope": "instance", "kind": "member", - "___id": "T000002R022767", + "___id": "T000002R022753", "___s": true }, { @@ -202203,7 +202643,7 @@ "longname": "Phaser.Input.Pointer#angle", "scope": "instance", "kind": "member", - "___id": "T000002R022769", + "___id": "T000002R022755", "___s": true }, { @@ -202232,7 +202672,7 @@ "longname": "Phaser.Input.Pointer#distance", "scope": "instance", "kind": "member", - "___id": "T000002R022771", + "___id": "T000002R022757", "___s": true }, { @@ -202261,7 +202701,7 @@ "longname": "Phaser.Input.Pointer#smoothFactor", "scope": "instance", "kind": "member", - "___id": "T000002R022773", + "___id": "T000002R022759", "___s": true }, { @@ -202290,7 +202730,7 @@ "longname": "Phaser.Input.Pointer#motionFactor", "scope": "instance", "kind": "member", - "___id": "T000002R022775", + "___id": "T000002R022761", "___s": true }, { @@ -202319,7 +202759,7 @@ "longname": "Phaser.Input.Pointer#worldX", "scope": "instance", "kind": "member", - "___id": "T000002R022777", + "___id": "T000002R022763", "___s": true }, { @@ -202348,7 +202788,7 @@ "longname": "Phaser.Input.Pointer#worldY", "scope": "instance", "kind": "member", - "___id": "T000002R022779", + "___id": "T000002R022765", "___s": true }, { @@ -202377,7 +202817,7 @@ "longname": "Phaser.Input.Pointer#moveTime", "scope": "instance", "kind": "member", - "___id": "T000002R022781", + "___id": "T000002R022767", "___s": true }, { @@ -202406,7 +202846,7 @@ "longname": "Phaser.Input.Pointer#downX", "scope": "instance", "kind": "member", - "___id": "T000002R022783", + "___id": "T000002R022769", "___s": true }, { @@ -202435,7 +202875,7 @@ "longname": "Phaser.Input.Pointer#downY", "scope": "instance", "kind": "member", - "___id": "T000002R022785", + "___id": "T000002R022771", "___s": true }, { @@ -202464,7 +202904,7 @@ "longname": "Phaser.Input.Pointer#downTime", "scope": "instance", "kind": "member", - "___id": "T000002R022787", + "___id": "T000002R022773", "___s": true }, { @@ -202493,7 +202933,7 @@ "longname": "Phaser.Input.Pointer#upX", "scope": "instance", "kind": "member", - "___id": "T000002R022789", + "___id": "T000002R022775", "___s": true }, { @@ -202522,7 +202962,7 @@ "longname": "Phaser.Input.Pointer#upY", "scope": "instance", "kind": "member", - "___id": "T000002R022791", + "___id": "T000002R022777", "___s": true }, { @@ -202551,7 +202991,7 @@ "longname": "Phaser.Input.Pointer#upTime", "scope": "instance", "kind": "member", - "___id": "T000002R022793", + "___id": "T000002R022779", "___s": true }, { @@ -202580,7 +203020,7 @@ "longname": "Phaser.Input.Pointer#primaryDown", "scope": "instance", "kind": "member", - "___id": "T000002R022795", + "___id": "T000002R022781", "___s": true }, { @@ -202609,7 +203049,7 @@ "longname": "Phaser.Input.Pointer#isDown", "scope": "instance", "kind": "member", - "___id": "T000002R022797", + "___id": "T000002R022783", "___s": true }, { @@ -202638,7 +203078,7 @@ "longname": "Phaser.Input.Pointer#wasTouch", "scope": "instance", "kind": "member", - "___id": "T000002R022799", + "___id": "T000002R022785", "___s": true }, { @@ -202667,7 +203107,7 @@ "longname": "Phaser.Input.Pointer#wasCanceled", "scope": "instance", "kind": "member", - "___id": "T000002R022801", + "___id": "T000002R022787", "___s": true }, { @@ -202696,7 +203136,7 @@ "longname": "Phaser.Input.Pointer#movementX", "scope": "instance", "kind": "member", - "___id": "T000002R022803", + "___id": "T000002R022789", "___s": true }, { @@ -202725,7 +203165,7 @@ "longname": "Phaser.Input.Pointer#movementY", "scope": "instance", "kind": "member", - "___id": "T000002R022805", + "___id": "T000002R022791", "___s": true }, { @@ -202753,7 +203193,7 @@ "longname": "Phaser.Input.Pointer#identifier", "scope": "instance", "kind": "member", - "___id": "T000002R022807", + "___id": "T000002R022793", "___s": true }, { @@ -202781,7 +203221,7 @@ "longname": "Phaser.Input.Pointer#pointerId", "scope": "instance", "kind": "member", - "___id": "T000002R022809", + "___id": "T000002R022795", "___s": true }, { @@ -202809,7 +203249,7 @@ "longname": "Phaser.Input.Pointer#active", "scope": "instance", "kind": "member", - "___id": "T000002R022811", + "___id": "T000002R022797", "___s": true }, { @@ -202838,7 +203278,7 @@ "longname": "Phaser.Input.Pointer#locked", "scope": "instance", "kind": "member", - "___id": "T000002R022813", + "___id": "T000002R022799", "___s": true }, { @@ -202867,7 +203307,7 @@ "longname": "Phaser.Input.Pointer#deltaX", "scope": "instance", "kind": "member", - "___id": "T000002R022815", + "___id": "T000002R022801", "___s": true }, { @@ -202896,7 +203336,7 @@ "longname": "Phaser.Input.Pointer#deltaY", "scope": "instance", "kind": "member", - "___id": "T000002R022817", + "___id": "T000002R022803", "___s": true }, { @@ -202925,7 +203365,7 @@ "longname": "Phaser.Input.Pointer#deltaZ", "scope": "instance", "kind": "member", - "___id": "T000002R022819", + "___id": "T000002R022805", "___s": true }, { @@ -202974,7 +203414,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#updateWorldPoint", "scope": "instance", - "___id": "T000002R022821", + "___id": "T000002R022807", "___s": true }, { @@ -203056,7 +203496,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#positionToCamera", "scope": "instance", - "___id": "T000002R022826", + "___id": "T000002R022812", "___s": true }, { @@ -203089,7 +203529,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#noButtonDown", "scope": "instance", - "___id": "T000002R022931", + "___id": "T000002R022917", "___s": true }, { @@ -203122,7 +203562,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#leftButtonDown", "scope": "instance", - "___id": "T000002R022933", + "___id": "T000002R022919", "___s": true }, { @@ -203155,7 +203595,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#rightButtonDown", "scope": "instance", - "___id": "T000002R022935", + "___id": "T000002R022921", "___s": true }, { @@ -203188,7 +203628,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#middleButtonDown", "scope": "instance", - "___id": "T000002R022937", + "___id": "T000002R022923", "___s": true }, { @@ -203221,7 +203661,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#backButtonDown", "scope": "instance", - "___id": "T000002R022939", + "___id": "T000002R022925", "___s": true }, { @@ -203254,11 +203694,11 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#forwardButtonDown", "scope": "instance", - "___id": "T000002R022941", + "___id": "T000002R022927", "___s": true }, { - "comment": "/**\r\n * Checks to see if the left button was just released on this Pointer.\r\n *\r\n * @method Phaser.Input.Pointer#leftButtonReleased\r\n * @since 3.18.0\r\n *\r\n * @return {boolean} `true` if the left button was just released.\r\n */", + "comment": "/**\r\n * Checks to see if the release of the left button was the most recent activity on this Pointer.\r\n *\r\n * @method Phaser.Input.Pointer#leftButtonReleased\r\n * @since 3.18.0\r\n *\r\n * @return {boolean} `true` if the release of the left button was the most recent activity on this Pointer.\r\n */", "meta": { "filename": "Pointer.js", "lineno": 956, @@ -203266,7 +203706,7 @@ "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} }, - "description": "Checks to see if the left button was just released on this Pointer.", + "description": "Checks to see if the release of the left button was the most recent activity on this Pointer.", "kind": "function", "name": "leftButtonReleased", "since": "3.18.0", @@ -203281,17 +203721,17 @@ "name": "boolean" } }, - "description": "`true` if the left button was just released." + "description": "`true` if the release of the left button was the most recent activity on this Pointer." } ], "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#leftButtonReleased", "scope": "instance", - "___id": "T000002R022943", + "___id": "T000002R022929", "___s": true }, { - "comment": "/**\r\n * Checks to see if the right button was just released on this Pointer.\r\n *\r\n * @method Phaser.Input.Pointer#rightButtonReleased\r\n * @since 3.18.0\r\n *\r\n * @return {boolean} `true` if the right button was just released.\r\n */", + "comment": "/**\r\n * Checks to see if the release of the right button was the most recent activity on this Pointer.\r\n *\r\n * @method Phaser.Input.Pointer#rightButtonReleased\r\n * @since 3.18.0\r\n *\r\n * @return {boolean} `true` if the release of the right button was the most recent activity on this Pointer.\r\n */", "meta": { "filename": "Pointer.js", "lineno": 969, @@ -203299,7 +203739,7 @@ "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} }, - "description": "Checks to see if the right button was just released on this Pointer.", + "description": "Checks to see if the release of the right button was the most recent activity on this Pointer.", "kind": "function", "name": "rightButtonReleased", "since": "3.18.0", @@ -203314,17 +203754,17 @@ "name": "boolean" } }, - "description": "`true` if the right button was just released." + "description": "`true` if the release of the right button was the most recent activity on this Pointer." } ], "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#rightButtonReleased", "scope": "instance", - "___id": "T000002R022945", + "___id": "T000002R022931", "___s": true }, { - "comment": "/**\r\n * Checks to see if the middle button was just released on this Pointer.\r\n *\r\n * @method Phaser.Input.Pointer#middleButtonReleased\r\n * @since 3.18.0\r\n *\r\n * @return {boolean} `true` if the middle button was just released.\r\n */", + "comment": "/**\r\n * Checks to see if the release of the middle button was the most recent activity on this Pointer.\r\n *\r\n * @method Phaser.Input.Pointer#middleButtonReleased\r\n * @since 3.18.0\r\n *\r\n * @return {boolean} `true` if the release of the middle button was the most recent activity on this Pointer.\r\n */", "meta": { "filename": "Pointer.js", "lineno": 982, @@ -203332,7 +203772,7 @@ "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} }, - "description": "Checks to see if the middle button was just released on this Pointer.", + "description": "Checks to see if the release of the middle button was the most recent activity on this Pointer.", "kind": "function", "name": "middleButtonReleased", "since": "3.18.0", @@ -203347,17 +203787,17 @@ "name": "boolean" } }, - "description": "`true` if the middle button was just released." + "description": "`true` if the release of the middle button was the most recent activity on this Pointer." } ], "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#middleButtonReleased", "scope": "instance", - "___id": "T000002R022947", + "___id": "T000002R022933", "___s": true }, { - "comment": "/**\r\n * Checks to see if the back button was just released on this Pointer.\r\n *\r\n * @method Phaser.Input.Pointer#backButtonReleased\r\n * @since 3.18.0\r\n *\r\n * @return {boolean} `true` if the back button was just released.\r\n */", + "comment": "/**\r\n * Checks to see if the release of the back button was the most recent activity on this Pointer.\r\n *\r\n * @method Phaser.Input.Pointer#backButtonReleased\r\n * @since 3.18.0\r\n *\r\n * @return {boolean} `true` if the release of the back button was the most recent activity on this Pointer.\r\n */", "meta": { "filename": "Pointer.js", "lineno": 995, @@ -203365,7 +203805,7 @@ "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} }, - "description": "Checks to see if the back button was just released on this Pointer.", + "description": "Checks to see if the release of the back button was the most recent activity on this Pointer.", "kind": "function", "name": "backButtonReleased", "since": "3.18.0", @@ -203380,17 +203820,17 @@ "name": "boolean" } }, - "description": "`true` if the back button was just released." + "description": "`true` if the release of the back button was the most recent activity on this Pointer." } ], "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#backButtonReleased", "scope": "instance", - "___id": "T000002R022949", + "___id": "T000002R022935", "___s": true }, { - "comment": "/**\r\n * Checks to see if the forward button was just released on this Pointer.\r\n *\r\n * @method Phaser.Input.Pointer#forwardButtonReleased\r\n * @since 3.18.0\r\n *\r\n * @return {boolean} `true` if the forward button was just released.\r\n */", + "comment": "/**\r\n * Checks to see if the release of the forward button was the most recent activity on this Pointer.\r\n *\r\n * @method Phaser.Input.Pointer#forwardButtonReleased\r\n * @since 3.18.0\r\n *\r\n * @return {boolean} `true` if the release of the forward button was the most recent activity on this Pointer.\r\n */", "meta": { "filename": "Pointer.js", "lineno": 1008, @@ -203398,7 +203838,7 @@ "path": "D:\\wamp\\www\\phaser\\src\\input", "code": {} }, - "description": "Checks to see if the forward button was just released on this Pointer.", + "description": "Checks to see if the release of the forward button was the most recent activity on this Pointer.", "kind": "function", "name": "forwardButtonReleased", "since": "3.18.0", @@ -203413,13 +203853,13 @@ "name": "boolean" } }, - "description": "`true` if the forward button was just released." + "description": "`true` if the release of the forward button was the most recent activity on this Pointer." } ], "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#forwardButtonReleased", "scope": "instance", - "___id": "T000002R022951", + "___id": "T000002R022937", "___s": true }, { @@ -203452,7 +203892,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#getDistance", "scope": "instance", - "___id": "T000002R022953", + "___id": "T000002R022939", "___s": true }, { @@ -203485,7 +203925,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#getDistanceX", "scope": "instance", - "___id": "T000002R022955", + "___id": "T000002R022941", "___s": true }, { @@ -203518,7 +203958,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#getDistanceY", "scope": "instance", - "___id": "T000002R022957", + "___id": "T000002R022943", "___s": true }, { @@ -203551,7 +203991,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#getDuration", "scope": "instance", - "___id": "T000002R022959", + "___id": "T000002R022945", "___s": true }, { @@ -203584,7 +204024,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#getAngle", "scope": "instance", - "___id": "T000002R022961", + "___id": "T000002R022947", "___s": true }, { @@ -203648,7 +204088,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#getInterpolatedPosition", "scope": "instance", - "___id": "T000002R022963", + "___id": "T000002R022949", "___s": true }, { @@ -203667,7 +204107,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#reset", "scope": "instance", - "___id": "T000002R022976", + "___id": "T000002R022962", "___s": true }, { @@ -203686,7 +204126,7 @@ "memberof": "Phaser.Input.Pointer", "longname": "Phaser.Input.Pointer#destroy", "scope": "instance", - "___id": "T000002R023006", + "___id": "T000002R022992", "___s": true }, { @@ -203714,7 +204154,7 @@ "longname": "Phaser.Input.Pointer#x", "scope": "instance", "kind": "member", - "___id": "T000002R023011", + "___id": "T000002R022997", "___s": true }, { @@ -203742,7 +204182,7 @@ "longname": "Phaser.Input.Pointer#y", "scope": "instance", "kind": "member", - "___id": "T000002R023016", + "___id": "T000002R023002", "___s": true }, { @@ -203771,7 +204211,7 @@ "longname": "Phaser.Input.Pointer#time", "scope": "instance", "kind": "member", - "___id": "T000002R023021", + "___id": "T000002R023007", "___s": true }, { @@ -203788,7 +204228,7 @@ "memberof": "Phaser.Input", "longname": "Phaser.Input.Touch", "scope": "static", - "___id": "T000002R023025", + "___id": "T000002R023011", "___s": true }, { @@ -203822,7 +204262,7 @@ ], "scope": "static", "longname": "Phaser.Input.Touch.TouchManager", - "___id": "T000002R023031", + "___id": "T000002R023017", "___s": true }, { @@ -203850,7 +204290,7 @@ "longname": "Phaser.Input.Touch.TouchManager#manager", "scope": "instance", "kind": "member", - "___id": "T000002R023034", + "___id": "T000002R023020", "___s": true }, { @@ -203879,7 +204319,7 @@ "longname": "Phaser.Input.Touch.TouchManager#capture", "scope": "instance", "kind": "member", - "___id": "T000002R023036", + "___id": "T000002R023022", "___s": true }, { @@ -203908,7 +204348,7 @@ "longname": "Phaser.Input.Touch.TouchManager#enabled", "scope": "instance", "kind": "member", - "___id": "T000002R023038", + "___id": "T000002R023024", "___s": true }, { @@ -203936,7 +204376,7 @@ "longname": "Phaser.Input.Touch.TouchManager#target", "scope": "instance", "kind": "member", - "___id": "T000002R023040", + "___id": "T000002R023026", "___s": true }, { @@ -203964,7 +204404,7 @@ "longname": "Phaser.Input.Touch.TouchManager#onTouchStart", "scope": "instance", "kind": "member", - "___id": "T000002R023042", + "___id": "T000002R023028", "___s": true }, { @@ -203992,7 +204432,7 @@ "longname": "Phaser.Input.Touch.TouchManager#onTouchStartWindow", "scope": "instance", "kind": "member", - "___id": "T000002R023044", + "___id": "T000002R023030", "___s": true }, { @@ -204020,7 +204460,7 @@ "longname": "Phaser.Input.Touch.TouchManager#onTouchMove", "scope": "instance", "kind": "member", - "___id": "T000002R023046", + "___id": "T000002R023032", "___s": true }, { @@ -204048,7 +204488,7 @@ "longname": "Phaser.Input.Touch.TouchManager#onTouchEnd", "scope": "instance", "kind": "member", - "___id": "T000002R023048", + "___id": "T000002R023034", "___s": true }, { @@ -204076,7 +204516,7 @@ "longname": "Phaser.Input.Touch.TouchManager#onTouchEndWindow", "scope": "instance", "kind": "member", - "___id": "T000002R023050", + "___id": "T000002R023036", "___s": true }, { @@ -204104,7 +204544,7 @@ "longname": "Phaser.Input.Touch.TouchManager#onTouchCancel", "scope": "instance", "kind": "member", - "___id": "T000002R023052", + "___id": "T000002R023038", "___s": true }, { @@ -204132,7 +204572,7 @@ "longname": "Phaser.Input.Touch.TouchManager#onTouchCancelWindow", "scope": "instance", "kind": "member", - "___id": "T000002R023054", + "___id": "T000002R023040", "___s": true }, { @@ -204161,7 +204601,7 @@ "longname": "Phaser.Input.Touch.TouchManager#isTop", "scope": "instance", "kind": "member", - "___id": "T000002R023056", + "___id": "T000002R023042", "___s": true }, { @@ -204195,7 +204635,7 @@ "memberof": "Phaser.Input.Touch.TouchManager", "longname": "Phaser.Input.Touch.TouchManager#disableContextMenu", "scope": "instance", - "___id": "T000002R023066", + "___id": "T000002R023052", "___s": true }, { @@ -204214,7 +204654,7 @@ "memberof": "Phaser.Input.Touch.TouchManager", "longname": "Phaser.Input.Touch.TouchManager#startListeners", "scope": "instance", - "___id": "T000002R023068", + "___id": "T000002R023054", "___s": true }, { @@ -204233,7 +204673,7 @@ "memberof": "Phaser.Input.Touch.TouchManager", "longname": "Phaser.Input.Touch.TouchManager#stopListeners", "scope": "instance", - "___id": "T000002R023089", + "___id": "T000002R023075", "___s": true }, { @@ -204252,7 +204692,7 @@ "memberof": "Phaser.Input.Touch.TouchManager", "longname": "Phaser.Input.Touch.TouchManager#destroy", "scope": "instance", - "___id": "T000002R023093", + "___id": "T000002R023079", "___s": true }, { @@ -204310,7 +204750,7 @@ "memberof": "Phaser.Types.Input", "longname": "Phaser.Types.Input.EventData", "scope": "static", - "___id": "T000002R023099", + "___id": "T000002R023085", "___s": true }, { @@ -204401,7 +204841,7 @@ "memberof": "Phaser.Types.Input", "longname": "Phaser.Types.Input.HitAreaCallback", "scope": "static", - "___id": "T000002R023100", + "___id": "T000002R023086", "___s": true }, { @@ -204418,7 +204858,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Input", "scope": "static", - "___id": "T000002R023101", + "___id": "T000002R023087", "___s": true }, { @@ -204564,7 +205004,7 @@ "memberof": "Phaser.Types.Input", "longname": "Phaser.Types.Input.InputConfiguration", "scope": "static", - "___id": "T000002R023102", + "___id": "T000002R023088", "___s": true }, { @@ -204633,7 +205073,7 @@ "memberof": "Phaser.Types.Input", "longname": "Phaser.Types.Input.InputPluginContainer", "scope": "static", - "___id": "T000002R023103", + "___id": "T000002R023089", "___s": true }, { @@ -204949,7 +205389,7 @@ "memberof": "Phaser.Types.Input", "longname": "Phaser.Types.Input.InteractiveObject", "scope": "static", - "___id": "T000002R023104", + "___id": "T000002R023090", "___s": true }, { @@ -204977,7 +205417,7 @@ "longname": "Phaser.Loader.LOADER_IDLE", "scope": "static", "kind": "member", - "___id": "T000002R023106", + "___id": "T000002R023092", "___s": true }, { @@ -205005,7 +205445,7 @@ "longname": "Phaser.Loader.LOADER_LOADING", "scope": "static", "kind": "member", - "___id": "T000002R023108", + "___id": "T000002R023094", "___s": true }, { @@ -205033,7 +205473,7 @@ "longname": "Phaser.Loader.LOADER_PROCESSING", "scope": "static", "kind": "member", - "___id": "T000002R023110", + "___id": "T000002R023096", "___s": true }, { @@ -205061,7 +205501,7 @@ "longname": "Phaser.Loader.LOADER_COMPLETE", "scope": "static", "kind": "member", - "___id": "T000002R023112", + "___id": "T000002R023098", "___s": true }, { @@ -205089,7 +205529,7 @@ "longname": "Phaser.Loader.LOADER_SHUTDOWN", "scope": "static", "kind": "member", - "___id": "T000002R023114", + "___id": "T000002R023100", "___s": true }, { @@ -205117,7 +205557,7 @@ "longname": "Phaser.Loader.LOADER_DESTROYED", "scope": "static", "kind": "member", - "___id": "T000002R023116", + "___id": "T000002R023102", "___s": true }, { @@ -205145,7 +205585,7 @@ "longname": "Phaser.Loader.FILE_PENDING", "scope": "static", "kind": "member", - "___id": "T000002R023118", + "___id": "T000002R023104", "___s": true }, { @@ -205173,7 +205613,7 @@ "longname": "Phaser.Loader.FILE_LOADING", "scope": "static", "kind": "member", - "___id": "T000002R023120", + "___id": "T000002R023106", "___s": true }, { @@ -205201,7 +205641,7 @@ "longname": "Phaser.Loader.FILE_LOADED", "scope": "static", "kind": "member", - "___id": "T000002R023122", + "___id": "T000002R023108", "___s": true }, { @@ -205229,7 +205669,7 @@ "longname": "Phaser.Loader.FILE_FAILED", "scope": "static", "kind": "member", - "___id": "T000002R023124", + "___id": "T000002R023110", "___s": true }, { @@ -205257,7 +205697,7 @@ "longname": "Phaser.Loader.FILE_PROCESSING", "scope": "static", "kind": "member", - "___id": "T000002R023126", + "___id": "T000002R023112", "___s": true }, { @@ -205285,7 +205725,7 @@ "longname": "Phaser.Loader.FILE_ERRORED", "scope": "static", "kind": "member", - "___id": "T000002R023128", + "___id": "T000002R023114", "___s": true }, { @@ -205313,7 +205753,7 @@ "longname": "Phaser.Loader.FILE_COMPLETE", "scope": "static", "kind": "member", - "___id": "T000002R023130", + "___id": "T000002R023116", "___s": true }, { @@ -205341,7 +205781,7 @@ "longname": "Phaser.Loader.FILE_DESTROYED", "scope": "static", "kind": "member", - "___id": "T000002R023132", + "___id": "T000002R023118", "___s": true }, { @@ -205369,7 +205809,7 @@ "longname": "Phaser.Loader.FILE_POPULATED", "scope": "static", "kind": "member", - "___id": "T000002R023134", + "___id": "T000002R023120", "___s": true }, { @@ -205397,7 +205837,7 @@ "longname": "Phaser.Loader.FILE_PENDING_DESTROY", "scope": "static", "kind": "member", - "___id": "T000002R023136", + "___id": "T000002R023122", "___s": true }, { @@ -205479,7 +205919,7 @@ "memberof": "Phaser.Loader.Events", "longname": "Phaser.Loader.Events#event:ADD", "scope": "instance", - "___id": "T000002R023139", + "___id": "T000002R023125", "___s": true }, { @@ -205548,7 +205988,7 @@ "memberof": "Phaser.Loader.Events", "longname": "Phaser.Loader.Events#event:COMPLETE", "scope": "instance", - "___id": "T000002R023141", + "___id": "T000002R023127", "___s": true }, { @@ -205618,7 +206058,7 @@ "memberof": "Phaser.Loader.Events", "longname": "Phaser.Loader.Events#event:FILE_COMPLETE", "scope": "instance", - "___id": "T000002R023143", + "___id": "T000002R023129", "___s": true }, { @@ -205688,7 +206128,7 @@ "memberof": "Phaser.Loader.Events", "longname": "Phaser.Loader.Events#event:FILE_KEY_COMPLETE", "scope": "instance", - "___id": "T000002R023145", + "___id": "T000002R023131", "___s": true }, { @@ -205731,7 +206171,7 @@ "memberof": "Phaser.Loader.Events", "longname": "Phaser.Loader.Events#event:FILE_LOAD_ERROR", "scope": "instance", - "___id": "T000002R023147", + "___id": "T000002R023133", "___s": true }, { @@ -205774,7 +206214,7 @@ "memberof": "Phaser.Loader.Events", "longname": "Phaser.Loader.Events#event:FILE_LOAD", "scope": "instance", - "___id": "T000002R023149", + "___id": "T000002R023135", "___s": true }, { @@ -205830,7 +206270,7 @@ "memberof": "Phaser.Loader.Events", "longname": "Phaser.Loader.Events#event:FILE_PROGRESS", "scope": "instance", - "___id": "T000002R023151", + "___id": "T000002R023137", "___s": true }, { @@ -205847,7 +206287,7 @@ "memberof": "Phaser.Loader", "longname": "Phaser.Loader.Events", "scope": "static", - "___id": "T000002R023153", + "___id": "T000002R023139", "___s": true }, { @@ -205890,7 +206330,7 @@ "memberof": "Phaser.Loader.Events", "longname": "Phaser.Loader.Events#event:POST_PROCESS", "scope": "instance", - "___id": "T000002R023165", + "___id": "T000002R023151", "___s": true }, { @@ -205933,7 +206373,7 @@ "memberof": "Phaser.Loader.Events", "longname": "Phaser.Loader.Events#event:PROGRESS", "scope": "instance", - "___id": "T000002R023167", + "___id": "T000002R023153", "___s": true }, { @@ -205976,7 +206416,7 @@ "memberof": "Phaser.Loader.Events", "longname": "Phaser.Loader.Events#event:START", "scope": "instance", - "___id": "T000002R023169", + "___id": "T000002R023155", "___s": true }, { @@ -206023,7 +206463,7 @@ ], "scope": "static", "longname": "Phaser.Loader.File", - "___id": "T000002R023179", + "___id": "T000002R023165", "___s": true }, { @@ -206051,7 +206491,7 @@ "longname": "Phaser.Loader.File#loader", "scope": "instance", "kind": "member", - "___id": "T000002R023182", + "___id": "T000002R023168", "___s": true }, { @@ -206089,7 +206529,7 @@ "longname": "Phaser.Loader.File#cache", "scope": "instance", "kind": "member", - "___id": "T000002R023184", + "___id": "T000002R023170", "___s": true }, { @@ -206117,7 +206557,7 @@ "longname": "Phaser.Loader.File#type", "scope": "instance", "kind": "member", - "___id": "T000002R023186", + "___id": "T000002R023172", "___s": true }, { @@ -206145,7 +206585,7 @@ "longname": "Phaser.Loader.File#key", "scope": "instance", "kind": "member", - "___id": "T000002R023188", + "___id": "T000002R023174", "___s": true }, { @@ -206183,7 +206623,7 @@ "longname": "Phaser.Loader.File#url", "scope": "instance", "kind": "member", - "___id": "T000002R023195", + "___id": "T000002R023181", "___s": true }, { @@ -206211,7 +206651,7 @@ "longname": "Phaser.Loader.File#src", "scope": "instance", "kind": "member", - "___id": "T000002R023197", + "___id": "T000002R023183", "___s": true }, { @@ -206239,7 +206679,7 @@ "longname": "Phaser.Loader.File#xhrSettings", "scope": "instance", "kind": "member", - "___id": "T000002R023199", + "___id": "T000002R023185", "___s": true }, { @@ -206269,7 +206709,7 @@ "longname": "Phaser.Loader.File#xhrLoader", "scope": "instance", "kind": "member", - "___id": "T000002R023202", + "___id": "T000002R023188", "___s": true }, { @@ -206297,7 +206737,7 @@ "longname": "Phaser.Loader.File#state", "scope": "instance", "kind": "member", - "___id": "T000002R023204", + "___id": "T000002R023190", "___s": true }, { @@ -206326,7 +206766,7 @@ "longname": "Phaser.Loader.File#bytesTotal", "scope": "instance", "kind": "member", - "___id": "T000002R023206", + "___id": "T000002R023192", "___s": true }, { @@ -206355,7 +206795,7 @@ "longname": "Phaser.Loader.File#bytesLoaded", "scope": "instance", "kind": "member", - "___id": "T000002R023208", + "___id": "T000002R023194", "___s": true }, { @@ -206384,7 +206824,7 @@ "longname": "Phaser.Loader.File#percentComplete", "scope": "instance", "kind": "member", - "___id": "T000002R023210", + "___id": "T000002R023196", "___s": true }, { @@ -206421,7 +206861,7 @@ "longname": "Phaser.Loader.File#crossOrigin", "scope": "instance", "kind": "member", - "___id": "T000002R023212", + "___id": "T000002R023198", "___s": true }, { @@ -206448,7 +206888,7 @@ "longname": "Phaser.Loader.File#data", "scope": "instance", "kind": "member", - "___id": "T000002R023214", + "___id": "T000002R023200", "___s": true }, { @@ -206475,7 +206915,7 @@ "longname": "Phaser.Loader.File#config", "scope": "instance", "kind": "member", - "___id": "T000002R023216", + "___id": "T000002R023202", "___s": true }, { @@ -206505,7 +206945,7 @@ "longname": "Phaser.Loader.File#multiFile", "scope": "instance", "kind": "member", - "___id": "T000002R023218", + "___id": "T000002R023204", "___s": true }, { @@ -206535,7 +206975,7 @@ "longname": "Phaser.Loader.File#linkFile", "scope": "instance", "kind": "member", - "___id": "T000002R023220", + "___id": "T000002R023206", "___s": true }, { @@ -206563,14 +207003,43 @@ "longname": "Phaser.Loader.File#base64", "scope": "instance", "kind": "member", - "___id": "T000002R023222", + "___id": "T000002R023208", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "name": "retryAttempts", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.File", + "longname": "Phaser.Loader.File#retryAttempts", + "scope": "instance", + "kind": "member", + "___id": "T000002R023210", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206597,14 +207066,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#setLink", "scope": "instance", - "___id": "T000002R023224", + "___id": "T000002R023212", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206616,14 +207085,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#resetXHR", "scope": "instance", - "___id": "T000002R023228", + "___id": "T000002R023216", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206635,14 +207104,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#load", "scope": "instance", - "___id": "T000002R023233", + "___id": "T000002R023221", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206682,14 +207151,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#onLoad", "scope": "instance", - "___id": "T000002R023239", + "___id": "T000002R023227", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206716,14 +207185,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#onBase64Load", "scope": "instance", - "___id": "T000002R023246", + "___id": "T000002R023234", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206763,14 +207232,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#onError", "scope": "instance", - "___id": "T000002R023251", + "___id": "T000002R023239", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206800,14 +207269,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#onProgress", "scope": "instance", - "___id": "T000002R023253", + "___id": "T000002R023241", "___s": true }, { "comment": "/**\r\n * Usually overridden by the FileTypes and is called by Loader.nextFile.\r\n * This method controls what extra work this File does with its loaded data, for example a JSON file will parse itself during this stage.\r\n *\r\n * @method Phaser.Loader.File#onProcess\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 404, + "lineno": 432, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206819,14 +207288,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#onProcess", "scope": "instance", - "___id": "T000002R023258", + "___id": "T000002R023246", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206838,14 +207307,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#onProcessComplete", "scope": "instance", - "___id": "T000002R023261", + "___id": "T000002R023249", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206857,14 +207326,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#onProcessError", "scope": "instance", - "___id": "T000002R023264", + "___id": "T000002R023252", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206890,14 +207359,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#hasCacheConflict", "scope": "instance", - "___id": "T000002R023267", + "___id": "T000002R023255", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206909,14 +207378,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#addToCache", "scope": "instance", - "___id": "T000002R023269", + "___id": "T000002R023257", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206932,14 +207401,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#pendingDestroy", "scope": "instance", - "___id": "T000002R023271", + "___id": "T000002R023259", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -206951,14 +207420,14 @@ "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File#destroy", "scope": "instance", - "___id": "T000002R023277", + "___id": "T000002R023265", "___s": true }, { "comment": "/**\r\n * Static method for creating object URL using URL API and setting it as image 'src' attribute.\r\n * If URL API is not supported (usually on old browsers) it falls back to creating Base64 encoded url using FileReader.\r\n *\r\n * @method Phaser.Loader.File.createObjectURL\r\n * @static\r\n * @since 3.7.0\r\n *\r\n * @param {HTMLImageElement} image - Image object which 'src' attribute should be set to object URL.\r\n * @param {Blob} blob - A Blob object to create an object URL for.\r\n * @param {string} defaultType - Default mime type used if blob type is not available.\r\n */", "meta": { "filename": "File.js", - "lineno": 536, + "lineno": 564, "columnno": 0, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -207011,14 +207480,14 @@ ], "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File.createObjectURL", - "___id": "T000002R023285", + "___id": "T000002R023273", "___s": true }, { "comment": "/**\r\n * Static method for releasing an existing object URL which was previously created\r\n * by calling {@link File#createObjectURL} method.\r\n *\r\n * @method Phaser.Loader.File.revokeObjectURL\r\n * @static\r\n * @since 3.7.0\r\n *\r\n * @param {HTMLImageElement} image - Image object which 'src' attribute should be revoked.\r\n */", "meta": { "filename": "File.js", - "lineno": 570, + "lineno": 598, "columnno": 0, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -207045,7 +207514,7 @@ ], "memberof": "Phaser.Loader.File", "longname": "Phaser.Loader.File.revokeObjectURL", - "___id": "T000002R023292", + "___id": "T000002R023280", "___s": true }, { @@ -207147,7 +207616,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.AnimationJSONFile", - "___id": "T000002R023299", + "___id": "T000002R023287", "___s": true }, { @@ -207167,7 +207636,7 @@ "longname": "Phaser.Loader.FileTypes.AnimationJSONFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R023304", + "___id": "T000002R023292", "___s": true }, { @@ -207186,7 +207655,7 @@ "memberof": "Phaser.Loader.FileTypes.AnimationJSONFile", "longname": "Phaser.Loader.FileTypes.AnimationJSONFile#onLoadComplete", "scope": "instance", - "___id": "T000002R023306", + "___id": "T000002R023294", "___s": true }, { @@ -207304,7 +207773,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#animation", "scope": "instance", - "___id": "T000002R023308", + "___id": "T000002R023296", "___s": true }, { @@ -207449,7 +207918,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.AsepriteFile", - "___id": "T000002R023318", + "___id": "T000002R023306", "___s": true }, { @@ -207468,7 +207937,7 @@ "memberof": "Phaser.Loader.FileTypes.AsepriteFile", "longname": "Phaser.Loader.FileTypes.AsepriteFile#addToCache", "scope": "instance", - "___id": "T000002R023339", + "___id": "T000002R023327", "___s": true }, { @@ -207629,7 +208098,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#aseprite", "scope": "instance", - "___id": "T000002R023345", + "___id": "T000002R023333", "___s": true }, { @@ -207774,7 +208243,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.AtlasJSONFile", - "___id": "T000002R023358", + "___id": "T000002R023346", "___s": true }, { @@ -207793,7 +208262,7 @@ "memberof": "Phaser.Loader.FileTypes.AtlasJSONFile", "longname": "Phaser.Loader.FileTypes.AtlasJSONFile#addToCache", "scope": "instance", - "___id": "T000002R023379", + "___id": "T000002R023367", "___s": true }, { @@ -207954,7 +208423,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#atlas", "scope": "instance", - "___id": "T000002R023385", + "___id": "T000002R023373", "___s": true }, { @@ -208089,7 +208558,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.AtlasXMLFile", - "___id": "T000002R023398", + "___id": "T000002R023386", "___s": true }, { @@ -208108,7 +208577,7 @@ "memberof": "Phaser.Loader.FileTypes.AtlasXMLFile", "longname": "Phaser.Loader.FileTypes.AtlasXMLFile#addToCache", "scope": "instance", - "___id": "T000002R023419", + "___id": "T000002R023407", "___s": true }, { @@ -208259,7 +208728,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#atlasXML", "scope": "instance", - "___id": "T000002R023425", + "___id": "T000002R023413", "___s": true }, { @@ -208361,7 +208830,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.AudioFile", - "___id": "T000002R023438", + "___id": "T000002R023426", "___s": true }, { @@ -208381,7 +208850,7 @@ "longname": "Phaser.Loader.FileTypes.AudioFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R023456", + "___id": "T000002R023444", "___s": true }, { @@ -208537,7 +209006,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#audio", "scope": "instance", - "___id": "T000002R023479", + "___id": "T000002R023467", "___s": true }, { @@ -208692,7 +209161,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.AudioSpriteFile", - "___id": "T000002R023495", + "___id": "T000002R023483", "___s": true }, { @@ -208727,7 +209196,7 @@ "longname": "Phaser.Loader.FileTypes.AudioSpriteFile#onFileComplete", "scope": "instance", "overrides": "Phaser.Loader.MultiFile#onFileComplete", - "___id": "T000002R023514", + "___id": "T000002R023502", "___s": true }, { @@ -208746,7 +209215,7 @@ "memberof": "Phaser.Loader.FileTypes.AudioSpriteFile", "longname": "Phaser.Loader.FileTypes.AudioSpriteFile#addToCache", "scope": "instance", - "___id": "T000002R023521", + "___id": "T000002R023509", "___s": true }, { @@ -208910,7 +209379,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#audioSprite", "scope": "instance", - "___id": "T000002R023526", + "___id": "T000002R023514", "___s": true }, { @@ -209012,7 +209481,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.BinaryFile", - "___id": "T000002R023540", + "___id": "T000002R023528", "___s": true }, { @@ -209032,7 +209501,7 @@ "longname": "Phaser.Loader.FileTypes.BinaryFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R023561", + "___id": "T000002R023549", "___s": true }, { @@ -209150,7 +209619,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#binary", "scope": "instance", - "___id": "T000002R023566", + "___id": "T000002R023554", "___s": true }, { @@ -209285,7 +209754,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.BitmapFontFile", - "___id": "T000002R023577", + "___id": "T000002R023565", "___s": true }, { @@ -209304,7 +209773,7 @@ "memberof": "Phaser.Loader.FileTypes.BitmapFontFile", "longname": "Phaser.Loader.FileTypes.BitmapFontFile#addToCache", "scope": "instance", - "___id": "T000002R023598", + "___id": "T000002R023586", "___s": true }, { @@ -209455,7 +209924,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#bitmapFont", "scope": "instance", - "___id": "T000002R023608", + "___id": "T000002R023596", "___s": true }, { @@ -209532,7 +210001,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.CompressedTextureFile", - "___id": "T000002R023628", + "___id": "T000002R023616", "___s": true }, { @@ -209567,7 +210036,7 @@ "longname": "Phaser.Loader.FileTypes.CompressedTextureFile#onFileComplete", "scope": "instance", "overrides": "Phaser.Loader.MultiFile#onFileComplete", - "___id": "T000002R023651", + "___id": "T000002R023639", "___s": true }, { @@ -209586,7 +210055,7 @@ "memberof": "Phaser.Loader.FileTypes.CompressedTextureFile", "longname": "Phaser.Loader.FileTypes.CompressedTextureFile#addToCache", "scope": "instance", - "___id": "T000002R023670", + "___id": "T000002R023658", "___s": true }, { @@ -209605,7 +210074,7 @@ "memberof": "Phaser.Loader.FileTypes.CompressedTextureFile", "longname": "Phaser.Loader.FileTypes.CompressedTextureFile#addMultiToCache", "scope": "instance", - "___id": "T000002R023686", + "___id": "T000002R023674", "___s": true }, { @@ -209709,7 +210178,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#texture", "scope": "instance", - "___id": "T000002R023708", + "___id": "T000002R023696", "___s": true }, { @@ -209797,7 +210266,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.CSSFile", - "___id": "T000002R023746", + "___id": "T000002R023734", "___s": true }, { @@ -209817,7 +210286,7 @@ "longname": "Phaser.Loader.FileTypes.CSSFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R023764", + "___id": "T000002R023752", "___s": true }, { @@ -209921,7 +210390,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#css", "scope": "instance", - "___id": "T000002R023770", + "___id": "T000002R023758", "___s": true }, { @@ -210024,7 +210493,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.GLSLFile", - "___id": "T000002R023780", + "___id": "T000002R023768", "___s": true }, { @@ -210044,7 +210513,7 @@ "longname": "Phaser.Loader.FileTypes.GLSLFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R023802", + "___id": "T000002R023790", "___s": true }, { @@ -210064,7 +210533,7 @@ "longname": "Phaser.Loader.FileTypes.GLSLFile#addToCache", "scope": "instance", "overrides": "Phaser.Loader.File#addToCache", - "___id": "T000002R023806", + "___id": "T000002R023794", "___s": true }, { @@ -210121,7 +210590,7 @@ "memberof": "Phaser.Loader.FileTypes.GLSLFile", "longname": "Phaser.Loader.FileTypes.GLSLFile#getShaderName", "scope": "instance", - "___id": "T000002R023819", + "___id": "T000002R023807", "___s": true }, { @@ -210178,7 +210647,7 @@ "memberof": "Phaser.Loader.FileTypes.GLSLFile", "longname": "Phaser.Loader.FileTypes.GLSLFile#getShaderType", "scope": "instance", - "___id": "T000002R023823", + "___id": "T000002R023811", "___s": true }, { @@ -210235,7 +210704,7 @@ "memberof": "Phaser.Loader.FileTypes.GLSLFile", "longname": "Phaser.Loader.FileTypes.GLSLFile#getShaderUniforms", "scope": "instance", - "___id": "T000002R023827", + "___id": "T000002R023815", "___s": true }, { @@ -210354,7 +210823,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#glsl", "scope": "instance", - "___id": "T000002R023856", + "___id": "T000002R023844", "___s": true }, { @@ -210442,7 +210911,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.HTML5AudioFile", - "___id": "T000002R023865", + "___id": "T000002R023853", "___s": true }, { @@ -210462,7 +210931,7 @@ "longname": "Phaser.Loader.FileTypes.HTML5AudioFile#onLoad", "scope": "instance", "overrides": "Phaser.Loader.File#onLoad", - "___id": "T000002R023883", + "___id": "T000002R023871", "___s": true }, { @@ -210482,7 +210951,7 @@ "longname": "Phaser.Loader.FileTypes.HTML5AudioFile#onError", "scope": "instance", "overrides": "Phaser.Loader.File#onError", - "___id": "T000002R023886", + "___id": "T000002R023874", "___s": true }, { @@ -210505,7 +210974,7 @@ "longname": "Phaser.Loader.FileTypes.HTML5AudioFile#onProgress", "scope": "instance", "overrides": "Phaser.Loader.File#onProgress", - "___id": "T000002R023892", + "___id": "T000002R023880", "___s": true }, { @@ -210525,7 +210994,7 @@ "longname": "Phaser.Loader.FileTypes.HTML5AudioFile#load", "scope": "instance", "overrides": "Phaser.Loader.File#load", - "___id": "T000002R023898", + "___id": "T000002R023886", "___s": true }, { @@ -210613,7 +211082,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.HTMLFile", - "___id": "T000002R023925", + "___id": "T000002R023913", "___s": true }, { @@ -210633,7 +211102,7 @@ "longname": "Phaser.Loader.FileTypes.HTMLFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R023943", + "___id": "T000002R023931", "___s": true }, { @@ -210737,7 +211206,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#html", "scope": "instance", - "___id": "T000002R023947", + "___id": "T000002R023935", "___s": true }, { @@ -210853,7 +211322,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.HTMLTextureFile", - "___id": "T000002R023956", + "___id": "T000002R023944", "___s": true }, { @@ -210873,7 +211342,7 @@ "longname": "Phaser.Loader.FileTypes.HTMLTextureFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R023981", + "___id": "T000002R023969", "___s": true }, { @@ -210893,7 +211362,7 @@ "longname": "Phaser.Loader.FileTypes.HTMLTextureFile#addToCache", "scope": "instance", "overrides": "Phaser.Loader.File#addToCache", - "___id": "T000002R023996", + "___id": "T000002R023984", "___s": true }, { @@ -211027,7 +211496,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#htmlTexture", "scope": "instance", - "___id": "T000002R023998", + "___id": "T000002R023986", "___s": true }, { @@ -211148,7 +211617,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.ImageFile", - "___id": "T000002R024008", + "___id": "T000002R023996", "___s": true }, { @@ -211168,7 +211637,7 @@ "longname": "Phaser.Loader.FileTypes.ImageFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R024037", + "___id": "T000002R024025", "___s": true }, { @@ -211188,7 +211657,7 @@ "longname": "Phaser.Loader.FileTypes.ImageFile#addToCache", "scope": "instance", "overrides": "Phaser.Loader.File#addToCache", - "___id": "T000002R024060", + "___id": "T000002R024048", "___s": true }, { @@ -211311,7 +211780,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#image", "scope": "instance", - "___id": "T000002R024063", + "___id": "T000002R024051", "___s": true }, { @@ -211328,7 +211797,7 @@ "memberof": "Phaser.Loader", "longname": "Phaser.Loader.FileTypes", "scope": "static", - "___id": "T000002R024066", + "___id": "T000002R024054", "___s": true }, { @@ -211440,7 +211909,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.JSONFile", - "___id": "T000002R024108", + "___id": "T000002R024096", "___s": true }, { @@ -211460,7 +211929,7 @@ "longname": "Phaser.Loader.FileTypes.JSONFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R024131", + "___id": "T000002R024119", "___s": true }, { @@ -211588,7 +212057,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#json", "scope": "instance", - "___id": "T000002R024138", + "___id": "T000002R024126", "___s": true }, { @@ -211718,7 +212187,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.MultiAtlasFile", - "___id": "T000002R024148", + "___id": "T000002R024136", "___s": true }, { @@ -211753,7 +212222,7 @@ "longname": "Phaser.Loader.FileTypes.MultiAtlasFile#onFileComplete", "scope": "instance", "overrides": "Phaser.Loader.MultiFile#onFileComplete", - "___id": "T000002R024164", + "___id": "T000002R024152", "___s": true }, { @@ -211772,7 +212241,7 @@ "memberof": "Phaser.Loader.FileTypes.MultiAtlasFile", "longname": "Phaser.Loader.FileTypes.MultiAtlasFile#addToCache", "scope": "instance", - "___id": "T000002R024183", + "___id": "T000002R024171", "___s": true }, { @@ -211904,7 +212373,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#multiatlas", "scope": "instance", - "___id": "T000002R024198", + "___id": "T000002R024186", "___s": true }, { @@ -212001,7 +212470,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.MultiScriptFile", - "___id": "T000002R024210", + "___id": "T000002R024198", "___s": true }, { @@ -212020,7 +212489,7 @@ "memberof": "Phaser.Loader.FileTypes.MultiScriptFile", "longname": "Phaser.Loader.FileTypes.MultiScriptFile#addToCache", "scope": "instance", - "___id": "T000002R024229", + "___id": "T000002R024217", "___s": true }, { @@ -212148,7 +212617,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#scripts", "scope": "instance", - "___id": "T000002R024239", + "___id": "T000002R024227", "___s": true }, { @@ -212264,7 +212733,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.OBJFile", - "___id": "T000002R024253", + "___id": "T000002R024241", "___s": true }, { @@ -212283,7 +212752,7 @@ "memberof": "Phaser.Loader.FileTypes.OBJFile", "longname": "Phaser.Loader.FileTypes.OBJFile#addToCache", "scope": "instance", - "___id": "T000002R024295", + "___id": "T000002R024283", "___s": true }, { @@ -212415,7 +212884,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#obj", "scope": "instance", - "___id": "T000002R024302", + "___id": "T000002R024290", "___s": true }, { @@ -212527,7 +212996,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.PackFile", - "___id": "T000002R024312", + "___id": "T000002R024300", "___s": true }, { @@ -212547,7 +213016,7 @@ "longname": "Phaser.Loader.FileTypes.PackFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R024317", + "___id": "T000002R024305", "___s": true }, { @@ -212665,7 +213134,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#pack", "scope": "instance", - "___id": "T000002R024324", + "___id": "T000002R024312", "___s": true }, { @@ -212782,7 +213251,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.PluginFile", - "___id": "T000002R024333", + "___id": "T000002R024321", "___s": true }, { @@ -212802,7 +213271,7 @@ "longname": "Phaser.Loader.FileTypes.PluginFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R024358", + "___id": "T000002R024346", "___s": true }, { @@ -212944,7 +213413,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#plugin", "scope": "instance", - "___id": "T000002R024373", + "___id": "T000002R024361", "___s": true }, { @@ -213032,7 +213501,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.SceneFile", - "___id": "T000002R024382", + "___id": "T000002R024370", "___s": true }, { @@ -213052,7 +213521,7 @@ "longname": "Phaser.Loader.FileTypes.SceneFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R024399", + "___id": "T000002R024387", "___s": true }, { @@ -213072,7 +213541,7 @@ "longname": "Phaser.Loader.FileTypes.SceneFile#addToCache", "scope": "instance", "overrides": "Phaser.Loader.File#addToCache", - "___id": "T000002R024403", + "___id": "T000002R024391", "___s": true }, { @@ -213176,7 +213645,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#sceneFile", "scope": "instance", - "___id": "T000002R024408", + "___id": "T000002R024396", "___s": true }, { @@ -213292,7 +213761,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.ScenePluginFile", - "___id": "T000002R024417", + "___id": "T000002R024405", "___s": true }, { @@ -213312,7 +213781,7 @@ "longname": "Phaser.Loader.FileTypes.ScenePluginFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R024442", + "___id": "T000002R024430", "___s": true }, { @@ -213454,7 +213923,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#scenePlugin", "scope": "instance", - "___id": "T000002R024455", + "___id": "T000002R024443", "___s": true }, { @@ -213557,7 +214026,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.ScriptFile", - "___id": "T000002R024464", + "___id": "T000002R024452", "___s": true }, { @@ -213577,7 +214046,7 @@ "longname": "Phaser.Loader.FileTypes.ScriptFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R024484", + "___id": "T000002R024472", "___s": true }, { @@ -213696,7 +214165,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#script", "scope": "instance", - "___id": "T000002R024492", + "___id": "T000002R024480", "___s": true }, { @@ -213817,7 +214286,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.SpriteSheetFile", - "___id": "T000002R024499", + "___id": "T000002R024487", "___s": true }, { @@ -213837,7 +214306,7 @@ "longname": "Phaser.Loader.FileTypes.SpriteSheetFile#addToCache", "scope": "instance", "overrides": "Phaser.Loader.File#addToCache", - "___id": "T000002R024504", + "___id": "T000002R024492", "___s": true }, { @@ -213955,7 +214424,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#spritesheet", "scope": "instance", - "___id": "T000002R024507", + "___id": "T000002R024495", "___s": true }, { @@ -214057,7 +214526,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.SVGFile", - "___id": "T000002R024516", + "___id": "T000002R024504", "___s": true }, { @@ -214077,7 +214546,7 @@ "longname": "Phaser.Loader.FileTypes.SVGFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R024539", + "___id": "T000002R024527", "___s": true }, { @@ -214097,7 +214566,7 @@ "longname": "Phaser.Loader.FileTypes.SVGFile#addToCache", "scope": "instance", "overrides": "Phaser.Loader.File#addToCache", - "___id": "T000002R024570", + "___id": "T000002R024558", "___s": true }, { @@ -214215,7 +214684,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#svg", "scope": "instance", - "___id": "T000002R024572", + "___id": "T000002R024560", "___s": true }, { @@ -214303,7 +214772,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.TextFile", - "___id": "T000002R024581", + "___id": "T000002R024569", "___s": true }, { @@ -214323,7 +214792,7 @@ "longname": "Phaser.Loader.FileTypes.TextFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R024603", + "___id": "T000002R024591", "___s": true }, { @@ -214427,7 +214896,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#text", "scope": "instance", - "___id": "T000002R024607", + "___id": "T000002R024595", "___s": true }, { @@ -214515,7 +214984,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.TilemapCSVFile", - "___id": "T000002R024617", + "___id": "T000002R024605", "___s": true }, { @@ -214535,7 +215004,7 @@ "longname": "Phaser.Loader.FileTypes.TilemapCSVFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R024636", + "___id": "T000002R024624", "___s": true }, { @@ -214555,7 +215024,7 @@ "longname": "Phaser.Loader.FileTypes.TilemapCSVFile#addToCache", "scope": "instance", "overrides": "Phaser.Loader.File#addToCache", - "___id": "T000002R024640", + "___id": "T000002R024628", "___s": true }, { @@ -214659,7 +215128,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#tilemapCSV", "scope": "instance", - "___id": "T000002R024645", + "___id": "T000002R024633", "___s": true }, { @@ -214747,7 +215216,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.TilemapImpactFile", - "___id": "T000002R024652", + "___id": "T000002R024640", "___s": true }, { @@ -214767,7 +215236,7 @@ "longname": "Phaser.Loader.FileTypes.TilemapImpactFile#addToCache", "scope": "instance", "overrides": "Phaser.Loader.File#addToCache", - "___id": "T000002R024658", + "___id": "T000002R024646", "___s": true }, { @@ -214871,7 +215340,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#tilemapImpact", "scope": "instance", - "___id": "T000002R024663", + "___id": "T000002R024651", "___s": true }, { @@ -214969,7 +215438,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.TilemapJSONFile", - "___id": "T000002R024670", + "___id": "T000002R024658", "___s": true }, { @@ -214989,7 +215458,7 @@ "longname": "Phaser.Loader.FileTypes.TilemapJSONFile#addToCache", "scope": "instance", "overrides": "Phaser.Loader.FileTypes.JSONFile#addToCache", - "___id": "T000002R024676", + "___id": "T000002R024664", "___s": true }, { @@ -215103,7 +215572,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#tilemapTiledJSON", "scope": "instance", - "___id": "T000002R024681", + "___id": "T000002R024669", "___s": true }, { @@ -215240,7 +215709,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.AsepriteFileConfig", "scope": "static", - "___id": "T000002R024684", + "___id": "T000002R024672", "___s": true }, { @@ -215391,7 +215860,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.AtlasJSONFileConfig", "scope": "static", - "___id": "T000002R024685", + "___id": "T000002R024673", "___s": true }, { @@ -215532,7 +216001,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.AtlasXMLFileConfig", "scope": "static", - "___id": "T000002R024686", + "___id": "T000002R024674", "___s": true }, { @@ -215653,7 +216122,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.AudioFileConfig", "scope": "static", - "___id": "T000002R024687", + "___id": "T000002R024675", "___s": true }, { @@ -215707,7 +216176,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.AudioFileURLConfig", "scope": "static", - "___id": "T000002R024688", + "___id": "T000002R024676", "___s": true }, { @@ -215843,7 +216312,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.AudioSpriteFileConfig", "scope": "static", - "___id": "T000002R024689", + "___id": "T000002R024677", "___s": true }, { @@ -215941,7 +216410,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.BinaryFileConfig", "scope": "static", - "___id": "T000002R024690", + "___id": "T000002R024678", "___s": true }, { @@ -216082,7 +216551,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.BitmapFontFileConfig", "scope": "static", - "___id": "T000002R024691", + "___id": "T000002R024679", "___s": true }, { @@ -216208,7 +216677,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry", "scope": "static", - "___id": "T000002R024692", + "___id": "T000002R024680", "___s": true }, { @@ -216476,7 +216945,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.CompressedTextureFileConfig", "scope": "static", - "___id": "T000002R024693", + "___id": "T000002R024681", "___s": true }, { @@ -216560,7 +217029,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.CSSFileConfig", "scope": "static", - "___id": "T000002R024694", + "___id": "T000002R024682", "___s": true }, { @@ -216659,7 +217128,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.GLSLFileConfig", "scope": "static", - "___id": "T000002R024695", + "___id": "T000002R024683", "___s": true }, { @@ -216743,7 +217212,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.HTMLFileConfig", "scope": "static", - "___id": "T000002R024696", + "___id": "T000002R024684", "___s": true }, { @@ -216857,7 +217326,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.HTMLTextureFileConfig", "scope": "static", - "___id": "T000002R024697", + "___id": "T000002R024685", "___s": true }, { @@ -216969,7 +217438,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.ImageFileConfig", "scope": "static", - "___id": "T000002R024698", + "___id": "T000002R024686", "___s": true }, { @@ -217083,7 +217552,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.ImageFrameConfig", "scope": "static", - "___id": "T000002R024699", + "___id": "T000002R024687", "___s": true }, { @@ -217100,7 +217569,7 @@ "memberof": "Phaser.Types.Loader", "longname": "Phaser.Types.Loader.FileTypes", "scope": "static", - "___id": "T000002R024700", + "___id": "T000002R024688", "___s": true }, { @@ -217208,7 +217677,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.JSONFileConfig", "scope": "static", - "___id": "T000002R024701", + "___id": "T000002R024689", "___s": true }, { @@ -217348,7 +217817,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.MultiAtlasFileConfig", "scope": "static", - "___id": "T000002R024702", + "___id": "T000002R024690", "___s": true }, { @@ -217441,7 +217910,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.MultiScriptFileConfig", "scope": "static", - "___id": "T000002R024703", + "___id": "T000002R024691", "___s": true }, { @@ -217568,7 +218037,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.OBJFileConfig", "scope": "static", - "___id": "T000002R024704", + "___id": "T000002R024692", "___s": true }, { @@ -217676,7 +218145,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.PackFileConfig", "scope": "static", - "___id": "T000002R024705", + "___id": "T000002R024693", "___s": true }, { @@ -217785,7 +218254,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.PackFileSection", "scope": "static", - "___id": "T000002R024706", + "___id": "T000002R024694", "___s": true }, { @@ -217898,7 +218367,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.PluginFileConfig", "scope": "static", - "___id": "T000002R024707", + "___id": "T000002R024695", "___s": true }, { @@ -217982,7 +218451,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.SceneFileConfig", "scope": "static", - "___id": "T000002R024708", + "___id": "T000002R024696", "___s": true }, { @@ -218104,7 +218573,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.ScenePluginFileConfig", "scope": "static", - "___id": "T000002R024709", + "___id": "T000002R024697", "___s": true }, { @@ -218203,7 +218672,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.ScriptFileConfig", "scope": "static", - "___id": "T000002R024710", + "___id": "T000002R024698", "___s": true }, { @@ -218315,7 +218784,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.SpriteSheetFileConfig", "scope": "static", - "___id": "T000002R024711", + "___id": "T000002R024699", "___s": true }, { @@ -218413,7 +218882,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.SVGFileConfig", "scope": "static", - "___id": "T000002R024712", + "___id": "T000002R024700", "___s": true }, { @@ -218483,7 +218952,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.SVGSizeConfig", "scope": "static", - "___id": "T000002R024713", + "___id": "T000002R024701", "___s": true }, { @@ -218567,7 +219036,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.TextFileConfig", "scope": "static", - "___id": "T000002R024714", + "___id": "T000002R024702", "___s": true }, { @@ -218651,7 +219120,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.TilemapCSVFileConfig", "scope": "static", - "___id": "T000002R024715", + "___id": "T000002R024703", "___s": true }, { @@ -218735,7 +219204,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.TilemapImpactFileConfig", "scope": "static", - "___id": "T000002R024716", + "___id": "T000002R024704", "___s": true }, { @@ -218829,7 +219298,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.TilemapJSONFileConfig", "scope": "static", - "___id": "T000002R024717", + "___id": "T000002R024705", "___s": true }, { @@ -218970,7 +219439,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.UnityAtlasFileConfig", "scope": "static", - "___id": "T000002R024718", + "___id": "T000002R024706", "___s": true }, { @@ -219087,7 +219556,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.VideoFileConfig", "scope": "static", - "___id": "T000002R024719", + "___id": "T000002R024707", "___s": true }, { @@ -219141,7 +219610,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.VideoFileURLConfig", "scope": "static", - "___id": "T000002R024720", + "___id": "T000002R024708", "___s": true }, { @@ -219225,7 +219694,7 @@ "memberof": "Phaser.Types.Loader.FileTypes", "longname": "Phaser.Types.Loader.FileTypes.XMLFileConfig", "scope": "static", - "___id": "T000002R024721", + "___id": "T000002R024709", "___s": true }, { @@ -219360,7 +219829,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.UnityAtlasFile", - "___id": "T000002R024729", + "___id": "T000002R024717", "___s": true }, { @@ -219379,7 +219848,7 @@ "memberof": "Phaser.Loader.FileTypes.UnityAtlasFile", "longname": "Phaser.Loader.FileTypes.UnityAtlasFile#addToCache", "scope": "instance", - "___id": "T000002R024750", + "___id": "T000002R024738", "___s": true }, { @@ -219530,7 +219999,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#unityAtlas", "scope": "instance", - "___id": "T000002R024756", + "___id": "T000002R024744", "___s": true }, { @@ -219657,7 +220126,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.VideoFile", - "___id": "T000002R024769", + "___id": "T000002R024757", "___s": true }, { @@ -219677,7 +220146,7 @@ "longname": "Phaser.Loader.FileTypes.VideoFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R024787", + "___id": "T000002R024775", "___s": true }, { @@ -219697,7 +220166,7 @@ "longname": "Phaser.Loader.FileTypes.VideoFile#load", "scope": "instance", "overrides": "Phaser.Loader.File#load", - "___id": "T000002R024793", + "___id": "T000002R024781", "___s": true }, { @@ -219840,7 +220309,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#video", "scope": "instance", - "___id": "T000002R024797", + "___id": "T000002R024785", "___s": true }, { @@ -219928,7 +220397,7 @@ ], "scope": "static", "longname": "Phaser.Loader.FileTypes.XMLFile", - "___id": "T000002R024807", + "___id": "T000002R024795", "___s": true }, { @@ -219948,7 +220417,7 @@ "longname": "Phaser.Loader.FileTypes.XMLFile#onProcess", "scope": "instance", "overrides": "Phaser.Loader.File#onProcess", - "___id": "T000002R024825", + "___id": "T000002R024813", "___s": true }, { @@ -220052,7 +220521,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#xml", "scope": "instance", - "___id": "T000002R024829", + "___id": "T000002R024817", "___s": true }, { @@ -220069,7 +220538,7 @@ "memberof": "Phaser.Loader", "longname": "Phaser.Loader.FileTypesManager", "scope": "static", - "___id": "T000002R024833", + "___id": "T000002R024821", "___s": true }, { @@ -220103,7 +220572,7 @@ "memberof": "Phaser.Loader.FileTypesManager", "longname": "Phaser.Loader.FileTypesManager.install", "scope": "static", - "___id": "T000002R024835", + "___id": "T000002R024823", "___s": true }, { @@ -220150,7 +220619,7 @@ "memberof": "Phaser.Loader.FileTypesManager", "longname": "Phaser.Loader.FileTypesManager.register", "scope": "static", - "___id": "T000002R024839", + "___id": "T000002R024827", "___s": true }, { @@ -220169,7 +220638,7 @@ "memberof": "Phaser.Loader.FileTypesManager", "longname": "Phaser.Loader.FileTypesManager.destroy", "scope": "static", - "___id": "T000002R024842", + "___id": "T000002R024830", "___s": true }, { @@ -220230,7 +220699,7 @@ "memberof": "Phaser.Loader", "longname": "Phaser.Loader.GetURL", "scope": "static", - "___id": "T000002R024846", + "___id": "T000002R024834", "___s": true }, { @@ -220247,7 +220716,7 @@ "memberof": "Phaser", "longname": "Phaser.Loader", "scope": "static", - "___id": "T000002R024851", + "___id": "T000002R024839", "___s": true }, { @@ -220284,7 +220753,7 @@ ], "scope": "static", "longname": "Phaser.Loader.LoaderPlugin", - "___id": "T000002R024877", + "___id": "T000002R024865", "___s": true }, { @@ -220312,7 +220781,7 @@ "longname": "Phaser.Loader.LoaderPlugin#scene", "scope": "instance", "kind": "member", - "___id": "T000002R024883", + "___id": "T000002R024871", "___s": true }, { @@ -220340,7 +220809,7 @@ "longname": "Phaser.Loader.LoaderPlugin#systems", "scope": "instance", "kind": "member", - "___id": "T000002R024885", + "___id": "T000002R024873", "___s": true }, { @@ -220368,7 +220837,7 @@ "longname": "Phaser.Loader.LoaderPlugin#cacheManager", "scope": "instance", "kind": "member", - "___id": "T000002R024887", + "___id": "T000002R024875", "___s": true }, { @@ -220396,7 +220865,7 @@ "longname": "Phaser.Loader.LoaderPlugin#textureManager", "scope": "instance", "kind": "member", - "___id": "T000002R024889", + "___id": "T000002R024877", "___s": true }, { @@ -220425,7 +220894,7 @@ "longname": "Phaser.Loader.LoaderPlugin#sceneManager", "scope": "instance", "kind": "member", - "___id": "T000002R024891", + "___id": "T000002R024879", "___s": true }, { @@ -220454,7 +220923,7 @@ "longname": "Phaser.Loader.LoaderPlugin#prefix", "scope": "instance", "kind": "member", - "___id": "T000002R024893", + "___id": "T000002R024881", "___s": true }, { @@ -220483,7 +220952,7 @@ "longname": "Phaser.Loader.LoaderPlugin#path", "scope": "instance", "kind": "member", - "___id": "T000002R024895", + "___id": "T000002R024883", "___s": true }, { @@ -220512,7 +220981,7 @@ "longname": "Phaser.Loader.LoaderPlugin#baseURL", "scope": "instance", "kind": "member", - "___id": "T000002R024897", + "___id": "T000002R024885", "___s": true }, { @@ -220540,7 +221009,7 @@ "longname": "Phaser.Loader.LoaderPlugin#maxParallelDownloads", "scope": "instance", "kind": "member", - "___id": "T000002R024899", + "___id": "T000002R024887", "___s": true }, { @@ -220568,7 +221037,7 @@ "longname": "Phaser.Loader.LoaderPlugin#xhr", "scope": "instance", "kind": "member", - "___id": "T000002R024901", + "___id": "T000002R024889", "___s": true }, { @@ -220596,7 +221065,7 @@ "longname": "Phaser.Loader.LoaderPlugin#crossOrigin", "scope": "instance", "kind": "member", - "___id": "T000002R024903", + "___id": "T000002R024891", "___s": true }, { @@ -220624,7 +221093,7 @@ "longname": "Phaser.Loader.LoaderPlugin#imageLoadType", "scope": "instance", "kind": "member", - "___id": "T000002R024905", + "___id": "T000002R024893", "___s": true }, { @@ -220661,7 +221130,7 @@ "longname": "Phaser.Loader.LoaderPlugin#localSchemes", "scope": "instance", "kind": "member", - "___id": "T000002R024907", + "___id": "T000002R024895", "___s": true }, { @@ -220690,7 +221159,7 @@ "longname": "Phaser.Loader.LoaderPlugin#totalToLoad", "scope": "instance", "kind": "member", - "___id": "T000002R024909", + "___id": "T000002R024897", "___s": true }, { @@ -220719,7 +221188,7 @@ "longname": "Phaser.Loader.LoaderPlugin#progress", "scope": "instance", "kind": "member", - "___id": "T000002R024911", + "___id": "T000002R024899", "___s": true }, { @@ -220756,7 +221225,7 @@ "longname": "Phaser.Loader.LoaderPlugin#list", "scope": "instance", "kind": "member", - "___id": "T000002R024913", + "___id": "T000002R024901", "___s": true }, { @@ -220793,7 +221262,7 @@ "longname": "Phaser.Loader.LoaderPlugin#inflight", "scope": "instance", "kind": "member", - "___id": "T000002R024915", + "___id": "T000002R024903", "___s": true }, { @@ -220830,7 +221299,7 @@ "longname": "Phaser.Loader.LoaderPlugin#queue", "scope": "instance", "kind": "member", - "___id": "T000002R024917", + "___id": "T000002R024905", "___s": true }, { @@ -220859,7 +221328,7 @@ "longname": "Phaser.Loader.LoaderPlugin#totalFailed", "scope": "instance", "kind": "member", - "___id": "T000002R024921", + "___id": "T000002R024909", "___s": true }, { @@ -220888,7 +221357,7 @@ "longname": "Phaser.Loader.LoaderPlugin#totalComplete", "scope": "instance", "kind": "member", - "___id": "T000002R024923", + "___id": "T000002R024911", "___s": true }, { @@ -220917,14 +221386,43 @@ "longname": "Phaser.Loader.LoaderPlugin#state", "scope": "instance", "kind": "member", - "___id": "T000002R024925", + "___id": "T000002R024913", + "___s": true + }, + { + "comment": "/**\r\n * The number of times to retry loading a single file before it fails.\r\n * \r\n * This property is read by the `File` object when it is created and set to\r\n * the internal property of the same name. It's not used by the Loader itself.\r\n * \r\n * You can set this value via the Game Config, or you can adjust this property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.LoaderPlugin#maxRetries\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "LoaderPlugin.js", + "lineno": 350, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "description": "The number of times to retry loading a single file before it fails.\r\rThis property is read by the `File` object when it is created and set to\rthe internal property of the same name. It's not used by the Loader itself.\r\rYou can set this value via the Game Config, or you can adjust this property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "name": "maxRetries", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.LoaderPlugin", + "longname": "Phaser.Loader.LoaderPlugin#maxRetries", + "scope": "instance", + "kind": "member", + "___id": "T000002R024917", "___s": true }, { "comment": "/**\r\n * If you want to append a URL before the path of any asset you can set this here.\r\n *\r\n * Useful if allowing the asset base url to be configured outside of the game code.\r\n *\r\n * Once a base URL is set it will affect every file loaded by the Loader from that point on. It does _not_ change any\r\n * file _already_ being loaded. To reset it, call this method with no arguments.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#setBaseURL\r\n * @since 3.0.0\r\n *\r\n * @param {string} [url] - The URL to use. Leave empty to reset.\r\n *\r\n * @return {this} This Loader object.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 381, + "lineno": 399, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -220967,14 +221465,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#setBaseURL", "scope": "instance", - "___id": "T000002R024933", + "___id": "T000002R024923", "___s": true }, { "comment": "/**\r\n * The value of `path`, if set, is placed before any _relative_ file path given. For example:\r\n *\r\n * ```javascript\r\n * this.load.setPath(\"images/sprites/\");\r\n * this.load.image(\"ball\", \"ball.png\");\r\n * this.load.image(\"tree\", \"level1/oaktree.png\");\r\n * this.load.image(\"boom\", \"http://server.com/explode.png\");\r\n * ```\r\n *\r\n * Would load the `ball` file from `images/sprites/ball.png` and the tree from\r\n * `images/sprites/level1/oaktree.png` but the file `boom` would load from the URL\r\n * given as it's an absolute URL.\r\n *\r\n * Please note that the path is added before the filename but *after* the baseURL (if set.)\r\n *\r\n * Once a path is set it will then affect every file added to the Loader from that point on. It does _not_ change any\r\n * file _already_ in the load queue. To reset it, call this method with no arguments.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#setPath\r\n * @since 3.0.0\r\n *\r\n * @param {string} [path] - The path to use. Leave empty to reset.\r\n *\r\n * @return {this} This Loader object.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 410, + "lineno": 428, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221017,14 +221515,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#setPath", "scope": "instance", - "___id": "T000002R024938", + "___id": "T000002R024928", "___s": true }, { "comment": "/**\r\n * An optional prefix that is automatically prepended to the start of every file key.\r\n *\r\n * If prefix was `MENU.` and you load an image with the key 'Background' the resulting key would be `MENU.Background`.\r\n *\r\n * Once a prefix is set it will then affect every file added to the Loader from that point on. It does _not_ change any\r\n * file _already_ in the load queue. To reset it, call this method with no arguments.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#setPrefix\r\n * @since 3.7.0\r\n *\r\n * @param {string} [prefix] - The prefix to use. Leave empty to reset.\r\n *\r\n * @return {this} This Loader object.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 450, + "lineno": 468, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221067,14 +221565,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#setPrefix", "scope": "instance", - "___id": "T000002R024943", + "___id": "T000002R024933", "___s": true }, { "comment": "/**\r\n * Sets the Cross Origin Resource Sharing value used when loading files.\r\n *\r\n * Files can override this value on a per-file basis by specifying an alternative `crossOrigin` value in their file config.\r\n *\r\n * Once CORs is set it will then affect every file loaded by the Loader from that point on, as long as they don't have\r\n * their own CORs setting. To reset it, call this method with no arguments.\r\n *\r\n * For more details about CORs see https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#setCORS\r\n * @since 3.0.0\r\n *\r\n * @param {string} [crossOrigin] - The value to use for the `crossOrigin` property in the load request.\r\n *\r\n * @return {this} This Loader object.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 474, + "lineno": 492, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221117,14 +221615,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#setCORS", "scope": "instance", - "___id": "T000002R024947", + "___id": "T000002R024937", "___s": true }, { "comment": "/**\r\n * Adds a file, or array of files, into the load queue.\r\n *\r\n * The file must be an instance of `Phaser.Loader.File`, or a class that extends it. The Loader will check that the key\r\n * used by the file won't conflict with any other key either in the loader, the inflight queue or the target cache.\r\n * If allowed it will then add the file into the pending list, read for the load to start. Or, if the load has already\r\n * started, ready for the next batch of files to be pulled from the list to the inflight queue.\r\n *\r\n * You should not normally call this method directly, but rather use one of the Loader methods like `image` or `atlas`,\r\n * however you can call this as long as the file given to it is well formed.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#addFile\r\n * @fires Phaser.Loader.Events#ADD\r\n * @since 3.0.0\r\n *\r\n * @param {(Phaser.Loader.File|Phaser.Loader.File[])} file - The file, or array of files, to be added to the load queue.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 498, + "lineno": 516, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221173,14 +221671,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#addFile", "scope": "instance", - "___id": "T000002R024950", + "___id": "T000002R024940", "___s": true }, { "comment": "/**\r\n * Checks the key and type of the given file to see if it will conflict with anything already\r\n * in a Cache, the Texture Manager, or the list or inflight queues.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#keyExists\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} file - The file to check the key of.\r\n *\r\n * @return {boolean} `true` if adding this file will cause a cache or queue conflict, otherwise `false`.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 543, + "lineno": 561, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221221,14 +221719,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#keyExists", "scope": "instance", - "___id": "T000002R024955", + "___id": "T000002R024945", "___s": true }, { "comment": "/**\r\n * Takes a well formed, fully parsed pack file object and adds its entries into the load queue. Usually you do not call\r\n * this method directly, but instead use `Loader.pack` and supply a path to a JSON file that holds the\r\n * pack data. However, if you've got the data prepared you can pass it to this method.\r\n *\r\n * You can also provide an optional key. If you do then it will only add the entries from that part of the pack into\r\n * to the load queue. If not specified it will add all entries it finds. For more details about the pack file format\r\n * see the `LoaderPlugin.pack` method.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#addPack\r\n * @since 3.7.0\r\n *\r\n * @param {any} pack - The Pack File data to be parsed and each entry of it to added to the load queue.\r\n * @param {string} [packKey] - An optional key to use from the pack file data.\r\n *\r\n * @return {boolean} `true` if any files were added to the queue, otherwise `false`.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 600, + "lineno": 618, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221283,14 +221781,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#addPack", "scope": "instance", - "___id": "T000002R024961", + "___id": "T000002R024951", "___s": true }, { "comment": "/**\r\n * Remove the resources listed in an Asset Pack.\r\n *\r\n * This removes Animations from the Animation Manager, Textures from the Texture Manager, and all other assets from their respective caches.\r\n * It doesn't remove the Pack itself from the JSON cache, if it exists there.\r\n * If the Pack includes another Pack, its resources will be removed too.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#removePack\r\n * @since 3.90.0\r\n *\r\n * @param {(string|object)} packKey - The key of an Asset Pack in the JSON cache, or a Pack File data.\r\n * @param {string} [dataKey] - A key in the Pack data, if you want to process only a section of it.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 682, + "lineno": 700, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221341,14 +221839,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#removePack", "scope": "instance", - "___id": "T000002R024980", + "___id": "T000002R024970", "___s": true }, { "comment": "/**\r\n * Is the Loader actively loading, or processing loaded files?\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#isLoading\r\n * @since 3.0.0\r\n *\r\n * @return {boolean} `true` if the Loader is busy loading or processing, otherwise `false`.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 856, + "lineno": 874, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221374,14 +221872,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#isLoading", "scope": "instance", - "___id": "T000002R025030", + "___id": "T000002R025020", "___s": true }, { "comment": "/**\r\n * Is the Loader ready to start a new load?\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#isReady\r\n * @since 3.0.0\r\n *\r\n * @return {boolean} `true` if the Loader is ready to start a new load, otherwise `false`.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 869, + "lineno": 887, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221407,14 +221905,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#isReady", "scope": "instance", - "___id": "T000002R025032", + "___id": "T000002R025022", "___s": true }, { "comment": "/**\r\n * Starts the Loader running. This will reset the progress and totals and then emit a `start` event.\r\n * If there is nothing in the queue the Loader will immediately complete, otherwise it will start\r\n * loading the first batch of files.\r\n *\r\n * The Loader is started automatically if the queue is populated within your Scenes `preload` method.\r\n *\r\n * However, outside of this, you need to call this method to start it.\r\n *\r\n * If the Loader is already running this method will simply return.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#start\r\n * @fires Phaser.Loader.Events#START\r\n * @since 3.0.0\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 882, + "lineno": 900, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221429,14 +221927,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#start", "scope": "instance", - "___id": "T000002R025034", + "___id": "T000002R025024", "___s": true }, { "comment": "/**\r\n * Called automatically during the load process.\r\n * It updates the `progress` value and then emits a progress event, which you can use to\r\n * display a loading bar in your game.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#updateProgress\r\n * @fires Phaser.Loader.Events#PROGRESS\r\n * @since 3.0.0\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 931, + "lineno": 949, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221451,14 +221949,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#updateProgress", "scope": "instance", - "___id": "T000002R025041", + "___id": "T000002R025031", "___s": true }, { "comment": "/**\r\n * Called automatically during the load process.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#update\r\n * @since 3.10.0\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 947, + "lineno": 965, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221470,19 +221968,19 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#update", "scope": "instance", - "___id": "T000002R025044", + "___id": "T000002R025034", "___s": true }, { - "comment": "/**\r\n * An internal method called automatically by the XHRLoader belong to a File.\r\n *\r\n * This method will remove the given file from the inflight Set and update the load progress.\r\n * If the file was successful its `onProcess` method is called, otherwise it is added to the delete queue.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#nextFile\r\n * @fires Phaser.Loader.Events#FILE_LOAD\r\n * @fires Phaser.Loader.Events#FILE_LOAD_ERROR\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Loader.File} file - The File that just finished loading, or errored during load.\r\n * @param {boolean} success - `true` if the file loaded successfully, otherwise `false`.\r\n */", + "comment": "/**\r\n * An internal method called automatically by the XHRLoader belonging to a File.\r\n *\r\n * This method will remove the given file from the inflight Set and update the load progress.\r\n * If the file was successful its `onProcess` method is called, otherwise it is added to the delete queue.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#nextFile\r\n * @fires Phaser.Loader.Events#FILE_LOAD\r\n * @fires Phaser.Loader.Events#FILE_LOAD_ERROR\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Loader.File} file - The File that just finished loading, or errored during load.\r\n * @param {boolean} success - `true` if the file loaded successfully, otherwise `false`.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 1001, + "lineno": 1019, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} }, - "description": "An internal method called automatically by the XHRLoader belong to a File.\r\rThis method will remove the given file from the inflight Set and update the load progress.\rIf the file was successful its `onProcess` method is called, otherwise it is added to the delete queue.", + "description": "An internal method called automatically by the XHRLoader belonging to a File.\r\rThis method will remove the given file from the inflight Set and update the load progress.\rIf the file was successful its `onProcess` method is called, otherwise it is added to the delete queue.", "kind": "function", "name": "nextFile", "fires": [ @@ -221521,14 +222019,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#nextFile", "scope": "instance", - "___id": "T000002R025049", + "___id": "T000002R025039", "___s": true }, { "comment": "/**\r\n * An internal method that is called automatically by the File when it has finished processing.\r\n *\r\n * If the process was successful, and the File isn't part of a MultiFile, its `addToCache` method is called.\r\n *\r\n * It this then removed from the queue. If there are no more files to load `loadComplete` is called.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#fileProcessComplete\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} file - The file that has finished processing.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 1049, + "lineno": 1067, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221555,14 +222053,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#fileProcessComplete", "scope": "instance", - "___id": "T000002R025051", + "___id": "T000002R025041", "___s": true }, { "comment": "/**\r\n * Called at the end when the load queue is exhausted and all files have either loaded or errored.\r\n * By this point every loaded file will now be in its associated cache and ready for use.\r\n *\r\n * Also clears down the Sets, puts progress to 1 and clears the deletion queue.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#loadComplete\r\n * @fires Phaser.Loader.Events#COMPLETE\r\n * @fires Phaser.Loader.Events#POST_PROCESS\r\n * @since 3.7.0\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 1107, + "lineno": 1125, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221578,14 +222076,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#loadComplete", "scope": "instance", - "___id": "T000002R025053", + "___id": "T000002R025043", "___s": true }, { "comment": "/**\r\n * Adds a File into the pending-deletion queue.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#flagForRemoval\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} file - The File to be queued for deletion when the Loader completes.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 1140, + "lineno": 1158, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221612,14 +222110,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#flagForRemoval", "scope": "instance", - "___id": "T000002R025057", + "___id": "T000002R025047", "___s": true }, { "comment": "/**\r\n * Converts the given JSON data into a file that the browser then prompts you to download so you can save it locally.\r\n *\r\n * The data must be well formed JSON and ready-parsed, not a JavaScript object.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#saveJSON\r\n * @since 3.0.0\r\n *\r\n * @param {*} data - The JSON data, ready parsed.\r\n * @param {string} [filename=file.json] - The name to save the JSON file as.\r\n *\r\n * @return {this} This Loader plugin.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 1153, + "lineno": 1171, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221675,14 +222173,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#saveJSON", "scope": "instance", - "___id": "T000002R025059", + "___id": "T000002R025049", "___s": true }, { "comment": "/**\r\n * Causes the browser to save the given data as a file to its default Downloads folder.\r\n *\r\n * Creates a DOM level anchor link, assigns it as being a `download` anchor, sets the href\r\n * to be an ObjectURL based on the given data, and then invokes a click event.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#save\r\n * @since 3.0.0\r\n *\r\n * @param {*} data - The data to be saved. Will be passed through URL.createObjectURL.\r\n * @param {string} [filename=file.json] - The filename to save the file as.\r\n * @param {string} [filetype=application/json] - The file type to use when saving the file. Defaults to JSON.\r\n *\r\n * @return {this} This Loader plugin.\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 1171, + "lineno": 1189, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221753,14 +222251,14 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#save", "scope": "instance", - "___id": "T000002R025061", + "___id": "T000002R025051", "___s": true }, { "comment": "/**\r\n * Resets the Loader.\r\n *\r\n * This will clear all lists and reset the base URL, path and prefix.\r\n *\r\n * Warning: If the Loader is currently downloading files, or has files in its queue, they will be aborted.\r\n *\r\n * @method Phaser.Loader.LoaderPlugin#reset\r\n * @since 3.0.0\r\n */", "meta": { "filename": "LoaderPlugin.js", - "lineno": 1205, + "lineno": 1223, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -221772,7 +222270,7 @@ "memberof": "Phaser.Loader.LoaderPlugin", "longname": "Phaser.Loader.LoaderPlugin#reset", "scope": "instance", - "___id": "T000002R025072", + "___id": "T000002R025062", "___s": true }, { @@ -221833,7 +222331,7 @@ "memberof": "Phaser.Loader", "longname": "Phaser.Loader.MergeXHRSettings", "scope": "static", - "___id": "T000002R025094", + "___id": "T000002R025084", "___s": true }, { @@ -221915,7 +222413,7 @@ ], "scope": "static", "longname": "Phaser.Loader.MultiFile", - "___id": "T000002R025103", + "___id": "T000002R025093", "___s": true }, { @@ -221943,7 +222441,7 @@ "longname": "Phaser.Loader.MultiFile#loader", "scope": "instance", "kind": "member", - "___id": "T000002R025107", + "___id": "T000002R025097", "___s": true }, { @@ -221971,7 +222469,7 @@ "longname": "Phaser.Loader.MultiFile#type", "scope": "instance", "kind": "member", - "___id": "T000002R025109", + "___id": "T000002R025099", "___s": true }, { @@ -221999,7 +222497,7 @@ "longname": "Phaser.Loader.MultiFile#key", "scope": "instance", "kind": "member", - "___id": "T000002R025111", + "___id": "T000002R025101", "___s": true }, { @@ -222036,7 +222534,7 @@ "longname": "Phaser.Loader.MultiFile#files", "scope": "instance", "kind": "member", - "___id": "T000002R025117", + "___id": "T000002R025107", "___s": true }, { @@ -222064,7 +222562,7 @@ "longname": "Phaser.Loader.MultiFile#state", "scope": "instance", "kind": "member", - "___id": "T000002R025119", + "___id": "T000002R025109", "___s": true }, { @@ -222093,7 +222591,7 @@ "longname": "Phaser.Loader.MultiFile#complete", "scope": "instance", "kind": "member", - "___id": "T000002R025121", + "___id": "T000002R025111", "___s": true }, { @@ -222121,7 +222619,7 @@ "longname": "Phaser.Loader.MultiFile#pending", "scope": "instance", "kind": "member", - "___id": "T000002R025123", + "___id": "T000002R025113", "___s": true }, { @@ -222150,7 +222648,7 @@ "longname": "Phaser.Loader.MultiFile#failed", "scope": "instance", "kind": "member", - "___id": "T000002R025125", + "___id": "T000002R025115", "___s": true }, { @@ -222178,7 +222676,7 @@ "longname": "Phaser.Loader.MultiFile#config", "scope": "instance", "kind": "member", - "___id": "T000002R025127", + "___id": "T000002R025117", "___s": true }, { @@ -222206,7 +222704,7 @@ "longname": "Phaser.Loader.MultiFile#baseURL", "scope": "instance", "kind": "member", - "___id": "T000002R025129", + "___id": "T000002R025119", "___s": true }, { @@ -222234,7 +222732,7 @@ "longname": "Phaser.Loader.MultiFile#path", "scope": "instance", "kind": "member", - "___id": "T000002R025131", + "___id": "T000002R025121", "___s": true }, { @@ -222262,7 +222760,7 @@ "longname": "Phaser.Loader.MultiFile#prefix", "scope": "instance", "kind": "member", - "___id": "T000002R025133", + "___id": "T000002R025123", "___s": true }, { @@ -222295,7 +222793,7 @@ "memberof": "Phaser.Loader.MultiFile", "longname": "Phaser.Loader.MultiFile#isReadyToProcess", "scope": "instance", - "___id": "T000002R025137", + "___id": "T000002R025127", "___s": true }, { @@ -222343,7 +222841,7 @@ "memberof": "Phaser.Loader.MultiFile", "longname": "Phaser.Loader.MultiFile#addToMultiFile", "scope": "instance", - "___id": "T000002R025139", + "___id": "T000002R025129", "___s": true }, { @@ -222377,7 +222875,7 @@ "memberof": "Phaser.Loader.MultiFile", "longname": "Phaser.Loader.MultiFile#onFileComplete", "scope": "instance", - "___id": "T000002R025143", + "___id": "T000002R025133", "___s": true }, { @@ -222411,7 +222909,7 @@ "memberof": "Phaser.Loader.MultiFile", "longname": "Phaser.Loader.MultiFile#onFileFailed", "scope": "instance", - "___id": "T000002R025146", + "___id": "T000002R025136", "___s": true }, { @@ -222434,7 +222932,7 @@ "memberof": "Phaser.Loader.MultiFile", "longname": "Phaser.Loader.MultiFile#pendingDestroy", "scope": "instance", - "___id": "T000002R025149", + "___id": "T000002R025139", "___s": true }, { @@ -222453,11 +222951,11 @@ "memberof": "Phaser.Loader.MultiFile", "longname": "Phaser.Loader.MultiFile#destroy", "scope": "instance", - "___id": "T000002R025155", + "___id": "T000002R025145", "___s": true }, { - "comment": "/**\r\n * @typedef {object} Phaser.Types.Loader.FileConfig\r\n * @since 3.0.0\r\n *\r\n * @property {string} type - The name of the Loader method that loads this file, e.g., 'image', 'json', 'spritesheet'.\r\n * @property {string} key - Unique cache key (unique within its file type)\r\n * @property {object|string} [url] - The URL of the file, not including baseURL.\r\n * @property {string} [path] - The path of the file, not including the baseURL.\r\n * @property {string} [extension] - The default extension this file uses.\r\n * @property {XMLHttpRequestResponseType} [responseType] - The responseType to be used by the XHR request.\r\n * @property {(Phaser.Types.Loader.XHRSettingsObject|false)} [xhrSettings=false] - Custom XHR Settings specific to this file and merged with the Loader defaults.\r\n * @property {any} [config] - A config object that can be used by file types to store transitional data.\r\n * @property {string} [textureURL] - The absolute or relative URL to load the texture image file from.\r\n * @property {string} [textureExtension='png'] - The default file extension to use for the image texture if no url is provided.\r\n * @property {Phaser.Types.Loader.XHRSettingsObject} [textureXhrSettings] - Extra XHR Settings specifically for the texture image file.\r\n * @property {object|string} [atlasURL] - The absolute or relative URL to load the atlas json file from. Or, a well formed JSON object to use instead.\r\n * @property {string} [atlasExtension='json'] - The default file extension to use for the atlas json if no url is provided.\r\n * @property {Phaser.Types.Loader.XHRSettingsObject} [atlasXhrSettings] - Extra XHR Settings specifically for the atlas json file.\r\n * @property {string} [normalMap] - The filename of an associated normal map. It uses the same path and url to load as the texture image.\r\n * @property {AudioContext} [context] - The optional AudioContext this file will use to process itself (only used by Sound objects).\r\n * @property {string} [jsonURL] - The absolute or relative URL to load the json file from. Or a well formed JSON object to use instead.\r\n * @property {Phaser.Types.Loader.XHRSettingsObject} [jsonXhrSettings] - Extra XHR Settings specifically for the json file.\r\n * @property {{(string|string[])}} [audioURL] - The absolute or relative URL to load the audio file from.\r\n * @property {any} [audioConfig] - The audio configuration options.\r\n * @property {Phaser.Types.Loader.XHRSettingsObject} [audioXhrSettings] - Extra XHR Settings specifically for the audio file.\r\n * @property {any} [dataType] - Optional type to cast the binary file to once loaded. For example, `Uint8Array`.\r\n * @property {string} [fontDataURL] - The absolute or relative URL to load the font data xml file from.\r\n * @property {string} [fontDataExtension='xml'] - The default file extension to use for the font data xml if no url is provided.\r\n * @property {Phaser.Types.Loader.XHRSettingsObject} [fontDataXhrSettings] - Extra XHR Settings specifically for the font data xml file.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [ETC] - The string, or file entry object, for an ETC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [ETC1] - The string, or file entry object, for an ETC1 format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [ATC] - The string, or file entry object, for an ATC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [ASTC] - The string, or file entry object, for an ASTC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [BPTC] - The string, or file entry object, for an BPTC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [RGTC] - The string, or file entry object, for an RGTC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [PVRTC] - The string, or file entry object, for an PVRTC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [S3TC] - The string, or file entry object, for an S3TC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [S3TCSRGB] - The string, or file entry object, for an S3TCSRGB format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [IMG] - The string, or file entry object, for the fallback image file.\r\n * @property {string} [shaderType='fragment'] - The type of shader. Either `fragment` for a fragment shader, or `vertex` for a vertex shader. This is ignored if you load a shader bundle.\r\n * @property {number} [width=512] - The width of the texture the HTML will be rendered to.\r\n * @property {number} [height=512] - The height of the texture the HTML will be rendered to.\r\n * @property {Phaser.Types.Loader.FileTypes.ImageFrameConfig} [frameConfig] - The frame configuration object. Only provided for, and used by, Sprite Sheets.\r\n * @property {string} [dataKey] - If specified instead of the whole JSON file being parsed and added to the Cache, only the section corresponding to this property key will be added. If the property you want to extract is nested, use periods to divide it.\r\n * @property {string} [baseURL] - Optional Base URL to use when loading the textures defined in the atlas data.\r\n * @property {boolean} [flipUV] - Flip the UV coordinates stored in the model data?\r\n * @property {string} [matURL] - An optional absolute or relative URL to the object material file from. If undefined or `null`, no material file will be loaded.\r\n * @property {string} [matExtension='mat'] - The default material file extension to use if no url is provided.\r\n * @property {boolean} [start=false] - Automatically start the plugin after loading?\r\n * @property {string} [mapping] - If this plugin is to be injected into the Scene, this is the property key used.\r\n * @property {string} [systemKey] - If this plugin is to be added to Scene.Systems, this is the property key for it.\r\n * @property {string} [sceneKey] - If this plugin is to be added to the Scene, this is the property key for it.\r\n * @property {Phaser.Types.Loader.FileTypes.SVGSizeConfig} [svgConfig] - The svg size configuration object.\r\n */", + "comment": "/**\r\n * @typedef {object} Phaser.Types.Loader.FileConfig\r\n * @since 3.0.0\r\n *\r\n * @property {string} type - The name of the Loader method that loads this file, e.g., 'image', 'json', 'spritesheet'.\r\n * @property {string} key - Unique cache key (unique within its file type)\r\n * @property {object|string} [url] - The URL of the file, not including baseURL.\r\n * @property {string} [path] - The path of the file, not including the baseURL.\r\n * @property {string} [extension] - The default extension this file uses.\r\n * @property {XMLHttpRequestResponseType} [responseType] - The responseType to be used by the XHR request.\r\n * @property {(Phaser.Types.Loader.XHRSettingsObject|false)} [xhrSettings=false] - Custom XHR Settings specific to this file and merged with the Loader defaults.\r\n * @property {any} [config] - A config object that can be used by file types to store transitional data.\r\n * @property {string} [textureURL] - The absolute or relative URL to load the texture image file from.\r\n * @property {string} [textureExtension='png'] - The default file extension to use for the image texture if no url is provided.\r\n * @property {Phaser.Types.Loader.XHRSettingsObject} [textureXhrSettings] - Extra XHR Settings specifically for the texture image file.\r\n * @property {object|string} [atlasURL] - The absolute or relative URL to load the atlas json file from. Or, a well formed JSON object to use instead.\r\n * @property {string} [atlasExtension='json'] - The default file extension to use for the atlas json if no url is provided.\r\n * @property {Phaser.Types.Loader.XHRSettingsObject} [atlasXhrSettings] - Extra XHR Settings specifically for the atlas json file.\r\n * @property {string} [normalMap] - The filename of an associated normal map. It uses the same path and url to load as the texture image.\r\n * @property {AudioContext} [context] - The optional AudioContext this file will use to process itself (only used by Sound objects).\r\n * @property {string} [jsonURL] - The absolute or relative URL to load the json file from. Or a well formed JSON object to use instead.\r\n * @property {Phaser.Types.Loader.XHRSettingsObject} [jsonXhrSettings] - Extra XHR Settings specifically for the json file.\r\n * @property {{(string|string[])}} [audioURL] - The absolute or relative URL to load the audio file from.\r\n * @property {any} [audioConfig] - The audio configuration options.\r\n * @property {Phaser.Types.Loader.XHRSettingsObject} [audioXhrSettings] - Extra XHR Settings specifically for the audio file.\r\n * @property {any} [dataType] - Optional type to cast the binary file to once loaded. For example, `Uint8Array`.\r\n * @property {string} [fontDataURL] - The absolute or relative URL to load the font data xml file from.\r\n * @property {string} [fontDataExtension='xml'] - The default file extension to use for the font data xml if no url is provided.\r\n * @property {Phaser.Types.Loader.XHRSettingsObject} [fontDataXhrSettings] - Extra XHR Settings specifically for the font data xml file.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [ETC] - The string, or file entry object, for an ETC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [ETC1] - The string, or file entry object, for an ETC1 format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [ATC] - The string, or file entry object, for an ATC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [ASTC] - The string, or file entry object, for an ASTC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [BPTC] - The string, or file entry object, for an BPTC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [RGTC] - The string, or file entry object, for an RGTC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [PVRTC] - The string, or file entry object, for an PVRTC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [S3TC] - The string, or file entry object, for an S3TC format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [S3TCSRGB] - The string, or file entry object, for an S3TCSRGB format texture.\r\n * @property {(Phaser.Types.Loader.FileTypes.CompressedTextureFileEntry | string)} [IMG] - The string, or file entry object, for the fallback image file.\r\n * @property {string} [shaderType='fragment'] - The type of shader. Either `fragment` for a fragment shader, or `vertex` for a vertex shader. This is ignored if you load a shader bundle.\r\n * @property {number} [width=512] - The width of the texture the HTML will be rendered to.\r\n * @property {number} [height=512] - The height of the texture the HTML will be rendered to.\r\n * @property {Phaser.Types.Loader.FileTypes.ImageFrameConfig} [frameConfig] - The frame configuration object. Only provided for, and used by, Sprite Sheets.\r\n * @property {string} [dataKey] - If specified instead of the whole JSON file being parsed and added to the Cache, only the section corresponding to this property key will be added. If the property you want to extract is nested, use periods to divide it.\r\n * @property {string} [baseURL] - Optional Base URL to use when loading the textures defined in the atlas data.\r\n * @property {boolean} [flipUV] - Flip the UV coordinates stored in the model data?\r\n * @property {string} [matURL] - An optional absolute or relative URL to the object material file from. If undefined or `null`, no material file will be loaded.\r\n * @property {string} [matExtension='mat'] - The default material file extension to use if no url is provided.\r\n * @property {boolean} [start=false] - Automatically start the plugin after loading?\r\n * @property {string} [mapping] - If this plugin is to be injected into the Scene, this is the property key used.\r\n * @property {string} [systemKey] - If this plugin is to be added to Scene.Systems, this is the property key for it.\r\n * @property {string} [sceneKey] - If this plugin is to be added to the Scene, this is the property key for it.\r\n * @property {Phaser.Types.Loader.FileTypes.SVGSizeConfig} [svgConfig] - The svg size configuration object.\r\n * @property {number} [maxRetries=2] - The number of times to retry the file load if it fails.\r\n */", "meta": { "filename": "FileConfig.js", "lineno": 1, @@ -223327,12 +223825,27 @@ "optional": true, "description": "The svg size configuration object.", "name": "svgConfig" + }, + { + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "optional": true, + "defaultvalue": 2, + "description": "The number of times to retry the file load if it fails.", + "name": "maxRetries" } ], "memberof": "Phaser.Types.Loader", "longname": "Phaser.Types.Loader.FileConfig", "scope": "static", - "___id": "T000002R025161", + "___id": "T000002R025151", "___s": true }, { @@ -223349,7 +223862,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Loader", "scope": "static", - "___id": "T000002R025162", + "___id": "T000002R025152", "___s": true }, { @@ -223581,7 +224094,7 @@ "memberof": "Phaser.Types.Loader", "longname": "Phaser.Types.Loader.XHRSettingsObject", "scope": "static", - "___id": "T000002R025163", + "___id": "T000002R025153", "___s": true }, { @@ -223642,7 +224155,7 @@ "memberof": "Phaser.Loader", "longname": "Phaser.Loader.XHRLoader", "scope": "static", - "___id": "T000002R025165", + "___id": "T000002R025155", "___s": true }, { @@ -223767,7 +224280,7 @@ "memberof": "Phaser.Loader", "longname": "Phaser.Loader.XHRSettings", "scope": "static", - "___id": "T000002R025181", + "___id": "T000002R025171", "___s": true }, { @@ -223854,7 +224367,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.Between", "scope": "static", - "___id": "T000002R025201", + "___id": "T000002R025191", "___s": true }, { @@ -223915,7 +224428,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.BetweenPoints", "scope": "static", - "___id": "T000002R025204", + "___id": "T000002R025194", "___s": true }, { @@ -223976,7 +224489,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.BetweenPointsY", "scope": "static", - "___id": "T000002R025207", + "___id": "T000002R025197", "___s": true }, { @@ -224063,7 +224576,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.BetweenY", "scope": "static", - "___id": "T000002R025210", + "___id": "T000002R025200", "___s": true }, { @@ -224111,7 +224624,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.CounterClockwise", "scope": "static", - "___id": "T000002R025214", + "___id": "T000002R025204", "___s": true }, { @@ -224128,7 +224641,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Angle", "scope": "static", - "___id": "T000002R025218", + "___id": "T000002R025208", "___s": true }, { @@ -224176,7 +224689,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.Normalize", "scope": "static", - "___id": "T000002R025233", + "___id": "T000002R025223", "___s": true }, { @@ -224209,7 +224722,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.Random", "scope": "static", - "___id": "T000002R025238", + "___id": "T000002R025228", "___s": true }, { @@ -224242,7 +224755,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.RandomDegrees", "scope": "static", - "___id": "T000002R025242", + "___id": "T000002R025232", "___s": true }, { @@ -224290,7 +224803,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.Reverse", "scope": "static", - "___id": "T000002R025246", + "___id": "T000002R025236", "___s": true }, { @@ -224366,7 +224879,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.RotateTo", "scope": "static", - "___id": "T000002R025250", + "___id": "T000002R025240", "___s": true }, { @@ -224427,7 +224940,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.ShortestBetween", "scope": "static", - "___id": "T000002R025259", + "___id": "T000002R025249", "___s": true }, { @@ -224475,7 +224988,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.Wrap", "scope": "static", - "___id": "T000002R025265", + "___id": "T000002R025255", "___s": true }, { @@ -224523,7 +225036,7 @@ "memberof": "Phaser.Math.Angle", "longname": "Phaser.Math.Angle.WrapDegrees", "scope": "static", - "___id": "T000002R025269", + "___id": "T000002R025259", "___s": true }, { @@ -224580,7 +225093,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Average", "scope": "static", - "___id": "T000002R025272", + "___id": "T000002R025262", "___s": true }, { @@ -224641,7 +225154,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Bernstein", "scope": "static", - "___id": "T000002R025279", + "___id": "T000002R025269", "___s": true }, { @@ -224702,7 +225215,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Between", "scope": "static", - "___id": "T000002R025282", + "___id": "T000002R025272", "___s": true }, { @@ -224802,7 +225315,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.CatmullRom", "scope": "static", - "___id": "T000002R025285", + "___id": "T000002R025275", "___s": true }, { @@ -224880,7 +225393,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.CeilTo", "scope": "static", - "___id": "T000002R025292", + "___id": "T000002R025282", "___s": true }, { @@ -224954,7 +225467,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Clamp", "scope": "static", - "___id": "T000002R025298", + "___id": "T000002R025288", "___s": true }, { @@ -224982,7 +225495,7 @@ "longname": "Phaser.Math.PI2", "scope": "static", "kind": "member", - "___id": "T000002R025302", + "___id": "T000002R025292", "___s": true }, { @@ -225010,7 +225523,7 @@ "longname": "Phaser.Math.TAU", "scope": "static", "kind": "member", - "___id": "T000002R025304", + "___id": "T000002R025294", "___s": true }, { @@ -225038,7 +225551,7 @@ "longname": "Phaser.Math.EPSILON", "scope": "static", "kind": "member", - "___id": "T000002R025306", + "___id": "T000002R025296", "___s": true }, { @@ -225066,7 +225579,7 @@ "longname": "Phaser.Math.DEG_TO_RAD", "scope": "static", "kind": "member", - "___id": "T000002R025308", + "___id": "T000002R025298", "___s": true }, { @@ -225094,7 +225607,7 @@ "longname": "Phaser.Math.RAD_TO_DEG", "scope": "static", "kind": "member", - "___id": "T000002R025310", + "___id": "T000002R025300", "___s": true }, { @@ -225122,7 +225635,7 @@ "longname": "Phaser.Math.RND", "scope": "static", "kind": "member", - "___id": "T000002R025312", + "___id": "T000002R025302", "___s": true }, { @@ -225150,7 +225663,7 @@ "longname": "Phaser.Math.MIN_SAFE_INTEGER", "scope": "static", "kind": "member", - "___id": "T000002R025314", + "___id": "T000002R025304", "___s": true }, { @@ -225178,7 +225691,7 @@ "longname": "Phaser.Math.MAX_SAFE_INTEGER", "scope": "static", "kind": "member", - "___id": "T000002R025316", + "___id": "T000002R025306", "___s": true }, { @@ -225226,7 +225739,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.DegToRad", "scope": "static", - "___id": "T000002R025320", + "___id": "T000002R025310", "___s": true }, { @@ -225287,7 +225800,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Difference", "scope": "static", - "___id": "T000002R025323", + "___id": "T000002R025313", "___s": true }, { @@ -225374,7 +225887,7 @@ "memberof": "Phaser.Math.Distance", "longname": "Phaser.Math.Distance.Between", "scope": "static", - "___id": "T000002R025326", + "___id": "T000002R025316", "___s": true }, { @@ -225435,7 +225948,7 @@ "memberof": "Phaser.Math.Distance", "longname": "Phaser.Math.Distance.BetweenPoints", "scope": "static", - "___id": "T000002R025331", + "___id": "T000002R025321", "___s": true }, { @@ -225496,7 +226009,7 @@ "memberof": "Phaser.Math.Distance", "longname": "Phaser.Math.Distance.BetweenPointsSquared", "scope": "static", - "___id": "T000002R025336", + "___id": "T000002R025326", "___s": true }, { @@ -225583,7 +226096,7 @@ "memberof": "Phaser.Math.Distance", "longname": "Phaser.Math.Distance.Chebyshev", "scope": "static", - "___id": "T000002R025341", + "___id": "T000002R025331", "___s": true }, { @@ -225683,7 +226196,7 @@ "memberof": "Phaser.Math.Distance", "longname": "Phaser.Math.Distance.Power", "scope": "static", - "___id": "T000002R025344", + "___id": "T000002R025334", "___s": true }, { @@ -225770,7 +226283,7 @@ "memberof": "Phaser.Math.Distance", "longname": "Phaser.Math.Distance.Snake", "scope": "static", - "___id": "T000002R025348", + "___id": "T000002R025338", "___s": true }, { @@ -225857,7 +226370,7 @@ "memberof": "Phaser.Math.Distance", "longname": "Phaser.Math.Distance.Squared", "scope": "static", - "___id": "T000002R025351", + "___id": "T000002R025341", "___s": true }, { @@ -225874,7 +226387,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Distance", "scope": "static", - "___id": "T000002R025356", + "___id": "T000002R025346", "___s": true }, { @@ -225937,7 +226450,7 @@ "memberof": "Phaser.Math.Easing.Back", "longname": "Phaser.Math.Easing.Back.In", "scope": "static", - "___id": "T000002R025365", + "___id": "T000002R025355", "___s": true }, { @@ -225954,7 +226467,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Back", "scope": "static", - "___id": "T000002R025369", + "___id": "T000002R025359", "___s": true }, { @@ -226017,7 +226530,7 @@ "memberof": "Phaser.Math.Easing.Back", "longname": "Phaser.Math.Easing.Back.InOut", "scope": "static", - "___id": "T000002R025374", + "___id": "T000002R025364", "___s": true }, { @@ -226080,7 +226593,7 @@ "memberof": "Phaser.Math.Easing.Back", "longname": "Phaser.Math.Easing.Back.Out", "scope": "static", - "___id": "T000002R025381", + "___id": "T000002R025371", "___s": true }, { @@ -226128,7 +226641,7 @@ "memberof": "Phaser.Math.Easing.Bounce", "longname": "Phaser.Math.Easing.Bounce.In", "scope": "static", - "___id": "T000002R025385", + "___id": "T000002R025375", "___s": true }, { @@ -226145,7 +226658,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Bounce", "scope": "static", - "___id": "T000002R025392", + "___id": "T000002R025382", "___s": true }, { @@ -226193,7 +226706,7 @@ "memberof": "Phaser.Math.Easing.Bounce", "longname": "Phaser.Math.Easing.Bounce.InOut", "scope": "static", - "___id": "T000002R025397", + "___id": "T000002R025387", "___s": true }, { @@ -226241,7 +226754,7 @@ "memberof": "Phaser.Math.Easing.Bounce", "longname": "Phaser.Math.Easing.Bounce.Out", "scope": "static", - "___id": "T000002R025411", + "___id": "T000002R025401", "___s": true }, { @@ -226289,7 +226802,7 @@ "memberof": "Phaser.Math.Easing.Circular", "longname": "Phaser.Math.Easing.Circular.In", "scope": "static", - "___id": "T000002R025417", + "___id": "T000002R025407", "___s": true }, { @@ -226306,7 +226819,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Circular", "scope": "static", - "___id": "T000002R025420", + "___id": "T000002R025410", "___s": true }, { @@ -226354,7 +226867,7 @@ "memberof": "Phaser.Math.Easing.Circular", "longname": "Phaser.Math.Easing.Circular.InOut", "scope": "static", - "___id": "T000002R025425", + "___id": "T000002R025415", "___s": true }, { @@ -226402,7 +226915,7 @@ "memberof": "Phaser.Math.Easing.Circular", "longname": "Phaser.Math.Easing.Circular.Out", "scope": "static", - "___id": "T000002R025430", + "___id": "T000002R025420", "___s": true }, { @@ -226450,7 +226963,7 @@ "memberof": "Phaser.Math.Easing.Cubic", "longname": "Phaser.Math.Easing.Cubic.In", "scope": "static", - "___id": "T000002R025433", + "___id": "T000002R025423", "___s": true }, { @@ -226467,7 +226980,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Cubic", "scope": "static", - "___id": "T000002R025436", + "___id": "T000002R025426", "___s": true }, { @@ -226515,7 +227028,7 @@ "memberof": "Phaser.Math.Easing.Cubic", "longname": "Phaser.Math.Easing.Cubic.InOut", "scope": "static", - "___id": "T000002R025441", + "___id": "T000002R025431", "___s": true }, { @@ -226563,7 +227076,7 @@ "memberof": "Phaser.Math.Easing.Cubic", "longname": "Phaser.Math.Easing.Cubic.Out", "scope": "static", - "___id": "T000002R025446", + "___id": "T000002R025436", "___s": true }, { @@ -226641,7 +227154,7 @@ "memberof": "Phaser.Math.Easing.Elastic", "longname": "Phaser.Math.Easing.Elastic.In", "scope": "static", - "___id": "T000002R025509", + "___id": "T000002R025499", "___s": true }, { @@ -226658,7 +227171,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Elastic", "scope": "static", - "___id": "T000002R025518", + "___id": "T000002R025508", "___s": true }, { @@ -226736,7 +227249,7 @@ "memberof": "Phaser.Math.Easing.Elastic", "longname": "Phaser.Math.Easing.Elastic.InOut", "scope": "static", - "___id": "T000002R025523", + "___id": "T000002R025513", "___s": true }, { @@ -226814,7 +227327,7 @@ "memberof": "Phaser.Math.Easing.Elastic", "longname": "Phaser.Math.Easing.Elastic.Out", "scope": "static", - "___id": "T000002R025534", + "___id": "T000002R025524", "___s": true }, { @@ -226862,7 +227375,7 @@ "memberof": "Phaser.Math.Easing.Expo", "longname": "Phaser.Math.Easing.Expo.In", "scope": "static", - "___id": "T000002R025542", + "___id": "T000002R025532", "___s": true }, { @@ -226879,7 +227392,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Expo", "scope": "static", - "___id": "T000002R025545", + "___id": "T000002R025535", "___s": true }, { @@ -226927,7 +227440,7 @@ "memberof": "Phaser.Math.Easing.Expo", "longname": "Phaser.Math.Easing.Expo.InOut", "scope": "static", - "___id": "T000002R025550", + "___id": "T000002R025540", "___s": true }, { @@ -226975,7 +227488,7 @@ "memberof": "Phaser.Math.Easing.Expo", "longname": "Phaser.Math.Easing.Expo.Out", "scope": "static", - "___id": "T000002R025554", + "___id": "T000002R025544", "___s": true }, { @@ -226992,7 +227505,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Easing", "scope": "static", - "___id": "T000002R025557", + "___id": "T000002R025547", "___s": true }, { @@ -227040,7 +227553,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Linear", "scope": "static", - "___id": "T000002R025572", + "___id": "T000002R025562", "___s": true }, { @@ -227088,7 +227601,7 @@ "memberof": "Phaser.Math.Easing.Quadratic", "longname": "Phaser.Math.Easing.Quadratic.In", "scope": "static", - "___id": "T000002R025575", + "___id": "T000002R025565", "___s": true }, { @@ -227105,7 +227618,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Quadratic", "scope": "static", - "___id": "T000002R025578", + "___id": "T000002R025568", "___s": true }, { @@ -227153,7 +227666,7 @@ "memberof": "Phaser.Math.Easing.Quadratic", "longname": "Phaser.Math.Easing.Quadratic.InOut", "scope": "static", - "___id": "T000002R025583", + "___id": "T000002R025573", "___s": true }, { @@ -227201,7 +227714,7 @@ "memberof": "Phaser.Math.Easing.Quadratic", "longname": "Phaser.Math.Easing.Quadratic.Out", "scope": "static", - "___id": "T000002R025587", + "___id": "T000002R025577", "___s": true }, { @@ -227249,7 +227762,7 @@ "memberof": "Phaser.Math.Easing.Quartic", "longname": "Phaser.Math.Easing.Quartic.In", "scope": "static", - "___id": "T000002R025590", + "___id": "T000002R025580", "___s": true }, { @@ -227266,7 +227779,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Quartic", "scope": "static", - "___id": "T000002R025593", + "___id": "T000002R025583", "___s": true }, { @@ -227314,7 +227827,7 @@ "memberof": "Phaser.Math.Easing.Quartic", "longname": "Phaser.Math.Easing.Quartic.InOut", "scope": "static", - "___id": "T000002R025598", + "___id": "T000002R025588", "___s": true }, { @@ -227362,7 +227875,7 @@ "memberof": "Phaser.Math.Easing.Quartic", "longname": "Phaser.Math.Easing.Quartic.Out", "scope": "static", - "___id": "T000002R025603", + "___id": "T000002R025593", "___s": true }, { @@ -227410,7 +227923,7 @@ "memberof": "Phaser.Math.Easing.Quintic", "longname": "Phaser.Math.Easing.Quintic.In", "scope": "static", - "___id": "T000002R025606", + "___id": "T000002R025596", "___s": true }, { @@ -227427,7 +227940,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Quintic", "scope": "static", - "___id": "T000002R025609", + "___id": "T000002R025599", "___s": true }, { @@ -227475,7 +227988,7 @@ "memberof": "Phaser.Math.Easing.Quintic", "longname": "Phaser.Math.Easing.Quintic.InOut", "scope": "static", - "___id": "T000002R025614", + "___id": "T000002R025604", "___s": true }, { @@ -227523,7 +228036,7 @@ "memberof": "Phaser.Math.Easing.Quintic", "longname": "Phaser.Math.Easing.Quintic.Out", "scope": "static", - "___id": "T000002R025619", + "___id": "T000002R025609", "___s": true }, { @@ -227571,7 +228084,7 @@ "memberof": "Phaser.Math.Easing.Sine", "longname": "Phaser.Math.Easing.Sine.In", "scope": "static", - "___id": "T000002R025622", + "___id": "T000002R025612", "___s": true }, { @@ -227588,7 +228101,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Sine", "scope": "static", - "___id": "T000002R025625", + "___id": "T000002R025615", "___s": true }, { @@ -227636,7 +228149,7 @@ "memberof": "Phaser.Math.Easing.Sine", "longname": "Phaser.Math.Easing.Sine.InOut", "scope": "static", - "___id": "T000002R025630", + "___id": "T000002R025620", "___s": true }, { @@ -227684,7 +228197,7 @@ "memberof": "Phaser.Math.Easing.Sine", "longname": "Phaser.Math.Easing.Sine.Out", "scope": "static", - "___id": "T000002R025633", + "___id": "T000002R025623", "___s": true }, { @@ -227701,7 +228214,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Stepped", "scope": "static", - "___id": "T000002R025636", + "___id": "T000002R025626", "___s": true }, { @@ -227764,7 +228277,7 @@ "memberof": "Phaser.Math.Easing", "longname": "Phaser.Math.Easing.Stepped", "scope": "static", - "___id": "T000002R025638", + "___id": "T000002R025628", "___s": true }, { @@ -227826,7 +228339,7 @@ ], "scope": "static", "longname": "Phaser.Math.Euler", - "___id": "T000002R025647", + "___id": "T000002R025637", "___s": true }, { @@ -227874,7 +228387,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Factorial", "scope": "static", - "___id": "T000002R025733", + "___id": "T000002R025723", "___s": true }, { @@ -227935,7 +228448,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.FloatBetween", "scope": "static", - "___id": "T000002R025738", + "___id": "T000002R025728", "___s": true }, { @@ -228013,7 +228526,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.FloorTo", "scope": "static", - "___id": "T000002R025741", + "___id": "T000002R025731", "___s": true }, { @@ -228088,7 +228601,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.FromPercent", "scope": "static", - "___id": "T000002R025748", + "___id": "T000002R025738", "___s": true }, { @@ -228151,7 +228664,7 @@ "memberof": "Phaser.Math.Fuzzy", "longname": "Phaser.Math.Fuzzy.Ceil", "scope": "static", - "___id": "T000002R025752", + "___id": "T000002R025742", "___s": true }, { @@ -228227,7 +228740,7 @@ "memberof": "Phaser.Math.Fuzzy", "longname": "Phaser.Math.Fuzzy.Equal", "scope": "static", - "___id": "T000002R025756", + "___id": "T000002R025746", "___s": true }, { @@ -228290,7 +228803,7 @@ "memberof": "Phaser.Math.Fuzzy", "longname": "Phaser.Math.Fuzzy.Floor", "scope": "static", - "___id": "T000002R025760", + "___id": "T000002R025750", "___s": true }, { @@ -228366,7 +228879,7 @@ "memberof": "Phaser.Math.Fuzzy", "longname": "Phaser.Math.Fuzzy.GreaterThan", "scope": "static", - "___id": "T000002R025764", + "___id": "T000002R025754", "___s": true }, { @@ -228383,7 +228896,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Fuzzy", "scope": "static", - "___id": "T000002R025768", + "___id": "T000002R025758", "___s": true }, { @@ -228459,7 +228972,7 @@ "memberof": "Phaser.Math.Fuzzy", "longname": "Phaser.Math.Fuzzy.LessThan", "scope": "static", - "___id": "T000002R025775", + "___id": "T000002R025765", "___s": true }, { @@ -228523,7 +229036,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.GetSpeed", "scope": "static", - "___id": "T000002R025779", + "___id": "T000002R025769", "___s": true }, { @@ -228540,7 +229053,7 @@ "memberof": "Phaser", "longname": "Phaser.Math", "scope": "static", - "___id": "T000002R025784", + "___id": "T000002R025774", "___s": true }, { @@ -228610,7 +229123,7 @@ "memberof": "Phaser.Math.Interpolation", "longname": "Phaser.Math.Interpolation.Bezier", "scope": "static", - "___id": "T000002R025843", + "___id": "T000002R025833", "___s": true }, { @@ -228680,7 +229193,7 @@ "memberof": "Phaser.Math.Interpolation", "longname": "Phaser.Math.Interpolation.CatmullRom", "scope": "static", - "___id": "T000002R025851", + "___id": "T000002R025841", "___s": true }, { @@ -228780,7 +229293,7 @@ "memberof": "Phaser.Math.Interpolation", "longname": "Phaser.Math.Interpolation.CubicBezier", "scope": "static", - "___id": "T000002R025865", + "___id": "T000002R025855", "___s": true }, { @@ -228797,7 +229310,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Interpolation", "scope": "static", - "___id": "T000002R025868", + "___id": "T000002R025858", "___s": true }, { @@ -228874,7 +229387,7 @@ "memberof": "Phaser.Math.Interpolation", "longname": "Phaser.Math.Interpolation.Linear", "scope": "static", - "___id": "T000002R025878", + "___id": "T000002R025868", "___s": true }, { @@ -228961,7 +229474,7 @@ "memberof": "Phaser.Math.Interpolation", "longname": "Phaser.Math.Interpolation.QuadraticBezier", "scope": "static", - "___id": "T000002R025888", + "___id": "T000002R025878", "___s": true }, { @@ -229038,7 +229551,7 @@ "memberof": "Phaser.Math.Interpolation", "longname": "Phaser.Math.Interpolation.SmootherStep", "scope": "static", - "___id": "T000002R025892", + "___id": "T000002R025882", "___s": true }, { @@ -229115,7 +229628,7 @@ "memberof": "Phaser.Math.Interpolation", "longname": "Phaser.Math.Interpolation.SmoothStep", "scope": "static", - "___id": "T000002R025896", + "___id": "T000002R025886", "___s": true }, { @@ -229163,7 +229676,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.IsEven", "scope": "static", - "___id": "T000002R025899", + "___id": "T000002R025889", "___s": true }, { @@ -229211,7 +229724,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.IsEvenStrict", "scope": "static", - "___id": "T000002R025902", + "___id": "T000002R025892", "___s": true }, { @@ -229285,7 +229798,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Linear", "scope": "static", - "___id": "T000002R025905", + "___id": "T000002R025895", "___s": true }, { @@ -229361,7 +229874,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.LinearXY", "scope": "static", - "___id": "T000002R025908", + "___id": "T000002R025898", "___s": true }, { @@ -229396,7 +229909,7 @@ ], "scope": "static", "longname": "Phaser.Math.Matrix3", - "___id": "T000002R025913", + "___id": "T000002R025903", "___s": true }, { @@ -229424,7 +229937,7 @@ "longname": "Phaser.Math.Matrix3#val", "scope": "instance", "kind": "member", - "___id": "T000002R025916", + "___id": "T000002R025906", "___s": true }, { @@ -229457,7 +229970,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#clone", "scope": "instance", - "___id": "T000002R025918", + "___id": "T000002R025908", "___s": true }, { @@ -229505,7 +230018,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#set", "scope": "instance", - "___id": "T000002R025920", + "___id": "T000002R025910", "___s": true }, { @@ -229553,7 +230066,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#copy", "scope": "instance", - "___id": "T000002R025922", + "___id": "T000002R025912", "___s": true }, { @@ -229601,7 +230114,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#fromMat4", "scope": "instance", - "___id": "T000002R025935", + "___id": "T000002R025925", "___s": true }, { @@ -229649,7 +230162,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#fromArray", "scope": "instance", - "___id": "T000002R025948", + "___id": "T000002R025938", "___s": true }, { @@ -229682,7 +230195,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#identity", "scope": "instance", - "___id": "T000002R025960", + "___id": "T000002R025950", "___s": true }, { @@ -229715,7 +230228,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#transpose", "scope": "instance", - "___id": "T000002R025972", + "___id": "T000002R025962", "___s": true }, { @@ -229748,7 +230261,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#invert", "scope": "instance", - "___id": "T000002R025984", + "___id": "T000002R025974", "___s": true }, { @@ -229781,7 +230294,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#adjoint", "scope": "instance", - "___id": "T000002R026010", + "___id": "T000002R026000", "___s": true }, { @@ -229814,7 +230327,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#determinant", "scope": "instance", - "___id": "T000002R026031", + "___id": "T000002R026021", "___s": true }, { @@ -229862,7 +230375,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#multiply", "scope": "instance", - "___id": "T000002R026043", + "___id": "T000002R026033", "___s": true }, { @@ -229925,7 +230438,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#translate", "scope": "instance", - "___id": "T000002R026074", + "___id": "T000002R026064", "___s": true }, { @@ -229973,7 +230486,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#rotate", "scope": "instance", - "___id": "T000002R026082", + "___id": "T000002R026072", "___s": true }, { @@ -230036,7 +230549,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#scale", "scope": "instance", - "___id": "T000002R026099", + "___id": "T000002R026089", "___s": true }, { @@ -230084,7 +230597,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#fromQuat", "scope": "instance", - "___id": "T000002R026110", + "___id": "T000002R026100", "___s": true }, { @@ -230132,7 +230645,7 @@ "memberof": "Phaser.Math.Matrix3", "longname": "Phaser.Math.Matrix3#normalFromMat4", "scope": "instance", - "___id": "T000002R026138", + "___id": "T000002R026128", "___s": true }, { @@ -230167,7 +230680,7 @@ ], "scope": "static", "longname": "Phaser.Math.Matrix4", - "___id": "T000002R026185", + "___id": "T000002R026175", "___s": true }, { @@ -230195,7 +230708,7 @@ "longname": "Phaser.Math.Matrix4#val", "scope": "instance", "kind": "member", - "___id": "T000002R026188", + "___id": "T000002R026178", "___s": true }, { @@ -230228,7 +230741,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#clone", "scope": "instance", - "___id": "T000002R026190", + "___id": "T000002R026180", "___s": true }, { @@ -230277,7 +230790,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#set", "scope": "instance", - "___id": "T000002R026192", + "___id": "T000002R026182", "___s": true }, { @@ -230521,7 +231034,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#setValues", "scope": "instance", - "___id": "T000002R026194", + "___id": "T000002R026184", "___s": true }, { @@ -230570,7 +231083,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#copy", "scope": "instance", - "___id": "T000002R026213", + "___id": "T000002R026203", "___s": true }, { @@ -230628,7 +231141,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#fromArray", "scope": "instance", - "___id": "T000002R026216", + "___id": "T000002R026206", "___s": true }, { @@ -230661,7 +231174,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#zero", "scope": "instance", - "___id": "T000002R026218", + "___id": "T000002R026208", "___s": true }, { @@ -230736,7 +231249,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#transform", "scope": "instance", - "___id": "T000002R026220", + "___id": "T000002R026210", "___s": true }, { @@ -230811,7 +231324,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#xyz", "scope": "instance", - "___id": "T000002R026227", + "___id": "T000002R026217", "___s": true }, { @@ -230886,7 +231399,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#scaling", "scope": "instance", - "___id": "T000002R026233", + "___id": "T000002R026223", "___s": true }, { @@ -230920,7 +231433,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#identity", "scope": "instance", - "___id": "T000002R026240", + "___id": "T000002R026230", "___s": true }, { @@ -230954,7 +231467,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#transpose", "scope": "instance", - "___id": "T000002R026242", + "___id": "T000002R026232", "___s": true }, { @@ -231003,7 +231516,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#getInverse", "scope": "instance", - "___id": "T000002R026263", + "___id": "T000002R026253", "___s": true }, { @@ -231037,7 +231550,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#invert", "scope": "instance", - "___id": "T000002R026265", + "___id": "T000002R026255", "___s": true }, { @@ -231071,7 +231584,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#adjoint", "scope": "instance", - "___id": "T000002R026298", + "___id": "T000002R026288", "___s": true }, { @@ -231104,7 +231617,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#determinant", "scope": "instance", - "___id": "T000002R026317", + "___id": "T000002R026307", "___s": true }, { @@ -231153,7 +231666,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#multiply", "scope": "instance", - "___id": "T000002R026348", + "___id": "T000002R026338", "___s": true }, { @@ -231202,7 +231715,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#multiplyLocal", "scope": "instance", - "___id": "T000002R026400", + "___id": "T000002R026390", "___s": true }, { @@ -231251,7 +231764,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#premultiply", "scope": "instance", - "___id": "T000002R026404", + "___id": "T000002R026394", "___s": true }, { @@ -231313,7 +231826,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#multiplyMatrices", "scope": "instance", - "___id": "T000002R026406", + "___id": "T000002R026396", "___s": true }, { @@ -231372,7 +231885,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#translate", "scope": "instance", - "___id": "T000002R026442", + "___id": "T000002R026432", "___s": true }, { @@ -231447,7 +231960,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#translateXYZ", "scope": "instance", - "___id": "T000002R026444", + "___id": "T000002R026434", "___s": true }, { @@ -231506,7 +232019,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#scale", "scope": "instance", - "___id": "T000002R026451", + "___id": "T000002R026441", "___s": true }, { @@ -231581,7 +232094,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#scaleXYZ", "scope": "instance", - "___id": "T000002R026453", + "___id": "T000002R026443", "___s": true }, { @@ -231653,7 +232166,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#makeRotationAxis", "scope": "instance", - "___id": "T000002R026468", + "___id": "T000002R026458", "___s": true }, { @@ -231715,7 +232228,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#rotate", "scope": "instance", - "___id": "T000002R026478", + "___id": "T000002R026468", "___s": true }, { @@ -231764,7 +232277,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#rotateX", "scope": "instance", - "___id": "T000002R026517", + "___id": "T000002R026507", "___s": true }, { @@ -231813,7 +232326,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#rotateY", "scope": "instance", - "___id": "T000002R026538", + "___id": "T000002R026528", "___s": true }, { @@ -231862,7 +232375,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#rotateZ", "scope": "instance", - "___id": "T000002R026559", + "___id": "T000002R026549", "___s": true }, { @@ -231924,7 +232437,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#fromRotationTranslation", "scope": "instance", - "___id": "T000002R026580", + "___id": "T000002R026570", "___s": true }, { @@ -231973,7 +232486,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#fromQuat", "scope": "instance", - "___id": "T000002R026598", + "___id": "T000002R026588", "___s": true }, { @@ -232087,7 +232600,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#frustum", "scope": "instance", - "___id": "T000002R026616", + "___id": "T000002R026606", "___s": true }, { @@ -232175,7 +232688,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#perspective", "scope": "instance", - "___id": "T000002R026621", + "___id": "T000002R026611", "___s": true }, { @@ -232263,7 +232776,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#perspectiveLH", "scope": "instance", - "___id": "T000002R026625", + "___id": "T000002R026615", "___s": true }, { @@ -232377,7 +232890,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#ortho", "scope": "instance", - "___id": "T000002R026627", + "___id": "T000002R026617", "___s": true }, { @@ -232452,7 +232965,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#lookAtRH", "scope": "instance", - "___id": "T000002R026635", + "___id": "T000002R026625", "___s": true }, { @@ -232527,7 +233040,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#lookAt", "scope": "instance", - "___id": "T000002R026650", + "___id": "T000002R026640", "___s": true }, { @@ -232602,7 +233115,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#yawPitchRoll", "scope": "instance", - "___id": "T000002R026690", + "___id": "T000002R026680", "___s": true }, { @@ -232705,7 +233218,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#setWorldMatrix", "scope": "instance", - "___id": "T000002R026719", + "___id": "T000002R026709", "___s": true }, { @@ -232766,7 +233279,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#multiplyToMat4", "scope": "instance", - "___id": "T000002R026721", + "___id": "T000002R026711", "___s": true }, { @@ -232841,7 +233354,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#fromRotationXYTranslation", "scope": "instance", - "___id": "T000002R026757", + "___id": "T000002R026747", "___s": true }, { @@ -232874,7 +233387,7 @@ "memberof": "Phaser.Math.Matrix4", "longname": "Phaser.Math.Matrix4#getMaxScaleOnAxis", "scope": "instance", - "___id": "T000002R026777", + "___id": "T000002R026767", "___s": true }, { @@ -232948,7 +233461,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.MaxAdd", "scope": "static", - "___id": "T000002R026789", + "___id": "T000002R026779", "___s": true }, { @@ -233005,7 +233518,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Median", "scope": "static", - "___id": "T000002R026792", + "___id": "T000002R026782", "___s": true }, { @@ -233079,7 +233592,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.MinSub", "scope": "static", - "___id": "T000002R026797", + "___id": "T000002R026787", "___s": true }, { @@ -233168,7 +233681,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Percent", "scope": "static", - "___id": "T000002R026800", + "___id": "T000002R026790", "___s": true }, { @@ -233216,7 +233729,7 @@ "memberof": "Phaser.Math.Pow2", "longname": "Phaser.Math.Pow2.GetNext", "scope": "static", - "___id": "T000002R026809", + "___id": "T000002R026799", "___s": true }, { @@ -233233,7 +233746,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Pow2", "scope": "static", - "___id": "T000002R026813", + "___id": "T000002R026803", "___s": true }, { @@ -233294,7 +233807,7 @@ "memberof": "Phaser.Math.Pow2", "longname": "Phaser.Math.Pow2.IsSize", "scope": "static", - "___id": "T000002R026818", + "___id": "T000002R026808", "___s": true }, { @@ -233342,7 +233855,7 @@ "memberof": "Phaser.Math.Pow2", "longname": "Phaser.Math.Pow2.IsValue", "scope": "static", - "___id": "T000002R026821", + "___id": "T000002R026811", "___s": true }, { @@ -233423,7 +233936,7 @@ ], "scope": "static", "longname": "Phaser.Math.Quaternion", - "___id": "T000002R026835", + "___id": "T000002R026825", "___s": true }, { @@ -233451,7 +233964,7 @@ "longname": "Phaser.Math.Quaternion#onChangeCallback", "scope": "instance", "kind": "member", - "___id": "T000002R026842", + "___id": "T000002R026832", "___s": true }, { @@ -233480,7 +233993,7 @@ "longname": "Phaser.Math.Quaternion#x", "scope": "instance", "kind": "member", - "___id": "T000002R026844", + "___id": "T000002R026834", "___s": true }, { @@ -233509,7 +234022,7 @@ "longname": "Phaser.Math.Quaternion#y", "scope": "instance", "kind": "member", - "___id": "T000002R026849", + "___id": "T000002R026839", "___s": true }, { @@ -233538,7 +234051,7 @@ "longname": "Phaser.Math.Quaternion#z", "scope": "instance", "kind": "member", - "___id": "T000002R026854", + "___id": "T000002R026844", "___s": true }, { @@ -233567,7 +234080,7 @@ "longname": "Phaser.Math.Quaternion#w", "scope": "instance", "kind": "member", - "___id": "T000002R026859", + "___id": "T000002R026849", "___s": true }, { @@ -233625,7 +234138,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#copy", "scope": "instance", - "___id": "T000002R026864", + "___id": "T000002R026854", "___s": true }, { @@ -233745,7 +234258,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#set", "scope": "instance", - "___id": "T000002R026866", + "___id": "T000002R026856", "___s": true }, { @@ -233803,7 +234316,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#add", "scope": "instance", - "___id": "T000002R026877", + "___id": "T000002R026867", "___s": true }, { @@ -233861,7 +234374,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#subtract", "scope": "instance", - "___id": "T000002R026883", + "___id": "T000002R026873", "___s": true }, { @@ -233909,7 +234422,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#scale", "scope": "instance", - "___id": "T000002R026889", + "___id": "T000002R026879", "___s": true }, { @@ -233942,7 +234455,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#length", "scope": "instance", - "___id": "T000002R026895", + "___id": "T000002R026885", "___s": true }, { @@ -233975,7 +234488,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#lengthSq", "scope": "instance", - "___id": "T000002R026901", + "___id": "T000002R026891", "___s": true }, { @@ -234008,7 +234521,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#normalize", "scope": "instance", - "___id": "T000002R026907", + "___id": "T000002R026897", "___s": true }, { @@ -234066,7 +234579,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#dot", "scope": "instance", - "___id": "T000002R026919", + "___id": "T000002R026909", "___s": true }, { @@ -234139,7 +234652,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#lerp", "scope": "instance", - "___id": "T000002R026921", + "___id": "T000002R026911", "___s": true }, { @@ -234200,7 +234713,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#rotationTo", "scope": "instance", - "___id": "T000002R026928", + "___id": "T000002R026918", "___s": true }, { @@ -234274,7 +234787,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#setAxes", "scope": "instance", - "___id": "T000002R026935", + "___id": "T000002R026925", "___s": true }, { @@ -234307,7 +234820,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#identity", "scope": "instance", - "___id": "T000002R026947", + "___id": "T000002R026937", "___s": true }, { @@ -234368,7 +234881,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#setAxisAngle", "scope": "instance", - "___id": "T000002R026949", + "___id": "T000002R026939", "___s": true }, { @@ -234426,7 +234939,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#multiply", "scope": "instance", - "___id": "T000002R026953", + "___id": "T000002R026943", "___s": true }, { @@ -234497,7 +235010,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#slerp", "scope": "instance", - "___id": "T000002R026963", + "___id": "T000002R026953", "___s": true }, { @@ -234530,7 +235043,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#invert", "scope": "instance", - "___id": "T000002R026985", + "___id": "T000002R026975", "___s": true }, { @@ -234563,7 +235076,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#conjugate", "scope": "instance", - "___id": "T000002R026993", + "___id": "T000002R026983", "___s": true }, { @@ -234611,7 +235124,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#rotateX", "scope": "instance", - "___id": "T000002R026998", + "___id": "T000002R026988", "___s": true }, { @@ -234659,7 +235172,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#rotateY", "scope": "instance", - "___id": "T000002R027007", + "___id": "T000002R026997", "___s": true }, { @@ -234707,7 +235220,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#rotateZ", "scope": "instance", - "___id": "T000002R027016", + "___id": "T000002R027006", "___s": true }, { @@ -234740,7 +235253,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#calculateW", "scope": "instance", - "___id": "T000002R027025", + "___id": "T000002R027015", "___s": true }, { @@ -234803,7 +235316,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#setFromEuler", "scope": "instance", - "___id": "T000002R027031", + "___id": "T000002R027021", "___s": true }, { @@ -234851,7 +235364,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#setFromRotationMatrix", "scope": "instance", - "___id": "T000002R027042", + "___id": "T000002R027032", "___s": true }, { @@ -234899,7 +235412,7 @@ "memberof": "Phaser.Math.Quaternion", "longname": "Phaser.Math.Quaternion#fromMat3", "scope": "instance", - "___id": "T000002R027060", + "___id": "T000002R027050", "___s": true }, { @@ -234947,7 +235460,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.RadToDeg", "scope": "static", - "___id": "T000002R027087", + "___id": "T000002R027077", "___s": true }, { @@ -235001,7 +235514,7 @@ ], "scope": "static", "longname": "Phaser.Math.RandomDataGenerator", - "___id": "T000002R027091", + "___id": "T000002R027081", "___s": true }, { @@ -235038,7 +235551,7 @@ "longname": "Phaser.Math.RandomDataGenerator#signs", "scope": "instance", "kind": "member", - "___id": "T000002R027105", + "___id": "T000002R027095", "___s": true }, { @@ -235091,7 +235604,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#init", "scope": "instance", - "___id": "T000002R027129", + "___id": "T000002R027119", "___s": true }, { @@ -235134,7 +235647,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#sow", "scope": "instance", - "___id": "T000002R027131", + "___id": "T000002R027121", "___s": true }, { @@ -235167,7 +235680,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#integer", "scope": "instance", - "___id": "T000002R027146", + "___id": "T000002R027136", "___s": true }, { @@ -235200,7 +235713,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#frac", "scope": "instance", - "___id": "T000002R027148", + "___id": "T000002R027138", "___s": true }, { @@ -235233,7 +235746,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#real", "scope": "instance", - "___id": "T000002R027150", + "___id": "T000002R027140", "___s": true }, { @@ -235294,7 +235807,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#integerInRange", "scope": "instance", - "___id": "T000002R027152", + "___id": "T000002R027142", "___s": true }, { @@ -235355,7 +235868,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#between", "scope": "instance", - "___id": "T000002R027154", + "___id": "T000002R027144", "___s": true }, { @@ -235416,7 +235929,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#realInRange", "scope": "instance", - "___id": "T000002R027156", + "___id": "T000002R027146", "___s": true }, { @@ -235449,7 +235962,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#normal", "scope": "instance", - "___id": "T000002R027158", + "___id": "T000002R027148", "___s": true }, { @@ -235482,7 +235995,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#uuid", "scope": "instance", - "___id": "T000002R027160", + "___id": "T000002R027150", "___s": true }, { @@ -235559,7 +236072,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#pick", "scope": "instance", - "___id": "T000002R027167", + "___id": "T000002R027157", "___s": true }, { @@ -235592,7 +236105,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#sign", "scope": "instance", - "___id": "T000002R027169", + "___id": "T000002R027159", "___s": true }, { @@ -235669,7 +236182,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#weightedPick", "scope": "instance", - "___id": "T000002R027171", + "___id": "T000002R027161", "___s": true }, { @@ -235730,7 +236243,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#timestamp", "scope": "instance", - "___id": "T000002R027173", + "___id": "T000002R027163", "___s": true }, { @@ -235763,7 +236276,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#angle", "scope": "instance", - "___id": "T000002R027175", + "___id": "T000002R027165", "___s": true }, { @@ -235796,7 +236309,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#rotation", "scope": "instance", - "___id": "T000002R027177", + "___id": "T000002R027167", "___s": true }, { @@ -235845,7 +236358,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#state", "scope": "instance", - "___id": "T000002R027179", + "___id": "T000002R027169", "___s": true }, { @@ -235926,7 +236439,7 @@ "memberof": "Phaser.Math.RandomDataGenerator", "longname": "Phaser.Math.RandomDataGenerator#shuffle", "scope": "instance", - "___id": "T000002R027186", + "___id": "T000002R027176", "___s": true }, { @@ -235989,7 +236502,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.RandomXY", "scope": "static", - "___id": "T000002R027195", + "___id": "T000002R027185", "___s": true }, { @@ -236052,7 +236565,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.RandomXYZ", "scope": "static", - "___id": "T000002R027202", + "___id": "T000002R027192", "___s": true }, { @@ -236115,7 +236628,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.RandomXYZW", "scope": "static", - "___id": "T000002R027212", + "___id": "T000002R027202", "___s": true }, { @@ -236186,7 +236699,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Rotate", "scope": "static", - "___id": "T000002R027220", + "___id": "T000002R027210", "___s": true }, { @@ -236291,7 +236804,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.RotateAround", "scope": "static", - "___id": "T000002R027227", + "___id": "T000002R027217", "___s": true }, { @@ -236409,7 +236922,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.RotateAroundDistance", "scope": "static", - "___id": "T000002R027236", + "___id": "T000002R027226", "___s": true }, { @@ -236517,7 +237030,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.RotateTo", "scope": "static", - "___id": "T000002R027242", + "___id": "T000002R027232", "___s": true }, { @@ -236591,7 +237104,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.RotateVec3", "scope": "static", - "___id": "T000002R027253", + "___id": "T000002R027243", "___s": true }, { @@ -236639,7 +237152,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.RoundAwayFromZero", "scope": "static", - "___id": "T000002R027256", + "___id": "T000002R027246", "___s": true }, { @@ -236717,7 +237230,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.RoundTo", "scope": "static", - "___id": "T000002R027259", + "___id": "T000002R027249", "___s": true }, { @@ -236810,7 +237323,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.SinCosTableGenerator", "scope": "static", - "___id": "T000002R027265", + "___id": "T000002R027255", "___s": true }, { @@ -236887,7 +237400,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.SmootherStep", "scope": "static", - "___id": "T000002R027282", + "___id": "T000002R027272", "___s": true }, { @@ -236964,7 +237477,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.SmoothStep", "scope": "static", - "___id": "T000002R027286", + "___id": "T000002R027276", "___s": true }, { @@ -236981,7 +237494,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Snap", "scope": "static", - "___id": "T000002R027290", + "___id": "T000002R027280", "___s": true }, { @@ -237072,7 +237585,7 @@ "memberof": "Phaser.Math.Snap", "longname": "Phaser.Math.Snap.Ceil", "scope": "static", - "___id": "T000002R027295", + "___id": "T000002R027285", "___s": true }, { @@ -237163,7 +237676,7 @@ "memberof": "Phaser.Math.Snap", "longname": "Phaser.Math.Snap.Floor", "scope": "static", - "___id": "T000002R027301", + "___id": "T000002R027291", "___s": true }, { @@ -237254,7 +237767,7 @@ "memberof": "Phaser.Math.Snap", "longname": "Phaser.Math.Snap.To", "scope": "static", - "___id": "T000002R027307", + "___id": "T000002R027297", "___s": true }, { @@ -237342,7 +237855,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.ToXY", "scope": "static", - "___id": "T000002R027314", + "___id": "T000002R027304", "___s": true }, { @@ -237512,7 +238025,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.TransformXY", "scope": "static", - "___id": "T000002R027325", + "___id": "T000002R027315", "___s": true }, { @@ -237529,7 +238042,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Math", "scope": "static", - "___id": "T000002R027338", + "___id": "T000002R027328", "___s": true }, { @@ -237610,7 +238123,7 @@ "memberof": "Phaser.Types.Math", "longname": "Phaser.Types.Math.RectangleLike", "scope": "static", - "___id": "T000002R027339", + "___id": "T000002R027329", "___s": true }, { @@ -237678,7 +238191,7 @@ "memberof": "Phaser.Types.Math", "longname": "Phaser.Types.Math.SinCosTable", "scope": "static", - "___id": "T000002R027340", + "___id": "T000002R027330", "___s": true }, { @@ -237733,7 +238246,7 @@ "memberof": "Phaser.Types.Math", "longname": "Phaser.Types.Math.Vector2Like", "scope": "static", - "___id": "T000002R027341", + "___id": "T000002R027331", "___s": true }, { @@ -237804,7 +238317,7 @@ "memberof": "Phaser.Types.Math", "longname": "Phaser.Types.Math.Vector3Like", "scope": "static", - "___id": "T000002R027342", + "___id": "T000002R027332", "___s": true }, { @@ -237889,7 +238402,7 @@ "memberof": "Phaser.Types.Math", "longname": "Phaser.Types.Math.Vector4Like", "scope": "static", - "___id": "T000002R027343", + "___id": "T000002R027333", "___s": true }, { @@ -237950,7 +238463,7 @@ ], "scope": "static", "longname": "Phaser.Math.Vector2", - "___id": "T000002R027346", + "___id": "T000002R027336", "___s": true }, { @@ -237979,7 +238492,7 @@ "longname": "Phaser.Math.Vector2#x", "scope": "instance", "kind": "member", - "___id": "T000002R027349", + "___id": "T000002R027339", "___s": true }, { @@ -238008,7 +238521,7 @@ "longname": "Phaser.Math.Vector2#y", "scope": "instance", "kind": "member", - "___id": "T000002R027351", + "___id": "T000002R027341", "___s": true }, { @@ -238041,7 +238554,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#clone", "scope": "instance", - "___id": "T000002R027358", + "___id": "T000002R027348", "___s": true }, { @@ -238089,7 +238602,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#copy", "scope": "instance", - "___id": "T000002R027360", + "___id": "T000002R027350", "___s": true }, { @@ -238137,7 +238650,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#setFromObject", "scope": "instance", - "___id": "T000002R027364", + "___id": "T000002R027354", "___s": true }, { @@ -238200,7 +238713,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#set", "scope": "instance", - "___id": "T000002R027368", + "___id": "T000002R027358", "___s": true }, { @@ -238263,7 +238776,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#setTo", "scope": "instance", - "___id": "T000002R027373", + "___id": "T000002R027363", "___s": true }, { @@ -238326,7 +238839,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#setToPolar", "scope": "instance", - "___id": "T000002R027375", + "___id": "T000002R027365", "___s": true }, { @@ -238374,7 +238887,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#equals", "scope": "instance", - "___id": "T000002R027380", + "___id": "T000002R027370", "___s": true }, { @@ -238437,7 +238950,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#fuzzyEquals", "scope": "instance", - "___id": "T000002R027382", + "___id": "T000002R027372", "___s": true }, { @@ -238470,7 +238983,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#angle", "scope": "instance", - "___id": "T000002R027384", + "___id": "T000002R027374", "___s": true }, { @@ -238518,7 +239031,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#setAngle", "scope": "instance", - "___id": "T000002R027388", + "___id": "T000002R027378", "___s": true }, { @@ -238566,7 +239079,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#add", "scope": "instance", - "___id": "T000002R027390", + "___id": "T000002R027380", "___s": true }, { @@ -238614,7 +239127,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#subtract", "scope": "instance", - "___id": "T000002R027394", + "___id": "T000002R027384", "___s": true }, { @@ -238662,7 +239175,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#multiply", "scope": "instance", - "___id": "T000002R027398", + "___id": "T000002R027388", "___s": true }, { @@ -238710,7 +239223,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#scale", "scope": "instance", - "___id": "T000002R027402", + "___id": "T000002R027392", "___s": true }, { @@ -238758,7 +239271,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#divide", "scope": "instance", - "___id": "T000002R027408", + "___id": "T000002R027398", "___s": true }, { @@ -238791,7 +239304,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#negate", "scope": "instance", - "___id": "T000002R027412", + "___id": "T000002R027402", "___s": true }, { @@ -238839,7 +239352,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#distance", "scope": "instance", - "___id": "T000002R027416", + "___id": "T000002R027406", "___s": true }, { @@ -238887,7 +239400,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#distanceSq", "scope": "instance", - "___id": "T000002R027420", + "___id": "T000002R027410", "___s": true }, { @@ -238920,7 +239433,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#length", "scope": "instance", - "___id": "T000002R027424", + "___id": "T000002R027414", "___s": true }, { @@ -238967,7 +239480,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#setLength", "scope": "instance", - "___id": "T000002R027428", + "___id": "T000002R027418", "___s": true }, { @@ -239000,7 +239513,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#lengthSq", "scope": "instance", - "___id": "T000002R027430", + "___id": "T000002R027420", "___s": true }, { @@ -239033,7 +239546,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#normalize", "scope": "instance", - "___id": "T000002R027434", + "___id": "T000002R027424", "___s": true }, { @@ -239066,7 +239579,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#normalizeRightHand", "scope": "instance", - "___id": "T000002R027442", + "___id": "T000002R027432", "___s": true }, { @@ -239099,7 +239612,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#normalizeLeftHand", "scope": "instance", - "___id": "T000002R027447", + "___id": "T000002R027437", "___s": true }, { @@ -239147,7 +239660,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#dot", "scope": "instance", - "___id": "T000002R027452", + "___id": "T000002R027442", "___s": true }, { @@ -239195,7 +239708,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#cross", "scope": "instance", - "___id": "T000002R027454", + "___id": "T000002R027444", "___s": true }, { @@ -239258,7 +239771,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#lerp", "scope": "instance", - "___id": "T000002R027456", + "___id": "T000002R027446", "___s": true }, { @@ -239306,7 +239819,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#transformMat3", "scope": "instance", - "___id": "T000002R027463", + "___id": "T000002R027453", "___s": true }, { @@ -239354,7 +239867,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#transformMat4", "scope": "instance", - "___id": "T000002R027470", + "___id": "T000002R027460", "___s": true }, { @@ -239387,7 +239900,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#reset", "scope": "instance", - "___id": "T000002R027477", + "___id": "T000002R027467", "___s": true }, { @@ -239435,7 +239948,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#limit", "scope": "instance", - "___id": "T000002R027481", + "___id": "T000002R027471", "___s": true }, { @@ -239483,7 +239996,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#reflect", "scope": "instance", - "___id": "T000002R027484", + "___id": "T000002R027474", "___s": true }, { @@ -239531,7 +240044,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#mirror", "scope": "instance", - "___id": "T000002R027487", + "___id": "T000002R027477", "___s": true }, { @@ -239579,7 +240092,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#rotate", "scope": "instance", - "___id": "T000002R027489", + "___id": "T000002R027479", "___s": true }, { @@ -239627,7 +240140,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2#project", "scope": "instance", - "___id": "T000002R027493", + "___id": "T000002R027483", "___s": true }, { @@ -239655,7 +240168,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2.ZERO", "scope": "static", - "___id": "T000002R027496", + "___id": "T000002R027486", "___s": true }, { @@ -239683,7 +240196,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2.RIGHT", "scope": "static", - "___id": "T000002R027498", + "___id": "T000002R027488", "___s": true }, { @@ -239711,7 +240224,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2.LEFT", "scope": "static", - "___id": "T000002R027500", + "___id": "T000002R027490", "___s": true }, { @@ -239739,7 +240252,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2.UP", "scope": "static", - "___id": "T000002R027502", + "___id": "T000002R027492", "___s": true }, { @@ -239767,7 +240280,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2.DOWN", "scope": "static", - "___id": "T000002R027504", + "___id": "T000002R027494", "___s": true }, { @@ -239795,7 +240308,7 @@ "memberof": "Phaser.Math.Vector2", "longname": "Phaser.Math.Vector2.ONE", "scope": "static", - "___id": "T000002R027506", + "___id": "T000002R027496", "___s": true }, { @@ -239858,7 +240371,7 @@ ], "scope": "static", "longname": "Phaser.Math.Vector3", - "___id": "T000002R027510", + "___id": "T000002R027500", "___s": true }, { @@ -239887,7 +240400,7 @@ "longname": "Phaser.Math.Vector3#x", "scope": "instance", "kind": "member", - "___id": "T000002R027513", + "___id": "T000002R027503", "___s": true }, { @@ -239916,7 +240429,7 @@ "longname": "Phaser.Math.Vector3#y", "scope": "instance", "kind": "member", - "___id": "T000002R027515", + "___id": "T000002R027505", "___s": true }, { @@ -239945,7 +240458,7 @@ "longname": "Phaser.Math.Vector3#z", "scope": "instance", "kind": "member", - "___id": "T000002R027517", + "___id": "T000002R027507", "___s": true }, { @@ -239978,7 +240491,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#up", "scope": "instance", - "___id": "T000002R027525", + "___id": "T000002R027515", "___s": true }, { @@ -240026,7 +240539,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#min", "scope": "instance", - "___id": "T000002R027530", + "___id": "T000002R027520", "___s": true }, { @@ -240074,7 +240587,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#max", "scope": "instance", - "___id": "T000002R027535", + "___id": "T000002R027525", "___s": true }, { @@ -240107,7 +240620,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#clone", "scope": "instance", - "___id": "T000002R027540", + "___id": "T000002R027530", "___s": true }, { @@ -240168,7 +240681,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#addVectors", "scope": "instance", - "___id": "T000002R027542", + "___id": "T000002R027532", "___s": true }, { @@ -240229,7 +240742,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#subVectors", "scope": "instance", - "___id": "T000002R027547", + "___id": "T000002R027537", "___s": true }, { @@ -240290,7 +240803,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#crossVectors", "scope": "instance", - "___id": "T000002R027552", + "___id": "T000002R027542", "___s": true }, { @@ -240338,7 +240851,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#equals", "scope": "instance", - "___id": "T000002R027563", + "___id": "T000002R027553", "___s": true }, { @@ -240396,7 +240909,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#copy", "scope": "instance", - "___id": "T000002R027565", + "___id": "T000002R027555", "___s": true }, { @@ -240482,7 +240995,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#set", "scope": "instance", - "___id": "T000002R027570", + "___id": "T000002R027560", "___s": true }, { @@ -240530,7 +241043,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#setFromMatrixPosition", "scope": "instance", - "___id": "T000002R027578", + "___id": "T000002R027568", "___s": true }, { @@ -240591,7 +241104,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#setFromMatrixColumn", "scope": "instance", - "___id": "T000002R027580", + "___id": "T000002R027570", "___s": true }, { @@ -240663,7 +241176,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#fromArray", "scope": "instance", - "___id": "T000002R027582", + "___id": "T000002R027572", "___s": true }, { @@ -240721,7 +241234,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#add", "scope": "instance", - "___id": "T000002R027588", + "___id": "T000002R027578", "___s": true }, { @@ -240769,7 +241282,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#addScalar", "scope": "instance", - "___id": "T000002R027593", + "___id": "T000002R027583", "___s": true }, { @@ -240840,7 +241353,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#addScale", "scope": "instance", - "___id": "T000002R027598", + "___id": "T000002R027588", "___s": true }, { @@ -240898,7 +241411,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#subtract", "scope": "instance", - "___id": "T000002R027603", + "___id": "T000002R027593", "___s": true }, { @@ -240956,7 +241469,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#multiply", "scope": "instance", - "___id": "T000002R027608", + "___id": "T000002R027598", "___s": true }, { @@ -241004,7 +241517,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#scale", "scope": "instance", - "___id": "T000002R027613", + "___id": "T000002R027603", "___s": true }, { @@ -241062,7 +241575,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#divide", "scope": "instance", - "___id": "T000002R027621", + "___id": "T000002R027611", "___s": true }, { @@ -241095,7 +241608,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#negate", "scope": "instance", - "___id": "T000002R027626", + "___id": "T000002R027616", "___s": true }, { @@ -241153,7 +241666,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#distance", "scope": "instance", - "___id": "T000002R027631", + "___id": "T000002R027621", "___s": true }, { @@ -241211,7 +241724,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#distanceSq", "scope": "instance", - "___id": "T000002R027636", + "___id": "T000002R027626", "___s": true }, { @@ -241244,7 +241757,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#length", "scope": "instance", - "___id": "T000002R027641", + "___id": "T000002R027631", "___s": true }, { @@ -241277,7 +241790,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#lengthSq", "scope": "instance", - "___id": "T000002R027646", + "___id": "T000002R027636", "___s": true }, { @@ -241310,7 +241823,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#normalize", "scope": "instance", - "___id": "T000002R027651", + "___id": "T000002R027641", "___s": true }, { @@ -241358,7 +241871,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#dot", "scope": "instance", - "___id": "T000002R027661", + "___id": "T000002R027651", "___s": true }, { @@ -241406,7 +241919,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#cross", "scope": "instance", - "___id": "T000002R027663", + "___id": "T000002R027653", "___s": true }, { @@ -241469,7 +241982,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#lerp", "scope": "instance", - "___id": "T000002R027674", + "___id": "T000002R027664", "___s": true }, { @@ -241517,7 +242030,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#applyMatrix3", "scope": "instance", - "___id": "T000002R027683", + "___id": "T000002R027673", "___s": true }, { @@ -241565,7 +242078,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#applyMatrix4", "scope": "instance", - "___id": "T000002R027692", + "___id": "T000002R027682", "___s": true }, { @@ -241613,7 +242126,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#transformMat3", "scope": "instance", - "___id": "T000002R027702", + "___id": "T000002R027692", "___s": true }, { @@ -241661,7 +242174,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#transformMat4", "scope": "instance", - "___id": "T000002R027711", + "___id": "T000002R027701", "___s": true }, { @@ -241709,7 +242222,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#transformCoordinates", "scope": "instance", - "___id": "T000002R027720", + "___id": "T000002R027710", "___s": true }, { @@ -241757,7 +242270,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#transformQuat", "scope": "instance", - "___id": "T000002R027733", + "___id": "T000002R027723", "___s": true }, { @@ -241805,7 +242318,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#project", "scope": "instance", - "___id": "T000002R027749", + "___id": "T000002R027739", "___s": true }, { @@ -241866,7 +242379,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#projectViewMatrix", "scope": "instance", - "___id": "T000002R027775", + "___id": "T000002R027765", "___s": true }, { @@ -241927,7 +242440,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#unprojectViewMatrix", "scope": "instance", - "___id": "T000002R027777", + "___id": "T000002R027767", "___s": true }, { @@ -241988,7 +242501,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#unproject", "scope": "instance", - "___id": "T000002R027779", + "___id": "T000002R027769", "___s": true }, { @@ -242021,7 +242534,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3#reset", "scope": "instance", - "___id": "T000002R027791", + "___id": "T000002R027781", "___s": true }, { @@ -242049,7 +242562,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3.ZERO", "scope": "static", - "___id": "T000002R027796", + "___id": "T000002R027786", "___s": true }, { @@ -242077,7 +242590,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3.RIGHT", "scope": "static", - "___id": "T000002R027798", + "___id": "T000002R027788", "___s": true }, { @@ -242105,7 +242618,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3.LEFT", "scope": "static", - "___id": "T000002R027800", + "___id": "T000002R027790", "___s": true }, { @@ -242133,7 +242646,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3.UP", "scope": "static", - "___id": "T000002R027802", + "___id": "T000002R027792", "___s": true }, { @@ -242161,7 +242674,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3.DOWN", "scope": "static", - "___id": "T000002R027804", + "___id": "T000002R027794", "___s": true }, { @@ -242189,7 +242702,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3.FORWARD", "scope": "static", - "___id": "T000002R027806", + "___id": "T000002R027796", "___s": true }, { @@ -242217,7 +242730,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3.BACK", "scope": "static", - "___id": "T000002R027808", + "___id": "T000002R027798", "___s": true }, { @@ -242245,7 +242758,7 @@ "memberof": "Phaser.Math.Vector3", "longname": "Phaser.Math.Vector3.ONE", "scope": "static", - "___id": "T000002R027810", + "___id": "T000002R027800", "___s": true }, { @@ -242322,7 +242835,7 @@ ], "scope": "static", "longname": "Phaser.Math.Vector4", - "___id": "T000002R027814", + "___id": "T000002R027804", "___s": true }, { @@ -242351,7 +242864,7 @@ "longname": "Phaser.Math.Vector4#x", "scope": "instance", "kind": "member", - "___id": "T000002R027817", + "___id": "T000002R027807", "___s": true }, { @@ -242380,7 +242893,7 @@ "longname": "Phaser.Math.Vector4#y", "scope": "instance", "kind": "member", - "___id": "T000002R027819", + "___id": "T000002R027809", "___s": true }, { @@ -242409,7 +242922,7 @@ "longname": "Phaser.Math.Vector4#z", "scope": "instance", "kind": "member", - "___id": "T000002R027821", + "___id": "T000002R027811", "___s": true }, { @@ -242438,7 +242951,7 @@ "longname": "Phaser.Math.Vector4#w", "scope": "instance", "kind": "member", - "___id": "T000002R027823", + "___id": "T000002R027813", "___s": true }, { @@ -242471,7 +242984,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#clone", "scope": "instance", - "___id": "T000002R027833", + "___id": "T000002R027823", "___s": true }, { @@ -242519,7 +243032,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#copy", "scope": "instance", - "___id": "T000002R027835", + "___id": "T000002R027825", "___s": true }, { @@ -242567,7 +243080,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#equals", "scope": "instance", - "___id": "T000002R027841", + "___id": "T000002R027831", "___s": true }, { @@ -242664,7 +243177,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#set", "scope": "instance", - "___id": "T000002R027843", + "___id": "T000002R027833", "___s": true }, { @@ -242727,7 +243240,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#add", "scope": "instance", - "___id": "T000002R027853", + "___id": "T000002R027843", "___s": true }, { @@ -242790,7 +243303,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#subtract", "scope": "instance", - "___id": "T000002R027859", + "___id": "T000002R027849", "___s": true }, { @@ -242838,7 +243351,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#scale", "scope": "instance", - "___id": "T000002R027865", + "___id": "T000002R027855", "___s": true }, { @@ -242871,7 +243384,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#length", "scope": "instance", - "___id": "T000002R027871", + "___id": "T000002R027861", "___s": true }, { @@ -242904,7 +243417,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#lengthSq", "scope": "instance", - "___id": "T000002R027877", + "___id": "T000002R027867", "___s": true }, { @@ -242937,7 +243450,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#normalize", "scope": "instance", - "___id": "T000002R027883", + "___id": "T000002R027873", "___s": true }, { @@ -242985,7 +243498,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#dot", "scope": "instance", - "___id": "T000002R027895", + "___id": "T000002R027885", "___s": true }, { @@ -243048,7 +243561,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#lerp", "scope": "instance", - "___id": "T000002R027897", + "___id": "T000002R027887", "___s": true }, { @@ -243111,7 +243624,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#multiply", "scope": "instance", - "___id": "T000002R027908", + "___id": "T000002R027898", "___s": true }, { @@ -243174,7 +243687,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#divide", "scope": "instance", - "___id": "T000002R027914", + "___id": "T000002R027904", "___s": true }, { @@ -243237,7 +243750,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#distance", "scope": "instance", - "___id": "T000002R027920", + "___id": "T000002R027910", "___s": true }, { @@ -243300,7 +243813,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#distanceSq", "scope": "instance", - "___id": "T000002R027926", + "___id": "T000002R027916", "___s": true }, { @@ -243333,7 +243846,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#negate", "scope": "instance", - "___id": "T000002R027932", + "___id": "T000002R027922", "___s": true }, { @@ -243381,7 +243894,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#transformMat4", "scope": "instance", - "___id": "T000002R027938", + "___id": "T000002R027928", "___s": true }, { @@ -243429,7 +243942,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#transformQuat", "scope": "instance", - "___id": "T000002R027949", + "___id": "T000002R027939", "___s": true }, { @@ -243462,7 +243975,7 @@ "memberof": "Phaser.Math.Vector4", "longname": "Phaser.Math.Vector4#reset", "scope": "instance", - "___id": "T000002R027965", + "___id": "T000002R027955", "___s": true }, { @@ -243536,7 +244049,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Within", "scope": "static", - "___id": "T000002R027979", + "___id": "T000002R027969", "___s": true }, { @@ -243610,7 +244123,7 @@ "memberof": "Phaser.Math", "longname": "Phaser.Math.Wrap", "scope": "static", - "___id": "T000002R027982", + "___id": "T000002R027972", "___s": true }, { @@ -243626,7 +244139,7 @@ "name": "Phaser", "longname": "Phaser", "scope": "global", - "___id": "T000002R027988", + "___id": "T000002R027978", "___s": true }, { @@ -243645,7 +244158,7 @@ "memberof": "Phaser", "longname": "Phaser.Types", "scope": "static", - "___id": "T000002R028030", + "___id": "T000002R028020", "___s": true }, { @@ -243784,7 +244297,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Arcade.Image", - "___id": "T000002R028036", + "___id": "T000002R028026", "___s": true }, { @@ -243826,7 +244339,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Image#body", - "___id": "T000002R028041", + "___id": "T000002R028031", "___s": true }, { @@ -243860,7 +244373,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Arcade.ArcadePhysics", - "___id": "T000002R028057", + "___id": "T000002R028047", "___s": true }, { @@ -243888,7 +244401,7 @@ "longname": "Phaser.Physics.Arcade.ArcadePhysics#scene", "scope": "instance", "kind": "member", - "___id": "T000002R028060", + "___id": "T000002R028050", "___s": true }, { @@ -243916,7 +244429,7 @@ "longname": "Phaser.Physics.Arcade.ArcadePhysics#systems", "scope": "instance", "kind": "member", - "___id": "T000002R028062", + "___id": "T000002R028052", "___s": true }, { @@ -243944,7 +244457,7 @@ "longname": "Phaser.Physics.Arcade.ArcadePhysics#config", "scope": "instance", "kind": "member", - "___id": "T000002R028064", + "___id": "T000002R028054", "___s": true }, { @@ -243972,7 +244485,7 @@ "longname": "Phaser.Physics.Arcade.ArcadePhysics#world", "scope": "instance", "kind": "member", - "___id": "T000002R028066", + "___id": "T000002R028056", "___s": true }, { @@ -244000,7 +244513,7 @@ "longname": "Phaser.Physics.Arcade.ArcadePhysics#add", "scope": "instance", "kind": "member", - "___id": "T000002R028068", + "___id": "T000002R028058", "___s": true }, { @@ -244019,7 +244532,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#enableUpdate", "scope": "instance", - "___id": "T000002R028081", + "___id": "T000002R028071", "___s": true }, { @@ -244038,7 +244551,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#disableUpdate", "scope": "instance", - "___id": "T000002R028083", + "___id": "T000002R028073", "___s": true }, { @@ -244071,7 +244584,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#getConfig", "scope": "instance", - "___id": "T000002R028085", + "___id": "T000002R028075", "___s": true }, { @@ -244104,7 +244617,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#nextCategory", "scope": "instance", - "___id": "T000002R028090", + "___id": "T000002R028080", "___s": true }, { @@ -244210,7 +244723,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#overlap", "scope": "instance", - "___id": "T000002R028093", + "___id": "T000002R028083", "___s": true }, { @@ -244316,7 +244829,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#collide", "scope": "instance", - "___id": "T000002R028098", + "___id": "T000002R028088", "___s": true }, { @@ -244431,7 +244944,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#collideTiles", "scope": "instance", - "___id": "T000002R028103", + "___id": "T000002R028093", "___s": true }, { @@ -244546,7 +245059,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#overlapTiles", "scope": "instance", - "___id": "T000002R028105", + "___id": "T000002R028095", "___s": true }, { @@ -244579,7 +245092,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#pause", "scope": "instance", - "___id": "T000002R028107", + "___id": "T000002R028097", "___s": true }, { @@ -244612,7 +245125,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#resume", "scope": "instance", - "___id": "T000002R028109", + "___id": "T000002R028099", "___s": true }, { @@ -244731,7 +245244,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#accelerateTo", "scope": "instance", - "___id": "T000002R028111", + "___id": "T000002R028101", "___s": true }, { @@ -244837,7 +245350,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#accelerateToObject", "scope": "instance", - "___id": "T000002R028115", + "___id": "T000002R028105", "___s": true }, { @@ -244925,7 +245438,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#closest", "scope": "instance", - "___id": "T000002R028117", + "___id": "T000002R028107", "___s": true }, { @@ -245046,7 +245559,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#furthest", "scope": "instance", - "___id": "T000002R028131", + "___id": "T000002R028121", "___s": true }, { @@ -245150,7 +245663,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#moveTo", "scope": "instance", - "___id": "T000002R028145", + "___id": "T000002R028135", "___s": true }, { @@ -245241,7 +245754,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#moveToObject", "scope": "instance", - "___id": "T000002R028151", + "___id": "T000002R028141", "___s": true }, { @@ -245318,7 +245831,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#velocityFromAngle", "scope": "instance", - "___id": "T000002R028153", + "___id": "T000002R028143", "___s": true }, { @@ -245395,7 +245908,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#velocityFromRotation", "scope": "instance", - "___id": "T000002R028157", + "___id": "T000002R028147", "___s": true }, { @@ -245540,7 +246053,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#overlapRect", "scope": "instance", - "___id": "T000002R028161", + "___id": "T000002R028151", "___s": true }, { @@ -245672,7 +246185,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#overlapCirc", "scope": "instance", - "___id": "T000002R028163", + "___id": "T000002R028153", "___s": true }, { @@ -245691,7 +246204,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#shutdown", "scope": "instance", - "___id": "T000002R028165", + "___id": "T000002R028155", "___s": true }, { @@ -245710,7 +246223,7 @@ "memberof": "Phaser.Physics.Arcade.ArcadePhysics", "longname": "Phaser.Physics.Arcade.ArcadePhysics#destroy", "scope": "instance", - "___id": "T000002R028171", + "___id": "T000002R028161", "___s": true }, { @@ -245849,7 +246362,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Arcade.Sprite", - "___id": "T000002R028179", + "___id": "T000002R028169", "___s": true }, { @@ -245891,7 +246404,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Sprite#body", - "___id": "T000002R028184", + "___id": "T000002R028174", "___s": true }, { @@ -245942,7 +246455,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Arcade.Body", - "___id": "T000002R028196", + "___id": "T000002R028186", "___s": true }, { @@ -245970,7 +246483,7 @@ "longname": "Phaser.Physics.Arcade.Body#world", "scope": "instance", "kind": "member", - "___id": "T000002R028215", + "___id": "T000002R028205", "___s": true }, { @@ -245998,7 +246511,7 @@ "longname": "Phaser.Physics.Arcade.Body#gameObject", "scope": "instance", "kind": "member", - "___id": "T000002R028217", + "___id": "T000002R028207", "___s": true }, { @@ -246027,7 +246540,7 @@ "longname": "Phaser.Physics.Arcade.Body#isBody", "scope": "instance", "kind": "member", - "___id": "T000002R028219", + "___id": "T000002R028209", "___s": true }, { @@ -246055,7 +246568,7 @@ "longname": "Phaser.Physics.Arcade.Body#transform", "scope": "instance", "kind": "member", - "___id": "T000002R028221", + "___id": "T000002R028211", "___s": true }, { @@ -246083,7 +246596,7 @@ "longname": "Phaser.Physics.Arcade.Body#debugShowBody", "scope": "instance", "kind": "member", - "___id": "T000002R028230", + "___id": "T000002R028220", "___s": true }, { @@ -246111,7 +246624,7 @@ "longname": "Phaser.Physics.Arcade.Body#debugShowVelocity", "scope": "instance", "kind": "member", - "___id": "T000002R028232", + "___id": "T000002R028222", "___s": true }, { @@ -246139,7 +246652,7 @@ "longname": "Phaser.Physics.Arcade.Body#debugBodyColor", "scope": "instance", "kind": "member", - "___id": "T000002R028234", + "___id": "T000002R028224", "___s": true }, { @@ -246168,7 +246681,7 @@ "longname": "Phaser.Physics.Arcade.Body#enable", "scope": "instance", "kind": "member", - "___id": "T000002R028236", + "___id": "T000002R028226", "___s": true }, { @@ -246200,7 +246713,7 @@ "longname": "Phaser.Physics.Arcade.Body#isCircle", "scope": "instance", "kind": "member", - "___id": "T000002R028238", + "___id": "T000002R028228", "___s": true }, { @@ -246232,7 +246745,7 @@ "longname": "Phaser.Physics.Arcade.Body#radius", "scope": "instance", "kind": "member", - "___id": "T000002R028240", + "___id": "T000002R028230", "___s": true }, { @@ -246263,7 +246776,7 @@ "longname": "Phaser.Physics.Arcade.Body#offset", "scope": "instance", "kind": "member", - "___id": "T000002R028242", + "___id": "T000002R028232", "___s": true }, { @@ -246291,7 +246804,7 @@ "longname": "Phaser.Physics.Arcade.Body#position", "scope": "instance", "kind": "member", - "___id": "T000002R028244", + "___id": "T000002R028234", "___s": true }, { @@ -246319,7 +246832,7 @@ "longname": "Phaser.Physics.Arcade.Body#prev", "scope": "instance", "kind": "member", - "___id": "T000002R028246", + "___id": "T000002R028236", "___s": true }, { @@ -246347,7 +246860,7 @@ "longname": "Phaser.Physics.Arcade.Body#prevFrame", "scope": "instance", "kind": "member", - "___id": "T000002R028248", + "___id": "T000002R028238", "___s": true }, { @@ -246376,7 +246889,7 @@ "longname": "Phaser.Physics.Arcade.Body#allowRotation", "scope": "instance", "kind": "member", - "___id": "T000002R028250", + "___id": "T000002R028240", "___s": true }, { @@ -246404,7 +246917,7 @@ "longname": "Phaser.Physics.Arcade.Body#rotation", "scope": "instance", "kind": "member", - "___id": "T000002R028252", + "___id": "T000002R028242", "___s": true }, { @@ -246432,7 +246945,7 @@ "longname": "Phaser.Physics.Arcade.Body#preRotation", "scope": "instance", "kind": "member", - "___id": "T000002R028254", + "___id": "T000002R028244", "___s": true }, { @@ -246462,7 +246975,7 @@ "longname": "Phaser.Physics.Arcade.Body#width", "scope": "instance", "kind": "member", - "___id": "T000002R028256", + "___id": "T000002R028246", "___s": true }, { @@ -246492,7 +247005,7 @@ "longname": "Phaser.Physics.Arcade.Body#height", "scope": "instance", "kind": "member", - "___id": "T000002R028258", + "___id": "T000002R028248", "___s": true }, { @@ -246523,7 +247036,7 @@ "longname": "Phaser.Physics.Arcade.Body#sourceWidth", "scope": "instance", "kind": "member", - "___id": "T000002R028260", + "___id": "T000002R028250", "___s": true }, { @@ -246554,7 +247067,7 @@ "longname": "Phaser.Physics.Arcade.Body#sourceHeight", "scope": "instance", "kind": "member", - "___id": "T000002R028262", + "___id": "T000002R028252", "___s": true }, { @@ -246582,7 +247095,7 @@ "longname": "Phaser.Physics.Arcade.Body#halfWidth", "scope": "instance", "kind": "member", - "___id": "T000002R028266", + "___id": "T000002R028256", "___s": true }, { @@ -246610,7 +247123,7 @@ "longname": "Phaser.Physics.Arcade.Body#halfHeight", "scope": "instance", "kind": "member", - "___id": "T000002R028268", + "___id": "T000002R028258", "___s": true }, { @@ -246638,7 +247151,7 @@ "longname": "Phaser.Physics.Arcade.Body#center", "scope": "instance", "kind": "member", - "___id": "T000002R028270", + "___id": "T000002R028260", "___s": true }, { @@ -246666,7 +247179,7 @@ "longname": "Phaser.Physics.Arcade.Body#velocity", "scope": "instance", "kind": "member", - "___id": "T000002R028272", + "___id": "T000002R028262", "___s": true }, { @@ -246695,7 +247208,7 @@ "longname": "Phaser.Physics.Arcade.Body#newVelocity", "scope": "instance", "kind": "member", - "___id": "T000002R028274", + "___id": "T000002R028264", "___s": true }, { @@ -246723,7 +247236,7 @@ "longname": "Phaser.Physics.Arcade.Body#deltaMax", "scope": "instance", "kind": "member", - "___id": "T000002R028276", + "___id": "T000002R028266", "___s": true }, { @@ -246751,7 +247264,7 @@ "longname": "Phaser.Physics.Arcade.Body#acceleration", "scope": "instance", "kind": "member", - "___id": "T000002R028278", + "___id": "T000002R028268", "___s": true }, { @@ -246780,7 +247293,7 @@ "longname": "Phaser.Physics.Arcade.Body#allowDrag", "scope": "instance", "kind": "member", - "___id": "T000002R028280", + "___id": "T000002R028270", "___s": true }, { @@ -246808,7 +247321,7 @@ "longname": "Phaser.Physics.Arcade.Body#drag", "scope": "instance", "kind": "member", - "___id": "T000002R028282", + "___id": "T000002R028272", "___s": true }, { @@ -246841,7 +247354,7 @@ "longname": "Phaser.Physics.Arcade.Body#allowGravity", "scope": "instance", "kind": "member", - "___id": "T000002R028284", + "___id": "T000002R028274", "___s": true }, { @@ -246872,7 +247385,7 @@ "longname": "Phaser.Physics.Arcade.Body#gravity", "scope": "instance", "kind": "member", - "___id": "T000002R028286", + "___id": "T000002R028276", "___s": true }, { @@ -246900,7 +247413,7 @@ "longname": "Phaser.Physics.Arcade.Body#bounce", "scope": "instance", "kind": "member", - "___id": "T000002R028288", + "___id": "T000002R028278", "___s": true }, { @@ -246931,7 +247444,7 @@ "longname": "Phaser.Physics.Arcade.Body#worldBounce", "scope": "instance", "kind": "member", - "___id": "T000002R028290", + "___id": "T000002R028280", "___s": true }, { @@ -246959,7 +247472,7 @@ "longname": "Phaser.Physics.Arcade.Body#customBoundsRectangle", "scope": "instance", "kind": "member", - "___id": "T000002R028292", + "___id": "T000002R028282", "___s": true }, { @@ -246991,7 +247504,7 @@ "longname": "Phaser.Physics.Arcade.Body#onWorldBounds", "scope": "instance", "kind": "member", - "___id": "T000002R028294", + "___id": "T000002R028284", "___s": true }, { @@ -247023,7 +247536,7 @@ "longname": "Phaser.Physics.Arcade.Body#onCollide", "scope": "instance", "kind": "member", - "___id": "T000002R028296", + "___id": "T000002R028286", "___s": true }, { @@ -247055,7 +247568,7 @@ "longname": "Phaser.Physics.Arcade.Body#onOverlap", "scope": "instance", "kind": "member", - "___id": "T000002R028298", + "___id": "T000002R028288", "___s": true }, { @@ -247083,7 +247596,7 @@ "longname": "Phaser.Physics.Arcade.Body#maxVelocity", "scope": "instance", "kind": "member", - "___id": "T000002R028300", + "___id": "T000002R028290", "___s": true }, { @@ -247112,7 +247625,7 @@ "longname": "Phaser.Physics.Arcade.Body#maxSpeed", "scope": "instance", "kind": "member", - "___id": "T000002R028302", + "___id": "T000002R028292", "___s": true }, { @@ -247140,7 +247653,7 @@ "longname": "Phaser.Physics.Arcade.Body#friction", "scope": "instance", "kind": "member", - "___id": "T000002R028304", + "___id": "T000002R028294", "___s": true }, { @@ -247169,7 +247682,7 @@ "longname": "Phaser.Physics.Arcade.Body#useDamping", "scope": "instance", "kind": "member", - "___id": "T000002R028306", + "___id": "T000002R028296", "___s": true }, { @@ -247198,7 +247711,7 @@ "longname": "Phaser.Physics.Arcade.Body#angularVelocity", "scope": "instance", "kind": "member", - "___id": "T000002R028308", + "___id": "T000002R028298", "___s": true }, { @@ -247227,7 +247740,7 @@ "longname": "Phaser.Physics.Arcade.Body#angularAcceleration", "scope": "instance", "kind": "member", - "___id": "T000002R028310", + "___id": "T000002R028300", "___s": true }, { @@ -247256,7 +247769,7 @@ "longname": "Phaser.Physics.Arcade.Body#angularDrag", "scope": "instance", "kind": "member", - "___id": "T000002R028312", + "___id": "T000002R028302", "___s": true }, { @@ -247285,7 +247798,7 @@ "longname": "Phaser.Physics.Arcade.Body#maxAngular", "scope": "instance", "kind": "member", - "___id": "T000002R028314", + "___id": "T000002R028304", "___s": true }, { @@ -247314,7 +247827,7 @@ "longname": "Phaser.Physics.Arcade.Body#mass", "scope": "instance", "kind": "member", - "___id": "T000002R028316", + "___id": "T000002R028306", "___s": true }, { @@ -247343,7 +247856,7 @@ "longname": "Phaser.Physics.Arcade.Body#angle", "scope": "instance", "kind": "member", - "___id": "T000002R028318", + "___id": "T000002R028308", "___s": true }, { @@ -247372,7 +247885,7 @@ "longname": "Phaser.Physics.Arcade.Body#speed", "scope": "instance", "kind": "member", - "___id": "T000002R028320", + "___id": "T000002R028310", "___s": true }, { @@ -247406,7 +247919,7 @@ "longname": "Phaser.Physics.Arcade.Body#facing", "scope": "instance", "kind": "member", - "___id": "T000002R028322", + "___id": "T000002R028312", "___s": true }, { @@ -247435,7 +247948,7 @@ "longname": "Phaser.Physics.Arcade.Body#immovable", "scope": "instance", "kind": "member", - "___id": "T000002R028324", + "___id": "T000002R028314", "___s": true }, { @@ -247467,7 +247980,7 @@ "longname": "Phaser.Physics.Arcade.Body#pushable", "scope": "instance", "kind": "member", - "___id": "T000002R028326", + "___id": "T000002R028316", "___s": true }, { @@ -247498,7 +248011,7 @@ "longname": "Phaser.Physics.Arcade.Body#slideFactor", "scope": "instance", "kind": "member", - "___id": "T000002R028328", + "___id": "T000002R028318", "___s": true }, { @@ -247527,7 +248040,7 @@ "longname": "Phaser.Physics.Arcade.Body#moves", "scope": "instance", "kind": "member", - "___id": "T000002R028330", + "___id": "T000002R028320", "___s": true }, { @@ -247556,7 +248069,7 @@ "longname": "Phaser.Physics.Arcade.Body#customSeparateX", "scope": "instance", "kind": "member", - "___id": "T000002R028332", + "___id": "T000002R028322", "___s": true }, { @@ -247585,7 +248098,7 @@ "longname": "Phaser.Physics.Arcade.Body#customSeparateY", "scope": "instance", "kind": "member", - "___id": "T000002R028334", + "___id": "T000002R028324", "___s": true }, { @@ -247614,7 +248127,7 @@ "longname": "Phaser.Physics.Arcade.Body#overlapX", "scope": "instance", "kind": "member", - "___id": "T000002R028336", + "___id": "T000002R028326", "___s": true }, { @@ -247643,7 +248156,7 @@ "longname": "Phaser.Physics.Arcade.Body#overlapY", "scope": "instance", "kind": "member", - "___id": "T000002R028338", + "___id": "T000002R028328", "___s": true }, { @@ -247672,7 +248185,7 @@ "longname": "Phaser.Physics.Arcade.Body#overlapR", "scope": "instance", "kind": "member", - "___id": "T000002R028340", + "___id": "T000002R028330", "___s": true }, { @@ -247701,7 +248214,7 @@ "longname": "Phaser.Physics.Arcade.Body#embedded", "scope": "instance", "kind": "member", - "___id": "T000002R028342", + "___id": "T000002R028332", "___s": true }, { @@ -247730,7 +248243,7 @@ "longname": "Phaser.Physics.Arcade.Body#collideWorldBounds", "scope": "instance", "kind": "member", - "___id": "T000002R028344", + "___id": "T000002R028334", "___s": true }, { @@ -247758,7 +248271,7 @@ "longname": "Phaser.Physics.Arcade.Body#checkCollision", "scope": "instance", "kind": "member", - "___id": "T000002R028346", + "___id": "T000002R028336", "___s": true }, { @@ -247790,7 +248303,7 @@ "longname": "Phaser.Physics.Arcade.Body#touching", "scope": "instance", "kind": "member", - "___id": "T000002R028348", + "___id": "T000002R028338", "___s": true }, { @@ -247821,7 +248334,7 @@ "longname": "Phaser.Physics.Arcade.Body#wasTouching", "scope": "instance", "kind": "member", - "___id": "T000002R028350", + "___id": "T000002R028340", "___s": true }, { @@ -247853,7 +248366,7 @@ "longname": "Phaser.Physics.Arcade.Body#blocked", "scope": "instance", "kind": "member", - "___id": "T000002R028352", + "___id": "T000002R028342", "___s": true }, { @@ -247885,7 +248398,7 @@ "longname": "Phaser.Physics.Arcade.Body#syncBounds", "scope": "instance", "kind": "member", - "___id": "T000002R028354", + "___id": "T000002R028344", "___s": true }, { @@ -247915,7 +248428,7 @@ "longname": "Phaser.Physics.Arcade.Body#physicsType", "scope": "instance", "kind": "member", - "___id": "T000002R028356", + "___id": "T000002R028346", "___s": true }, { @@ -247943,7 +248456,7 @@ "longname": "Phaser.Physics.Arcade.Body#collisionCategory", "scope": "instance", "kind": "member", - "___id": "T000002R028358", + "___id": "T000002R028348", "___s": true }, { @@ -247971,7 +248484,7 @@ "longname": "Phaser.Physics.Arcade.Body#collisionMask", "scope": "instance", "kind": "member", - "___id": "T000002R028360", + "___id": "T000002R028350", "___s": true }, { @@ -247999,7 +248512,7 @@ "longname": "Phaser.Physics.Arcade.Body#directControl", "scope": "instance", "kind": "member", - "___id": "T000002R028376", + "___id": "T000002R028366", "___s": true }, { @@ -248018,7 +248531,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#updateBounds", "scope": "instance", - "___id": "T000002R028380", + "___id": "T000002R028370", "___s": true }, { @@ -248037,7 +248550,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#updateCenter", "scope": "instance", - "___id": "T000002R028413", + "___id": "T000002R028403", "___s": true }, { @@ -248056,7 +248569,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#updateFromGameObject", "scope": "instance", - "___id": "T000002R028415", + "___id": "T000002R028405", "___s": true }, { @@ -248092,7 +248605,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#resetFlags", "scope": "instance", - "___id": "T000002R028420", + "___id": "T000002R028410", "___s": true }, { @@ -248139,7 +248652,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#preUpdate", "scope": "instance", - "___id": "T000002R028435", + "___id": "T000002R028425", "___s": true }, { @@ -248176,7 +248689,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#update", "scope": "instance", - "___id": "T000002R028444", + "___id": "T000002R028434", "___s": true }, { @@ -248195,7 +248708,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#postUpdate", "scope": "instance", - "___id": "T000002R028461", + "___id": "T000002R028451", "___s": true }, { @@ -248247,7 +248760,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setBoundsRectangle", "scope": "instance", - "___id": "T000002R028482", + "___id": "T000002R028472", "___s": true }, { @@ -248280,7 +248793,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#checkWorldBounds", "scope": "instance", - "___id": "T000002R028485", + "___id": "T000002R028475", "___s": true }, { @@ -248343,7 +248856,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setOffset", "scope": "instance", - "___id": "T000002R028512", + "___id": "T000002R028502", "___s": true }, { @@ -248406,7 +248919,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setGameObject", "scope": "instance", - "___id": "T000002R028515", + "___id": "T000002R028505", "___s": true }, { @@ -248484,7 +248997,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setSize", "scope": "instance", - "___id": "T000002R028522", + "___id": "T000002R028512", "___s": true }, { @@ -248560,7 +249073,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setCircle", "scope": "instance", - "___id": "T000002R028538", + "___id": "T000002R028528", "___s": true }, { @@ -248607,7 +249120,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#reset", "scope": "instance", - "___id": "T000002R028551", + "___id": "T000002R028541", "___s": true }, { @@ -248640,7 +249153,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#stop", "scope": "instance", - "___id": "T000002R028557", + "___id": "T000002R028547", "___s": true }, { @@ -248688,7 +249201,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#getBounds", "scope": "instance", - "___id": "T000002R028562", + "___id": "T000002R028552", "___s": true }, { @@ -248749,7 +249262,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#hitTest", "scope": "instance", - "___id": "T000002R028568", + "___id": "T000002R028558", "___s": true }, { @@ -248785,7 +249298,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#onFloor", "scope": "instance", - "___id": "T000002R028572", + "___id": "T000002R028562", "___s": true }, { @@ -248821,7 +249334,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#onCeiling", "scope": "instance", - "___id": "T000002R028574", + "___id": "T000002R028564", "___s": true }, { @@ -248857,7 +249370,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#onWall", "scope": "instance", - "___id": "T000002R028576", + "___id": "T000002R028566", "___s": true }, { @@ -248890,7 +249403,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#deltaAbsX", "scope": "instance", - "___id": "T000002R028578", + "___id": "T000002R028568", "___s": true }, { @@ -248923,7 +249436,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#deltaAbsY", "scope": "instance", - "___id": "T000002R028580", + "___id": "T000002R028570", "___s": true }, { @@ -248956,7 +249469,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#deltaX", "scope": "instance", - "___id": "T000002R028582", + "___id": "T000002R028572", "___s": true }, { @@ -248989,7 +249502,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#deltaY", "scope": "instance", - "___id": "T000002R028584", + "___id": "T000002R028574", "___s": true }, { @@ -249022,7 +249535,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#deltaXFinal", "scope": "instance", - "___id": "T000002R028586", + "___id": "T000002R028576", "___s": true }, { @@ -249055,7 +249568,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#deltaYFinal", "scope": "instance", - "___id": "T000002R028588", + "___id": "T000002R028578", "___s": true }, { @@ -249088,7 +249601,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#deltaZ", "scope": "instance", - "___id": "T000002R028590", + "___id": "T000002R028580", "___s": true }, { @@ -249107,7 +249620,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#destroy", "scope": "instance", - "___id": "T000002R028592", + "___id": "T000002R028582", "___s": true }, { @@ -249141,7 +249654,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#drawDebug", "scope": "instance", - "___id": "T000002R028595", + "___id": "T000002R028585", "___s": true }, { @@ -249174,7 +249687,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#willDrawDebug", "scope": "instance", - "___id": "T000002R028600", + "___id": "T000002R028590", "___s": true }, { @@ -249224,7 +249737,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setDirectControl", "scope": "instance", - "___id": "T000002R028602", + "___id": "T000002R028592", "___s": true }, { @@ -249316,7 +249829,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setCollideWorldBounds", "scope": "instance", - "___id": "T000002R028606", + "___id": "T000002R028596", "___s": true }, { @@ -249379,7 +249892,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setVelocity", "scope": "instance", - "___id": "T000002R028616", + "___id": "T000002R028606", "___s": true }, { @@ -249427,7 +249940,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setVelocityX", "scope": "instance", - "___id": "T000002R028621", + "___id": "T000002R028611", "___s": true }, { @@ -249475,7 +249988,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setVelocityY", "scope": "instance", - "___id": "T000002R028623", + "___id": "T000002R028613", "___s": true }, { @@ -249538,7 +250051,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setMaxVelocity", "scope": "instance", - "___id": "T000002R028625", + "___id": "T000002R028615", "___s": true }, { @@ -249586,7 +250099,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setMaxVelocityX", "scope": "instance", - "___id": "T000002R028627", + "___id": "T000002R028617", "___s": true }, { @@ -249634,7 +250147,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setMaxVelocityY", "scope": "instance", - "___id": "T000002R028630", + "___id": "T000002R028620", "___s": true }, { @@ -249682,7 +250195,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setMaxSpeed", "scope": "instance", - "___id": "T000002R028633", + "___id": "T000002R028623", "___s": true }, { @@ -249745,7 +250258,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setSlideFactor", "scope": "instance", - "___id": "T000002R028636", + "___id": "T000002R028626", "___s": true }, { @@ -249808,7 +250321,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setBounce", "scope": "instance", - "___id": "T000002R028638", + "___id": "T000002R028628", "___s": true }, { @@ -249856,7 +250369,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setBounceX", "scope": "instance", - "___id": "T000002R028640", + "___id": "T000002R028630", "___s": true }, { @@ -249904,7 +250417,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setBounceY", "scope": "instance", - "___id": "T000002R028643", + "___id": "T000002R028633", "___s": true }, { @@ -249967,7 +250480,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setAcceleration", "scope": "instance", - "___id": "T000002R028646", + "___id": "T000002R028636", "___s": true }, { @@ -250015,7 +250528,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setAccelerationX", "scope": "instance", - "___id": "T000002R028648", + "___id": "T000002R028638", "___s": true }, { @@ -250063,7 +250576,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setAccelerationY", "scope": "instance", - "___id": "T000002R028651", + "___id": "T000002R028641", "___s": true }, { @@ -250116,7 +250629,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setAllowDrag", "scope": "instance", - "___id": "T000002R028654", + "___id": "T000002R028644", "___s": true }, { @@ -250169,7 +250682,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setAllowGravity", "scope": "instance", - "___id": "T000002R028658", + "___id": "T000002R028648", "___s": true }, { @@ -250222,7 +250735,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setAllowRotation", "scope": "instance", - "___id": "T000002R028662", + "___id": "T000002R028652", "___s": true }, { @@ -250285,7 +250798,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setDrag", "scope": "instance", - "___id": "T000002R028666", + "___id": "T000002R028656", "___s": true }, { @@ -250333,7 +250846,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setDamping", "scope": "instance", - "___id": "T000002R028668", + "___id": "T000002R028658", "___s": true }, { @@ -250381,7 +250894,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setDragX", "scope": "instance", - "___id": "T000002R028671", + "___id": "T000002R028661", "___s": true }, { @@ -250429,7 +250942,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setDragY", "scope": "instance", - "___id": "T000002R028674", + "___id": "T000002R028664", "___s": true }, { @@ -250492,7 +251005,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setGravity", "scope": "instance", - "___id": "T000002R028677", + "___id": "T000002R028667", "___s": true }, { @@ -250540,7 +251053,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setGravityX", "scope": "instance", - "___id": "T000002R028679", + "___id": "T000002R028669", "___s": true }, { @@ -250588,7 +251101,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setGravityY", "scope": "instance", - "___id": "T000002R028682", + "___id": "T000002R028672", "___s": true }, { @@ -250651,7 +251164,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setFriction", "scope": "instance", - "___id": "T000002R028685", + "___id": "T000002R028675", "___s": true }, { @@ -250699,7 +251212,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setFrictionX", "scope": "instance", - "___id": "T000002R028687", + "___id": "T000002R028677", "___s": true }, { @@ -250747,7 +251260,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setFrictionY", "scope": "instance", - "___id": "T000002R028690", + "___id": "T000002R028680", "___s": true }, { @@ -250795,7 +251308,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setAngularVelocity", "scope": "instance", - "___id": "T000002R028693", + "___id": "T000002R028683", "___s": true }, { @@ -250843,7 +251356,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setAngularAcceleration", "scope": "instance", - "___id": "T000002R028696", + "___id": "T000002R028686", "___s": true }, { @@ -250891,7 +251404,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setAngularDrag", "scope": "instance", - "___id": "T000002R028699", + "___id": "T000002R028689", "___s": true }, { @@ -250939,7 +251452,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setMass", "scope": "instance", - "___id": "T000002R028702", + "___id": "T000002R028692", "___s": true }, { @@ -250989,7 +251502,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setImmovable", "scope": "instance", - "___id": "T000002R028705", + "___id": "T000002R028695", "___s": true }, { @@ -251039,7 +251552,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#setEnable", "scope": "instance", - "___id": "T000002R028709", + "___id": "T000002R028699", "___s": true }, { @@ -251115,7 +251628,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#processX", "scope": "instance", - "___id": "T000002R028713", + "___id": "T000002R028703", "___s": true }, { @@ -251191,7 +251704,7 @@ "memberof": "Phaser.Physics.Arcade.Body", "longname": "Phaser.Physics.Arcade.Body#processY", "scope": "instance", - "___id": "T000002R028722", + "___id": "T000002R028712", "___s": true }, { @@ -251219,7 +251732,7 @@ "longname": "Phaser.Physics.Arcade.Body#x", "scope": "instance", "kind": "member", - "___id": "T000002R028731", + "___id": "T000002R028721", "___s": true }, { @@ -251247,7 +251760,7 @@ "longname": "Phaser.Physics.Arcade.Body#y", "scope": "instance", "kind": "member", - "___id": "T000002R028736", + "___id": "T000002R028726", "___s": true }, { @@ -251276,7 +251789,7 @@ "longname": "Phaser.Physics.Arcade.Body#left", "scope": "instance", "kind": "member", - "___id": "T000002R028741", + "___id": "T000002R028731", "___s": true }, { @@ -251305,7 +251818,7 @@ "longname": "Phaser.Physics.Arcade.Body#right", "scope": "instance", "kind": "member", - "___id": "T000002R028744", + "___id": "T000002R028734", "___s": true }, { @@ -251334,7 +251847,7 @@ "longname": "Phaser.Physics.Arcade.Body#top", "scope": "instance", "kind": "member", - "___id": "T000002R028747", + "___id": "T000002R028737", "___s": true }, { @@ -251363,7 +251876,7 @@ "longname": "Phaser.Physics.Arcade.Body#bottom", "scope": "instance", "kind": "member", - "___id": "T000002R028750", + "___id": "T000002R028740", "___s": true }, { @@ -251475,7 +251988,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Arcade.Collider", - "___id": "T000002R028755", + "___id": "T000002R028745", "___s": true }, { @@ -251503,7 +252016,7 @@ "longname": "Phaser.Physics.Arcade.Collider#world", "scope": "instance", "kind": "member", - "___id": "T000002R028758", + "___id": "T000002R028748", "___s": true }, { @@ -251531,7 +252044,7 @@ "longname": "Phaser.Physics.Arcade.Collider#name", "scope": "instance", "kind": "member", - "___id": "T000002R028760", + "___id": "T000002R028750", "___s": true }, { @@ -251560,7 +252073,7 @@ "longname": "Phaser.Physics.Arcade.Collider#active", "scope": "instance", "kind": "member", - "___id": "T000002R028762", + "___id": "T000002R028752", "___s": true }, { @@ -251588,7 +252101,7 @@ "longname": "Phaser.Physics.Arcade.Collider#overlapOnly", "scope": "instance", "kind": "member", - "___id": "T000002R028764", + "___id": "T000002R028754", "___s": true }, { @@ -251616,7 +252129,7 @@ "longname": "Phaser.Physics.Arcade.Collider#object1", "scope": "instance", "kind": "member", - "___id": "T000002R028766", + "___id": "T000002R028756", "___s": true }, { @@ -251644,7 +252157,7 @@ "longname": "Phaser.Physics.Arcade.Collider#object2", "scope": "instance", "kind": "member", - "___id": "T000002R028768", + "___id": "T000002R028758", "___s": true }, { @@ -251672,7 +252185,7 @@ "longname": "Phaser.Physics.Arcade.Collider#collideCallback", "scope": "instance", "kind": "member", - "___id": "T000002R028770", + "___id": "T000002R028760", "___s": true }, { @@ -251700,7 +252213,7 @@ "longname": "Phaser.Physics.Arcade.Collider#processCallback", "scope": "instance", "kind": "member", - "___id": "T000002R028772", + "___id": "T000002R028762", "___s": true }, { @@ -251728,7 +252241,7 @@ "longname": "Phaser.Physics.Arcade.Collider#callbackContext", "scope": "instance", "kind": "member", - "___id": "T000002R028774", + "___id": "T000002R028764", "___s": true }, { @@ -251776,7 +252289,7 @@ "memberof": "Phaser.Physics.Arcade.Collider", "longname": "Phaser.Physics.Arcade.Collider#setName", "scope": "instance", - "___id": "T000002R028776", + "___id": "T000002R028766", "___s": true }, { @@ -251795,7 +252308,7 @@ "memberof": "Phaser.Physics.Arcade.Collider", "longname": "Phaser.Physics.Arcade.Collider#update", "scope": "instance", - "___id": "T000002R028779", + "___id": "T000002R028769", "___s": true }, { @@ -251814,7 +252327,7 @@ "memberof": "Phaser.Physics.Arcade.Collider", "longname": "Phaser.Physics.Arcade.Collider#destroy", "scope": "instance", - "___id": "T000002R028781", + "___id": "T000002R028771", "___s": true }, { @@ -251833,7 +252346,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Acceleration", "scope": "static", - "___id": "T000002R028791", + "___id": "T000002R028781", "___s": true }, { @@ -251897,7 +252410,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Acceleration", "longname": "Phaser.Physics.Arcade.Components.Acceleration#setAcceleration", "scope": "instance", - "___id": "T000002R028793", + "___id": "T000002R028783", "___s": true }, { @@ -251946,7 +252459,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Acceleration", "longname": "Phaser.Physics.Arcade.Components.Acceleration#setAccelerationX", "scope": "instance", - "___id": "T000002R028795", + "___id": "T000002R028785", "___s": true }, { @@ -251995,7 +252508,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Acceleration", "longname": "Phaser.Physics.Arcade.Components.Acceleration#setAccelerationY", "scope": "instance", - "___id": "T000002R028798", + "___id": "T000002R028788", "___s": true }, { @@ -252014,7 +252527,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Angular", "scope": "static", - "___id": "T000002R028802", + "___id": "T000002R028792", "___s": true }, { @@ -252063,7 +252576,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Angular", "longname": "Phaser.Physics.Arcade.Components.Angular#setAngularVelocity", "scope": "instance", - "___id": "T000002R028804", + "___id": "T000002R028794", "___s": true }, { @@ -252112,7 +252625,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Angular", "longname": "Phaser.Physics.Arcade.Components.Angular#setAngularAcceleration", "scope": "instance", - "___id": "T000002R028807", + "___id": "T000002R028797", "___s": true }, { @@ -252161,7 +252674,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Angular", "longname": "Phaser.Physics.Arcade.Components.Angular#setAngularDrag", "scope": "instance", - "___id": "T000002R028810", + "___id": "T000002R028800", "___s": true }, { @@ -252180,7 +252693,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Bounce", "scope": "static", - "___id": "T000002R028814", + "___id": "T000002R028804", "___s": true }, { @@ -252244,7 +252757,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Bounce", "longname": "Phaser.Physics.Arcade.Components.Bounce#setBounce", "scope": "instance", - "___id": "T000002R028816", + "___id": "T000002R028806", "___s": true }, { @@ -252293,7 +252806,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Bounce", "longname": "Phaser.Physics.Arcade.Components.Bounce#setBounceX", "scope": "instance", - "___id": "T000002R028818", + "___id": "T000002R028808", "___s": true }, { @@ -252342,7 +252855,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Bounce", "longname": "Phaser.Physics.Arcade.Components.Bounce#setBounceY", "scope": "instance", - "___id": "T000002R028821", + "___id": "T000002R028811", "___s": true }, { @@ -252435,7 +252948,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Bounce", "longname": "Phaser.Physics.Arcade.Components.Bounce#setCollideWorldBounds", "scope": "instance", - "___id": "T000002R028824", + "___id": "T000002R028814", "___s": true }, { @@ -252454,7 +252967,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Collision", "scope": "static", - "___id": "T000002R028828", + "___id": "T000002R028818", "___s": true }, { @@ -252503,7 +253016,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Collision", "longname": "Phaser.Physics.Arcade.Components.Collision#setCollisionCategory", "scope": "instance", - "___id": "T000002R028830", + "___id": "T000002R028820", "___s": true }, { @@ -252551,7 +253064,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Collision", "longname": "Phaser.Physics.Arcade.Components.Collision#willCollideWith", "scope": "instance", - "___id": "T000002R028834", + "___id": "T000002R028824", "___s": true }, { @@ -252600,7 +253113,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Collision", "longname": "Phaser.Physics.Arcade.Components.Collision#addCollidesWith", "scope": "instance", - "___id": "T000002R028837", + "___id": "T000002R028827", "___s": true }, { @@ -252649,7 +253162,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Collision", "longname": "Phaser.Physics.Arcade.Components.Collision#removeCollidesWith", "scope": "instance", - "___id": "T000002R028841", + "___id": "T000002R028831", "___s": true }, { @@ -252717,7 +253230,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Collision", "longname": "Phaser.Physics.Arcade.Components.Collision#setCollidesWith", "scope": "instance", - "___id": "T000002R028845", + "___id": "T000002R028835", "___s": true }, { @@ -252751,7 +253264,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Collision", "longname": "Phaser.Physics.Arcade.Components.Collision#resetCollisionCategory", "scope": "instance", - "___id": "T000002R028849", + "___id": "T000002R028839", "___s": true }, { @@ -252770,7 +253283,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Debug", "scope": "static", - "___id": "T000002R028855", + "___id": "T000002R028845", "___s": true }, { @@ -252845,7 +253358,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Debug", "longname": "Phaser.Physics.Arcade.Components.Debug#setDebug", "scope": "instance", - "___id": "T000002R028857", + "___id": "T000002R028847", "___s": true }, { @@ -252894,7 +253407,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Debug", "longname": "Phaser.Physics.Arcade.Components.Debug#setDebugBodyColor", "scope": "instance", - "___id": "T000002R028862", + "___id": "T000002R028852", "___s": true }, { @@ -252922,7 +253435,7 @@ "longname": "Phaser.Physics.Arcade.Components.Debug#debugShowBody", "scope": "instance", "kind": "member", - "___id": "T000002R028865", + "___id": "T000002R028855", "___s": true }, { @@ -252950,7 +253463,7 @@ "longname": "Phaser.Physics.Arcade.Components.Debug#debugShowVelocity", "scope": "instance", "kind": "member", - "___id": "T000002R028870", + "___id": "T000002R028860", "___s": true }, { @@ -252978,7 +253491,7 @@ "longname": "Phaser.Physics.Arcade.Components.Debug#debugBodyColor", "scope": "instance", "kind": "member", - "___id": "T000002R028875", + "___id": "T000002R028865", "___s": true }, { @@ -252997,7 +253510,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Drag", "scope": "static", - "___id": "T000002R028881", + "___id": "T000002R028871", "___s": true }, { @@ -253061,7 +253574,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Drag", "longname": "Phaser.Physics.Arcade.Components.Drag#setDrag", "scope": "instance", - "___id": "T000002R028883", + "___id": "T000002R028873", "___s": true }, { @@ -253110,7 +253623,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Drag", "longname": "Phaser.Physics.Arcade.Components.Drag#setDragX", "scope": "instance", - "___id": "T000002R028885", + "___id": "T000002R028875", "___s": true }, { @@ -253159,7 +253672,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Drag", "longname": "Phaser.Physics.Arcade.Components.Drag#setDragY", "scope": "instance", - "___id": "T000002R028888", + "___id": "T000002R028878", "___s": true }, { @@ -253208,7 +253721,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Drag", "longname": "Phaser.Physics.Arcade.Components.Drag#setDamping", "scope": "instance", - "___id": "T000002R028891", + "___id": "T000002R028881", "___s": true }, { @@ -253227,7 +253740,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Enable", "scope": "static", - "___id": "T000002R028895", + "___id": "T000002R028885", "___s": true }, { @@ -253278,7 +253791,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Enable", "longname": "Phaser.Physics.Arcade.Components.Enable#setDirectControl", "scope": "instance", - "___id": "T000002R028897", + "___id": "T000002R028887", "___s": true }, { @@ -253392,7 +253905,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Enable", "longname": "Phaser.Physics.Arcade.Components.Enable#enableBody", "scope": "instance", - "___id": "T000002R028899", + "___id": "T000002R028889", "___s": true }, { @@ -253464,7 +253977,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Enable", "longname": "Phaser.Physics.Arcade.Components.Enable#disableBody", "scope": "instance", - "___id": "T000002R028904", + "___id": "T000002R028894", "___s": true }, { @@ -253501,7 +254014,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Enable", "longname": "Phaser.Physics.Arcade.Components.Enable#refreshBody", "scope": "instance", - "___id": "T000002R028911", + "___id": "T000002R028901", "___s": true }, { @@ -253523,7 +254036,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Friction", "scope": "static", - "___id": "T000002R028914", + "___id": "T000002R028904", "___s": true }, { @@ -253590,7 +254103,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Friction", "longname": "Phaser.Physics.Arcade.Components.Friction#setFriction", "scope": "instance", - "___id": "T000002R028916", + "___id": "T000002R028906", "___s": true }, { @@ -253642,7 +254155,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Friction", "longname": "Phaser.Physics.Arcade.Components.Friction#setFrictionX", "scope": "instance", - "___id": "T000002R028918", + "___id": "T000002R028908", "___s": true }, { @@ -253694,7 +254207,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Friction", "longname": "Phaser.Physics.Arcade.Components.Friction#setFrictionY", "scope": "instance", - "___id": "T000002R028921", + "___id": "T000002R028911", "___s": true }, { @@ -253713,7 +254226,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Gravity", "scope": "static", - "___id": "T000002R028925", + "___id": "T000002R028915", "___s": true }, { @@ -253777,7 +254290,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Gravity", "longname": "Phaser.Physics.Arcade.Components.Gravity#setGravity", "scope": "instance", - "___id": "T000002R028927", + "___id": "T000002R028917", "___s": true }, { @@ -253826,7 +254339,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Gravity", "longname": "Phaser.Physics.Arcade.Components.Gravity#setGravityX", "scope": "instance", - "___id": "T000002R028929", + "___id": "T000002R028919", "___s": true }, { @@ -253875,7 +254388,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Gravity", "longname": "Phaser.Physics.Arcade.Components.Gravity#setGravityY", "scope": "instance", - "___id": "T000002R028932", + "___id": "T000002R028922", "___s": true }, { @@ -253894,7 +254407,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Immovable", "scope": "static", - "___id": "T000002R028936", + "___id": "T000002R028926", "___s": true }, { @@ -253945,7 +254458,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Immovable", "longname": "Phaser.Physics.Arcade.Components.Immovable#setImmovable", "scope": "instance", - "___id": "T000002R028938", + "___id": "T000002R028928", "___s": true }, { @@ -253962,7 +254475,7 @@ "memberof": "Phaser.Physics.Arcade", "longname": "Phaser.Physics.Arcade.Components", "scope": "static", - "___id": "T000002R028943", + "___id": "T000002R028933", "___s": true }, { @@ -253981,7 +254494,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Mass", "scope": "static", - "___id": "T000002R028961", + "___id": "T000002R028951", "___s": true }, { @@ -254030,7 +254543,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Mass", "longname": "Phaser.Physics.Arcade.Components.Mass#setMass", "scope": "instance", - "___id": "T000002R028963", + "___id": "T000002R028953", "___s": true }, { @@ -254162,7 +254675,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.OverlapCirc", "scope": "static", - "___id": "T000002R028971", + "___id": "T000002R028961", "___s": true }, { @@ -254307,7 +254820,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.OverlapRect", "scope": "static", - "___id": "T000002R028980", + "___id": "T000002R028970", "___s": true }, { @@ -254326,7 +254839,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Pushable", "scope": "static", - "___id": "T000002R029005", + "___id": "T000002R028995", "___s": true }, { @@ -254377,7 +254890,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Pushable", "longname": "Phaser.Physics.Arcade.Components.Pushable#setPushable", "scope": "instance", - "___id": "T000002R029007", + "___id": "T000002R028997", "___s": true }, { @@ -254396,7 +254909,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Size", "scope": "static", - "___id": "T000002R029012", + "___id": "T000002R029002", "___s": true }, { @@ -254460,7 +254973,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Size", "longname": "Phaser.Physics.Arcade.Components.Size#setOffset", "scope": "instance", - "___id": "T000002R029014", + "___id": "T000002R029004", "___s": true }, { @@ -254538,7 +255051,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Size", "longname": "Phaser.Physics.Arcade.Components.Size#setSize", "scope": "instance", - "___id": "T000002R029016", + "___id": "T000002R029006", "___s": true }, { @@ -254615,7 +255128,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Size", "longname": "Phaser.Physics.Arcade.Components.Size#setBodySize", "scope": "instance", - "___id": "T000002R029018", + "___id": "T000002R029008", "___s": true }, { @@ -254692,7 +255205,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Size", "longname": "Phaser.Physics.Arcade.Components.Size#setCircle", "scope": "instance", - "___id": "T000002R029020", + "___id": "T000002R029010", "___s": true }, { @@ -254711,7 +255224,7 @@ "memberof": "Phaser.Physics.Arcade.Components", "longname": "Phaser.Physics.Arcade.Components.Velocity", "scope": "static", - "___id": "T000002R029023", + "___id": "T000002R029013", "___s": true }, { @@ -254775,7 +255288,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Velocity", "longname": "Phaser.Physics.Arcade.Components.Velocity#setVelocity", "scope": "instance", - "___id": "T000002R029025", + "___id": "T000002R029015", "___s": true }, { @@ -254824,7 +255337,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Velocity", "longname": "Phaser.Physics.Arcade.Components.Velocity#setVelocityX", "scope": "instance", - "___id": "T000002R029027", + "___id": "T000002R029017", "___s": true }, { @@ -254873,7 +255386,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Velocity", "longname": "Phaser.Physics.Arcade.Components.Velocity#setVelocityY", "scope": "instance", - "___id": "T000002R029029", + "___id": "T000002R029019", "___s": true }, { @@ -254937,7 +255450,7 @@ "memberof": "Phaser.Physics.Arcade.Components.Velocity", "longname": "Phaser.Physics.Arcade.Components.Velocity#setMaxVelocity", "scope": "instance", - "___id": "T000002R029031", + "___id": "T000002R029021", "___s": true }, { @@ -254970,7 +255483,7 @@ "longname": "Phaser.Physics.Arcade.DYNAMIC_BODY", "scope": "static", "kind": "member", - "___id": "T000002R029035", + "___id": "T000002R029025", "___s": true }, { @@ -255003,7 +255516,7 @@ "longname": "Phaser.Physics.Arcade.STATIC_BODY", "scope": "static", "kind": "member", - "___id": "T000002R029037", + "___id": "T000002R029027", "___s": true }, { @@ -255032,7 +255545,7 @@ "longname": "Phaser.Physics.Arcade.GROUP", "scope": "static", "kind": "member", - "___id": "T000002R029039", + "___id": "T000002R029029", "___s": true }, { @@ -255061,7 +255574,7 @@ "longname": "Phaser.Physics.Arcade.TILEMAPLAYER", "scope": "static", "kind": "member", - "___id": "T000002R029041", + "___id": "T000002R029031", "___s": true }, { @@ -255093,7 +255606,7 @@ "longname": "Phaser.Physics.Arcade.FACING_NONE", "scope": "static", "kind": "member", - "___id": "T000002R029043", + "___id": "T000002R029033", "___s": true }, { @@ -255125,7 +255638,7 @@ "longname": "Phaser.Physics.Arcade.FACING_UP", "scope": "static", "kind": "member", - "___id": "T000002R029045", + "___id": "T000002R029035", "___s": true }, { @@ -255157,7 +255670,7 @@ "longname": "Phaser.Physics.Arcade.FACING_DOWN", "scope": "static", "kind": "member", - "___id": "T000002R029047", + "___id": "T000002R029037", "___s": true }, { @@ -255189,7 +255702,7 @@ "longname": "Phaser.Physics.Arcade.FACING_LEFT", "scope": "static", "kind": "member", - "___id": "T000002R029049", + "___id": "T000002R029039", "___s": true }, { @@ -255221,7 +255734,7 @@ "longname": "Phaser.Physics.Arcade.FACING_RIGHT", "scope": "static", "kind": "member", - "___id": "T000002R029051", + "___id": "T000002R029041", "___s": true }, { @@ -255323,7 +255836,7 @@ "memberof": "Phaser.Physics.Arcade.Events", "longname": "Phaser.Physics.Arcade.Events#event:COLLIDE", "scope": "instance", - "___id": "T000002R029054", + "___id": "T000002R029044", "___s": true }, { @@ -255340,7 +255853,7 @@ "memberof": "Phaser.Physics.Arcade", "longname": "Phaser.Physics.Arcade.Events", "scope": "static", - "___id": "T000002R029056", + "___id": "T000002R029046", "___s": true }, { @@ -255442,7 +255955,7 @@ "memberof": "Phaser.Physics.Arcade.Events", "longname": "Phaser.Physics.Arcade.Events#event:OVERLAP", "scope": "instance", - "___id": "T000002R029066", + "___id": "T000002R029056", "___s": true }, { @@ -255470,7 +255983,7 @@ "memberof": "Phaser.Physics.Arcade.Events", "longname": "Phaser.Physics.Arcade.Events#event:PAUSE", "scope": "instance", - "___id": "T000002R029068", + "___id": "T000002R029058", "___s": true }, { @@ -255498,7 +256011,7 @@ "memberof": "Phaser.Physics.Arcade.Events", "longname": "Phaser.Physics.Arcade.Events#event:RESUME", "scope": "instance", - "___id": "T000002R029070", + "___id": "T000002R029060", "___s": true }, { @@ -255567,7 +256080,7 @@ "memberof": "Phaser.Physics.Arcade.Events", "longname": "Phaser.Physics.Arcade.Events#event:TILE_COLLIDE", "scope": "instance", - "___id": "T000002R029072", + "___id": "T000002R029062", "___s": true }, { @@ -255636,7 +256149,7 @@ "memberof": "Phaser.Physics.Arcade.Events", "longname": "Phaser.Physics.Arcade.Events#event:TILE_OVERLAP", "scope": "instance", - "___id": "T000002R029074", + "___id": "T000002R029064", "___s": true }, { @@ -255731,7 +256244,7 @@ "memberof": "Phaser.Physics.Arcade.Events", "longname": "Phaser.Physics.Arcade.Events#event:WORLD_BOUNDS", "scope": "instance", - "___id": "T000002R029076", + "___id": "T000002R029066", "___s": true }, { @@ -255774,7 +256287,7 @@ "memberof": "Phaser.Physics.Arcade.Events", "longname": "Phaser.Physics.Arcade.Events#event:WORLD_STEP", "scope": "instance", - "___id": "T000002R029078", + "___id": "T000002R029068", "___s": true }, { @@ -255808,7 +256321,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Arcade.Factory", - "___id": "T000002R029088", + "___id": "T000002R029078", "___s": true }, { @@ -255836,7 +256349,7 @@ "longname": "Phaser.Physics.Arcade.Factory#world", "scope": "instance", "kind": "member", - "___id": "T000002R029091", + "___id": "T000002R029081", "___s": true }, { @@ -255864,7 +256377,7 @@ "longname": "Phaser.Physics.Arcade.Factory#scene", "scope": "instance", "kind": "member", - "___id": "T000002R029093", + "___id": "T000002R029083", "___s": true }, { @@ -255892,7 +256405,7 @@ "longname": "Phaser.Physics.Arcade.Factory#sys", "scope": "instance", "kind": "member", - "___id": "T000002R029095", + "___id": "T000002R029085", "___s": true }, { @@ -255994,7 +256507,7 @@ "memberof": "Phaser.Physics.Arcade.Factory", "longname": "Phaser.Physics.Arcade.Factory#collider", "scope": "instance", - "___id": "T000002R029097", + "___id": "T000002R029087", "___s": true }, { @@ -256096,7 +256609,7 @@ "memberof": "Phaser.Physics.Arcade.Factory", "longname": "Phaser.Physics.Arcade.Factory#overlap", "scope": "instance", - "___id": "T000002R029099", + "___id": "T000002R029089", "___s": true }, { @@ -256167,7 +256680,7 @@ "memberof": "Phaser.Physics.Arcade.Factory", "longname": "Phaser.Physics.Arcade.Factory#existing", "scope": "instance", - "___id": "T000002R029101", + "___id": "T000002R029091", "___s": true }, { @@ -256275,7 +256788,7 @@ "memberof": "Phaser.Physics.Arcade.Factory", "longname": "Phaser.Physics.Arcade.Factory#staticImage", "scope": "instance", - "___id": "T000002R029104", + "___id": "T000002R029094", "___s": true }, { @@ -256383,7 +256896,7 @@ "memberof": "Phaser.Physics.Arcade.Factory", "longname": "Phaser.Physics.Arcade.Factory#image", "scope": "instance", - "___id": "T000002R029107", + "___id": "T000002R029097", "___s": true }, { @@ -256491,7 +257004,7 @@ "memberof": "Phaser.Physics.Arcade.Factory", "longname": "Phaser.Physics.Arcade.Factory#staticSprite", "scope": "instance", - "___id": "T000002R029110", + "___id": "T000002R029100", "___s": true }, { @@ -256589,7 +257102,7 @@ "memberof": "Phaser.Physics.Arcade.Factory", "longname": "Phaser.Physics.Arcade.Factory#sprite", "scope": "instance", - "___id": "T000002R029113", + "___id": "T000002R029103", "___s": true }, { @@ -256686,7 +257199,7 @@ "memberof": "Phaser.Physics.Arcade.Factory", "longname": "Phaser.Physics.Arcade.Factory#staticGroup", "scope": "instance", - "___id": "T000002R029116", + "___id": "T000002R029106", "___s": true }, { @@ -256783,7 +257296,7 @@ "memberof": "Phaser.Physics.Arcade.Factory", "longname": "Phaser.Physics.Arcade.Factory#group", "scope": "instance", - "___id": "T000002R029118", + "___id": "T000002R029108", "___s": true }, { @@ -256874,7 +257387,7 @@ "memberof": "Phaser.Physics.Arcade.Factory", "longname": "Phaser.Physics.Arcade.Factory#body", "scope": "instance", - "___id": "T000002R029120", + "___id": "T000002R029110", "___s": true }, { @@ -256965,7 +257478,7 @@ "memberof": "Phaser.Physics.Arcade.Factory", "longname": "Phaser.Physics.Arcade.Factory#staticBody", "scope": "instance", - "___id": "T000002R029123", + "___id": "T000002R029113", "___s": true }, { @@ -256984,7 +257497,7 @@ "memberof": "Phaser.Physics.Arcade.Factory", "longname": "Phaser.Physics.Arcade.Factory#destroy", "scope": "instance", - "___id": "T000002R029126", + "___id": "T000002R029116", "___s": true }, { @@ -257051,7 +257564,7 @@ "memberof": "Phaser.Physics.Arcade", "longname": "Phaser.Physics.Arcade.GetCollidesWith", "scope": "static", - "___id": "T000002R029132", + "___id": "T000002R029122", "___s": true }, { @@ -257138,7 +257651,7 @@ "memberof": "Phaser.Physics.Arcade", "longname": "Phaser.Physics.Arcade.GetOverlapX", "scope": "static", - "___id": "T000002R029140", + "___id": "T000002R029130", "___s": true }, { @@ -257225,7 +257738,7 @@ "memberof": "Phaser.Physics.Arcade", "longname": "Phaser.Physics.Arcade.GetOverlapY", "scope": "static", - "___id": "T000002R029170", + "___id": "T000002R029160", "___s": true }, { @@ -257242,7 +257755,7 @@ "memberof": "Phaser.Physics", "longname": "Phaser.Physics.Arcade", "scope": "static", - "___id": "T000002R029201", + "___id": "T000002R029191", "___s": true }, { @@ -257355,7 +257868,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Arcade.Group", - "___id": "T000002R029230", + "___id": "T000002R029220", "___s": true }, { @@ -257383,7 +257896,7 @@ "longname": "Phaser.Physics.Arcade.Group#world", "scope": "instance", "kind": "member", - "___id": "T000002R029250", + "___id": "T000002R029240", "___s": true }, { @@ -257416,7 +257929,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Group#classType", - "___id": "T000002R029252", + "___id": "T000002R029242", "___s": true }, { @@ -257445,7 +257958,7 @@ "longname": "Phaser.Physics.Arcade.Group#physicsType", "scope": "instance", "kind": "member", - "___id": "T000002R029254", + "___id": "T000002R029244", "___s": true }, { @@ -257473,7 +257986,7 @@ "longname": "Phaser.Physics.Arcade.Group#collisionCategory", "scope": "instance", "kind": "member", - "___id": "T000002R029256", + "___id": "T000002R029246", "___s": true }, { @@ -257501,7 +258014,7 @@ "longname": "Phaser.Physics.Arcade.Group#collisionMask", "scope": "instance", "kind": "member", - "___id": "T000002R029258", + "___id": "T000002R029248", "___s": true }, { @@ -257529,7 +258042,7 @@ "longname": "Phaser.Physics.Arcade.Group#defaults", "scope": "instance", "kind": "member", - "___id": "T000002R029260", + "___id": "T000002R029250", "___s": true }, { @@ -257559,7 +258072,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Group#type", - "___id": "T000002R029289", + "___id": "T000002R029279", "___s": true }, { @@ -257593,7 +258106,7 @@ "memberof": "Phaser.Physics.Arcade.Group", "longname": "Phaser.Physics.Arcade.Group#createCallbackHandler", "scope": "instance", - "___id": "T000002R029291", + "___id": "T000002R029281", "___s": true }, { @@ -257627,7 +258140,7 @@ "memberof": "Phaser.Physics.Arcade.Group", "longname": "Phaser.Physics.Arcade.Group#removeCallbackHandler", "scope": "instance", - "___id": "T000002R029295", + "___id": "T000002R029285", "___s": true }, { @@ -257703,7 +258216,7 @@ "memberof": "Phaser.Physics.Arcade.Group", "longname": "Phaser.Physics.Arcade.Group#setVelocity", "scope": "instance", - "___id": "T000002R029297", + "___id": "T000002R029287", "___s": true }, { @@ -257766,7 +258279,7 @@ "memberof": "Phaser.Physics.Arcade.Group", "longname": "Phaser.Physics.Arcade.Group#setVelocityX", "scope": "instance", - "___id": "T000002R029302", + "___id": "T000002R029292", "___s": true }, { @@ -257829,7 +258342,7 @@ "memberof": "Phaser.Physics.Arcade.Group", "longname": "Phaser.Physics.Arcade.Group#setVelocityY", "scope": "instance", - "___id": "T000002R029308", + "___id": "T000002R029298", "___s": true }, { @@ -257930,7 +258443,7 @@ "memberof": "Phaser.Physics.Arcade", "longname": "Phaser.Physics.Arcade.SeparateX", "scope": "static", - "___id": "T000002R029463", + "___id": "T000002R029453", "___s": true }, { @@ -258031,7 +258544,7 @@ "memberof": "Phaser.Physics.Arcade", "longname": "Phaser.Physics.Arcade.SeparateY", "scope": "static", - "___id": "T000002R029472", + "___id": "T000002R029462", "___s": true }, { @@ -258093,7 +258606,7 @@ "memberof": "Phaser.Physics.Arcade", "longname": "Phaser.Physics.Arcade.SetCollisionObject", "scope": "static", - "___id": "T000002R029479", + "___id": "T000002R029469", "___s": true }, { @@ -258144,7 +258657,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Arcade.StaticBody", - "___id": "T000002R029499", + "___id": "T000002R029489", "___s": true }, { @@ -258172,7 +258685,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#world", "scope": "instance", "kind": "member", - "___id": "T000002R029518", + "___id": "T000002R029508", "___s": true }, { @@ -258200,7 +258713,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#gameObject", "scope": "instance", "kind": "member", - "___id": "T000002R029520", + "___id": "T000002R029510", "___s": true }, { @@ -258229,7 +258742,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#isBody", "scope": "instance", "kind": "member", - "___id": "T000002R029522", + "___id": "T000002R029512", "___s": true }, { @@ -258257,7 +258770,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#debugShowBody", "scope": "instance", "kind": "member", - "___id": "T000002R029524", + "___id": "T000002R029514", "___s": true }, { @@ -258285,7 +258798,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#debugBodyColor", "scope": "instance", "kind": "member", - "___id": "T000002R029526", + "___id": "T000002R029516", "___s": true }, { @@ -258314,7 +258827,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#enable", "scope": "instance", "kind": "member", - "___id": "T000002R029528", + "___id": "T000002R029518", "___s": true }, { @@ -258343,7 +258856,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#isCircle", "scope": "instance", "kind": "member", - "___id": "T000002R029530", + "___id": "T000002R029520", "___s": true }, { @@ -258372,7 +258885,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#radius", "scope": "instance", "kind": "member", - "___id": "T000002R029532", + "___id": "T000002R029522", "___s": true }, { @@ -258401,7 +258914,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#offset", "scope": "instance", "kind": "member", - "___id": "T000002R029534", + "___id": "T000002R029524", "___s": true }, { @@ -258429,7 +258942,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#position", "scope": "instance", "kind": "member", - "___id": "T000002R029536", + "___id": "T000002R029526", "___s": true }, { @@ -258457,7 +258970,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#width", "scope": "instance", "kind": "member", - "___id": "T000002R029538", + "___id": "T000002R029528", "___s": true }, { @@ -258485,7 +258998,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#height", "scope": "instance", "kind": "member", - "___id": "T000002R029540", + "___id": "T000002R029530", "___s": true }, { @@ -258513,7 +259026,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#halfWidth", "scope": "instance", "kind": "member", - "___id": "T000002R029542", + "___id": "T000002R029532", "___s": true }, { @@ -258541,7 +259054,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#halfHeight", "scope": "instance", "kind": "member", - "___id": "T000002R029544", + "___id": "T000002R029534", "___s": true }, { @@ -258569,7 +259082,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#center", "scope": "instance", "kind": "member", - "___id": "T000002R029546", + "___id": "T000002R029536", "___s": true }, { @@ -258598,7 +259111,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#velocity", "scope": "instance", "kind": "member", - "___id": "T000002R029548", + "___id": "T000002R029538", "___s": true }, { @@ -258628,7 +259141,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#allowGravity", "scope": "instance", "kind": "member", - "___id": "T000002R029550", + "___id": "T000002R029540", "___s": true }, { @@ -258657,7 +259170,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#gravity", "scope": "instance", "kind": "member", - "___id": "T000002R029552", + "___id": "T000002R029542", "___s": true }, { @@ -258686,7 +259199,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#bounce", "scope": "instance", "kind": "member", - "___id": "T000002R029554", + "___id": "T000002R029544", "___s": true }, { @@ -258716,7 +259229,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#onWorldBounds", "scope": "instance", "kind": "member", - "___id": "T000002R029556", + "___id": "T000002R029546", "___s": true }, { @@ -258745,7 +259258,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#onCollide", "scope": "instance", "kind": "member", - "___id": "T000002R029558", + "___id": "T000002R029548", "___s": true }, { @@ -258774,7 +259287,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#onOverlap", "scope": "instance", "kind": "member", - "___id": "T000002R029560", + "___id": "T000002R029550", "___s": true }, { @@ -258803,7 +259316,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#mass", "scope": "instance", "kind": "member", - "___id": "T000002R029562", + "___id": "T000002R029552", "___s": true }, { @@ -258832,7 +259345,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#immovable", "scope": "instance", "kind": "member", - "___id": "T000002R029564", + "___id": "T000002R029554", "___s": true }, { @@ -258864,7 +259377,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#pushable", "scope": "instance", "kind": "member", - "___id": "T000002R029566", + "___id": "T000002R029556", "___s": true }, { @@ -258893,7 +259406,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#customSeparateX", "scope": "instance", "kind": "member", - "___id": "T000002R029568", + "___id": "T000002R029558", "___s": true }, { @@ -258922,7 +259435,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#customSeparateY", "scope": "instance", "kind": "member", - "___id": "T000002R029570", + "___id": "T000002R029560", "___s": true }, { @@ -258951,7 +259464,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#overlapX", "scope": "instance", "kind": "member", - "___id": "T000002R029572", + "___id": "T000002R029562", "___s": true }, { @@ -258980,7 +259493,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#overlapY", "scope": "instance", "kind": "member", - "___id": "T000002R029574", + "___id": "T000002R029564", "___s": true }, { @@ -259009,7 +259522,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#overlapR", "scope": "instance", "kind": "member", - "___id": "T000002R029576", + "___id": "T000002R029566", "___s": true }, { @@ -259038,7 +259551,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#embedded", "scope": "instance", "kind": "member", - "___id": "T000002R029578", + "___id": "T000002R029568", "___s": true }, { @@ -259068,7 +259581,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#collideWorldBounds", "scope": "instance", "kind": "member", - "___id": "T000002R029580", + "___id": "T000002R029570", "___s": true }, { @@ -259096,7 +259609,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#checkCollision", "scope": "instance", "kind": "member", - "___id": "T000002R029582", + "___id": "T000002R029572", "___s": true }, { @@ -259124,7 +259637,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#touching", "scope": "instance", "kind": "member", - "___id": "T000002R029584", + "___id": "T000002R029574", "___s": true }, { @@ -259152,7 +259665,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#wasTouching", "scope": "instance", "kind": "member", - "___id": "T000002R029586", + "___id": "T000002R029576", "___s": true }, { @@ -259180,7 +259693,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#blocked", "scope": "instance", "kind": "member", - "___id": "T000002R029588", + "___id": "T000002R029578", "___s": true }, { @@ -259209,7 +259722,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#physicsType", "scope": "instance", "kind": "member", - "___id": "T000002R029590", + "___id": "T000002R029580", "___s": true }, { @@ -259237,7 +259750,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#collisionCategory", "scope": "instance", "kind": "member", - "___id": "T000002R029592", + "___id": "T000002R029582", "___s": true }, { @@ -259265,7 +259778,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#collisionMask", "scope": "instance", "kind": "member", - "___id": "T000002R029594", + "___id": "T000002R029584", "___s": true }, { @@ -259331,7 +259844,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#setGameObject", "scope": "instance", - "___id": "T000002R029600", + "___id": "T000002R029590", "___s": true }, { @@ -259364,7 +259877,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#updateFromGameObject", "scope": "instance", - "___id": "T000002R029605", + "___id": "T000002R029595", "___s": true }, { @@ -259425,7 +259938,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#setOffset", "scope": "instance", - "___id": "T000002R029612", + "___id": "T000002R029602", "___s": true }, { @@ -259503,7 +260016,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#setSize", "scope": "instance", - "___id": "T000002R029619", + "___id": "T000002R029609", "___s": true }, { @@ -259579,7 +260092,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#setCircle", "scope": "instance", - "___id": "T000002R029637", + "___id": "T000002R029627", "___s": true }, { @@ -259598,7 +260111,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#updateCenter", "scope": "instance", - "___id": "T000002R029648", + "___id": "T000002R029638", "___s": true }, { @@ -259647,7 +260160,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#reset", "scope": "instance", - "___id": "T000002R029650", + "___id": "T000002R029640", "___s": true }, { @@ -259680,7 +260193,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#stop", "scope": "instance", - "___id": "T000002R029657", + "___id": "T000002R029647", "___s": true }, { @@ -259728,7 +260241,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#getBounds", "scope": "instance", - "___id": "T000002R029659", + "___id": "T000002R029649", "___s": true }, { @@ -259789,7 +260302,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#hitTest", "scope": "instance", - "___id": "T000002R029665", + "___id": "T000002R029655", "___s": true }, { @@ -259808,7 +260321,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#postUpdate", "scope": "instance", - "___id": "T000002R029667", + "___id": "T000002R029657", "___s": true }, { @@ -259841,7 +260354,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#deltaAbsX", "scope": "instance", - "___id": "T000002R029669", + "___id": "T000002R029659", "___s": true }, { @@ -259874,7 +260387,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#deltaAbsY", "scope": "instance", - "___id": "T000002R029671", + "___id": "T000002R029661", "___s": true }, { @@ -259907,7 +260420,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#deltaX", "scope": "instance", - "___id": "T000002R029673", + "___id": "T000002R029663", "___s": true }, { @@ -259940,7 +260453,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#deltaY", "scope": "instance", - "___id": "T000002R029675", + "___id": "T000002R029665", "___s": true }, { @@ -259973,7 +260486,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#deltaZ", "scope": "instance", - "___id": "T000002R029677", + "___id": "T000002R029667", "___s": true }, { @@ -259992,7 +260505,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#destroy", "scope": "instance", - "___id": "T000002R029679", + "___id": "T000002R029669", "___s": true }, { @@ -260026,7 +260539,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#drawDebug", "scope": "instance", - "___id": "T000002R029682", + "___id": "T000002R029672", "___s": true }, { @@ -260059,7 +260572,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#willDrawDebug", "scope": "instance", - "___id": "T000002R029687", + "___id": "T000002R029677", "___s": true }, { @@ -260107,7 +260620,7 @@ "memberof": "Phaser.Physics.Arcade.StaticBody", "longname": "Phaser.Physics.Arcade.StaticBody#setMass", "scope": "instance", - "___id": "T000002R029689", + "___id": "T000002R029679", "___s": true }, { @@ -260135,7 +260648,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#x", "scope": "instance", "kind": "member", - "___id": "T000002R029693", + "___id": "T000002R029683", "___s": true }, { @@ -260163,7 +260676,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#y", "scope": "instance", "kind": "member", - "___id": "T000002R029698", + "___id": "T000002R029688", "___s": true }, { @@ -260192,7 +260705,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#left", "scope": "instance", "kind": "member", - "___id": "T000002R029703", + "___id": "T000002R029693", "___s": true }, { @@ -260221,7 +260734,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#right", "scope": "instance", "kind": "member", - "___id": "T000002R029706", + "___id": "T000002R029696", "___s": true }, { @@ -260250,7 +260763,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#top", "scope": "instance", "kind": "member", - "___id": "T000002R029709", + "___id": "T000002R029699", "___s": true }, { @@ -260279,7 +260792,7 @@ "longname": "Phaser.Physics.Arcade.StaticBody#bottom", "scope": "instance", "kind": "member", - "___id": "T000002R029712", + "___id": "T000002R029702", "___s": true }, { @@ -260392,7 +260905,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Arcade.StaticGroup", - "___id": "T000002R029723", + "___id": "T000002R029713", "___s": true }, { @@ -260420,7 +260933,7 @@ "longname": "Phaser.Physics.Arcade.StaticGroup#world", "scope": "instance", "kind": "member", - "___id": "T000002R029748", + "___id": "T000002R029738", "___s": true }, { @@ -260449,7 +260962,7 @@ "longname": "Phaser.Physics.Arcade.StaticGroup#physicsType", "scope": "instance", "kind": "member", - "___id": "T000002R029750", + "___id": "T000002R029740", "___s": true }, { @@ -260477,7 +260990,7 @@ "longname": "Phaser.Physics.Arcade.StaticGroup#collisionCategory", "scope": "instance", "kind": "member", - "___id": "T000002R029752", + "___id": "T000002R029742", "___s": true }, { @@ -260505,7 +261018,7 @@ "longname": "Phaser.Physics.Arcade.StaticGroup#collisionMask", "scope": "instance", "kind": "member", - "___id": "T000002R029754", + "___id": "T000002R029744", "___s": true }, { @@ -260535,7 +261048,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Group#type", - "___id": "T000002R029756", + "___id": "T000002R029746", "___s": true }, { @@ -260572,7 +261085,7 @@ "memberof": "Phaser.Physics.Arcade.StaticGroup", "longname": "Phaser.Physics.Arcade.StaticGroup#createCallbackHandler", "scope": "instance", - "___id": "T000002R029758", + "___id": "T000002R029748", "___s": true }, { @@ -260609,7 +261122,7 @@ "memberof": "Phaser.Physics.Arcade.StaticGroup", "longname": "Phaser.Physics.Arcade.StaticGroup#removeCallbackHandler", "scope": "instance", - "___id": "T000002R029760", + "___id": "T000002R029750", "___s": true }, { @@ -260655,7 +261168,7 @@ "memberof": "Phaser.Physics.Arcade.StaticGroup", "longname": "Phaser.Physics.Arcade.StaticGroup#createMultipleCallbackHandler", "scope": "instance", - "___id": "T000002R029762", + "___id": "T000002R029752", "___s": true }, { @@ -260691,7 +261204,7 @@ "memberof": "Phaser.Physics.Arcade.StaticGroup", "longname": "Phaser.Physics.Arcade.StaticGroup#refresh", "scope": "instance", - "___id": "T000002R029764", + "___id": "T000002R029754", "___s": true }, { @@ -260708,7 +261221,7 @@ "memberof": "Phaser.Physics.Arcade", "longname": "Phaser.Physics.Arcade.Tilemap", "scope": "static", - "___id": "T000002R029769", + "___id": "T000002R029759", "___s": true }, { @@ -260769,7 +261282,7 @@ "memberof": "Phaser.Physics.Arcade.Tilemap", "longname": "Phaser.Physics.Arcade.Tilemap.ProcessTileCallbacks", "scope": "static", - "___id": "T000002R029779", + "___id": "T000002R029769", "___s": true }, { @@ -260816,7 +261329,7 @@ "memberof": "Phaser.Physics.Arcade.Tilemap", "longname": "Phaser.Physics.Arcade.Tilemap.ProcessTileSeparationX", "scope": "static", - "___id": "T000002R029782", + "___id": "T000002R029772", "___s": true }, { @@ -260863,7 +261376,7 @@ "memberof": "Phaser.Physics.Arcade.Tilemap", "longname": "Phaser.Physics.Arcade.Tilemap.ProcessTileSeparationY", "scope": "static", - "___id": "T000002R029792", + "___id": "T000002R029782", "___s": true }, { @@ -260989,7 +261502,7 @@ "memberof": "Phaser.Physics.Arcade.Tilemap", "longname": "Phaser.Physics.Arcade.Tilemap.SeparateTile", "scope": "static", - "___id": "T000002R029805", + "___id": "T000002R029795", "___s": true }, { @@ -261102,7 +261615,7 @@ "memberof": "Phaser.Physics.Arcade.Tilemap", "longname": "Phaser.Physics.Arcade.Tilemap.TileCheckX", "scope": "static", - "___id": "T000002R029829", + "___id": "T000002R029819", "___s": true }, { @@ -261215,7 +261728,7 @@ "memberof": "Phaser.Physics.Arcade.Tilemap", "longname": "Phaser.Physics.Arcade.Tilemap.TileCheckY", "scope": "static", - "___id": "T000002R029847", + "___id": "T000002R029837", "___s": true }, { @@ -261321,7 +261834,7 @@ "memberof": "Phaser.Physics.Arcade.Tilemap", "longname": "Phaser.Physics.Arcade.Tilemap.TileIntersectsBody", "scope": "static", - "___id": "T000002R029864", + "___id": "T000002R029854", "___s": true }, { @@ -261402,7 +261915,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.ArcadeBodyBounds", "scope": "static", - "___id": "T000002R029867", + "___id": "T000002R029857", "___s": true }, { @@ -261496,7 +262009,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.ArcadeBodyCollision", "scope": "static", - "___id": "T000002R029868", + "___id": "T000002R029858", "___s": true }, { @@ -261549,11 +262062,11 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.ArcadeCollider", "scope": "static", - "___id": "T000002R029869", + "___id": "T000002R029859", "___s": true }, { - "comment": "/**\r\n * An Arcade Physics Collider Type.\r\n *\r\n * @typedef {(Phaser.GameObjects.GameObject|Phaser.GameObjects.Group|Phaser.Physics.Arcade.Sprite|Phaser.Physics.Arcade.Image|Phaser.Physics.Arcade.StaticGroup|Phaser.Physics.Arcade.Group|Phaser.Tilemaps.TilemapLayer|Phaser.GameObjects.GameObject[]|Phaser.Physics.Arcade.Sprite[]|Phaser.Physics.Arcade.Image[]|Phaser.Physics.Arcade.StaticGroup[]|Phaser.Physics.Arcade.Group[]|Phaser.Tilemaps.TilemapLayer[])} Phaser.Types.Physics.Arcade.ArcadeColliderType\r\n * @since 3.0.0\r\n */", + "comment": "/**\r\n * An Arcade Physics Collider Type.\r\n *\r\n * @typedef {(Phaser.Physics.Arcade.Body|Phaser.GameObjects.GameObject|Phaser.GameObjects.Group|Phaser.Physics.Arcade.Sprite|Phaser.Physics.Arcade.Image|Phaser.Physics.Arcade.StaticGroup|Phaser.Physics.Arcade.Group|Phaser.Tilemaps.TilemapLayer|Phaser.Physics.Arcade.Body[]|Phaser.GameObjects.GameObject[]|Phaser.Physics.Arcade.Sprite[]|Phaser.Physics.Arcade.Image[]|Phaser.Physics.Arcade.StaticGroup[]|Phaser.Physics.Arcade.Group[]|Phaser.Tilemaps.TilemapLayer[])} Phaser.Types.Physics.Arcade.ArcadeColliderType\r\n * @since 3.0.0\r\n */", "meta": { "filename": "ArcadeColliderType.js", "lineno": 1, @@ -261566,6 +262079,7 @@ "name": "ArcadeColliderType", "type": { "names": [ + "Phaser.Physics.Arcade.Body", "Phaser.GameObjects.GameObject", "Phaser.GameObjects.Group", "Phaser.Physics.Arcade.Sprite", @@ -261573,6 +262087,7 @@ "Phaser.Physics.Arcade.StaticGroup", "Phaser.Physics.Arcade.Group", "Phaser.Tilemaps.TilemapLayer", + "Array.", "Array.", "Array.", "Array.", @@ -261583,6 +262098,10 @@ "parsedType": { "type": "TypeUnion", "elements": [ + { + "type": "NameExpression", + "name": "Phaser.Physics.Arcade.Body" + }, { "type": "NameExpression", "name": "Phaser.GameObjects.GameObject" @@ -261611,6 +262130,19 @@ "type": "NameExpression", "name": "Phaser.Tilemaps.TilemapLayer" }, + { + "type": "TypeApplication", + "expression": { + "type": "NameExpression", + "name": "Array" + }, + "applications": [ + { + "name": "Phaser.Physics.Arcade.Body", + "type": "NameExpression" + } + ] + }, { "type": "TypeApplication", "expression": { @@ -261696,11 +262228,11 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.ArcadeColliderType", "scope": "static", - "___id": "T000002R029870", + "___id": "T000002R029860", "___s": true }, { - "comment": "/**\r\n * @callback Phaser.Types.Physics.Arcade.ArcadePhysicsCallback\r\n *\r\n * A callback receiving two Game Objects.\r\n *\r\n * When colliding a single sprite with a Group or TilemapLayer, `object1` is always the sprite.\r\n *\r\n * For all other cases, `object1` and `object2` match the same arguments in `collide()` or `overlap()`.\r\n *\r\n * @param {(Phaser.Types.Physics.Arcade.GameObjectWithBody|Phaser.Tilemaps.Tile)} object1 - The first Game Object.\r\n * @param {(Phaser.Types.Physics.Arcade.GameObjectWithBody|Phaser.Tilemaps.Tile)} object2 - The second Game Object.\r\n */", + "comment": "/**\r\n * @callback Phaser.Types.Physics.Arcade.ArcadePhysicsCallback\r\n *\r\n * A callback receiving two Game Objects.\r\n *\r\n * When colliding a single sprite with a Group or TilemapLayer, `object1` is always the sprite.\r\n *\r\n * For all other cases, `object1` and `object2` match the same arguments in `collide()` or `overlap()`.\r\n *\r\n * Note you can receive back only a body if you passed in a body directly.\r\n * \r\n * You should only do this if the body intentionally has no associated game object (sprite, .etc).\r\n * \r\n * @param {(Phaser.Types.Physics.Arcade.GameObjectWithBody|Phaser.Physics.Arcade.Body|Phaser.Tilemaps.Tile)} object1 - The first Game Object.\r\n * @param {(Phaser.Types.Physics.Arcade.GameObjectWithBody|Phaser.Physics.Arcade.Body|Phaser.Tilemaps.Tile)} object2 - The second Game Object.\r\n */", "meta": { "filename": "ArcadePhysicsCallback.js", "lineno": 1, @@ -261720,6 +262252,7 @@ "type": { "names": [ "Phaser.Types.Physics.Arcade.GameObjectWithBody", + "Phaser.Physics.Arcade.Body", "Phaser.Tilemaps.Tile" ], "parsedType": { @@ -261729,6 +262262,10 @@ "type": "NameExpression", "name": "Phaser.Types.Physics.Arcade.GameObjectWithBody" }, + { + "type": "NameExpression", + "name": "Phaser.Physics.Arcade.Body" + }, { "type": "NameExpression", "name": "Phaser.Tilemaps.Tile" @@ -261743,6 +262280,7 @@ "type": { "names": [ "Phaser.Types.Physics.Arcade.GameObjectWithBody", + "Phaser.Physics.Arcade.Body", "Phaser.Tilemaps.Tile" ], "parsedType": { @@ -261752,6 +262290,10 @@ "type": "NameExpression", "name": "Phaser.Types.Physics.Arcade.GameObjectWithBody" }, + { + "type": "NameExpression", + "name": "Phaser.Physics.Arcade.Body" + }, { "type": "NameExpression", "name": "Phaser.Tilemaps.Tile" @@ -261766,7 +262308,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.ArcadePhysicsCallback", "scope": "static", - "___id": "T000002R029871", + "___id": "T000002R029861", "___s": true }, { @@ -262138,7 +262680,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.ArcadeWorldConfig", "scope": "static", - "___id": "T000002R029872", + "___id": "T000002R029862", "___s": true }, { @@ -262245,7 +262787,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.ArcadeWorldDefaults", "scope": "static", - "___id": "T000002R029873", + "___id": "T000002R029863", "___s": true }, { @@ -262326,7 +262868,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.ArcadeWorldTreeMinMax", "scope": "static", - "___id": "T000002R029874", + "___id": "T000002R029864", "___s": true }, { @@ -262407,7 +262949,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.CheckCollisionObject", "scope": "static", - "___id": "T000002R029875", + "___id": "T000002R029865", "___s": true }, { @@ -262460,7 +263002,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.GameObjectWithBody", "scope": "static", - "___id": "T000002R029876", + "___id": "T000002R029866", "___s": true }, { @@ -262503,7 +263045,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.GameObjectWithDynamicBody", "scope": "static", - "___id": "T000002R029877", + "___id": "T000002R029867", "___s": true }, { @@ -262546,7 +263088,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.GameObjectWithStaticBody", "scope": "static", - "___id": "T000002R029878", + "___id": "T000002R029868", "___s": true }, { @@ -262589,7 +263131,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.ImageWithDynamicBody", "scope": "static", - "___id": "T000002R029879", + "___id": "T000002R029869", "___s": true }, { @@ -262632,7 +263174,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.ImageWithStaticBody", "scope": "static", - "___id": "T000002R029880", + "___id": "T000002R029870", "___s": true }, { @@ -262649,7 +263191,7 @@ "memberof": "Phaser.Types.Physics", "longname": "Phaser.Types.Physics.Arcade", "scope": "static", - "___id": "T000002R029881", + "___id": "T000002R029871", "___s": true }, { @@ -263086,7 +263628,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.PhysicsGroupConfig", "scope": "static", - "___id": "T000002R029882", + "___id": "T000002R029872", "___s": true }, { @@ -263440,7 +263982,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.PhysicsGroupDefaults", "scope": "static", - "___id": "T000002R029883", + "___id": "T000002R029873", "___s": true }, { @@ -263483,7 +264025,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.SpriteWithDynamicBody", "scope": "static", - "___id": "T000002R029884", + "___id": "T000002R029874", "___s": true }, { @@ -263526,7 +264068,7 @@ "memberof": "Phaser.Types.Physics.Arcade", "longname": "Phaser.Types.Physics.Arcade.SpriteWithStaticBody", "scope": "static", - "___id": "T000002R029885", + "___id": "T000002R029875", "___s": true }, { @@ -263576,7 +264118,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Arcade.World", - "___id": "T000002R029917", + "___id": "T000002R029907", "___s": true }, { @@ -263604,7 +264146,7 @@ "longname": "Phaser.Physics.Arcade.World#scene", "scope": "instance", "kind": "member", - "___id": "T000002R029921", + "___id": "T000002R029911", "___s": true }, { @@ -263641,7 +264183,7 @@ "longname": "Phaser.Physics.Arcade.World#bodies", "scope": "instance", "kind": "member", - "___id": "T000002R029923", + "___id": "T000002R029913", "___s": true }, { @@ -263678,7 +264220,7 @@ "longname": "Phaser.Physics.Arcade.World#staticBodies", "scope": "instance", "kind": "member", - "___id": "T000002R029925", + "___id": "T000002R029915", "___s": true }, { @@ -263724,7 +264266,7 @@ "longname": "Phaser.Physics.Arcade.World#pendingDestroy", "scope": "instance", "kind": "member", - "___id": "T000002R029927", + "___id": "T000002R029917", "___s": true }, { @@ -263761,7 +264303,7 @@ "longname": "Phaser.Physics.Arcade.World#colliders", "scope": "instance", "kind": "member", - "___id": "T000002R029929", + "___id": "T000002R029919", "___s": true }, { @@ -263789,7 +264331,7 @@ "longname": "Phaser.Physics.Arcade.World#gravity", "scope": "instance", "kind": "member", - "___id": "T000002R029931", + "___id": "T000002R029921", "___s": true }, { @@ -263817,7 +264359,7 @@ "longname": "Phaser.Physics.Arcade.World#bounds", "scope": "instance", "kind": "member", - "___id": "T000002R029933", + "___id": "T000002R029923", "___s": true }, { @@ -263845,7 +264387,7 @@ "longname": "Phaser.Physics.Arcade.World#checkCollision", "scope": "instance", "kind": "member", - "___id": "T000002R029935", + "___id": "T000002R029925", "___s": true }, { @@ -263875,7 +264417,7 @@ "longname": "Phaser.Physics.Arcade.World#fps", "scope": "instance", "kind": "member", - "___id": "T000002R029941", + "___id": "T000002R029931", "___s": true }, { @@ -263904,7 +264446,7 @@ "longname": "Phaser.Physics.Arcade.World#fixedStep", "scope": "instance", "kind": "member", - "___id": "T000002R029943", + "___id": "T000002R029933", "___s": true }, { @@ -263933,7 +264475,7 @@ "longname": "Phaser.Physics.Arcade.World#stepsLastFrame", "scope": "instance", "kind": "member", - "___id": "T000002R029951", + "___id": "T000002R029941", "___s": true }, { @@ -263962,7 +264504,7 @@ "longname": "Phaser.Physics.Arcade.World#timeScale", "scope": "instance", "kind": "member", - "___id": "T000002R029953", + "___id": "T000002R029943", "___s": true }, { @@ -263991,7 +264533,7 @@ "longname": "Phaser.Physics.Arcade.World#OVERLAP_BIAS", "scope": "instance", "kind": "member", - "___id": "T000002R029955", + "___id": "T000002R029945", "___s": true }, { @@ -264020,7 +264562,7 @@ "longname": "Phaser.Physics.Arcade.World#TILE_BIAS", "scope": "instance", "kind": "member", - "___id": "T000002R029957", + "___id": "T000002R029947", "___s": true }, { @@ -264049,7 +264591,7 @@ "longname": "Phaser.Physics.Arcade.World#forceX", "scope": "instance", "kind": "member", - "___id": "T000002R029959", + "___id": "T000002R029949", "___s": true }, { @@ -264078,7 +264620,7 @@ "longname": "Phaser.Physics.Arcade.World#isPaused", "scope": "instance", "kind": "member", - "___id": "T000002R029961", + "___id": "T000002R029951", "___s": true }, { @@ -264107,7 +264649,7 @@ "longname": "Phaser.Physics.Arcade.World#drawDebug", "scope": "instance", "kind": "member", - "___id": "T000002R029965", + "___id": "T000002R029955", "___s": true }, { @@ -264135,7 +264677,7 @@ "longname": "Phaser.Physics.Arcade.World#debugGraphic", "scope": "instance", "kind": "member", - "___id": "T000002R029967", + "___id": "T000002R029957", "___s": true }, { @@ -264163,7 +264705,7 @@ "longname": "Phaser.Physics.Arcade.World#defaults", "scope": "instance", "kind": "member", - "___id": "T000002R029969", + "___id": "T000002R029959", "___s": true }, { @@ -264192,7 +264734,7 @@ "longname": "Phaser.Physics.Arcade.World#maxEntries", "scope": "instance", "kind": "member", - "___id": "T000002R029977", + "___id": "T000002R029967", "___s": true }, { @@ -264221,7 +264763,7 @@ "longname": "Phaser.Physics.Arcade.World#useTree", "scope": "instance", "kind": "member", - "___id": "T000002R029979", + "___id": "T000002R029969", "___s": true }, { @@ -264249,7 +264791,7 @@ "longname": "Phaser.Physics.Arcade.World#tree", "scope": "instance", "kind": "member", - "___id": "T000002R029981", + "___id": "T000002R029971", "___s": true }, { @@ -264277,7 +264819,7 @@ "longname": "Phaser.Physics.Arcade.World#staticTree", "scope": "instance", "kind": "member", - "___id": "T000002R029983", + "___id": "T000002R029973", "___s": true }, { @@ -264305,7 +264847,7 @@ "longname": "Phaser.Physics.Arcade.World#treeMinMax", "scope": "instance", "kind": "member", - "___id": "T000002R029985", + "___id": "T000002R029975", "___s": true }, { @@ -264333,7 +264875,7 @@ "longname": "Phaser.Physics.Arcade.World#tileFilterOptions", "scope": "instance", "kind": "member", - "___id": "T000002R029995", + "___id": "T000002R029985", "___s": true }, { @@ -264419,7 +264961,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#enable", "scope": "instance", - "___id": "T000002R030000", + "___id": "T000002R029990", "___s": true }, { @@ -264481,7 +265023,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#enableBody", "scope": "instance", - "___id": "T000002R030009", + "___id": "T000002R029999", "___s": true }, { @@ -264549,7 +265091,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#add", "scope": "instance", - "___id": "T000002R030014", + "___id": "T000002R030004", "___s": true }, { @@ -264621,7 +265163,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#disable", "scope": "instance", - "___id": "T000002R030017", + "___id": "T000002R030007", "___s": true }, { @@ -264665,7 +265207,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#disableBody", "scope": "instance", - "___id": "T000002R030025", + "___id": "T000002R030015", "___s": true }, { @@ -264709,7 +265251,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#remove", "scope": "instance", - "___id": "T000002R030028", + "___id": "T000002R030018", "___s": true }, { @@ -264742,7 +265284,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#createDebugGraphic", "scope": "instance", - "___id": "T000002R030030", + "___id": "T000002R030020", "___s": true }, { @@ -264885,7 +265427,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#setBounds", "scope": "instance", - "___id": "T000002R030037", + "___id": "T000002R030027", "___s": true }, { @@ -264980,7 +265522,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#setBoundsCollision", "scope": "instance", - "___id": "T000002R030039", + "___id": "T000002R030029", "___s": true }, { @@ -265016,7 +265558,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#pause", "scope": "instance", - "___id": "T000002R030049", + "___id": "T000002R030039", "___s": true }, { @@ -265052,7 +265594,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#resume", "scope": "instance", - "___id": "T000002R030052", + "___id": "T000002R030042", "___s": true }, { @@ -265157,7 +265699,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#addCollider", "scope": "instance", - "___id": "T000002R030055", + "___id": "T000002R030045", "___s": true }, { @@ -265259,7 +265801,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#addOverlap", "scope": "instance", - "___id": "T000002R030061", + "___id": "T000002R030051", "___s": true }, { @@ -265307,7 +265849,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#removeCollider", "scope": "instance", - "___id": "T000002R030067", + "___id": "T000002R030057", "___s": true }, { @@ -265356,7 +265898,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#setFPS", "scope": "instance", - "___id": "T000002R030069", + "___id": "T000002R030059", "___s": true }, { @@ -265406,7 +265948,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#update", "scope": "instance", - "___id": "T000002R030074", + "___id": "T000002R030064", "___s": true }, { @@ -265443,7 +265985,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#step", "scope": "instance", - "___id": "T000002R030094", + "___id": "T000002R030084", "___s": true }, { @@ -265465,7 +266007,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#singleStep", "scope": "instance", - "___id": "T000002R030105", + "___id": "T000002R030095", "___s": true }, { @@ -265484,7 +266026,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#postUpdate", "scope": "instance", - "___id": "T000002R030107", + "___id": "T000002R030097", "___s": true }, { @@ -265531,7 +266073,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#updateMotion", "scope": "instance", - "___id": "T000002R030134", + "___id": "T000002R030124", "___s": true }, { @@ -265578,7 +266120,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#computeAngularVelocity", "scope": "instance", - "___id": "T000002R030136", + "___id": "T000002R030126", "___s": true }, { @@ -265625,7 +266167,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#computeVelocity", "scope": "instance", - "___id": "T000002R030151", + "___id": "T000002R030141", "___s": true }, { @@ -265731,7 +266273,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#separate", "scope": "instance", - "___id": "T000002R030189", + "___id": "T000002R030179", "___s": true }, { @@ -265810,7 +266352,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#separateCircle", "scope": "instance", - "___id": "T000002R030211", + "___id": "T000002R030201", "___s": true }, { @@ -265871,7 +266413,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#intersects", "scope": "instance", - "___id": "T000002R030282", + "___id": "T000002R030272", "___s": true }, { @@ -265932,7 +266474,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#circleBodyIntersects", "scope": "instance", - "___id": "T000002R030284", + "___id": "T000002R030274", "___s": true }, { @@ -266038,7 +266580,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#overlap", "scope": "instance", - "___id": "T000002R030290", + "___id": "T000002R030280", "___s": true }, { @@ -266142,7 +266684,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#collide", "scope": "instance", - "___id": "T000002R030295", + "___id": "T000002R030285", "___s": true }, { @@ -266203,7 +266745,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#canCollide", "scope": "instance", - "___id": "T000002R030318", + "___id": "T000002R030308", "___s": true }, { @@ -266318,7 +266860,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#collideTiles", "scope": "instance", - "___id": "T000002R030350", + "___id": "T000002R030340", "___s": true }, { @@ -266433,7 +266975,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#overlapTiles", "scope": "instance", - "___id": "T000002R030352", + "___id": "T000002R030342", "___s": true }, { @@ -266554,7 +267096,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#collideSpriteVsTilemapLayer", "scope": "instance", - "___id": "T000002R030354", + "___id": "T000002R030344", "___s": true }, { @@ -266603,7 +267145,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#wrap", "scope": "instance", - "___id": "T000002R030388", + "___id": "T000002R030378", "___s": true }, { @@ -266660,7 +267202,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#wrapArray", "scope": "instance", - "___id": "T000002R030390", + "___id": "T000002R030380", "___s": true }, { @@ -266708,7 +267250,7 @@ "memberof": "Phaser.Physics.Arcade.World", "longname": "Phaser.Physics.Arcade.World#wrapObject", "scope": "instance", - "___id": "T000002R030393", + "___id": "T000002R030383", "___s": true }, { @@ -266728,7 +267270,7 @@ "longname": "Phaser.Physics.Arcade.World#shutdown", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#shutdown", - "___id": "T000002R030398", + "___id": "T000002R030388", "___s": true }, { @@ -266748,7 +267290,7 @@ "longname": "Phaser.Physics.Arcade.World#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R030400", + "___id": "T000002R030390", "___s": true }, { @@ -266765,7 +267307,7 @@ "memberof": "Phaser", "longname": "Phaser.Physics", "scope": "static", - "___id": "T000002R030405", + "___id": "T000002R030395", "___s": true }, { @@ -266782,7 +267324,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Physics", "scope": "static", - "___id": "T000002R030406", + "___id": "T000002R030396", "___s": true }, { @@ -266801,7 +267343,7 @@ "since": "3.22.0", "scope": "static", "longname": "Phaser.Physics.Matter.BodyBounds", - "___id": "T000002R030412", + "___id": "T000002R030402", "___s": true }, { @@ -266829,7 +267371,7 @@ "longname": "Phaser.Physics.Matter.BodyBounds#boundsCenter", "scope": "instance", "kind": "member", - "___id": "T000002R030415", + "___id": "T000002R030405", "___s": true }, { @@ -266857,7 +267399,7 @@ "longname": "Phaser.Physics.Matter.BodyBounds#centerDiff", "scope": "instance", "kind": "member", - "___id": "T000002R030417", + "___id": "T000002R030407", "___s": true }, { @@ -266905,7 +267447,7 @@ "memberof": "Phaser.Physics.Matter.BodyBounds", "longname": "Phaser.Physics.Matter.BodyBounds#parseBody", "scope": "instance", - "___id": "T000002R030419", + "___id": "T000002R030409", "___s": true }, { @@ -266994,7 +267536,7 @@ "memberof": "Phaser.Physics.Matter.BodyBounds", "longname": "Phaser.Physics.Matter.BodyBounds#getTopLeft", "scope": "instance", - "___id": "T000002R030428", + "___id": "T000002R030418", "___s": true }, { @@ -267083,7 +267625,7 @@ "memberof": "Phaser.Physics.Matter.BodyBounds", "longname": "Phaser.Physics.Matter.BodyBounds#getTopCenter", "scope": "instance", - "___id": "T000002R030434", + "___id": "T000002R030424", "___s": true }, { @@ -267172,7 +267714,7 @@ "memberof": "Phaser.Physics.Matter.BodyBounds", "longname": "Phaser.Physics.Matter.BodyBounds#getTopRight", "scope": "instance", - "___id": "T000002R030440", + "___id": "T000002R030430", "___s": true }, { @@ -267261,7 +267803,7 @@ "memberof": "Phaser.Physics.Matter.BodyBounds", "longname": "Phaser.Physics.Matter.BodyBounds#getLeftCenter", "scope": "instance", - "___id": "T000002R030446", + "___id": "T000002R030436", "___s": true }, { @@ -267350,7 +267892,7 @@ "memberof": "Phaser.Physics.Matter.BodyBounds", "longname": "Phaser.Physics.Matter.BodyBounds#getCenter", "scope": "instance", - "___id": "T000002R030452", + "___id": "T000002R030442", "___s": true }, { @@ -267439,7 +267981,7 @@ "memberof": "Phaser.Physics.Matter.BodyBounds", "longname": "Phaser.Physics.Matter.BodyBounds#getRightCenter", "scope": "instance", - "___id": "T000002R030457", + "___id": "T000002R030447", "___s": true }, { @@ -267528,7 +268070,7 @@ "memberof": "Phaser.Physics.Matter.BodyBounds", "longname": "Phaser.Physics.Matter.BodyBounds#getBottomLeft", "scope": "instance", - "___id": "T000002R030463", + "___id": "T000002R030453", "___s": true }, { @@ -267617,7 +268159,7 @@ "memberof": "Phaser.Physics.Matter.BodyBounds", "longname": "Phaser.Physics.Matter.BodyBounds#getBottomCenter", "scope": "instance", - "___id": "T000002R030469", + "___id": "T000002R030459", "___s": true }, { @@ -267706,7 +268248,7 @@ "memberof": "Phaser.Physics.Matter.BodyBounds", "longname": "Phaser.Physics.Matter.BodyBounds#getBottomRight", "scope": "instance", - "___id": "T000002R030475", + "___id": "T000002R030465", "___s": true }, { @@ -267725,7 +268267,7 @@ "memberof": "Phaser.Physics.Matter.Components", "longname": "Phaser.Physics.Matter.Components.Bounce", "scope": "static", - "___id": "T000002R030482", + "___id": "T000002R030472", "___s": true }, { @@ -267774,7 +268316,7 @@ "memberof": "Phaser.Physics.Matter.Components.Bounce", "longname": "Phaser.Physics.Matter.Components.Bounce#setBounce", "scope": "instance", - "___id": "T000002R030484", + "___id": "T000002R030474", "___s": true }, { @@ -267793,7 +268335,7 @@ "memberof": "Phaser.Physics.Matter.Components", "longname": "Phaser.Physics.Matter.Components.Collision", "scope": "static", - "___id": "T000002R030488", + "___id": "T000002R030478", "___s": true }, { @@ -267842,7 +268384,7 @@ "memberof": "Phaser.Physics.Matter.Components.Collision", "longname": "Phaser.Physics.Matter.Components.Collision#setCollisionCategory", "scope": "instance", - "___id": "T000002R030490", + "___id": "T000002R030480", "___s": true }, { @@ -267891,7 +268433,7 @@ "memberof": "Phaser.Physics.Matter.Components.Collision", "longname": "Phaser.Physics.Matter.Components.Collision#setCollisionGroup", "scope": "instance", - "___id": "T000002R030493", + "___id": "T000002R030483", "___s": true }, { @@ -267959,7 +268501,7 @@ "memberof": "Phaser.Physics.Matter.Components.Collision", "longname": "Phaser.Physics.Matter.Components.Collision#setCollidesWith", "scope": "instance", - "___id": "T000002R030496", + "___id": "T000002R030486", "___s": true }, { @@ -268008,7 +268550,7 @@ "memberof": "Phaser.Physics.Matter.Components.Collision", "longname": "Phaser.Physics.Matter.Components.Collision#setOnCollide", "scope": "instance", - "___id": "T000002R030503", + "___id": "T000002R030493", "___s": true }, { @@ -268057,7 +268599,7 @@ "memberof": "Phaser.Physics.Matter.Components.Collision", "longname": "Phaser.Physics.Matter.Components.Collision#setOnCollideEnd", "scope": "instance", - "___id": "T000002R030506", + "___id": "T000002R030496", "___s": true }, { @@ -268106,7 +268648,7 @@ "memberof": "Phaser.Physics.Matter.Components.Collision", "longname": "Phaser.Physics.Matter.Components.Collision#setOnCollideActive", "scope": "instance", - "___id": "T000002R030509", + "___id": "T000002R030499", "___s": true }, { @@ -268187,7 +268729,7 @@ "memberof": "Phaser.Physics.Matter.Components.Collision", "longname": "Phaser.Physics.Matter.Components.Collision#setOnCollideWith", "scope": "instance", - "___id": "T000002R030512", + "___id": "T000002R030502", "___s": true }, { @@ -268206,7 +268748,7 @@ "memberof": "Phaser.Physics.Matter.Components", "longname": "Phaser.Physics.Matter.Components.Force", "scope": "static", - "___id": "T000002R030519", + "___id": "T000002R030509", "___s": true }, { @@ -268255,7 +268797,7 @@ "memberof": "Phaser.Physics.Matter.Components.Force", "longname": "Phaser.Physics.Matter.Components.Force#applyForce", "scope": "instance", - "___id": "T000002R030521", + "___id": "T000002R030511", "___s": true }, { @@ -268317,7 +268859,7 @@ "memberof": "Phaser.Physics.Matter.Components.Force", "longname": "Phaser.Physics.Matter.Components.Force#applyForceFrom", "scope": "instance", - "___id": "T000002R030523", + "___id": "T000002R030513", "___s": true }, { @@ -268366,7 +268908,7 @@ "memberof": "Phaser.Physics.Matter.Components.Force", "longname": "Phaser.Physics.Matter.Components.Force#thrust", "scope": "instance", - "___id": "T000002R030525", + "___id": "T000002R030515", "___s": true }, { @@ -268415,7 +268957,7 @@ "memberof": "Phaser.Physics.Matter.Components.Force", "longname": "Phaser.Physics.Matter.Components.Force#thrustLeft", "scope": "instance", - "___id": "T000002R030530", + "___id": "T000002R030520", "___s": true }, { @@ -268464,7 +269006,7 @@ "memberof": "Phaser.Physics.Matter.Components.Force", "longname": "Phaser.Physics.Matter.Components.Force#thrustRight", "scope": "instance", - "___id": "T000002R030535", + "___id": "T000002R030525", "___s": true }, { @@ -268513,7 +269055,7 @@ "memberof": "Phaser.Physics.Matter.Components.Force", "longname": "Phaser.Physics.Matter.Components.Force#thrustBack", "scope": "instance", - "___id": "T000002R030540", + "___id": "T000002R030530", "___s": true }, { @@ -268532,7 +269074,7 @@ "memberof": "Phaser.Physics.Matter.Components", "longname": "Phaser.Physics.Matter.Components.Friction", "scope": "static", - "___id": "T000002R030546", + "___id": "T000002R030536", "___s": true }, { @@ -268609,7 +269151,7 @@ "memberof": "Phaser.Physics.Matter.Components.Friction", "longname": "Phaser.Physics.Matter.Components.Friction#setFriction", "scope": "instance", - "___id": "T000002R030548", + "___id": "T000002R030538", "___s": true }, { @@ -268658,7 +269200,7 @@ "memberof": "Phaser.Physics.Matter.Components.Friction", "longname": "Phaser.Physics.Matter.Components.Friction#setFrictionAir", "scope": "instance", - "___id": "T000002R030553", + "___id": "T000002R030543", "___s": true }, { @@ -268707,7 +269249,7 @@ "memberof": "Phaser.Physics.Matter.Components.Friction", "longname": "Phaser.Physics.Matter.Components.Friction#setFrictionStatic", "scope": "instance", - "___id": "T000002R030556", + "___id": "T000002R030546", "___s": true }, { @@ -268726,7 +269268,7 @@ "memberof": "Phaser.Physics.Matter.Components", "longname": "Phaser.Physics.Matter.Components.Gravity", "scope": "static", - "___id": "T000002R030560", + "___id": "T000002R030550", "___s": true }, { @@ -268775,7 +269317,7 @@ "memberof": "Phaser.Physics.Matter.Components.Gravity", "longname": "Phaser.Physics.Matter.Components.Gravity#setIgnoreGravity", "scope": "instance", - "___id": "T000002R030562", + "___id": "T000002R030552", "___s": true }, { @@ -268792,7 +269334,7 @@ "memberof": "Phaser.Physics.Matter", "longname": "Phaser.Physics.Matter.Components", "scope": "static", - "___id": "T000002R030566", + "___id": "T000002R030556", "___s": true }, { @@ -268811,7 +269353,7 @@ "memberof": "Phaser.Physics.Matter.Components", "longname": "Phaser.Physics.Matter.Components.Mass", "scope": "static", - "___id": "T000002R030582", + "___id": "T000002R030572", "___s": true }, { @@ -268860,7 +269402,7 @@ "memberof": "Phaser.Physics.Matter.Components.Mass", "longname": "Phaser.Physics.Matter.Components.Mass#setMass", "scope": "instance", - "___id": "T000002R030584", + "___id": "T000002R030574", "___s": true }, { @@ -268909,7 +269451,7 @@ "memberof": "Phaser.Physics.Matter.Components.Mass", "longname": "Phaser.Physics.Matter.Components.Mass#setDensity", "scope": "instance", - "___id": "T000002R030586", + "___id": "T000002R030576", "___s": true }, { @@ -268952,7 +269494,7 @@ "longname": "Phaser.Physics.Matter.Components.Mass#centerOfMass", "scope": "instance", "kind": "member", - "___id": "T000002R030588", + "___id": "T000002R030578", "___s": true }, { @@ -268971,7 +269513,7 @@ "memberof": "Phaser.Physics.Matter.Components", "longname": "Phaser.Physics.Matter.Components.Sensor", "scope": "static", - "___id": "T000002R030592", + "___id": "T000002R030582", "___s": true }, { @@ -269020,7 +269562,7 @@ "memberof": "Phaser.Physics.Matter.Components.Sensor", "longname": "Phaser.Physics.Matter.Components.Sensor#setSensor", "scope": "instance", - "___id": "T000002R030594", + "___id": "T000002R030584", "___s": true }, { @@ -269053,7 +269595,7 @@ "memberof": "Phaser.Physics.Matter.Components.Sensor", "longname": "Phaser.Physics.Matter.Components.Sensor#isSensor", "scope": "instance", - "___id": "T000002R030597", + "___id": "T000002R030587", "___s": true }, { @@ -269072,7 +269614,7 @@ "memberof": "Phaser.Physics.Matter.Components", "longname": "Phaser.Physics.Matter.Components.SetBody", "scope": "static", - "___id": "T000002R030607", + "___id": "T000002R030597", "___s": true }, { @@ -269148,7 +269690,7 @@ "memberof": "Phaser.Physics.Matter.Components.SetBody", "longname": "Phaser.Physics.Matter.Components.SetBody#setRectangle", "scope": "instance", - "___id": "T000002R030609", + "___id": "T000002R030599", "___s": true }, { @@ -269211,7 +269753,7 @@ "memberof": "Phaser.Physics.Matter.Components.SetBody", "longname": "Phaser.Physics.Matter.Components.SetBody#setCircle", "scope": "instance", - "___id": "T000002R030614", + "___id": "T000002R030604", "___s": true }, { @@ -269287,7 +269829,7 @@ "memberof": "Phaser.Physics.Matter.Components.SetBody", "longname": "Phaser.Physics.Matter.Components.SetBody#setPolygon", "scope": "instance", - "___id": "T000002R030618", + "___id": "T000002R030608", "___s": true }, { @@ -269376,7 +269918,7 @@ "memberof": "Phaser.Physics.Matter.Components.SetBody", "longname": "Phaser.Physics.Matter.Components.SetBody#setTrapezoid", "scope": "instance", - "___id": "T000002R030623", + "___id": "T000002R030613", "___s": true }, { @@ -269440,7 +269982,7 @@ "memberof": "Phaser.Physics.Matter.Components.SetBody", "longname": "Phaser.Physics.Matter.Components.SetBody#setExistingBody", "scope": "instance", - "___id": "T000002R030629", + "___id": "T000002R030619", "___s": true }, { @@ -269513,7 +270055,7 @@ "memberof": "Phaser.Physics.Matter.Components.SetBody", "longname": "Phaser.Physics.Matter.Components.SetBody#setBody", "scope": "instance", - "___id": "T000002R030644", + "___id": "T000002R030634", "___s": true }, { @@ -269532,7 +270074,7 @@ "memberof": "Phaser.Physics.Matter.Components", "longname": "Phaser.Physics.Matter.Components.Sleep", "scope": "static", - "___id": "T000002R030676", + "___id": "T000002R030666", "___s": true }, { @@ -269566,7 +270108,7 @@ "memberof": "Phaser.Physics.Matter.Components.Sleep", "longname": "Phaser.Physics.Matter.Components.Sleep#setToSleep", "scope": "instance", - "___id": "T000002R030678", + "___id": "T000002R030668", "___s": true }, { @@ -269600,7 +270142,7 @@ "memberof": "Phaser.Physics.Matter.Components.Sleep", "longname": "Phaser.Physics.Matter.Components.Sleep#setAwake", "scope": "instance", - "___id": "T000002R030680", + "___id": "T000002R030670", "___s": true }, { @@ -269651,7 +270193,7 @@ "memberof": "Phaser.Physics.Matter.Components.Sleep", "longname": "Phaser.Physics.Matter.Components.Sleep#setSleepThreshold", "scope": "instance", - "___id": "T000002R030682", + "___id": "T000002R030672", "___s": true }, { @@ -269713,7 +270255,7 @@ "memberof": "Phaser.Physics.Matter.Components.Sleep", "longname": "Phaser.Physics.Matter.Components.Sleep#setSleepEvents", "scope": "instance", - "___id": "T000002R030686", + "___id": "T000002R030676", "___s": true }, { @@ -269762,7 +270304,7 @@ "memberof": "Phaser.Physics.Matter.Components.Sleep", "longname": "Phaser.Physics.Matter.Components.Sleep#setSleepStartEvent", "scope": "instance", - "___id": "T000002R030688", + "___id": "T000002R030678", "___s": true }, { @@ -269811,7 +270353,7 @@ "memberof": "Phaser.Physics.Matter.Components.Sleep", "longname": "Phaser.Physics.Matter.Components.Sleep#setSleepEndEvent", "scope": "instance", - "___id": "T000002R030691", + "___id": "T000002R030681", "___s": true }, { @@ -269830,7 +270372,7 @@ "memberof": "Phaser.Physics.Matter.Components", "longname": "Phaser.Physics.Matter.Components.Static", "scope": "static", - "___id": "T000002R030696", + "___id": "T000002R030686", "___s": true }, { @@ -269879,7 +270421,7 @@ "memberof": "Phaser.Physics.Matter.Components.Static", "longname": "Phaser.Physics.Matter.Components.Static#setStatic", "scope": "instance", - "___id": "T000002R030698", + "___id": "T000002R030688", "___s": true }, { @@ -269912,7 +270454,7 @@ "memberof": "Phaser.Physics.Matter.Components.Static", "longname": "Phaser.Physics.Matter.Components.Static#isStatic", "scope": "instance", - "___id": "T000002R030700", + "___id": "T000002R030690", "___s": true }, { @@ -269931,7 +270473,7 @@ "memberof": "Phaser.Physics.Matter.Components", "longname": "Phaser.Physics.Matter.Components.Transform", "scope": "static", - "___id": "T000002R030708", + "___id": "T000002R030698", "___s": true }, { @@ -269959,7 +270501,7 @@ "longname": "Phaser.Physics.Matter.Components.Transform#x", "scope": "instance", "kind": "member", - "___id": "T000002R030710", + "___id": "T000002R030700", "___s": true }, { @@ -269987,7 +270529,7 @@ "longname": "Phaser.Physics.Matter.Components.Transform#y", "scope": "instance", "kind": "member", - "___id": "T000002R030714", + "___id": "T000002R030704", "___s": true }, { @@ -270015,7 +270557,7 @@ "longname": "Phaser.Physics.Matter.Components.Transform#scaleX", "scope": "instance", "kind": "member", - "___id": "T000002R030718", + "___id": "T000002R030708", "___s": true }, { @@ -270043,7 +270585,7 @@ "longname": "Phaser.Physics.Matter.Components.Transform#scaleY", "scope": "instance", "kind": "member", - "___id": "T000002R030727", + "___id": "T000002R030717", "___s": true }, { @@ -270071,7 +270613,7 @@ "longname": "Phaser.Physics.Matter.Components.Transform#angle", "scope": "instance", "kind": "member", - "___id": "T000002R030736", + "___id": "T000002R030726", "___s": true }, { @@ -270099,7 +270641,7 @@ "longname": "Phaser.Physics.Matter.Components.Transform#rotation", "scope": "instance", "kind": "member", - "___id": "T000002R030741", + "___id": "T000002R030731", "___s": true }, { @@ -270165,7 +270707,7 @@ "memberof": "Phaser.Physics.Matter.Components.Transform", "longname": "Phaser.Physics.Matter.Components.Transform#setPosition", "scope": "instance", - "___id": "T000002R030746", + "___id": "T000002R030736", "___s": true }, { @@ -270216,7 +270758,7 @@ "memberof": "Phaser.Physics.Matter.Components.Transform", "longname": "Phaser.Physics.Matter.Components.Transform#setRotation", "scope": "instance", - "___id": "T000002R030750", + "___id": "T000002R030740", "___s": true }, { @@ -270250,7 +270792,7 @@ "memberof": "Phaser.Physics.Matter.Components.Transform", "longname": "Phaser.Physics.Matter.Components.Transform#setFixedRotation", "scope": "instance", - "___id": "T000002R030754", + "___id": "T000002R030744", "___s": true }, { @@ -270301,7 +270843,7 @@ "memberof": "Phaser.Physics.Matter.Components.Transform", "longname": "Phaser.Physics.Matter.Components.Transform#setAngle", "scope": "instance", - "___id": "T000002R030756", + "___id": "T000002R030746", "___s": true }, { @@ -270381,7 +270923,7 @@ "memberof": "Phaser.Physics.Matter.Components.Transform", "longname": "Phaser.Physics.Matter.Components.Transform#setScale", "scope": "instance", - "___id": "T000002R030760", + "___id": "T000002R030750", "___s": true }, { @@ -270400,7 +270942,7 @@ "memberof": "Phaser.Physics.Matter.Components", "longname": "Phaser.Physics.Matter.Components.Velocity", "scope": "static", - "___id": "T000002R030770", + "___id": "T000002R030760", "___s": true }, { @@ -270449,7 +270991,7 @@ "memberof": "Phaser.Physics.Matter.Components.Velocity", "longname": "Phaser.Physics.Matter.Components.Velocity#setVelocityX", "scope": "instance", - "___id": "T000002R030772", + "___id": "T000002R030762", "___s": true }, { @@ -270498,7 +271040,7 @@ "memberof": "Phaser.Physics.Matter.Components.Velocity", "longname": "Phaser.Physics.Matter.Components.Velocity#setVelocityY", "scope": "instance", - "___id": "T000002R030774", + "___id": "T000002R030764", "___s": true }, { @@ -270562,7 +271104,7 @@ "memberof": "Phaser.Physics.Matter.Components.Velocity", "longname": "Phaser.Physics.Matter.Components.Velocity#setVelocity", "scope": "instance", - "___id": "T000002R030776", + "___id": "T000002R030766", "___s": true }, { @@ -270595,7 +271137,7 @@ "memberof": "Phaser.Physics.Matter.Components.Velocity", "longname": "Phaser.Physics.Matter.Components.Velocity#getVelocity", "scope": "instance", - "___id": "T000002R030778", + "___id": "T000002R030768", "___s": true }, { @@ -270644,7 +271186,7 @@ "memberof": "Phaser.Physics.Matter.Components.Velocity", "longname": "Phaser.Physics.Matter.Components.Velocity#setAngularVelocity", "scope": "instance", - "___id": "T000002R030780", + "___id": "T000002R030770", "___s": true }, { @@ -270677,7 +271219,7 @@ "memberof": "Phaser.Physics.Matter.Components.Velocity", "longname": "Phaser.Physics.Matter.Components.Velocity#getAngularVelocity", "scope": "instance", - "___id": "T000002R030782", + "___id": "T000002R030772", "___s": true }, { @@ -270726,7 +271268,7 @@ "memberof": "Phaser.Physics.Matter.Components.Velocity", "longname": "Phaser.Physics.Matter.Components.Velocity#setAngularSpeed", "scope": "instance", - "___id": "T000002R030784", + "___id": "T000002R030774", "___s": true }, { @@ -270759,7 +271301,7 @@ "memberof": "Phaser.Physics.Matter.Components.Velocity", "longname": "Phaser.Physics.Matter.Components.Velocity#getAngularSpeed", "scope": "instance", - "___id": "T000002R030786", + "___id": "T000002R030776", "___s": true }, { @@ -270776,7 +271318,7 @@ "memberof": "Phaser.Physics.Matter", "longname": "Phaser.Physics.Matter.Matter", "scope": "static", - "___id": "T000002R030789", + "___id": "T000002R030779", "___s": true }, { @@ -270852,7 +271394,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events.AfterAddEvent", "scope": "static", - "___id": "T000002R030820", + "___id": "T000002R030810", "___s": true }, { @@ -270895,7 +271437,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:AFTER_ADD", "scope": "instance", - "___id": "T000002R030821", + "___id": "T000002R030811", "___s": true }, { @@ -270971,7 +271513,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events.AfterRemoveEvent", "scope": "static", - "___id": "T000002R030823", + "___id": "T000002R030813", "___s": true }, { @@ -271014,7 +271556,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:AFTER_REMOVE", "scope": "instance", - "___id": "T000002R030824", + "___id": "T000002R030814", "___s": true }, { @@ -271081,7 +271623,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events.AfterUpdateEvent", "scope": "static", - "___id": "T000002R030826", + "___id": "T000002R030816", "___s": true }, { @@ -271124,7 +271666,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:AFTER_UPDATE", "scope": "instance", - "___id": "T000002R030827", + "___id": "T000002R030817", "___s": true }, { @@ -271200,7 +271742,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events.BeforeAddEvent", "scope": "static", - "___id": "T000002R030829", + "___id": "T000002R030819", "___s": true }, { @@ -271243,7 +271785,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:BEFORE_ADD", "scope": "instance", - "___id": "T000002R030830", + "___id": "T000002R030820", "___s": true }, { @@ -271319,7 +271861,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events.BeforeRemoveEvent", "scope": "static", - "___id": "T000002R030832", + "___id": "T000002R030822", "___s": true }, { @@ -271362,7 +271904,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:BEFORE_REMOVE", "scope": "instance", - "___id": "T000002R030833", + "___id": "T000002R030823", "___s": true }, { @@ -271429,7 +271971,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events.BeforeUpdateEvent", "scope": "static", - "___id": "T000002R030835", + "___id": "T000002R030825", "___s": true }, { @@ -271472,7 +272014,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:BEFORE_UPDATE", "scope": "instance", - "___id": "T000002R030836", + "___id": "T000002R030826", "___s": true }, { @@ -271561,7 +272103,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events.CollisionActiveEvent", "scope": "static", - "___id": "T000002R030838", + "___id": "T000002R030828", "___s": true }, { @@ -271630,7 +272172,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:COLLISION_ACTIVE", "scope": "instance", - "___id": "T000002R030839", + "___id": "T000002R030829", "___s": true }, { @@ -271719,7 +272261,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events.CollisionEndEvent", "scope": "static", - "___id": "T000002R030841", + "___id": "T000002R030831", "___s": true }, { @@ -271788,7 +272330,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:COLLISION_END", "scope": "instance", - "___id": "T000002R030842", + "___id": "T000002R030832", "___s": true }, { @@ -271877,7 +272419,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events.CollisionStartEvent", "scope": "static", - "___id": "T000002R030844", + "___id": "T000002R030834", "___s": true }, { @@ -271946,7 +272488,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:COLLISION_START", "scope": "instance", - "___id": "T000002R030845", + "___id": "T000002R030835", "___s": true }, { @@ -272002,7 +272544,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:DRAG_END", "scope": "instance", - "___id": "T000002R030847", + "___id": "T000002R030837", "___s": true }, { @@ -272058,7 +272600,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:DRAG", "scope": "instance", - "___id": "T000002R030849", + "___id": "T000002R030839", "___s": true }, { @@ -272127,7 +272669,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:DRAG_START", "scope": "instance", - "___id": "T000002R030851", + "___id": "T000002R030841", "___s": true }, { @@ -272144,7 +272686,7 @@ "memberof": "Phaser.Physics.Matter", "longname": "Phaser.Physics.Matter.Events", "scope": "static", - "___id": "T000002R030853", + "___id": "T000002R030843", "___s": true }, { @@ -272172,7 +272714,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:PAUSE", "scope": "instance", - "___id": "T000002R030871", + "___id": "T000002R030861", "___s": true }, { @@ -272200,7 +272742,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:RESUME", "scope": "instance", - "___id": "T000002R030873", + "___id": "T000002R030863", "___s": true }, { @@ -272254,7 +272796,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events.SleepEndEvent", "scope": "static", - "___id": "T000002R030875", + "___id": "T000002R030865", "___s": true }, { @@ -272310,7 +272852,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:SLEEP_END", "scope": "instance", - "___id": "T000002R030876", + "___id": "T000002R030866", "___s": true }, { @@ -272364,7 +272906,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events.SleepStartEvent", "scope": "static", - "___id": "T000002R030878", + "___id": "T000002R030868", "___s": true }, { @@ -272420,7 +272962,7 @@ "memberof": "Phaser.Physics.Matter.Events", "longname": "Phaser.Physics.Matter.Events#event:SLEEP_START", "scope": "instance", - "___id": "T000002R030879", + "___id": "T000002R030869", "___s": true }, { @@ -272454,7 +272996,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Matter.Factory", - "___id": "T000002R030894", + "___id": "T000002R030884", "___s": true }, { @@ -272482,7 +273024,7 @@ "longname": "Phaser.Physics.Matter.Factory#world", "scope": "instance", "kind": "member", - "___id": "T000002R030897", + "___id": "T000002R030887", "___s": true }, { @@ -272510,7 +273052,7 @@ "longname": "Phaser.Physics.Matter.Factory#scene", "scope": "instance", "kind": "member", - "___id": "T000002R030899", + "___id": "T000002R030889", "___s": true }, { @@ -272538,7 +273080,7 @@ "longname": "Phaser.Physics.Matter.Factory#sys", "scope": "instance", "kind": "member", - "___id": "T000002R030901", + "___id": "T000002R030891", "___s": true }, { @@ -272639,7 +273181,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#rectangle", "scope": "instance", - "___id": "T000002R030903", + "___id": "T000002R030893", "___s": true }, { @@ -272753,7 +273295,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#trapezoid", "scope": "instance", - "___id": "T000002R030906", + "___id": "T000002R030896", "___s": true }, { @@ -272855,7 +273397,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#circle", "scope": "instance", - "___id": "T000002R030909", + "___id": "T000002R030899", "___s": true }, { @@ -272956,7 +273498,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#polygon", "scope": "instance", - "___id": "T000002R030912", + "___id": "T000002R030902", "___s": true }, { @@ -273099,7 +273641,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#fromVertices", "scope": "instance", - "___id": "T000002R030915", + "___id": "T000002R030905", "___s": true }, { @@ -273202,7 +273744,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#fromPhysicsEditor", "scope": "instance", - "___id": "T000002R030919", + "___id": "T000002R030909", "___s": true }, { @@ -273320,7 +273862,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#fromSVG", "scope": "instance", - "___id": "T000002R030923", + "___id": "T000002R030913", "___s": true }, { @@ -273423,7 +273965,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#fromJSON", "scope": "instance", - "___id": "T000002R030933", + "___id": "T000002R030923", "___s": true }, { @@ -273590,7 +274132,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#imageStack", "scope": "instance", - "___id": "T000002R030938", + "___id": "T000002R030928", "___s": true }, { @@ -273716,7 +274258,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#stack", "scope": "instance", - "___id": "T000002R030948", + "___id": "T000002R030938", "___s": true }, { @@ -273842,7 +274384,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#pyramid", "scope": "instance", - "___id": "T000002R030951", + "___id": "T000002R030941", "___s": true }, { @@ -273956,7 +274498,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#chain", "scope": "instance", - "___id": "T000002R030954", + "___id": "T000002R030944", "___s": true }, { @@ -274057,7 +274599,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#mesh", "scope": "instance", - "___id": "T000002R030956", + "___id": "T000002R030946", "___s": true }, { @@ -274157,7 +274699,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#newtonsCradle", "scope": "instance", - "___id": "T000002R030958", + "___id": "T000002R030948", "___s": true }, { @@ -274257,7 +274799,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#car", "scope": "instance", - "___id": "T000002R030961", + "___id": "T000002R030951", "___s": true }, { @@ -274424,7 +274966,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#softBody", "scope": "instance", - "___id": "T000002R030964", + "___id": "T000002R030954", "___s": true }, { @@ -274528,7 +275070,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#joint", "scope": "instance", - "___id": "T000002R030967", + "___id": "T000002R030957", "___s": true }, { @@ -274632,7 +275174,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#spring", "scope": "instance", - "___id": "T000002R030969", + "___id": "T000002R030959", "___s": true }, { @@ -274736,7 +275278,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#constraint", "scope": "instance", - "___id": "T000002R030971", + "___id": "T000002R030961", "___s": true }, { @@ -274827,7 +275369,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#worldConstraint", "scope": "instance", - "___id": "T000002R030980", + "___id": "T000002R030970", "___s": true }, { @@ -274876,7 +275418,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#mouseSpring", "scope": "instance", - "___id": "T000002R030988", + "___id": "T000002R030978", "___s": true }, { @@ -274925,7 +275467,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#pointerConstraint", "scope": "instance", - "___id": "T000002R030990", + "___id": "T000002R030980", "___s": true }, { @@ -275037,7 +275579,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#image", "scope": "instance", - "___id": "T000002R030996", + "___id": "T000002R030986", "___s": true }, { @@ -275099,7 +275641,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#tileBody", "scope": "instance", - "___id": "T000002R030999", + "___id": "T000002R030989", "___s": true }, { @@ -275211,7 +275753,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#sprite", "scope": "instance", - "___id": "T000002R031001", + "___id": "T000002R030991", "___s": true }, { @@ -275313,7 +275855,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#gameObject", "scope": "instance", - "___id": "T000002R031004", + "___id": "T000002R030994", "___s": true }, { @@ -275332,7 +275874,7 @@ "memberof": "Phaser.Physics.Matter.Factory", "longname": "Phaser.Physics.Matter.Factory#destroy", "scope": "instance", - "___id": "T000002R031006", + "___id": "T000002R030996", "___s": true }, { @@ -275349,7 +275891,7 @@ "memberof": "Phaser.Physics", "longname": "Phaser.Physics.Matter", "scope": "static", - "___id": "T000002R031012", + "___id": "T000002R031002", "___s": true }, { @@ -275449,7 +275991,7 @@ "memberof": "Phaser.Physics.Matter", "longname": "Phaser.Physics.Matter.MatterGameObject", "scope": "static", - "___id": "T000002R031034", + "___id": "T000002R031024", "___s": true }, { @@ -275600,7 +276142,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Matter.Image", - "___id": "T000002R031063", + "___id": "T000002R031053", "___s": true }, { @@ -275628,7 +276170,7 @@ "longname": "Phaser.Physics.Matter.Image#world", "scope": "instance", "kind": "member", - "___id": "T000002R031070", + "___id": "T000002R031060", "___s": true }, { @@ -275662,7 +276204,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Matter.MatterPhysics", - "___id": "T000002R031106", + "___id": "T000002R031096", "___s": true }, { @@ -275690,7 +276232,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#scene", "scope": "instance", "kind": "member", - "___id": "T000002R031109", + "___id": "T000002R031099", "___s": true }, { @@ -275718,7 +276260,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#systems", "scope": "instance", "kind": "member", - "___id": "T000002R031111", + "___id": "T000002R031101", "___s": true }, { @@ -275746,7 +276288,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#config", "scope": "instance", "kind": "member", - "___id": "T000002R031113", + "___id": "T000002R031103", "___s": true }, { @@ -275774,7 +276316,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#world", "scope": "instance", "kind": "member", - "___id": "T000002R031115", + "___id": "T000002R031105", "___s": true }, { @@ -275802,7 +276344,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#add", "scope": "instance", "kind": "member", - "___id": "T000002R031117", + "___id": "T000002R031107", "___s": true }, { @@ -275830,7 +276372,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#bodyBounds", "scope": "instance", "kind": "member", - "___id": "T000002R031119", + "___id": "T000002R031109", "___s": true }, { @@ -275858,7 +276400,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#body", "scope": "instance", "kind": "member", - "___id": "T000002R031121", + "___id": "T000002R031111", "___s": true }, { @@ -275886,7 +276428,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#composite", "scope": "instance", "kind": "member", - "___id": "T000002R031123", + "___id": "T000002R031113", "___s": true }, { @@ -275914,7 +276456,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#collision", "scope": "instance", "kind": "member", - "___id": "T000002R031125", + "___id": "T000002R031115", "___s": true }, { @@ -275942,7 +276484,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#detector", "scope": "instance", "kind": "member", - "___id": "T000002R031127", + "___id": "T000002R031117", "___s": true }, { @@ -275970,7 +276512,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#pair", "scope": "instance", "kind": "member", - "___id": "T000002R031129", + "___id": "T000002R031119", "___s": true }, { @@ -275998,7 +276540,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#pairs", "scope": "instance", "kind": "member", - "___id": "T000002R031131", + "___id": "T000002R031121", "___s": true }, { @@ -276026,7 +276568,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#query", "scope": "instance", "kind": "member", - "___id": "T000002R031133", + "___id": "T000002R031123", "___s": true }, { @@ -276054,7 +276596,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#resolver", "scope": "instance", "kind": "member", - "___id": "T000002R031135", + "___id": "T000002R031125", "___s": true }, { @@ -276082,7 +276624,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#constraint", "scope": "instance", "kind": "member", - "___id": "T000002R031137", + "___id": "T000002R031127", "___s": true }, { @@ -276110,7 +276652,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#bodies", "scope": "instance", "kind": "member", - "___id": "T000002R031139", + "___id": "T000002R031129", "___s": true }, { @@ -276138,7 +276680,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#composites", "scope": "instance", "kind": "member", - "___id": "T000002R031141", + "___id": "T000002R031131", "___s": true }, { @@ -276166,7 +276708,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#axes", "scope": "instance", "kind": "member", - "___id": "T000002R031143", + "___id": "T000002R031133", "___s": true }, { @@ -276194,7 +276736,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#bounds", "scope": "instance", "kind": "member", - "___id": "T000002R031145", + "___id": "T000002R031135", "___s": true }, { @@ -276222,7 +276764,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#svg", "scope": "instance", "kind": "member", - "___id": "T000002R031147", + "___id": "T000002R031137", "___s": true }, { @@ -276250,7 +276792,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#vector", "scope": "instance", "kind": "member", - "___id": "T000002R031149", + "___id": "T000002R031139", "___s": true }, { @@ -276278,7 +276820,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#vertices", "scope": "instance", "kind": "member", - "___id": "T000002R031151", + "___id": "T000002R031141", "___s": true }, { @@ -276306,7 +276848,7 @@ "longname": "Phaser.Physics.Matter.MatterPhysics#verts", "scope": "instance", "kind": "member", - "___id": "T000002R031153", + "___id": "T000002R031143", "___s": true }, { @@ -276339,7 +276881,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#getConfig", "scope": "instance", - "___id": "T000002R031172", + "___id": "T000002R031162", "___s": true }, { @@ -276375,7 +276917,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#pause", "scope": "instance", - "___id": "T000002R031177", + "___id": "T000002R031167", "___s": true }, { @@ -276408,7 +276950,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#resume", "scope": "instance", - "___id": "T000002R031179", + "___id": "T000002R031169", "___s": true }, { @@ -276442,7 +276984,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#set60Hz", "scope": "instance", - "___id": "T000002R031181", + "___id": "T000002R031171", "___s": true }, { @@ -276476,7 +277018,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#set30Hz", "scope": "instance", - "___id": "T000002R031185", + "___id": "T000002R031175", "___s": true }, { @@ -276527,7 +277069,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#step", "scope": "instance", - "___id": "T000002R031189", + "___id": "T000002R031179", "___s": true }, { @@ -276620,7 +277162,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#containsPoint", "scope": "instance", - "___id": "T000002R031191", + "___id": "T000002R031181", "___s": true }, { @@ -276713,7 +277255,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#intersectPoint", "scope": "instance", - "___id": "T000002R031196", + "___id": "T000002R031186", "___s": true }, { @@ -276847,7 +277389,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#intersectRect", "scope": "instance", - "___id": "T000002R031202", + "___id": "T000002R031192", "___s": true }, { @@ -276981,7 +277523,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#intersectRay", "scope": "instance", - "___id": "T000002R031215", + "___id": "T000002R031205", "___s": true }, { @@ -277061,7 +277603,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#intersectBody", "scope": "instance", - "___id": "T000002R031222", + "___id": "T000002R031212", "___s": true }, { @@ -277192,7 +277734,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#overlap", "scope": "instance", - "___id": "T000002R031229", + "___id": "T000002R031219", "___s": true }, { @@ -277263,7 +277805,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#setCollisionCategory", "scope": "instance", - "___id": "T000002R031245", + "___id": "T000002R031235", "___s": true }, { @@ -277334,7 +277876,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#setCollisionGroup", "scope": "instance", - "___id": "T000002R031249", + "___id": "T000002R031239", "___s": true }, { @@ -277424,7 +277966,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#setCollidesWith", "scope": "instance", - "___id": "T000002R031253", + "___id": "T000002R031243", "___s": true }, { @@ -277482,7 +278024,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#getMatterBodies", "scope": "instance", - "___id": "T000002R031261", + "___id": "T000002R031251", "___s": true }, { @@ -277576,7 +278118,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#setVelocity", "scope": "instance", - "___id": "T000002R031267", + "___id": "T000002R031257", "___s": true }, { @@ -277657,7 +278199,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#setVelocityX", "scope": "instance", - "___id": "T000002R031273", + "___id": "T000002R031263", "___s": true }, { @@ -277738,7 +278280,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#setVelocityY", "scope": "instance", - "___id": "T000002R031279", + "___id": "T000002R031269", "___s": true }, { @@ -277819,7 +278361,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#setAngularVelocity", "scope": "instance", - "___id": "T000002R031285", + "___id": "T000002R031275", "___s": true }, { @@ -277900,7 +278442,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#applyForce", "scope": "instance", - "___id": "T000002R031288", + "___id": "T000002R031278", "___s": true }, { @@ -278008,7 +278550,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#applyForceFromPosition", "scope": "instance", - "___id": "T000002R031294", + "___id": "T000002R031284", "___s": true }, { @@ -278103,7 +278645,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#applyForceFromAngle", "scope": "instance", - "___id": "T000002R031301", + "___id": "T000002R031291", "___s": true }, { @@ -278151,7 +278693,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#getConstraintLength", "scope": "instance", - "___id": "T000002R031310", + "___id": "T000002R031300", "___s": true }, { @@ -278239,7 +278781,7 @@ "memberof": "Phaser.Physics.Matter.MatterPhysics", "longname": "Phaser.Physics.Matter.MatterPhysics#alignBody", "scope": "instance", - "___id": "T000002R031320", + "___id": "T000002R031310", "___s": true }, { @@ -278390,7 +278932,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Matter.Sprite", - "___id": "T000002R031351", + "___id": "T000002R031341", "___s": true }, { @@ -278418,7 +278960,7 @@ "longname": "Phaser.Physics.Matter.Sprite#world", "scope": "instance", "kind": "member", - "___id": "T000002R031359", + "___id": "T000002R031349", "___s": true }, { @@ -278490,7 +279032,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Matter.TileBody", - "___id": "T000002R031374", + "___id": "T000002R031364", "___s": true }, { @@ -278518,7 +279060,7 @@ "longname": "Phaser.Physics.Matter.TileBody#tile", "scope": "instance", "kind": "member", - "___id": "T000002R031379", + "___id": "T000002R031369", "___s": true }, { @@ -278546,7 +279088,7 @@ "longname": "Phaser.Physics.Matter.TileBody#world", "scope": "instance", "kind": "member", - "___id": "T000002R031381", + "___id": "T000002R031371", "___s": true }, { @@ -278595,7 +279137,7 @@ "memberof": "Phaser.Physics.Matter.TileBody", "longname": "Phaser.Physics.Matter.TileBody#setFromTileRectangle", "scope": "instance", - "___id": "T000002R031393", + "___id": "T000002R031383", "___s": true }, { @@ -278644,7 +279186,7 @@ "memberof": "Phaser.Physics.Matter.TileBody", "longname": "Phaser.Physics.Matter.TileBody#setFromTileCollision", "scope": "instance", - "___id": "T000002R031402", + "___id": "T000002R031392", "___s": true }, { @@ -278707,7 +279249,7 @@ "memberof": "Phaser.Physics.Matter.TileBody", "longname": "Phaser.Physics.Matter.TileBody#setBody", "scope": "instance", - "___id": "T000002R031434", + "___id": "T000002R031424", "___s": true }, { @@ -278740,7 +279282,7 @@ "memberof": "Phaser.Physics.Matter.TileBody", "longname": "Phaser.Physics.Matter.TileBody#removeBody", "scope": "instance", - "___id": "T000002R031439", + "___id": "T000002R031429", "___s": true }, { @@ -278774,7 +279316,7 @@ "longname": "Phaser.Physics.Matter.TileBody#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R031443", + "___id": "T000002R031433", "___s": true }, { @@ -278793,7 +279335,7 @@ "memberof": "Phaser.Physics.Matter", "longname": "Phaser.Physics.Matter.PhysicsEditorParser", "scope": "static", - "___id": "T000002R031452", + "___id": "T000002R031442", "___s": true }, { @@ -278881,7 +279423,7 @@ "memberof": "Phaser.Physics.Matter.PhysicsEditorParser", "longname": "Phaser.Physics.Matter.PhysicsEditorParser.parseBody", "scope": "static", - "___id": "T000002R031454", + "___id": "T000002R031444", "___s": true }, { @@ -278938,7 +279480,7 @@ "memberof": "Phaser.Physics.Matter.PhysicsEditorParser", "longname": "Phaser.Physics.Matter.PhysicsEditorParser.parseFixture", "scope": "static", - "___id": "T000002R031466", + "___id": "T000002R031456", "___s": true }, { @@ -279009,7 +279551,7 @@ "memberof": "Phaser.Physics.Matter.PhysicsEditorParser", "longname": "Phaser.Physics.Matter.PhysicsEditorParser.parseVertices", "scope": "static", - "___id": "T000002R031475", + "___id": "T000002R031465", "___s": true }, { @@ -279028,7 +279570,7 @@ "memberof": "Phaser.Physics.Matter", "longname": "Phaser.Physics.Matter.PhysicsJSONParser", "scope": "static", - "___id": "T000002R031485", + "___id": "T000002R031475", "___s": true }, { @@ -279116,7 +279658,7 @@ "memberof": "Phaser.Physics.Matter.PhysicsJSONParser", "longname": "Phaser.Physics.Matter.PhysicsJSONParser.parseBody", "scope": "static", - "___id": "T000002R031487", + "___id": "T000002R031477", "___s": true }, { @@ -279177,7 +279719,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Matter.PointerConstraint", - "___id": "T000002R031515", + "___id": "T000002R031505", "___s": true }, { @@ -279205,7 +279747,7 @@ "longname": "Phaser.Physics.Matter.PointerConstraint#scene", "scope": "instance", "kind": "member", - "___id": "T000002R031534", + "___id": "T000002R031524", "___s": true }, { @@ -279233,7 +279775,7 @@ "longname": "Phaser.Physics.Matter.PointerConstraint#world", "scope": "instance", "kind": "member", - "___id": "T000002R031536", + "___id": "T000002R031526", "___s": true }, { @@ -279261,7 +279803,7 @@ "longname": "Phaser.Physics.Matter.PointerConstraint#camera", "scope": "instance", "kind": "member", - "___id": "T000002R031538", + "___id": "T000002R031528", "___s": true }, { @@ -279290,7 +279832,7 @@ "longname": "Phaser.Physics.Matter.PointerConstraint#pointer", "scope": "instance", "kind": "member", - "___id": "T000002R031540", + "___id": "T000002R031530", "___s": true }, { @@ -279319,7 +279861,7 @@ "longname": "Phaser.Physics.Matter.PointerConstraint#active", "scope": "instance", "kind": "member", - "___id": "T000002R031542", + "___id": "T000002R031532", "___s": true }, { @@ -279347,7 +279889,7 @@ "longname": "Phaser.Physics.Matter.PointerConstraint#position", "scope": "instance", "kind": "member", - "___id": "T000002R031544", + "___id": "T000002R031534", "___s": true }, { @@ -279377,7 +279919,7 @@ "longname": "Phaser.Physics.Matter.PointerConstraint#body", "scope": "instance", "kind": "member", - "___id": "T000002R031546", + "___id": "T000002R031536", "___s": true }, { @@ -279407,7 +279949,7 @@ "longname": "Phaser.Physics.Matter.PointerConstraint#part", "scope": "instance", "kind": "member", - "___id": "T000002R031548", + "___id": "T000002R031538", "___s": true }, { @@ -279435,7 +279977,7 @@ "longname": "Phaser.Physics.Matter.PointerConstraint#constraint", "scope": "instance", "kind": "member", - "___id": "T000002R031550", + "___id": "T000002R031540", "___s": true }, { @@ -279469,7 +280011,7 @@ "memberof": "Phaser.Physics.Matter.PointerConstraint", "longname": "Phaser.Physics.Matter.PointerConstraint#onDown", "scope": "instance", - "___id": "T000002R031552", + "___id": "T000002R031542", "___s": true }, { @@ -279503,7 +280045,7 @@ "memberof": "Phaser.Physics.Matter.PointerConstraint", "longname": "Phaser.Physics.Matter.PointerConstraint#onUp", "scope": "instance", - "___id": "T000002R031556", + "___id": "T000002R031546", "___s": true }, { @@ -279539,7 +280081,7 @@ "memberof": "Phaser.Physics.Matter.PointerConstraint", "longname": "Phaser.Physics.Matter.PointerConstraint#getBody", "scope": "instance", - "___id": "T000002R031559", + "___id": "T000002R031549", "___s": true }, { @@ -279600,7 +280142,7 @@ "memberof": "Phaser.Physics.Matter.PointerConstraint", "longname": "Phaser.Physics.Matter.PointerConstraint#hitTestBody", "scope": "instance", - "___id": "T000002R031566", + "___id": "T000002R031556", "___s": true }, { @@ -279622,7 +280164,7 @@ "memberof": "Phaser.Physics.Matter.PointerConstraint", "longname": "Phaser.Physics.Matter.PointerConstraint#update", "scope": "instance", - "___id": "T000002R031581", + "___id": "T000002R031571", "___s": true }, { @@ -279644,7 +280186,7 @@ "memberof": "Phaser.Physics.Matter.PointerConstraint", "longname": "Phaser.Physics.Matter.PointerConstraint#stopDrag", "scope": "instance", - "___id": "T000002R031590", + "___id": "T000002R031580", "___s": true }, { @@ -279663,7 +280205,7 @@ "memberof": "Phaser.Physics.Matter.PointerConstraint", "longname": "Phaser.Physics.Matter.PointerConstraint#destroy", "scope": "instance", - "___id": "T000002R031599", + "___id": "T000002R031589", "___s": true }, { @@ -279680,7 +280222,7 @@ "memberof": "Phaser.Types.Physics", "longname": "Phaser.Types.Physics.Matter", "scope": "static", - "___id": "T000002R031606", + "___id": "T000002R031596", "___s": true }, { @@ -279732,7 +280274,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterBody", "scope": "static", - "___id": "T000002R031607", + "___id": "T000002R031597", "___s": true }, { @@ -280310,7 +280852,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterBodyConfig", "scope": "static", - "___id": "T000002R031608", + "___id": "T000002R031598", "___s": true }, { @@ -280483,7 +281025,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterBodyRenderConfig", "scope": "static", - "___id": "T000002R031609", + "___id": "T000002R031599", "___s": true }, { @@ -280542,7 +281084,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterBodyTileOptions", "scope": "static", - "___id": "T000002R031610", + "___id": "T000002R031600", "___s": true }, { @@ -280650,7 +281192,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterChamferConfig", "scope": "static", - "___id": "T000002R031611", + "___id": "T000002R031601", "___s": true }, { @@ -280909,7 +281451,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterCollisionData", "scope": "static", - "___id": "T000002R031612", + "___id": "T000002R031602", "___s": true }, { @@ -280984,7 +281526,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterCollisionFilter", "scope": "static", - "___id": "T000002R031613", + "___id": "T000002R031603", "___s": true }, { @@ -281230,7 +281772,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterCollisionPair", "scope": "static", - "___id": "T000002R031614", + "___id": "T000002R031604", "___s": true }, { @@ -281447,7 +281989,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterConstraintConfig", "scope": "static", - "___id": "T000002R031615", + "___id": "T000002R031605", "___s": true }, { @@ -281593,7 +282135,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterConstraintRenderConfig", "scope": "static", - "___id": "T000002R031616", + "___id": "T000002R031606", "___s": true }, { @@ -282312,7 +282854,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterDebugConfig", "scope": "static", - "___id": "T000002R031617", + "___id": "T000002R031607", "___s": true }, { @@ -282446,7 +282988,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterRunnerConfig", "scope": "static", - "___id": "T000002R031618", + "___id": "T000002R031608", "___s": true }, { @@ -282689,7 +283231,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterSetBodyConfig", "scope": "static", - "___id": "T000002R031619", + "___id": "T000002R031609", "___s": true }, { @@ -282763,7 +283305,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterTileOptions", "scope": "static", - "___id": "T000002R031620", + "___id": "T000002R031610", "___s": true }, { @@ -282852,7 +283394,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterWalls", "scope": "static", - "___id": "T000002R031621", + "___id": "T000002R031611", "___s": true }, { @@ -283315,7 +283857,7 @@ "memberof": "Phaser.Types.Physics.Matter", "longname": "Phaser.Types.Physics.Matter.MatterWorldConfig", "scope": "static", - "___id": "T000002R031622", + "___id": "T000002R031612", "___s": true }, { @@ -283365,7 +283907,7 @@ ], "scope": "static", "longname": "Phaser.Physics.Matter.World", - "___id": "T000002R031639", + "___id": "T000002R031629", "___s": true }, { @@ -283393,7 +283935,7 @@ "longname": "Phaser.Physics.Matter.World#scene", "scope": "instance", "kind": "member", - "___id": "T000002R031643", + "___id": "T000002R031633", "___s": true }, { @@ -283421,7 +283963,7 @@ "longname": "Phaser.Physics.Matter.World#engine", "scope": "instance", "kind": "member", - "___id": "T000002R031645", + "___id": "T000002R031635", "___s": true }, { @@ -283449,7 +283991,7 @@ "longname": "Phaser.Physics.Matter.World#localWorld", "scope": "instance", "kind": "member", - "___id": "T000002R031647", + "___id": "T000002R031637", "___s": true }, { @@ -283477,7 +284019,7 @@ "longname": "Phaser.Physics.Matter.World#walls", "scope": "instance", "kind": "member", - "___id": "T000002R031650", + "___id": "T000002R031640", "___s": true }, { @@ -283506,7 +284048,7 @@ "longname": "Phaser.Physics.Matter.World#enabled", "scope": "instance", "kind": "member", - "___id": "T000002R031656", + "___id": "T000002R031646", "___s": true }, { @@ -283534,7 +284076,7 @@ "longname": "Phaser.Physics.Matter.World#getDelta", "scope": "instance", "kind": "member", - "___id": "T000002R031658", + "___id": "T000002R031648", "___s": true }, { @@ -283562,7 +284104,7 @@ "longname": "Phaser.Physics.Matter.World#runner", "scope": "instance", "kind": "member", - "___id": "T000002R031667", + "___id": "T000002R031657", "___s": true }, { @@ -283591,7 +284133,7 @@ "longname": "Phaser.Physics.Matter.World#autoUpdate", "scope": "instance", "kind": "member", - "___id": "T000002R031682", + "___id": "T000002R031672", "___s": true }, { @@ -283620,7 +284162,7 @@ "longname": "Phaser.Physics.Matter.World#drawDebug", "scope": "instance", "kind": "member", - "___id": "T000002R031685", + "___id": "T000002R031675", "___s": true }, { @@ -283648,7 +284190,7 @@ "longname": "Phaser.Physics.Matter.World#debugGraphic", "scope": "instance", "kind": "member", - "___id": "T000002R031687", + "___id": "T000002R031677", "___s": true }, { @@ -283676,7 +284218,7 @@ "longname": "Phaser.Physics.Matter.World#debugConfig", "scope": "instance", "kind": "member", - "___id": "T000002R031689", + "___id": "T000002R031679", "___s": true }, { @@ -283725,7 +284267,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#setCompositeRenderStyle", "scope": "instance", - "___id": "T000002R031747", + "___id": "T000002R031737", "___s": true }, { @@ -283844,7 +284386,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#setBodyRenderStyle", "scope": "instance", - "___id": "T000002R031763", + "___id": "T000002R031753", "___s": true }, { @@ -283977,7 +284519,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#setConstraintRenderStyle", "scope": "instance", - "___id": "T000002R031777", + "___id": "T000002R031767", "___s": true }, { @@ -283996,7 +284538,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#setEventsProxy", "scope": "instance", - "___id": "T000002R031796", + "___id": "T000002R031786", "___s": true }, { @@ -284164,7 +284706,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#setBounds", "scope": "instance", - "___id": "T000002R031826", + "___id": "T000002R031816", "___s": true }, { @@ -284268,7 +284810,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#updateWall", "scope": "instance", - "___id": "T000002R031837", + "___id": "T000002R031827", "___s": true }, { @@ -284301,7 +284843,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#createDebugGraphic", "scope": "instance", - "___id": "T000002R031847", + "___id": "T000002R031837", "___s": true }, { @@ -284335,7 +284877,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#disableGravity", "scope": "instance", - "___id": "T000002R031854", + "___id": "T000002R031844", "___s": true }, { @@ -284416,7 +284958,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#setGravity", "scope": "instance", - "___id": "T000002R031859", + "___id": "T000002R031849", "___s": true }, { @@ -284516,7 +285058,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#create", "scope": "instance", - "___id": "T000002R031867", + "___id": "T000002R031857", "___s": true }, { @@ -284584,7 +285126,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#add", "scope": "instance", - "___id": "T000002R031870", + "___id": "T000002R031860", "___s": true }, { @@ -284667,7 +285209,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#remove", "scope": "instance", - "___id": "T000002R031872", + "___id": "T000002R031862", "___s": true }, { @@ -284750,7 +285292,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#removeConstraint", "scope": "instance", - "___id": "T000002R031878", + "___id": "T000002R031868", "___s": true }, { @@ -284813,7 +285355,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#convertTilemapLayer", "scope": "instance", - "___id": "T000002R031880", + "___id": "T000002R031870", "___s": true }, { @@ -284885,7 +285427,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#convertTiles", "scope": "instance", - "___id": "T000002R031885", + "___id": "T000002R031875", "___s": true }, { @@ -284935,7 +285477,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#nextGroup", "scope": "instance", - "___id": "T000002R031888", + "___id": "T000002R031878", "___s": true }, { @@ -284968,7 +285510,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#nextCategory", "scope": "instance", - "___id": "T000002R031890", + "___id": "T000002R031880", "___s": true }, { @@ -285005,7 +285547,7 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#pause", "scope": "instance", - "___id": "T000002R031892", + "___id": "T000002R031882", "___s": true }, { @@ -285042,14 +285584,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#resume", "scope": "instance", - "___id": "T000002R031895", + "___id": "T000002R031885", "___s": true }, { "comment": "/**\r\n * The internal update method. This is called automatically by the parent Scene.\r\n *\r\n * Moves the simulation forward in time by delta ms. Uses `World.correction` value as an optional number that\r\n * specifies the time correction factor to apply to the update. This can help improve the accuracy of the\r\n * simulation in cases where delta is changing between updates. The value of correction is defined as `delta / lastDelta`,\r\n * i.e. the percentage change of delta over the last step. Therefore the value is always 1 (no correction) when\r\n * delta is constant (or when no correction is desired, which is the default).\r\n * See the paper on Time Corrected Verlet for more information.\r\n *\r\n * Triggers `beforeUpdate` and `afterUpdate` events. Triggers `collisionStart`, `collisionActive` and `collisionEnd` events.\r\n *\r\n * If the World is paused, `update` is still run, but exits early and does not update the Matter Engine.\r\n *\r\n * @method Phaser.Physics.Matter.World#update\r\n * @since 3.0.0\r\n *\r\n * @param {number} time - The current time. Either a High Resolution Timer value if it comes from Request Animation Frame, or Date.now if using SetTimeout.\r\n * @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.\r\n */", "meta": { "filename": "World.js", - "lineno": 1172, + "lineno": 1174, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285089,14 +285631,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#update", "scope": "instance", - "___id": "T000002R031898", + "___id": "T000002R031889", "___s": true }, { "comment": "/**\r\n * Manually advances the physics simulation by one iteration.\r\n *\r\n * You can optionally pass in the `delta` and `correction` values to be used by Engine.update.\r\n * If undefined they use the Matter defaults of 60Hz and no correction.\r\n *\r\n * Calling `step` directly bypasses any checks of `enabled` or `autoUpdate`.\r\n *\r\n * It also ignores any custom `getDelta` functions, as you should be passing the delta\r\n * value in to this call.\r\n *\r\n * You can adjust the number of iterations that Engine.update performs internally.\r\n * Use the Scene Matter Physics config object to set the following properties:\r\n *\r\n * positionIterations (defaults to 6)\r\n * velocityIterations (defaults to 4)\r\n * constraintIterations (defaults to 2)\r\n *\r\n * Adjusting these values can help performance in certain situations, depending on the physics requirements\r\n * of your game.\r\n *\r\n * @method Phaser.Physics.Matter.World#step\r\n * @since 3.4.0\r\n *\r\n * @param {number} [delta=16.666] - The delta value.\r\n */", "meta": { "filename": "World.js", - "lineno": 1286, + "lineno": 1288, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285125,14 +285667,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#step", "scope": "instance", - "___id": "T000002R031926", + "___id": "T000002R031917", "___s": true }, { "comment": "/**\r\n * Runs the Matter Engine.update at a fixed timestep of 60Hz.\r\n *\r\n * @method Phaser.Physics.Matter.World#update60Hz\r\n * @since 3.4.0\r\n *\r\n * @return {number} The delta value to be passed to Engine.update.\r\n */", "meta": { "filename": "World.js", - "lineno": 1317, + "lineno": 1319, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285158,14 +285700,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#update60Hz", "scope": "instance", - "___id": "T000002R031928", + "___id": "T000002R031919", "___s": true }, { "comment": "/**\r\n * Runs the Matter Engine.update at a fixed timestep of 30Hz.\r\n *\r\n * @method Phaser.Physics.Matter.World#update30Hz\r\n * @since 3.4.0\r\n *\r\n * @return {number} The delta value to be passed to Engine.update.\r\n */", "meta": { "filename": "World.js", - "lineno": 1330, + "lineno": 1332, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285191,14 +285733,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#update30Hz", "scope": "instance", - "___id": "T000002R031930", + "___id": "T000002R031921", "___s": true }, { "comment": "/**\r\n * Returns `true` if the given body can be found within the World.\r\n *\r\n * @method Phaser.Physics.Matter.World#has\r\n * @since 3.22.0\r\n *\r\n * @param {(MatterJS.Body|Phaser.GameObjects.GameObject)} body - The Matter Body, or Game Object, to search for within the world.\r\n *\r\n * @return {MatterJS.BodyType[]} An array of all the Matter JS Bodies in this World.\r\n */", "meta": { "filename": "World.js", - "lineno": 1343, + "lineno": 1345, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285258,14 +285800,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#has", "scope": "instance", - "___id": "T000002R031932", + "___id": "T000002R031923", "___s": true }, { "comment": "/**\r\n * Returns all the bodies in the Matter World, including all bodies in children, recursively.\r\n *\r\n * @method Phaser.Physics.Matter.World#getAllBodies\r\n * @since 3.22.0\r\n *\r\n * @return {MatterJS.BodyType[]} An array of all the Matter JS Bodies in this World.\r\n */", "meta": { "filename": "World.js", - "lineno": 1360, + "lineno": 1362, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285300,14 +285842,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#getAllBodies", "scope": "instance", - "___id": "T000002R031935", + "___id": "T000002R031926", "___s": true }, { "comment": "/**\r\n * Returns all the constraints in the Matter World, including all constraints in children, recursively.\r\n *\r\n * @method Phaser.Physics.Matter.World#getAllConstraints\r\n * @since 3.22.0\r\n *\r\n * @return {MatterJS.ConstraintType[]} An array of all the Matter JS Constraints in this World.\r\n */", "meta": { "filename": "World.js", - "lineno": 1373, + "lineno": 1375, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285342,14 +285884,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#getAllConstraints", "scope": "instance", - "___id": "T000002R031937", + "___id": "T000002R031928", "___s": true }, { "comment": "/**\r\n * Returns all the composites in the Matter World, including all composites in children, recursively.\r\n *\r\n * @method Phaser.Physics.Matter.World#getAllComposites\r\n * @since 3.22.0\r\n *\r\n * @return {MatterJS.CompositeType[]} An array of all the Matter JS Composites in this World.\r\n */", "meta": { "filename": "World.js", - "lineno": 1386, + "lineno": 1388, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285384,14 +285926,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#getAllComposites", "scope": "instance", - "___id": "T000002R031939", + "___id": "T000002R031930", "___s": true }, { "comment": "/**\r\n * Renders the Engine Broadphase Controller Grid to the given Graphics instance.\r\n *\r\n * The debug renderer calls this method if the `showBroadphase` config value is set.\r\n *\r\n * This method is used internally by the Matter Debug Renderer, but is also exposed publically should\r\n * you wish to render the Grid to your own Graphics instance.\r\n *\r\n * @method Phaser.Physics.Matter.World#renderGrid\r\n * @since 3.22.0\r\n *\r\n * @param {MatterJS.Grid} grid - The Matter Grid to be rendered.\r\n * @param {Phaser.GameObjects.Graphics} graphics - The Graphics object to render to.\r\n * @param {number} lineColor - The line color.\r\n * @param {number} lineOpacity - The line opacity, between 0 and 1.\r\n *\r\n * @return {this} This Matter World instance for method chaining.\r\n */", "meta": { "filename": "World.js", - "lineno": 1464, + "lineno": 1466, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285472,14 +286014,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#renderGrid", "scope": "instance", - "___id": "T000002R031947", + "___id": "T000002R031938", "___s": true }, { "comment": "/**\r\n * Renders the list of Pair separations to the given Graphics instance.\r\n *\r\n * The debug renderer calls this method if the `showSeparations` config value is set.\r\n *\r\n * This method is used internally by the Matter Debug Renderer, but is also exposed publically should\r\n * you wish to render the Grid to your own Graphics instance.\r\n *\r\n * @method Phaser.Physics.Matter.World#renderSeparations\r\n * @since 3.22.0\r\n *\r\n * @param {MatterJS.Pair[]} pairs - An array of Matter Pairs to be rendered.\r\n * @param {Phaser.GameObjects.Graphics} graphics - The Graphics object to render to.\r\n * @param {number} lineColor - The line color.\r\n *\r\n * @return {this} This Matter World instance for method chaining.\r\n */", "meta": { "filename": "World.js", - "lineno": 1510, + "lineno": 1512, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285556,14 +286098,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#renderSeparations", "scope": "instance", - "___id": "T000002R031953", + "___id": "T000002R031944", "___s": true }, { "comment": "/**\r\n * Renders the list of collision points and normals to the given Graphics instance.\r\n *\r\n * The debug renderer calls this method if the `showCollisions` config value is set.\r\n *\r\n * This method is used internally by the Matter Debug Renderer, but is also exposed publically should\r\n * you wish to render the Grid to your own Graphics instance.\r\n *\r\n * @method Phaser.Physics.Matter.World#renderCollisions\r\n * @since 3.22.0\r\n *\r\n * @param {MatterJS.Pair[]} pairs - An array of Matter Pairs to be rendered.\r\n * @param {Phaser.GameObjects.Graphics} graphics - The Graphics object to render to.\r\n * @param {number} lineColor - The line color.\r\n *\r\n * @return {this} This Matter World instance for method chaining.\r\n */", "meta": { "filename": "World.js", - "lineno": 1579, + "lineno": 1581, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285640,14 +286182,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#renderCollisions", "scope": "instance", - "___id": "T000002R031967", + "___id": "T000002R031958", "___s": true }, { "comment": "/**\r\n * Renders the bounds of an array of Bodies to the given Graphics instance.\r\n *\r\n * If the body is a compound body, it will render the bounds for the parent compound.\r\n *\r\n * The debug renderer calls this method if the `showBounds` config value is set.\r\n *\r\n * This method is used internally by the Matter Debug Renderer, but is also exposed publically should\r\n * you wish to render bounds to your own Graphics instance.\r\n *\r\n * @method Phaser.Physics.Matter.World#renderBodyBounds\r\n * @since 3.22.0\r\n *\r\n * @param {array} bodies - An array of bodies from the localWorld.\r\n * @param {Phaser.GameObjects.Graphics} graphics - The Graphics object to render to.\r\n * @param {number} lineColor - The line color.\r\n * @param {number} lineOpacity - The line opacity, between 0 and 1.\r\n */", "meta": { "filename": "World.js", - "lineno": 1676, + "lineno": 1678, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285713,14 +286255,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#renderBodyBounds", "scope": "instance", - "___id": "T000002R031984", + "___id": "T000002R031975", "___s": true }, { "comment": "/**\r\n * Renders either all axes, or a single axis indicator, for an array of Bodies, to the given Graphics instance.\r\n *\r\n * The debug renderer calls this method if the `showAxes` or `showAngleIndicator` config values are set.\r\n *\r\n * This method is used internally by the Matter Debug Renderer, but is also exposed publically should\r\n * you wish to render bounds to your own Graphics instance.\r\n *\r\n * @method Phaser.Physics.Matter.World#renderBodyAxes\r\n * @since 3.22.0\r\n *\r\n * @param {array} bodies - An array of bodies from the localWorld.\r\n * @param {Phaser.GameObjects.Graphics} graphics - The Graphics object to render to.\r\n * @param {boolean} showAxes - If `true` it will render all body axes. If `false` it will render a single axis indicator.\r\n * @param {number} lineColor - The line color.\r\n * @param {number} lineOpacity - The line opacity, between 0 and 1.\r\n */", "meta": { "filename": "World.js", - "lineno": 1740, + "lineno": 1742, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285799,14 +286341,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#renderBodyAxes", "scope": "instance", - "___id": "T000002R031992", + "___id": "T000002R031983", "___s": true }, { "comment": "/**\r\n * Renders a velocity indicator for an array of Bodies, to the given Graphics instance.\r\n *\r\n * The debug renderer calls this method if the `showVelocity` config value is set.\r\n *\r\n * This method is used internally by the Matter Debug Renderer, but is also exposed publically should\r\n * you wish to render bounds to your own Graphics instance.\r\n *\r\n * @method Phaser.Physics.Matter.World#renderBodyVelocity\r\n * @since 3.22.0\r\n *\r\n * @param {array} bodies - An array of bodies from the localWorld.\r\n * @param {Phaser.GameObjects.Graphics} graphics - The Graphics object to render to.\r\n * @param {number} lineColor - The line color.\r\n * @param {number} lineOpacity - The line opacity, between 0 and 1.\r\n * @param {number} lineThickness - The line thickness.\r\n */", "meta": { "filename": "World.js", - "lineno": 1817, + "lineno": 1819, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -285885,14 +286427,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#renderBodyVelocity", "scope": "instance", - "___id": "T000002R032007", + "___id": "T000002R031998", "___s": true }, { "comment": "/**\r\n * Renders a single Matter Body to the given Phaser Graphics Game Object.\r\n *\r\n * This method is used internally by the Matter Debug Renderer, but is also exposed publically should\r\n * you wish to render a Body to your own Graphics instance.\r\n *\r\n * If you don't wish to render a line around the body, set the `lineColor` parameter to `null`.\r\n * Equally, if you don't wish to render a fill, set the `fillColor` parameter to `null`.\r\n *\r\n * @method Phaser.Physics.Matter.World#renderBody\r\n * @since 3.22.0\r\n *\r\n * @param {MatterJS.BodyType} body - The Matter Body to be rendered.\r\n * @param {Phaser.GameObjects.Graphics} graphics - The Graphics object to render to.\r\n * @param {boolean} showInternalEdges - Render internal edges of the polygon?\r\n * @param {number} [lineColor] - The line color.\r\n * @param {number} [lineOpacity] - The line opacity, between 0 and 1.\r\n * @param {number} [lineThickness=1] - The line thickness.\r\n * @param {number} [fillColor] - The fill color.\r\n * @param {number} [fillOpacity] - The fill opacity, between 0 and 1.\r\n *\r\n * @return {this} This Matter World instance for method chaining.\r\n */", "meta": { "filename": "World.js", - "lineno": 1949, + "lineno": 1951, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -286031,14 +286573,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#renderBody", "scope": "instance", - "___id": "T000002R032040", + "___id": "T000002R032031", "___s": true }, { "comment": "/**\r\n * Renders the Convex Hull for a single Matter Body to the given Phaser Graphics Game Object.\r\n *\r\n * This method is used internally by the Matter Debug Renderer, but is also exposed publically should\r\n * you wish to render a Body hull to your own Graphics instance.\r\n *\r\n * @method Phaser.Physics.Matter.World#renderConvexHull\r\n * @since 3.22.0\r\n *\r\n * @param {MatterJS.BodyType} body - The Matter Body to be rendered.\r\n * @param {Phaser.GameObjects.Graphics} graphics - The Graphics object to render to.\r\n * @param {number} hullColor - The color used to render the hull.\r\n * @param {number} [lineThickness=1] - The hull line thickness.\r\n *\r\n * @return {this} This Matter World instance for method chaining.\r\n */", "meta": { "filename": "World.js", - "lineno": 2089, + "lineno": 2091, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -286121,14 +286663,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#renderConvexHull", "scope": "instance", - "___id": "T000002R032065", + "___id": "T000002R032056", "___s": true }, { "comment": "/**\r\n * Renders a single Matter Constraint, such as a Pin or a Spring, to the given Phaser Graphics Game Object.\r\n *\r\n * This method is used internally by the Matter Debug Renderer, but is also exposed publically should\r\n * you wish to render a Constraint to your own Graphics instance.\r\n *\r\n * @method Phaser.Physics.Matter.World#renderConstraint\r\n * @since 3.22.0\r\n *\r\n * @param {MatterJS.ConstraintType} constraint - The Matter Constraint to render.\r\n * @param {Phaser.GameObjects.Graphics} graphics - The Graphics object to render to.\r\n * @param {number} lineColor - The line color.\r\n * @param {number} lineOpacity - The line opacity, between 0 and 1.\r\n * @param {number} lineThickness - The line thickness.\r\n * @param {number} pinSize - If this constraint is a pin, this sets the size of the pin circle.\r\n * @param {number} anchorColor - The color used when rendering this constraints anchors. Set to `null` to not render anchors.\r\n * @param {number} anchorSize - The size of the anchor circle, if this constraint has anchors and is rendering them.\r\n *\r\n * @return {this} This Matter World instance for method chaining.\r\n */", "meta": { "filename": "World.js", - "lineno": 2167, + "lineno": 2169, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -286261,14 +286803,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#renderConstraint", "scope": "instance", - "___id": "T000002R032084", + "___id": "T000002R032075", "___s": true }, { "comment": "/**\r\n * Resets the internal collision IDs that Matter.JS uses for Body collision groups.\r\n *\r\n * You should call this before destroying your game if you need to restart the game\r\n * again on the same page, without first reloading the page. Or, if you wish to\r\n * consistently destroy a Scene that contains Matter.js and then run it again\r\n * later in the same game.\r\n *\r\n * @method Phaser.Physics.Matter.World#resetCollisionIDs\r\n * @since 3.17.0\r\n */", "meta": { "filename": "World.js", - "lineno": 2263, + "lineno": 2265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -286280,14 +286822,14 @@ "memberof": "Phaser.Physics.Matter.World", "longname": "Phaser.Physics.Matter.World#resetCollisionIDs", "scope": "instance", - "___id": "T000002R032102", + "___id": "T000002R032093", "___s": true }, { "comment": "/**\r\n * Will remove all Matter physics event listeners and clear the matter physics world,\r\n * engine and any debug graphics, if any.\r\n *\r\n * @method Phaser.Physics.Matter.World#shutdown\r\n * @since 3.0.0\r\n */", "meta": { "filename": "World.js", - "lineno": 2283, + "lineno": 2285, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -286300,14 +286842,14 @@ "longname": "Phaser.Physics.Matter.World#shutdown", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#shutdown", - "___id": "T000002R032107", + "___id": "T000002R032098", "___s": true }, { "comment": "/**\r\n * Will remove all Matter physics event listeners and clear the matter physics world,\r\n * engine and any debug graphics, if any.\r\n *\r\n * After destroying the world it cannot be re-used again.\r\n *\r\n * @method Phaser.Physics.Matter.World#destroy\r\n * @since 3.0.0\r\n */", "meta": { "filename": "World.js", - "lineno": 2306, + "lineno": 2308, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\physics\\matter-js", "code": {} @@ -286320,7 +286862,7 @@ "longname": "Phaser.Physics.Matter.World#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R032109", + "___id": "T000002R032100", "___s": true }, { @@ -286354,7 +286896,7 @@ ], "scope": "static", "longname": "Phaser.Plugins.BasePlugin", - "___id": "T000002R032113", + "___id": "T000002R032104", "___s": true }, { @@ -286383,7 +286925,7 @@ "longname": "Phaser.Plugins.BasePlugin#pluginManager", "scope": "instance", "kind": "member", - "___id": "T000002R032116", + "___id": "T000002R032107", "___s": true }, { @@ -286412,7 +286954,7 @@ "longname": "Phaser.Plugins.BasePlugin#game", "scope": "instance", "kind": "member", - "___id": "T000002R032118", + "___id": "T000002R032109", "___s": true }, { @@ -286449,7 +286991,7 @@ "memberof": "Phaser.Plugins.BasePlugin", "longname": "Phaser.Plugins.BasePlugin#init", "scope": "instance", - "___id": "T000002R032120", + "___id": "T000002R032111", "___s": true }, { @@ -286468,7 +287010,7 @@ "memberof": "Phaser.Plugins.BasePlugin", "longname": "Phaser.Plugins.BasePlugin#start", "scope": "instance", - "___id": "T000002R032122", + "___id": "T000002R032113", "___s": true }, { @@ -286487,7 +287029,7 @@ "memberof": "Phaser.Plugins.BasePlugin", "longname": "Phaser.Plugins.BasePlugin#stop", "scope": "instance", - "___id": "T000002R032124", + "___id": "T000002R032115", "___s": true }, { @@ -286506,7 +287048,7 @@ "memberof": "Phaser.Plugins.BasePlugin", "longname": "Phaser.Plugins.BasePlugin#destroy", "scope": "instance", - "___id": "T000002R032126", + "___id": "T000002R032117", "___s": true }, { @@ -286525,7 +287067,7 @@ "since": "3.0.0", "longname": "Phaser.Plugins.DefaultPlugins", "scope": "static", - "___id": "T000002R032133", + "___id": "T000002R032124", "___s": true }, { @@ -286553,7 +287095,7 @@ "longname": "Phaser.Plugins.DefaultPlugins.Global", "scope": "static", "kind": "member", - "___id": "T000002R032135", + "___id": "T000002R032126", "___s": true }, { @@ -286581,7 +287123,7 @@ "longname": "Phaser.Plugins.DefaultPlugins.CoreScene", "scope": "static", "kind": "member", - "___id": "T000002R032137", + "___id": "T000002R032128", "___s": true }, { @@ -286609,7 +287151,7 @@ "longname": "Phaser.Plugins.DefaultPlugins.DefaultScene", "scope": "static", "kind": "member", - "___id": "T000002R032139", + "___id": "T000002R032130", "___s": true }, { @@ -286626,7 +287168,7 @@ "memberof": "Phaser", "longname": "Phaser.Plugins", "scope": "static", - "___id": "T000002R032142", + "___id": "T000002R032133", "___s": true }, { @@ -286643,7 +287185,7 @@ "memberof": "Phaser.Plugins", "longname": "Phaser.Plugins.PluginCache", "scope": "static", - "___id": "T000002R032152", + "___id": "T000002R032143", "___s": true }, { @@ -286718,7 +287260,7 @@ "memberof": "Phaser.Plugins.PluginCache", "longname": "Phaser.Plugins.PluginCache.register", "scope": "static", - "___id": "T000002R032153", + "___id": "T000002R032144", "___s": true }, { @@ -286793,7 +287335,7 @@ "memberof": "Phaser.Plugins.PluginCache", "longname": "Phaser.Plugins.PluginCache.registerCustom", "scope": "static", - "___id": "T000002R032160", + "___id": "T000002R032151", "___s": true }, { @@ -286841,7 +287383,7 @@ "memberof": "Phaser.Plugins.PluginCache", "longname": "Phaser.Plugins.PluginCache.hasCore", "scope": "static", - "___id": "T000002R032166", + "___id": "T000002R032157", "___s": true }, { @@ -286889,7 +287431,7 @@ "memberof": "Phaser.Plugins.PluginCache", "longname": "Phaser.Plugins.PluginCache.hasCustom", "scope": "static", - "___id": "T000002R032168", + "___id": "T000002R032159", "___s": true }, { @@ -286937,7 +287479,7 @@ "memberof": "Phaser.Plugins.PluginCache", "longname": "Phaser.Plugins.PluginCache.getCore", "scope": "static", - "___id": "T000002R032170", + "___id": "T000002R032161", "___s": true }, { @@ -286985,7 +287527,7 @@ "memberof": "Phaser.Plugins.PluginCache", "longname": "Phaser.Plugins.PluginCache.getCustom", "scope": "static", - "___id": "T000002R032172", + "___id": "T000002R032163", "___s": true }, { @@ -287033,7 +287575,7 @@ "memberof": "Phaser.Plugins.PluginCache", "longname": "Phaser.Plugins.PluginCache.getCustomClass", "scope": "static", - "___id": "T000002R032174", + "___id": "T000002R032165", "___s": true }, { @@ -287067,7 +287609,7 @@ "memberof": "Phaser.Plugins.PluginCache", "longname": "Phaser.Plugins.PluginCache.remove", "scope": "static", - "___id": "T000002R032176", + "___id": "T000002R032167", "___s": true }, { @@ -287101,7 +287643,7 @@ "memberof": "Phaser.Plugins.PluginCache", "longname": "Phaser.Plugins.PluginCache.removeCustom", "scope": "static", - "___id": "T000002R032178", + "___id": "T000002R032169", "___s": true }, { @@ -287120,7 +287662,7 @@ "memberof": "Phaser.Plugins.PluginCache", "longname": "Phaser.Plugins.PluginCache.destroyCorePlugins", "scope": "static", - "___id": "T000002R032180", + "___id": "T000002R032171", "___s": true }, { @@ -287139,7 +287681,7 @@ "memberof": "Phaser.Plugins.PluginCache", "longname": "Phaser.Plugins.PluginCache.destroyCustomPlugins", "scope": "static", - "___id": "T000002R032183", + "___id": "T000002R032174", "___s": true }, { @@ -287173,7 +287715,7 @@ ], "scope": "static", "longname": "Phaser.Plugins.PluginManager", - "___id": "T000002R032196", + "___id": "T000002R032187", "___s": true }, { @@ -287201,7 +287743,7 @@ "longname": "Phaser.Plugins.PluginManager#game", "scope": "instance", "kind": "member", - "___id": "T000002R032200", + "___id": "T000002R032191", "___s": true }, { @@ -287238,7 +287780,7 @@ "longname": "Phaser.Plugins.PluginManager#plugins", "scope": "instance", "kind": "member", - "___id": "T000002R032202", + "___id": "T000002R032193", "___s": true }, { @@ -287275,7 +287817,7 @@ "longname": "Phaser.Plugins.PluginManager#scenePlugins", "scope": "instance", "kind": "member", - "___id": "T000002R032204", + "___id": "T000002R032195", "___s": true }, { @@ -287295,7 +287837,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#boot", "scope": "instance", - "___id": "T000002R032210", + "___id": "T000002R032201", "___s": true }, { @@ -287356,7 +287898,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#addToScene", "scope": "instance", - "___id": "T000002R032238", + "___id": "T000002R032229", "___s": true }, { @@ -287399,7 +287941,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#getDefaultScenePlugins", "scope": "instance", - "___id": "T000002R032266", + "___id": "T000002R032257", "___s": true }, { @@ -287489,7 +288031,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#installScenePlugin", "scope": "instance", - "___id": "T000002R032270", + "___id": "T000002R032261", "___s": true }, { @@ -287595,7 +288137,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#install", "scope": "instance", - "___id": "T000002R032276", + "___id": "T000002R032267", "___s": true }, { @@ -287644,7 +288186,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#getIndex", "scope": "instance", - "___id": "T000002R032287", + "___id": "T000002R032278", "___s": true }, { @@ -287693,7 +288235,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#getEntry", "scope": "instance", - "___id": "T000002R032292", + "___id": "T000002R032283", "___s": true }, { @@ -287741,7 +288283,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#isActive", "scope": "instance", - "___id": "T000002R032295", + "___id": "T000002R032286", "___s": true }, { @@ -287805,7 +288347,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#start", "scope": "instance", - "___id": "T000002R032298", + "___id": "T000002R032289", "___s": true }, { @@ -287854,7 +288396,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#stop", "scope": "instance", - "___id": "T000002R032314", + "___id": "T000002R032305", "___s": true }, { @@ -287929,7 +288471,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#get", "scope": "instance", - "___id": "T000002R032318", + "___id": "T000002R032309", "___s": true }, { @@ -287977,7 +288519,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#getClass", "scope": "instance", - "___id": "T000002R032324", + "___id": "T000002R032315", "___s": true }, { @@ -288011,7 +288553,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#removeGlobalPlugin", "scope": "instance", - "___id": "T000002R032326", + "___id": "T000002R032317", "___s": true }, { @@ -288045,7 +288587,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#removeScenePlugin", "scope": "instance", - "___id": "T000002R032329", + "___id": "T000002R032320", "___s": true }, { @@ -288107,7 +288649,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#registerGameObject", "scope": "instance", - "___id": "T000002R032331", + "___id": "T000002R032322", "___s": true }, { @@ -288171,7 +288713,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#removeGameObject", "scope": "instance", - "___id": "T000002R032333", + "___id": "T000002R032324", "___s": true }, { @@ -288232,7 +288774,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#registerFileType", "scope": "instance", - "___id": "T000002R032337", + "___id": "T000002R032328", "___s": true }, { @@ -288251,7 +288793,7 @@ "memberof": "Phaser.Plugins.PluginManager", "longname": "Phaser.Plugins.PluginManager#destroy", "scope": "instance", - "___id": "T000002R032340", + "___id": "T000002R032331", "___s": true }, { @@ -288314,7 +288856,7 @@ ], "scope": "static", "longname": "Phaser.Plugins.ScenePlugin", - "___id": "T000002R032350", + "___id": "T000002R032341", "___s": true }, { @@ -288345,7 +288887,7 @@ "longname": "Phaser.Plugins.ScenePlugin#scene", "scope": "instance", "kind": "member", - "___id": "T000002R032354", + "___id": "T000002R032345", "___s": true }, { @@ -288376,7 +288918,7 @@ "longname": "Phaser.Plugins.ScenePlugin#systems", "scope": "instance", "kind": "member", - "___id": "T000002R032356", + "___id": "T000002R032347", "___s": true }, { @@ -288405,7 +288947,7 @@ "longname": "Phaser.Plugins.ScenePlugin#pluginKey", "scope": "instance", "kind": "member", - "___id": "T000002R032358", + "___id": "T000002R032349", "___s": true }, { @@ -288424,7 +288966,7 @@ "memberof": "Phaser.Plugins.ScenePlugin", "longname": "Phaser.Plugins.ScenePlugin#boot", "scope": "instance", - "___id": "T000002R032360", + "___id": "T000002R032351", "___s": true }, { @@ -288444,7 +288986,7 @@ "longname": "Phaser.Plugins.ScenePlugin#destroy", "scope": "instance", "overrides": "Phaser.Plugins.BasePlugin#destroy", - "___id": "T000002R032362", + "___id": "T000002R032353", "___s": true }, { @@ -288528,7 +289070,7 @@ "memberof": "Phaser.Types.Plugins", "longname": "Phaser.Types.Plugins.CorePluginContainer", "scope": "static", - "___id": "T000002R032369", + "___id": "T000002R032360", "___s": true }, { @@ -288583,7 +289125,7 @@ "memberof": "Phaser.Types.Plugins", "longname": "Phaser.Types.Plugins.CustomPluginContainer", "scope": "static", - "___id": "T000002R032370", + "___id": "T000002R032361", "___s": true }, { @@ -288666,7 +289208,7 @@ "memberof": "Phaser.Types.Plugins", "longname": "Phaser.Types.Plugins.GlobalPlugin", "scope": "static", - "___id": "T000002R032371", + "___id": "T000002R032362", "___s": true }, { @@ -288683,7 +289225,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Plugins", "scope": "static", - "___id": "T000002R032372", + "___id": "T000002R032363", "___s": true }, { @@ -288702,7 +289244,7 @@ "memberof": "Phaser", "longname": "Phaser.BlendModes", "scope": "static", - "___id": "T000002R032373", + "___id": "T000002R032364", "___s": true }, { @@ -288730,7 +289272,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.SKIP_CHECK", "scope": "static", - "___id": "T000002R032375", + "___id": "T000002R032366", "___s": true }, { @@ -288758,7 +289300,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.NORMAL", "scope": "static", - "___id": "T000002R032377", + "___id": "T000002R032368", "___s": true }, { @@ -288786,7 +289328,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.ADD", "scope": "static", - "___id": "T000002R032379", + "___id": "T000002R032370", "___s": true }, { @@ -288814,7 +289356,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.MULTIPLY", "scope": "static", - "___id": "T000002R032381", + "___id": "T000002R032372", "___s": true }, { @@ -288842,7 +289384,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.SCREEN", "scope": "static", - "___id": "T000002R032383", + "___id": "T000002R032374", "___s": true }, { @@ -288870,7 +289412,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.OVERLAY", "scope": "static", - "___id": "T000002R032385", + "___id": "T000002R032376", "___s": true }, { @@ -288898,7 +289440,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.DARKEN", "scope": "static", - "___id": "T000002R032387", + "___id": "T000002R032378", "___s": true }, { @@ -288926,7 +289468,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.LIGHTEN", "scope": "static", - "___id": "T000002R032389", + "___id": "T000002R032380", "___s": true }, { @@ -288954,7 +289496,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.COLOR_DODGE", "scope": "static", - "___id": "T000002R032391", + "___id": "T000002R032382", "___s": true }, { @@ -288982,7 +289524,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.COLOR_BURN", "scope": "static", - "___id": "T000002R032393", + "___id": "T000002R032384", "___s": true }, { @@ -289010,7 +289552,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.HARD_LIGHT", "scope": "static", - "___id": "T000002R032395", + "___id": "T000002R032386", "___s": true }, { @@ -289038,7 +289580,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.SOFT_LIGHT", "scope": "static", - "___id": "T000002R032397", + "___id": "T000002R032388", "___s": true }, { @@ -289066,7 +289608,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.DIFFERENCE", "scope": "static", - "___id": "T000002R032399", + "___id": "T000002R032390", "___s": true }, { @@ -289094,7 +289636,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.EXCLUSION", "scope": "static", - "___id": "T000002R032401", + "___id": "T000002R032392", "___s": true }, { @@ -289122,7 +289664,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.HUE", "scope": "static", - "___id": "T000002R032403", + "___id": "T000002R032394", "___s": true }, { @@ -289150,7 +289692,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.SATURATION", "scope": "static", - "___id": "T000002R032405", + "___id": "T000002R032396", "___s": true }, { @@ -289178,7 +289720,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.COLOR", "scope": "static", - "___id": "T000002R032407", + "___id": "T000002R032398", "___s": true }, { @@ -289206,7 +289748,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.LUMINOSITY", "scope": "static", - "___id": "T000002R032409", + "___id": "T000002R032400", "___s": true }, { @@ -289234,7 +289776,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.ERASE", "scope": "static", - "___id": "T000002R032411", + "___id": "T000002R032402", "___s": true }, { @@ -289262,7 +289804,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.SOURCE_IN", "scope": "static", - "___id": "T000002R032413", + "___id": "T000002R032404", "___s": true }, { @@ -289290,7 +289832,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.SOURCE_OUT", "scope": "static", - "___id": "T000002R032415", + "___id": "T000002R032406", "___s": true }, { @@ -289318,7 +289860,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.SOURCE_ATOP", "scope": "static", - "___id": "T000002R032417", + "___id": "T000002R032408", "___s": true }, { @@ -289346,7 +289888,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.DESTINATION_OVER", "scope": "static", - "___id": "T000002R032419", + "___id": "T000002R032410", "___s": true }, { @@ -289374,7 +289916,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.DESTINATION_IN", "scope": "static", - "___id": "T000002R032421", + "___id": "T000002R032412", "___s": true }, { @@ -289402,7 +289944,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.DESTINATION_OUT", "scope": "static", - "___id": "T000002R032423", + "___id": "T000002R032414", "___s": true }, { @@ -289430,7 +289972,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.DESTINATION_ATOP", "scope": "static", - "___id": "T000002R032425", + "___id": "T000002R032416", "___s": true }, { @@ -289458,7 +290000,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.LIGHTER", "scope": "static", - "___id": "T000002R032427", + "___id": "T000002R032418", "___s": true }, { @@ -289486,7 +290028,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.COPY", "scope": "static", - "___id": "T000002R032429", + "___id": "T000002R032420", "___s": true }, { @@ -289514,7 +290056,7 @@ "memberof": "Phaser.BlendModes", "longname": "Phaser.BlendModes.XOR", "scope": "static", - "___id": "T000002R032431", + "___id": "T000002R032422", "___s": true }, { @@ -289551,7 +290093,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.Canvas.CanvasRenderer", - "___id": "T000002R032443", + "___id": "T000002R032434", "___s": true }, { @@ -289579,7 +290121,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#config", "scope": "instance", "kind": "member", - "___id": "T000002R032448", + "___id": "T000002R032439", "___s": true }, { @@ -289607,7 +290149,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#game", "scope": "instance", "kind": "member", - "___id": "T000002R032454", + "___id": "T000002R032445", "___s": true }, { @@ -289635,7 +290177,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#type", "scope": "instance", "kind": "member", - "___id": "T000002R032456", + "___id": "T000002R032447", "___s": true }, { @@ -289664,7 +290206,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#drawCount", "scope": "instance", "kind": "member", - "___id": "T000002R032458", + "___id": "T000002R032449", "___s": true }, { @@ -289692,7 +290234,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#width", "scope": "instance", "kind": "member", - "___id": "T000002R032460", + "___id": "T000002R032451", "___s": true }, { @@ -289720,7 +290262,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#height", "scope": "instance", "kind": "member", - "___id": "T000002R032462", + "___id": "T000002R032453", "___s": true }, { @@ -289748,7 +290290,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#gameCanvas", "scope": "instance", "kind": "member", - "___id": "T000002R032464", + "___id": "T000002R032455", "___s": true }, { @@ -289776,7 +290318,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#gameContext", "scope": "instance", "kind": "member", - "___id": "T000002R032470", + "___id": "T000002R032461", "___s": true }, { @@ -289804,7 +290346,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#currentContext", "scope": "instance", "kind": "member", - "___id": "T000002R032472", + "___id": "T000002R032463", "___s": true }, { @@ -289832,7 +290374,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#antialias", "scope": "instance", "kind": "member", - "___id": "T000002R032474", + "___id": "T000002R032465", "___s": true }, { @@ -289860,7 +290402,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#blendModes", "scope": "instance", "kind": "member", - "___id": "T000002R032476", + "___id": "T000002R032467", "___s": true }, { @@ -289888,7 +290430,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#snapshotState", "scope": "instance", "kind": "member", - "___id": "T000002R032478", + "___id": "T000002R032469", "___s": true }, { @@ -289916,7 +290458,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#isBooted", "scope": "instance", "kind": "member", - "___id": "T000002R032494", + "___id": "T000002R032485", "___s": true }, { @@ -289935,7 +290477,7 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#init", "scope": "instance", - "___id": "T000002R032496", + "___id": "T000002R032487", "___s": true }, { @@ -289982,7 +290524,7 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#onResize", "scope": "instance", - "___id": "T000002R032505", + "___id": "T000002R032496", "___s": true }, { @@ -290034,7 +290576,7 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#resize", "scope": "instance", - "___id": "T000002R032507", + "___id": "T000002R032498", "___s": true }, { @@ -290053,7 +290595,7 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#resetTransform", "scope": "instance", - "___id": "T000002R032511", + "___id": "T000002R032502", "___s": true }, { @@ -290102,7 +290644,7 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#setBlendMode", "scope": "instance", - "___id": "T000002R032513", + "___id": "T000002R032504", "___s": true }, { @@ -290154,7 +290696,7 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#setContext", "scope": "instance", - "___id": "T000002R032516", + "___id": "T000002R032507", "___s": true }, { @@ -290203,11 +290745,11 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#setAlpha", "scope": "instance", - "___id": "T000002R032519", + "___id": "T000002R032510", "___s": true }, { - "comment": "/**\r\n * Called at the start of the render loop.\r\n *\r\n * @method Phaser.Renderer.Canvas.CanvasRenderer#preRender\r\n * @fires Phaser.Renderer.Events#PRE_RENDER\r\n * @since 3.0.0\r\n */", + "comment": "/**\r\n * Called at the start of the render loop.\r\n *\r\n * @method Phaser.Renderer.Canvas.CanvasRenderer#preRender\r\n * @fires Phaser.Renderer.Events#PRE_RENDER_CLEAR\r\n * @fires Phaser.Renderer.Events#PRE_RENDER\r\n * @since 3.0.0\r\n */", "meta": { "filename": "CanvasRenderer.js", "lineno": 353, @@ -290219,20 +290761,21 @@ "kind": "function", "name": "preRender", "fires": [ + "Phaser.Renderer.Events#event:PRE_RENDER_CLEAR", "Phaser.Renderer.Events#event:PRE_RENDER" ], "since": "3.0.0", "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#preRender", "scope": "instance", - "___id": "T000002R032522", + "___id": "T000002R032513", "___s": true }, { "comment": "/**\r\n * The core render step for a Scene Camera.\r\n *\r\n * Iterates through the given array of Game Objects and renders them with the given Camera.\r\n *\r\n * This is called by the `CameraManager.render` method. The Camera Manager instance belongs to a Scene, and is invoked\r\n * by the Scene Systems.render method.\r\n *\r\n * This method is not called if `Camera.visible` is `false`, or `Camera.alpha` is zero.\r\n *\r\n * @method Phaser.Renderer.Canvas.CanvasRenderer#render\r\n * @fires Phaser.Renderer.Events#RENDER\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Scene} scene - The Scene to render.\r\n * @param {Phaser.GameObjects.GameObject[]} children - An array of filtered Game Objects that can be rendered by the given Camera.\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Scene Camera to render with.\r\n */", "meta": { "filename": "CanvasRenderer.js", - "lineno": 390, + "lineno": 393, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\canvas", "code": {} @@ -290297,14 +290840,14 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#render", "scope": "instance", - "___id": "T000002R032532", + "___id": "T000002R032523", "___s": true }, { "comment": "/**\r\n * Restores the game context's global settings and takes a snapshot if one is scheduled.\r\n *\r\n * The post-render step happens after all Cameras in all Scenes have been rendered.\r\n *\r\n * @method Phaser.Renderer.Canvas.CanvasRenderer#postRender\r\n * @fires Phaser.Renderer.Events#POST_RENDER\r\n * @since 3.0.0\r\n */", "meta": { "filename": "CanvasRenderer.js", - "lineno": 508, + "lineno": 511, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\canvas", "code": {} @@ -290319,14 +290862,14 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#postRender", "scope": "instance", - "___id": "T000002R032551", + "___id": "T000002R032542", "___s": true }, { "comment": "/**\r\n * Takes a snapshot of the given area of the given canvas.\r\n *\r\n * Unlike the other snapshot methods, this one is processed immediately and doesn't wait for the next render.\r\n *\r\n * Snapshots work by creating an Image object from the canvas data, this is a blocking process, which gets\r\n * more expensive the larger the canvas size gets, so please be careful how you employ this in your game.\r\n *\r\n * @method Phaser.Renderer.Canvas.CanvasRenderer#snapshotCanvas\r\n * @since 3.19.0\r\n *\r\n * @param {HTMLCanvasElement} canvas - The canvas to grab from.\r\n * @param {Phaser.Types.Renderer.Snapshot.SnapshotCallback} callback - The Function to invoke after the snapshot image is created.\r\n * @param {boolean} [getPixel=false] - Grab a single pixel as a Color object, or an area as an Image object?\r\n * @param {number} [x=0] - The x coordinate to grab from.\r\n * @param {number} [y=0] - The y coordinate to grab from.\r\n * @param {number} [width=canvas.width] - The width of the area to grab.\r\n * @param {number} [height=canvas.height] - The height of the area to grab.\r\n * @param {string} [type='image/png'] - The format of the image to create, usually `image/png` or `image/jpeg`.\r\n * @param {number} [encoderOptions=0.92] - The image quality, between 0 and 1. Used for image formats with lossy compression, such as `image/jpeg`.\r\n *\r\n * @return {this} This Canvas Renderer.\r\n */", "meta": { "filename": "CanvasRenderer.js", - "lineno": 535, + "lineno": 538, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\canvas", "code": {} @@ -290486,14 +291029,14 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#snapshotCanvas", "scope": "instance", - "___id": "T000002R032556", + "___id": "T000002R032547", "___s": true }, { "comment": "/**\r\n * Schedules a snapshot of the entire game viewport to be taken after the current frame is rendered.\r\n *\r\n * To capture a specific area see the `snapshotArea` method. To capture a specific pixel, see `snapshotPixel`.\r\n *\r\n * Only one snapshot can be active _per frame_. If you have already called `snapshotPixel`, for example, then\r\n * calling this method will override it.\r\n *\r\n * Snapshots work by creating an Image object from the canvas data, this is a blocking process, which gets\r\n * more expensive the larger the canvas size gets, so please be careful how you employ this in your game.\r\n *\r\n * @method Phaser.Renderer.Canvas.CanvasRenderer#snapshot\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Types.Renderer.Snapshot.SnapshotCallback} callback - The Function to invoke after the snapshot image is created.\r\n * @param {string} [type='image/png'] - The format of the image to create, usually `image/png` or `image/jpeg`.\r\n * @param {number} [encoderOptions=0.92] - The image quality, between 0 and 1. Used for image formats with lossy compression, such as `image/jpeg`.\r\n *\r\n * @return {this} This WebGL Renderer.\r\n */", "meta": { "filename": "CanvasRenderer.js", - "lineno": 575, + "lineno": 578, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\canvas", "code": {} @@ -290565,14 +291108,14 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#snapshot", "scope": "instance", - "___id": "T000002R032562", + "___id": "T000002R032553", "___s": true }, { "comment": "/**\r\n * Schedules a snapshot of the given area of the game viewport to be taken after the current frame is rendered.\r\n *\r\n * To capture the whole game viewport see the `snapshot` method. To capture a specific pixel, see `snapshotPixel`.\r\n *\r\n * Only one snapshot can be active _per frame_. If you have already called `snapshotPixel`, for example, then\r\n * calling this method will override it.\r\n *\r\n * Snapshots work by creating an Image object from the canvas data, this is a blocking process, which gets\r\n * more expensive the larger the canvas size gets, so please be careful how you employ this in your game.\r\n *\r\n * @method Phaser.Renderer.Canvas.CanvasRenderer#snapshotArea\r\n * @since 3.16.0\r\n *\r\n * @param {number} x - The x coordinate to grab from.\r\n * @param {number} y - The y coordinate to grab from.\r\n * @param {number} width - The width of the area to grab.\r\n * @param {number} height - The height of the area to grab.\r\n * @param {Phaser.Types.Renderer.Snapshot.SnapshotCallback} callback - The Function to invoke after the snapshot image is created.\r\n * @param {string} [type='image/png'] - The format of the image to create, usually `image/png` or `image/jpeg`.\r\n * @param {number} [encoderOptions=0.92] - The image quality, between 0 and 1. Used for image formats with lossy compression, such as `image/jpeg`.\r\n *\r\n * @return {this} This WebGL Renderer.\r\n */", "meta": { "filename": "CanvasRenderer.js", - "lineno": 600, + "lineno": 603, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\canvas", "code": {} @@ -290696,14 +291239,14 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#snapshotArea", "scope": "instance", - "___id": "T000002R032564", + "___id": "T000002R032555", "___s": true }, { "comment": "/**\r\n * Schedules a snapshot of the given pixel from the game viewport to be taken after the current frame is rendered.\r\n *\r\n * To capture the whole game viewport see the `snapshot` method. To capture a specific area, see `snapshotArea`.\r\n *\r\n * Only one snapshot can be active _per frame_. If you have already called `snapshotArea`, for example, then\r\n * calling this method will override it.\r\n *\r\n * Unlike the other two snapshot methods, this one will return a `Color` object containing the color data for\r\n * the requested pixel. It doesn't need to create an internal Canvas or Image object, so is a lot faster to execute,\r\n * using less memory.\r\n *\r\n * @method Phaser.Renderer.Canvas.CanvasRenderer#snapshotPixel\r\n * @since 3.16.0\r\n *\r\n * @param {number} x - The x coordinate of the pixel to get.\r\n * @param {number} y - The y coordinate of the pixel to get.\r\n * @param {Phaser.Types.Renderer.Snapshot.SnapshotCallback} callback - The Function to invoke after the snapshot pixel data is extracted.\r\n *\r\n * @return {this} This WebGL Renderer.\r\n */", "meta": { "filename": "CanvasRenderer.js", - "lineno": 640, + "lineno": 643, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\canvas", "code": {} @@ -290771,14 +291314,14 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#snapshotPixel", "scope": "instance", - "___id": "T000002R032575", + "___id": "T000002R032566", "___s": true }, { "comment": "/**\r\n * Takes a Sprite Game Object, or any object that extends it, and draws it to the current context.\r\n *\r\n * @method Phaser.Renderer.Canvas.CanvasRenderer#batchSprite\r\n * @since 3.12.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject} sprite - The texture based Game Object to draw.\r\n * @param {Phaser.Textures.Frame} frame - The frame to draw, doesn't have to be that owned by the Game Object.\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to use for the rendering transform.\r\n * @param {Phaser.GameObjects.Components.TransformMatrix} [parentTransformMatrix] - The transform matrix of the parent container, if set.\r\n */", "meta": { "filename": "CanvasRenderer.js", - "lineno": 670, + "lineno": 673, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\canvas", "code": {} @@ -290845,14 +291388,14 @@ "memberof": "Phaser.Renderer.Canvas.CanvasRenderer", "longname": "Phaser.Renderer.Canvas.CanvasRenderer#batchSprite", "scope": "instance", - "___id": "T000002R032578", + "___id": "T000002R032569", "___s": true }, { "comment": "/**\r\n * Destroys all object references in the Canvas Renderer.\r\n *\r\n * @method Phaser.Renderer.Canvas.CanvasRenderer#destroy\r\n * @since 3.0.0\r\n */", "meta": { "filename": "CanvasRenderer.js", - "lineno": 857, + "lineno": 860, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\canvas", "code": {} @@ -290865,7 +291408,7 @@ "longname": "Phaser.Renderer.Canvas.CanvasRenderer#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R032623", + "___id": "T000002R032614", "___s": true }, { @@ -290882,7 +291425,7 @@ "memberof": "Phaser.Renderer", "longname": "Phaser.Renderer.Canvas", "scope": "static", - "___id": "T000002R032629", + "___id": "T000002R032620", "___s": true }, { @@ -290915,7 +291458,7 @@ "memberof": "Phaser.Renderer.Canvas", "longname": "Phaser.Renderer.Canvas.GetBlendModes", "scope": "static", - "___id": "T000002R032636", + "___id": "T000002R032627", "___s": true }, { @@ -291016,7 +291559,7 @@ "memberof": "Phaser.Renderer.Canvas", "longname": "Phaser.Renderer.Canvas.SetTransform", "scope": "static", - "___id": "T000002R032671", + "___id": "T000002R032662", "___s": true }, { @@ -291033,7 +291576,7 @@ "memberof": "Phaser.Renderer", "longname": "Phaser.Renderer.Events", "scope": "static", - "___id": "T000002R032679", + "___id": "T000002R032670", "___s": true }, { @@ -291076,7 +291619,7 @@ "memberof": "Phaser.Renderer.Events", "longname": "Phaser.Renderer.Events#event:LOSE_WEBGL", "scope": "instance", - "___id": "T000002R032687", + "___id": "T000002R032678", "___s": true }, { @@ -291104,7 +291647,35 @@ "memberof": "Phaser.Renderer.Events", "longname": "Phaser.Renderer.Events#event:POST_RENDER", "scope": "instance", - "___id": "T000002R032689", + "___id": "T000002R032680", + "___s": true + }, + { + "comment": "/**\r\n * The Pre-Render Clear Event.\r\n *\r\n * This event is dispatched by the Phaser Renderer. It happens at the start of the render step, before\r\n * the WebGL gl.clear function has been called. This allows you to toggle the `config.clearBeforeRender` property\r\n * as required, to have fine-grained control over when the canvas is cleared during rendering.\r\n * \r\n * Listen to it from within a Scene using: `this.renderer.events.on('prerenderclear', listener)`.\r\n * \r\n * It's very important to understand that this event is called _before_ the scissor and mask stacks are cleared.\r\n * This means you should not use this event to modify the scissor or mask. Instead, use the `prerender` event for that.\r\n * \r\n * If using the Canvas Renderer, this event is dispatched before the canvas is cleared, but after the context globalAlpha\r\n * and transform have been reset.\r\n *\r\n * @event Phaser.Renderer.Events#PRE_RENDER_CLEAR\r\n * @type {string}\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "PRE_RENDER_CLEAR_EVENT.js", + "lineno": 7, + "columnno": 0, + "path": "D:\\wamp\\www\\phaser\\src\\renderer\\events", + "code": {} + }, + "description": "The Pre-Render Clear Event.\r\rThis event is dispatched by the Phaser Renderer. It happens at the start of the render step, before\rthe WebGL gl.clear function has been called. This allows you to toggle the `config.clearBeforeRender` property\ras required, to have fine-grained control over when the canvas is cleared during rendering.\r\rListen to it from within a Scene using: `this.renderer.events.on('prerenderclear', listener)`.\r\rIt's very important to understand that this event is called _before_ the scissor and mask stacks are cleared.\rThis means you should not use this event to modify the scissor or mask. Instead, use the `prerender` event for that.\r\rIf using the Canvas Renderer, this event is dispatched before the canvas is cleared, but after the context globalAlpha\rand transform have been reset.", + "kind": "event", + "name": "PRE_RENDER_CLEAR", + "type": { + "names": [ + "string" + ], + "parsedType": { + "type": "NameExpression", + "name": "string" + } + }, + "since": "3.85.0", + "memberof": "Phaser.Renderer.Events", + "longname": "Phaser.Renderer.Events#event:PRE_RENDER_CLEAR", + "scope": "instance", + "___id": "T000002R032682", "___s": true }, { @@ -291132,7 +291703,7 @@ "memberof": "Phaser.Renderer.Events", "longname": "Phaser.Renderer.Events#event:PRE_RENDER", "scope": "instance", - "___id": "T000002R032691", + "___id": "T000002R032684", "___s": true }, { @@ -291188,7 +291759,7 @@ "memberof": "Phaser.Renderer.Events", "longname": "Phaser.Renderer.Events#event:RENDER", "scope": "instance", - "___id": "T000002R032693", + "___id": "T000002R032686", "___s": true }, { @@ -291244,7 +291815,7 @@ "memberof": "Phaser.Renderer.Events", "longname": "Phaser.Renderer.Events#event:RESIZE", "scope": "instance", - "___id": "T000002R032695", + "___id": "T000002R032688", "___s": true }, { @@ -291287,7 +291858,7 @@ "memberof": "Phaser.Renderer.Events", "longname": "Phaser.Renderer.Events#event:RESTORE_WEBGL", "scope": "instance", - "___id": "T000002R032697", + "___id": "T000002R032690", "___s": true }, { @@ -291304,7 +291875,7 @@ "memberof": "Phaser", "longname": "Phaser.Renderer", "scope": "static", - "___id": "T000002R032699", + "___id": "T000002R032692", "___s": true }, { @@ -291321,7 +291892,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Renderer", "scope": "static", - "___id": "T000002R032700", + "___id": "T000002R032693", "___s": true }, { @@ -291340,7 +291911,7 @@ "memberof": "Phaser", "longname": "Phaser.ScaleModes", "scope": "static", - "___id": "T000002R032706", + "___id": "T000002R032699", "___s": true }, { @@ -291369,7 +291940,7 @@ "longname": "Phaser.ScaleModes.DEFAULT", "scope": "static", "kind": "member", - "___id": "T000002R032708", + "___id": "T000002R032701", "___s": true }, { @@ -291398,7 +291969,7 @@ "longname": "Phaser.ScaleModes.LINEAR", "scope": "static", "kind": "member", - "___id": "T000002R032710", + "___id": "T000002R032703", "___s": true }, { @@ -291427,7 +291998,7 @@ "longname": "Phaser.ScaleModes.NEAREST", "scope": "static", "kind": "member", - "___id": "T000002R032712", + "___id": "T000002R032705", "___s": true }, { @@ -291474,7 +292045,7 @@ "memberof": "Phaser.Renderer.Snapshot", "longname": "Phaser.Renderer.Snapshot.Canvas", "scope": "static", - "___id": "T000002R032718", + "___id": "T000002R032711", "___s": true }, { @@ -291491,7 +292062,7 @@ "memberof": "Phaser.Renderer", "longname": "Phaser.Renderer.Snapshot", "scope": "static", - "___id": "T000002R032744", + "___id": "T000002R032737", "___s": true }, { @@ -291508,7 +292079,7 @@ "memberof": "Phaser.Types.Renderer", "longname": "Phaser.Types.Renderer.Snapshot", "scope": "static", - "___id": "T000002R032748", + "___id": "T000002R032741", "___s": true }, { @@ -291556,7 +292127,7 @@ "memberof": "Phaser.Types.Renderer.Snapshot", "longname": "Phaser.Types.Renderer.Snapshot.SnapshotCallback", "scope": "static", - "___id": "T000002R032749", + "___id": "T000002R032742", "___s": true }, { @@ -291744,7 +292315,7 @@ "memberof": "Phaser.Types.Renderer.Snapshot", "longname": "Phaser.Types.Renderer.Snapshot.SnapshotState", "scope": "static", - "___id": "T000002R032750", + "___id": "T000002R032743", "___s": true }, { @@ -291791,7 +292362,7 @@ "memberof": "Phaser.Renderer.Snapshot", "longname": "Phaser.Renderer.Snapshot.WebGL", "scope": "static", - "___id": "T000002R032754", + "___id": "T000002R032747", "___s": true }, { @@ -291819,7 +292390,7 @@ "longname": "Phaser.Renderer.WebGL.BYTE", "scope": "static", "kind": "member", - "___id": "T000002R032791", + "___id": "T000002R032784", "___s": true }, { @@ -291847,7 +292418,7 @@ "longname": "Phaser.Renderer.WebGL.UNSIGNED_BYTE", "scope": "static", "kind": "member", - "___id": "T000002R032795", + "___id": "T000002R032788", "___s": true }, { @@ -291875,7 +292446,7 @@ "longname": "Phaser.Renderer.WebGL.SHORT", "scope": "static", "kind": "member", - "___id": "T000002R032799", + "___id": "T000002R032792", "___s": true }, { @@ -291903,7 +292474,7 @@ "longname": "Phaser.Renderer.WebGL.UNSIGNED_SHORT", "scope": "static", "kind": "member", - "___id": "T000002R032803", + "___id": "T000002R032796", "___s": true }, { @@ -291931,7 +292502,7 @@ "longname": "Phaser.Renderer.WebGL.INT", "scope": "static", "kind": "member", - "___id": "T000002R032807", + "___id": "T000002R032800", "___s": true }, { @@ -291959,7 +292530,7 @@ "longname": "Phaser.Renderer.WebGL.UNSIGNED_INT", "scope": "static", "kind": "member", - "___id": "T000002R032811", + "___id": "T000002R032804", "___s": true }, { @@ -291987,7 +292558,7 @@ "longname": "Phaser.Renderer.WebGL.FLOAT", "scope": "static", "kind": "member", - "___id": "T000002R032815", + "___id": "T000002R032808", "___s": true }, { @@ -292004,7 +292575,7 @@ "memberof": "Phaser.Renderer", "longname": "Phaser.Renderer.WebGL", "scope": "static", - "___id": "T000002R032822", + "___id": "T000002R032815", "___s": true }, { @@ -292038,7 +292609,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.PipelineManager", - "___id": "T000002R032854", + "___id": "T000002R032847", "___s": true }, { @@ -292066,7 +292637,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#game", "scope": "instance", "kind": "member", - "___id": "T000002R032857", + "___id": "T000002R032850", "___s": true }, { @@ -292094,7 +292665,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#renderer", "scope": "instance", "kind": "member", - "___id": "T000002R032859", + "___id": "T000002R032852", "___s": true }, { @@ -292135,7 +292706,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#classes", "scope": "instance", "kind": "member", - "___id": "T000002R032861", + "___id": "T000002R032854", "___s": true }, { @@ -292176,7 +292747,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#postPipelineClasses", "scope": "instance", "kind": "member", - "___id": "T000002R032863", + "___id": "T000002R032856", "___s": true }, { @@ -292217,7 +292788,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#pipelines", "scope": "instance", "kind": "member", - "___id": "T000002R032865", + "___id": "T000002R032858", "___s": true }, { @@ -292253,7 +292824,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#postPipelineInstances", "scope": "instance", "kind": "member", - "___id": "T000002R032867", + "___id": "T000002R032860", "___s": true }, { @@ -292282,7 +292853,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#default", "scope": "instance", "kind": "member", - "___id": "T000002R032869", + "___id": "T000002R032862", "___s": true }, { @@ -292311,7 +292882,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#current", "scope": "instance", "kind": "member", - "___id": "T000002R032871", + "___id": "T000002R032864", "___s": true }, { @@ -292340,7 +292911,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#previous", "scope": "instance", "kind": "member", - "___id": "T000002R032873", + "___id": "T000002R032866", "___s": true }, { @@ -292369,7 +292940,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#MULTI_PIPELINE", "scope": "instance", "kind": "member", - "___id": "T000002R032875", + "___id": "T000002R032868", "___s": true }, { @@ -292398,7 +292969,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#BITMAPMASK_PIPELINE", "scope": "instance", "kind": "member", - "___id": "T000002R032877", + "___id": "T000002R032870", "___s": true }, { @@ -292427,7 +292998,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#UTILITY_PIPELINE", "scope": "instance", "kind": "member", - "___id": "T000002R032879", + "___id": "T000002R032872", "___s": true }, { @@ -292456,7 +293027,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#MOBILE_PIPELINE", "scope": "instance", "kind": "member", - "___id": "T000002R032881", + "___id": "T000002R032874", "___s": true }, { @@ -292485,7 +293056,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#FX_PIPELINE", "scope": "instance", "kind": "member", - "___id": "T000002R032883", + "___id": "T000002R032876", "___s": true }, { @@ -292514,7 +293085,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#fullFrame1", "scope": "instance", "kind": "member", - "___id": "T000002R032885", + "___id": "T000002R032878", "___s": true }, { @@ -292543,7 +293114,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#fullFrame2", "scope": "instance", "kind": "member", - "___id": "T000002R032887", + "___id": "T000002R032880", "___s": true }, { @@ -292572,7 +293143,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#halfFrame1", "scope": "instance", "kind": "member", - "___id": "T000002R032889", + "___id": "T000002R032882", "___s": true }, { @@ -292601,7 +293172,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#halfFrame2", "scope": "instance", "kind": "member", - "___id": "T000002R032891", + "___id": "T000002R032884", "___s": true }, { @@ -292638,7 +293209,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#renderTargets", "scope": "instance", "kind": "member", - "___id": "T000002R032893", + "___id": "T000002R032886", "___s": true }, { @@ -292666,7 +293237,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#maxDimension", "scope": "instance", "kind": "member", - "___id": "T000002R032895", + "___id": "T000002R032888", "___s": true }, { @@ -292694,7 +293265,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#frameInc", "scope": "instance", "kind": "member", - "___id": "T000002R032897", + "___id": "T000002R032890", "___s": true }, { @@ -292722,7 +293293,7 @@ "longname": "Phaser.Renderer.WebGL.PipelineManager#targetIndex", "scope": "instance", "kind": "member", - "___id": "T000002R032899", + "___id": "T000002R032892", "___s": true }, { @@ -292782,7 +293353,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#boot", "scope": "instance", - "___id": "T000002R032901", + "___id": "T000002R032894", "___s": true }, { @@ -292840,7 +293411,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#setDefaultPipeline", "scope": "instance", - "___id": "T000002R032935", + "___id": "T000002R032928", "___s": true }, { @@ -292901,7 +293472,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#add", "scope": "instance", - "___id": "T000002R032939", + "___id": "T000002R032932", "___s": true }, { @@ -292963,7 +293534,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#addPostPipeline", "scope": "instance", - "___id": "T000002R032945", + "___id": "T000002R032938", "___s": true }, { @@ -292982,7 +293553,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#flush", "scope": "instance", - "___id": "T000002R032947", + "___id": "T000002R032940", "___s": true }, { @@ -293040,7 +293611,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#has", "scope": "instance", - "___id": "T000002R032949", + "___id": "T000002R032942", "___s": true }, { @@ -293098,7 +293669,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#get", "scope": "instance", - "___id": "T000002R032952", + "___id": "T000002R032945", "___s": true }, { @@ -293189,7 +293760,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#getPostPipeline", "scope": "instance", - "___id": "T000002R032955", + "___id": "T000002R032948", "___s": true }, { @@ -293223,7 +293794,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#removePostPipeline", "scope": "instance", - "___id": "T000002R032970", + "___id": "T000002R032963", "___s": true }, { @@ -293287,7 +293858,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#remove", "scope": "instance", - "___id": "T000002R032972", + "___id": "T000002R032965", "___s": true }, { @@ -293363,7 +293934,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#set", "scope": "instance", - "___id": "T000002R032976", + "___id": "T000002R032969", "___s": true }, { @@ -293397,7 +293968,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#preBatch", "scope": "instance", - "___id": "T000002R032979", + "___id": "T000002R032972", "___s": true }, { @@ -293431,7 +294002,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#postBatch", "scope": "instance", - "___id": "T000002R032984", + "___id": "T000002R032977", "___s": true }, { @@ -293465,7 +294036,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#preBatchCamera", "scope": "instance", - "___id": "T000002R032989", + "___id": "T000002R032982", "___s": true }, { @@ -293499,7 +294070,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#postBatchCamera", "scope": "instance", - "___id": "T000002R032994", + "___id": "T000002R032987", "___s": true }, { @@ -293561,7 +294132,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#isCurrent", "scope": "instance", - "___id": "T000002R032999", + "___id": "T000002R032992", "___s": true }, { @@ -293669,7 +294240,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#copyFrame", "scope": "instance", - "___id": "T000002R033004", + "___id": "T000002R032997", "___s": true }, { @@ -293703,7 +294274,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#copyToGame", "scope": "instance", - "___id": "T000002R033006", + "___id": "T000002R032999", "___s": true }, { @@ -293795,7 +294366,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#drawFrame", "scope": "instance", - "___id": "T000002R033008", + "___id": "T000002R033001", "___s": true }, { @@ -293901,7 +294472,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#blendFrames", "scope": "instance", - "___id": "T000002R033010", + "___id": "T000002R033003", "___s": true }, { @@ -294007,7 +294578,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#blendFramesAdditive", "scope": "instance", - "___id": "T000002R033012", + "___id": "T000002R033005", "___s": true }, { @@ -294071,7 +294642,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#clearFrame", "scope": "instance", - "___id": "T000002R033014", + "___id": "T000002R033007", "___s": true }, { @@ -294193,7 +294764,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#blitFrame", "scope": "instance", - "___id": "T000002R033016", + "___id": "T000002R033009", "___s": true }, { @@ -294337,7 +294908,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#copyFrameRect", "scope": "instance", - "___id": "T000002R033018", + "___id": "T000002R033011", "___s": true }, { @@ -294370,7 +294941,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#forceZero", "scope": "instance", - "___id": "T000002R033020", + "___id": "T000002R033013", "___s": true }, { @@ -294403,7 +294974,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#setMulti", "scope": "instance", - "___id": "T000002R033022", + "___id": "T000002R033015", "___s": true }, { @@ -294452,7 +295023,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#setUtility", "scope": "instance", - "___id": "T000002R033024", + "___id": "T000002R033017", "___s": true }, { @@ -294485,7 +295056,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#setFX", "scope": "instance", - "___id": "T000002R033026", + "___id": "T000002R033019", "___s": true }, { @@ -294504,7 +295075,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#restoreContext", "scope": "instance", - "___id": "T000002R033028", + "___id": "T000002R033021", "___s": true }, { @@ -294539,7 +295110,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#rebind", "scope": "instance", - "___id": "T000002R033030", + "___id": "T000002R033023", "___s": true }, { @@ -294558,7 +295129,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#clear", "scope": "instance", - "___id": "T000002R033041", + "___id": "T000002R033034", "___s": true }, { @@ -294606,7 +295177,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#getRenderTarget", "scope": "instance", - "___id": "T000002R033049", + "___id": "T000002R033042", "___s": true }, { @@ -294639,7 +295210,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#getSwapRenderTarget", "scope": "instance", - "___id": "T000002R033056", + "___id": "T000002R033049", "___s": true }, { @@ -294672,7 +295243,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#getAltSwapRenderTarget", "scope": "instance", - "___id": "T000002R033058", + "___id": "T000002R033051", "___s": true }, { @@ -294691,7 +295262,7 @@ "memberof": "Phaser.Renderer.WebGL.PipelineManager", "longname": "Phaser.Renderer.WebGL.PipelineManager#destroy", "scope": "instance", - "___id": "T000002R033060", + "___id": "T000002R033053", "___s": true }, { @@ -294728,7 +295299,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.BitmapMaskPipeline", - "___id": "T000002R033077", + "___id": "T000002R033070", "___s": true }, { @@ -294788,7 +295359,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.BitmapMaskPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.BitmapMaskPipeline#beginMask", "scope": "instance", - "___id": "T000002R033091", + "___id": "T000002R033084", "___s": true }, { @@ -294849,7 +295420,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.BitmapMaskPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.BitmapMaskPipeline#endMask", "scope": "instance", - "___id": "T000002R033093", + "___id": "T000002R033086", "___s": true }, { @@ -294877,7 +295448,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.BITMAPMASK_PIPELINE", "scope": "static", - "___id": "T000002R033100", + "___id": "T000002R033093", "___s": true }, { @@ -294905,7 +295476,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.LIGHT_PIPELINE", "scope": "static", - "___id": "T000002R033102", + "___id": "T000002R033095", "___s": true }, { @@ -294933,7 +295504,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.POINTLIGHT_PIPELINE", "scope": "static", - "___id": "T000002R033104", + "___id": "T000002R033097", "___s": true }, { @@ -294961,7 +295532,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.SINGLE_PIPELINE", "scope": "static", - "___id": "T000002R033106", + "___id": "T000002R033099", "___s": true }, { @@ -294989,7 +295560,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.MULTI_PIPELINE", "scope": "static", - "___id": "T000002R033108", + "___id": "T000002R033101", "___s": true }, { @@ -295017,7 +295588,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.ROPE_PIPELINE", "scope": "static", - "___id": "T000002R033110", + "___id": "T000002R033103", "___s": true }, { @@ -295045,7 +295616,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.GRAPHICS_PIPELINE", "scope": "static", - "___id": "T000002R033112", + "___id": "T000002R033105", "___s": true }, { @@ -295073,7 +295644,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.POSTFX_PIPELINE", "scope": "static", - "___id": "T000002R033114", + "___id": "T000002R033107", "___s": true }, { @@ -295101,7 +295672,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.UTILITY_PIPELINE", "scope": "static", - "___id": "T000002R033116", + "___id": "T000002R033109", "___s": true }, { @@ -295129,7 +295700,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.MOBILE_PIPELINE", "scope": "static", - "___id": "T000002R033118", + "___id": "T000002R033111", "___s": true }, { @@ -295157,7 +295728,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.FX_PIPELINE", "scope": "static", - "___id": "T000002R033120", + "___id": "T000002R033113", "___s": true }, { @@ -295204,7 +295775,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.Events", "longname": "Phaser.Renderer.WebGL.Pipelines.Events#event:AFTER_FLUSH", "scope": "instance", - "___id": "T000002R033123", + "___id": "T000002R033116", "___s": true }, { @@ -295251,7 +295822,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.Events", "longname": "Phaser.Renderer.WebGL.Pipelines.Events#event:BEFORE_FLUSH", "scope": "instance", - "___id": "T000002R033125", + "___id": "T000002R033118", "___s": true }, { @@ -295298,7 +295869,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.Events", "longname": "Phaser.Renderer.WebGL.Pipelines.Events#event:BIND", "scope": "instance", - "___id": "T000002R033127", + "___id": "T000002R033120", "___s": true }, { @@ -295332,7 +295903,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.Events", "longname": "Phaser.Renderer.WebGL.Pipelines.Events#event:BOOT", "scope": "instance", - "___id": "T000002R033129", + "___id": "T000002R033122", "___s": true }, { @@ -295366,7 +295937,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.Events", "longname": "Phaser.Renderer.WebGL.Pipelines.Events#event:DESTROY", "scope": "instance", - "___id": "T000002R033131", + "___id": "T000002R033124", "___s": true }, { @@ -295383,7 +295954,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.Events", "scope": "static", - "___id": "T000002R033133", + "___id": "T000002R033126", "___s": true }, { @@ -295430,7 +296001,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.Events", "longname": "Phaser.Renderer.WebGL.Pipelines.Events#event:REBIND", "scope": "instance", - "___id": "T000002R033142", + "___id": "T000002R033135", "___s": true }, { @@ -295490,7 +296061,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.Events", "longname": "Phaser.Renderer.WebGL.Pipelines.Events#event:RESIZE", "scope": "instance", - "___id": "T000002R033144", + "___id": "T000002R033137", "___s": true }, { @@ -295527,7 +296098,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BarrelFXPipeline", - "___id": "T000002R033149", + "___id": "T000002R033142", "___s": true }, { @@ -295555,7 +296126,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BarrelFXPipeline#amount", "scope": "instance", "kind": "member", - "___id": "T000002R033155", + "___id": "T000002R033148", "___s": true }, { @@ -295592,7 +296163,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BloomFXPipeline", - "___id": "T000002R033163", + "___id": "T000002R033156", "___s": true }, { @@ -295620,7 +296191,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BloomFXPipeline#steps", "scope": "instance", "kind": "member", - "___id": "T000002R033169", + "___id": "T000002R033162", "___s": true }, { @@ -295648,7 +296219,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BloomFXPipeline#offsetX", "scope": "instance", "kind": "member", - "___id": "T000002R033171", + "___id": "T000002R033164", "___s": true }, { @@ -295676,7 +296247,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BloomFXPipeline#offsetY", "scope": "instance", "kind": "member", - "___id": "T000002R033173", + "___id": "T000002R033166", "___s": true }, { @@ -295704,7 +296275,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BloomFXPipeline#blurStrength", "scope": "instance", "kind": "member", - "___id": "T000002R033175", + "___id": "T000002R033168", "___s": true }, { @@ -295732,7 +296303,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BloomFXPipeline#strength", "scope": "instance", "kind": "member", - "___id": "T000002R033177", + "___id": "T000002R033170", "___s": true }, { @@ -295769,7 +296340,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BloomFXPipeline#glcolor", "scope": "instance", "kind": "member", - "___id": "T000002R033179", + "___id": "T000002R033172", "___s": true }, { @@ -295806,7 +296377,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BlurFXPipeline", - "___id": "T000002R033196", + "___id": "T000002R033189", "___s": true }, { @@ -295834,7 +296405,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BlurFXPipeline#x", "scope": "instance", "kind": "member", - "___id": "T000002R033209", + "___id": "T000002R033202", "___s": true }, { @@ -295862,7 +296433,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BlurFXPipeline#y", "scope": "instance", "kind": "member", - "___id": "T000002R033211", + "___id": "T000002R033204", "___s": true }, { @@ -295890,7 +296461,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BlurFXPipeline#steps", "scope": "instance", "kind": "member", - "___id": "T000002R033213", + "___id": "T000002R033206", "___s": true }, { @@ -295918,7 +296489,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BlurFXPipeline#strength", "scope": "instance", "kind": "member", - "___id": "T000002R033215", + "___id": "T000002R033208", "___s": true }, { @@ -295955,7 +296526,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BlurFXPipeline#glcolor", "scope": "instance", "kind": "member", - "___id": "T000002R033217", + "___id": "T000002R033210", "___s": true }, { @@ -295989,7 +296560,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FX.BlurFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BlurFXPipeline#setQualityLow", "scope": "instance", - "___id": "T000002R033219", + "___id": "T000002R033212", "___s": true }, { @@ -296023,7 +296594,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FX.BlurFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BlurFXPipeline#setQualityMedium", "scope": "instance", - "___id": "T000002R033222", + "___id": "T000002R033215", "___s": true }, { @@ -296057,7 +296628,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FX.BlurFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BlurFXPipeline#setQualityHigh", "scope": "instance", - "___id": "T000002R033225", + "___id": "T000002R033218", "___s": true }, { @@ -296094,7 +296665,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BokehFXPipeline", - "___id": "T000002R033238", + "___id": "T000002R033231", "___s": true }, { @@ -296122,7 +296693,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BokehFXPipeline#isTiltShift", "scope": "instance", "kind": "member", - "___id": "T000002R033244", + "___id": "T000002R033237", "___s": true }, { @@ -296150,7 +296721,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BokehFXPipeline#strength", "scope": "instance", "kind": "member", - "___id": "T000002R033246", + "___id": "T000002R033239", "___s": true }, { @@ -296178,7 +296749,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BokehFXPipeline#blurX", "scope": "instance", "kind": "member", - "___id": "T000002R033248", + "___id": "T000002R033241", "___s": true }, { @@ -296206,7 +296777,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BokehFXPipeline#blurY", "scope": "instance", "kind": "member", - "___id": "T000002R033250", + "___id": "T000002R033243", "___s": true }, { @@ -296234,7 +296805,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BokehFXPipeline#radius", "scope": "instance", "kind": "member", - "___id": "T000002R033252", + "___id": "T000002R033245", "___s": true }, { @@ -296262,7 +296833,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BokehFXPipeline#amount", "scope": "instance", "kind": "member", - "___id": "T000002R033254", + "___id": "T000002R033247", "___s": true }, { @@ -296290,7 +296861,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.BokehFXPipeline#contrast", "scope": "instance", "kind": "member", - "___id": "T000002R033256", + "___id": "T000002R033249", "___s": true }, { @@ -296327,7 +296898,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.CircleFXPipeline", - "___id": "T000002R033265", + "___id": "T000002R033258", "___s": true }, { @@ -296355,7 +296926,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.CircleFXPipeline#scale", "scope": "instance", "kind": "member", - "___id": "T000002R033271", + "___id": "T000002R033264", "___s": true }, { @@ -296383,7 +296954,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.CircleFXPipeline#feather", "scope": "instance", "kind": "member", - "___id": "T000002R033273", + "___id": "T000002R033266", "___s": true }, { @@ -296411,7 +296982,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.CircleFXPipeline#thickness", "scope": "instance", "kind": "member", - "___id": "T000002R033275", + "___id": "T000002R033268", "___s": true }, { @@ -296448,7 +297019,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.CircleFXPipeline#glcolor", "scope": "instance", "kind": "member", - "___id": "T000002R033277", + "___id": "T000002R033270", "___s": true }, { @@ -296485,7 +297056,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.CircleFXPipeline#glcolor2", "scope": "instance", "kind": "member", - "___id": "T000002R033279", + "___id": "T000002R033272", "___s": true }, { @@ -296522,7 +297093,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ColorMatrixFXPipeline", - "___id": "T000002R033287", + "___id": "T000002R033280", "___s": true }, { @@ -296559,7 +297130,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.DisplacementFXPipeline", - "___id": "T000002R033298", + "___id": "T000002R033291", "___s": true }, { @@ -296587,7 +297158,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.DisplacementFXPipeline#x", "scope": "instance", "kind": "member", - "___id": "T000002R033304", + "___id": "T000002R033297", "___s": true }, { @@ -296615,7 +297186,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.DisplacementFXPipeline#y", "scope": "instance", "kind": "member", - "___id": "T000002R033306", + "___id": "T000002R033299", "___s": true }, { @@ -296643,7 +297214,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.DisplacementFXPipeline#glTexture", "scope": "instance", "kind": "member", - "___id": "T000002R033308", + "___id": "T000002R033301", "___s": true }, { @@ -296693,7 +297264,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GlowFXPipeline", - "___id": "T000002R033323", + "___id": "T000002R033316", "___s": true }, { @@ -296721,7 +297292,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GlowFXPipeline#outerStrength", "scope": "instance", "kind": "member", - "___id": "T000002R033331", + "___id": "T000002R033324", "___s": true }, { @@ -296749,7 +297320,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GlowFXPipeline#innerStrength", "scope": "instance", "kind": "member", - "___id": "T000002R033333", + "___id": "T000002R033326", "___s": true }, { @@ -296777,7 +297348,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GlowFXPipeline#knockout", "scope": "instance", "kind": "member", - "___id": "T000002R033335", + "___id": "T000002R033328", "___s": true }, { @@ -296814,7 +297385,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GlowFXPipeline#glcolor", "scope": "instance", "kind": "member", - "___id": "T000002R033337", + "___id": "T000002R033330", "___s": true }, { @@ -296851,7 +297422,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GradientFXPipeline", - "___id": "T000002R033346", + "___id": "T000002R033339", "___s": true }, { @@ -296879,7 +297450,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GradientFXPipeline#alpha", "scope": "instance", "kind": "member", - "___id": "T000002R033352", + "___id": "T000002R033345", "___s": true }, { @@ -296907,7 +297478,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GradientFXPipeline#size", "scope": "instance", "kind": "member", - "___id": "T000002R033354", + "___id": "T000002R033347", "___s": true }, { @@ -296935,7 +297506,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GradientFXPipeline#fromX", "scope": "instance", "kind": "member", - "___id": "T000002R033356", + "___id": "T000002R033349", "___s": true }, { @@ -296963,7 +297534,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GradientFXPipeline#fromY", "scope": "instance", "kind": "member", - "___id": "T000002R033358", + "___id": "T000002R033351", "___s": true }, { @@ -296991,7 +297562,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GradientFXPipeline#toX", "scope": "instance", "kind": "member", - "___id": "T000002R033360", + "___id": "T000002R033353", "___s": true }, { @@ -297019,7 +297590,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GradientFXPipeline#toY", "scope": "instance", "kind": "member", - "___id": "T000002R033362", + "___id": "T000002R033355", "___s": true }, { @@ -297056,7 +297627,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GradientFXPipeline#glcolor1", "scope": "instance", "kind": "member", - "___id": "T000002R033364", + "___id": "T000002R033357", "___s": true }, { @@ -297093,7 +297664,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.GradientFXPipeline#glcolor2", "scope": "instance", "kind": "member", - "___id": "T000002R033366", + "___id": "T000002R033359", "___s": true }, { @@ -297110,7 +297681,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines", "longname": "Phaser.Renderer.WebGL.Pipelines.FX", "scope": "static", - "___id": "T000002R033371", + "___id": "T000002R033364", "___s": true }, { @@ -297147,7 +297718,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.PixelateFXPipeline", - "___id": "T000002R033391", + "___id": "T000002R033384", "___s": true }, { @@ -297175,7 +297746,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.PixelateFXPipeline#amount", "scope": "instance", "kind": "member", - "___id": "T000002R033397", + "___id": "T000002R033390", "___s": true }, { @@ -297212,7 +297783,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShadowFXPipeline", - "___id": "T000002R033406", + "___id": "T000002R033399", "___s": true }, { @@ -297240,7 +297811,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShadowFXPipeline#x", "scope": "instance", "kind": "member", - "___id": "T000002R033412", + "___id": "T000002R033405", "___s": true }, { @@ -297268,7 +297839,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShadowFXPipeline#y", "scope": "instance", "kind": "member", - "___id": "T000002R033414", + "___id": "T000002R033407", "___s": true }, { @@ -297296,7 +297867,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShadowFXPipeline#decay", "scope": "instance", "kind": "member", - "___id": "T000002R033416", + "___id": "T000002R033409", "___s": true }, { @@ -297324,7 +297895,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShadowFXPipeline#power", "scope": "instance", "kind": "member", - "___id": "T000002R033418", + "___id": "T000002R033411", "___s": true }, { @@ -297361,7 +297932,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShadowFXPipeline#glcolor", "scope": "instance", "kind": "member", - "___id": "T000002R033420", + "___id": "T000002R033413", "___s": true }, { @@ -297389,7 +297960,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShadowFXPipeline#samples", "scope": "instance", "kind": "member", - "___id": "T000002R033422", + "___id": "T000002R033415", "___s": true }, { @@ -297417,7 +297988,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShadowFXPipeline#intensity", "scope": "instance", "kind": "member", - "___id": "T000002R033424", + "___id": "T000002R033417", "___s": true }, { @@ -297454,7 +298025,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShineFXPipeline", - "___id": "T000002R033433", + "___id": "T000002R033426", "___s": true }, { @@ -297482,7 +298053,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShineFXPipeline#speed", "scope": "instance", "kind": "member", - "___id": "T000002R033439", + "___id": "T000002R033432", "___s": true }, { @@ -297510,7 +298081,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShineFXPipeline#lineWidth", "scope": "instance", "kind": "member", - "___id": "T000002R033441", + "___id": "T000002R033434", "___s": true }, { @@ -297538,7 +298109,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShineFXPipeline#gradient", "scope": "instance", "kind": "member", - "___id": "T000002R033443", + "___id": "T000002R033436", "___s": true }, { @@ -297566,7 +298137,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.ShineFXPipeline#reveal", "scope": "instance", "kind": "member", - "___id": "T000002R033445", + "___id": "T000002R033438", "___s": true }, { @@ -297603,7 +298174,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.VignetteFXPipeline", - "___id": "T000002R033454", + "___id": "T000002R033447", "___s": true }, { @@ -297631,7 +298202,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.VignetteFXPipeline#x", "scope": "instance", "kind": "member", - "___id": "T000002R033460", + "___id": "T000002R033453", "___s": true }, { @@ -297659,7 +298230,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.VignetteFXPipeline#y", "scope": "instance", "kind": "member", - "___id": "T000002R033462", + "___id": "T000002R033455", "___s": true }, { @@ -297687,7 +298258,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.VignetteFXPipeline#radius", "scope": "instance", "kind": "member", - "___id": "T000002R033464", + "___id": "T000002R033457", "___s": true }, { @@ -297715,7 +298286,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.VignetteFXPipeline#strength", "scope": "instance", "kind": "member", - "___id": "T000002R033466", + "___id": "T000002R033459", "___s": true }, { @@ -297752,7 +298323,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FX.WipeFXPipeline", - "___id": "T000002R033474", + "___id": "T000002R033467", "___s": true }, { @@ -297780,7 +298351,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.WipeFXPipeline#progress", "scope": "instance", "kind": "member", - "___id": "T000002R033480", + "___id": "T000002R033473", "___s": true }, { @@ -297808,7 +298379,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.WipeFXPipeline#wipeWidth", "scope": "instance", "kind": "member", - "___id": "T000002R033482", + "___id": "T000002R033475", "___s": true }, { @@ -297836,7 +298407,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.WipeFXPipeline#direction", "scope": "instance", "kind": "member", - "___id": "T000002R033484", + "___id": "T000002R033477", "___s": true }, { @@ -297864,7 +298435,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.WipeFXPipeline#axis", "scope": "instance", "kind": "member", - "___id": "T000002R033486", + "___id": "T000002R033479", "___s": true }, { @@ -297892,7 +298463,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FX.WipeFXPipeline#reveal", "scope": "instance", "kind": "member", - "___id": "T000002R033488", + "___id": "T000002R033481", "___s": true }, { @@ -297929,7 +298500,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", - "___id": "T000002R033504", + "___id": "T000002R033497", "___s": true }, { @@ -297957,7 +298528,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#glow", "scope": "instance", "kind": "member", - "___id": "T000002R033510", + "___id": "T000002R033503", "___s": true }, { @@ -297985,7 +298556,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#shadow", "scope": "instance", "kind": "member", - "___id": "T000002R033512", + "___id": "T000002R033505", "___s": true }, { @@ -298013,7 +298584,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#pixelate", "scope": "instance", "kind": "member", - "___id": "T000002R033514", + "___id": "T000002R033507", "___s": true }, { @@ -298041,7 +298612,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#vignette", "scope": "instance", "kind": "member", - "___id": "T000002R033516", + "___id": "T000002R033509", "___s": true }, { @@ -298069,7 +298640,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#shine", "scope": "instance", "kind": "member", - "___id": "T000002R033518", + "___id": "T000002R033511", "___s": true }, { @@ -298097,7 +298668,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#gradient", "scope": "instance", "kind": "member", - "___id": "T000002R033520", + "___id": "T000002R033513", "___s": true }, { @@ -298125,7 +298696,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#circle", "scope": "instance", "kind": "member", - "___id": "T000002R033522", + "___id": "T000002R033515", "___s": true }, { @@ -298153,7 +298724,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#barrel", "scope": "instance", "kind": "member", - "___id": "T000002R033524", + "___id": "T000002R033517", "___s": true }, { @@ -298181,7 +298752,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#wipe", "scope": "instance", "kind": "member", - "___id": "T000002R033526", + "___id": "T000002R033519", "___s": true }, { @@ -298209,7 +298780,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#bokeh", "scope": "instance", "kind": "member", - "___id": "T000002R033528", + "___id": "T000002R033521", "___s": true }, { @@ -298246,7 +298817,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#fxHandlers", "scope": "instance", "kind": "member", - "___id": "T000002R033545", + "___id": "T000002R033538", "___s": true }, { @@ -298274,7 +298845,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#source", "scope": "instance", "kind": "member", - "___id": "T000002R033547", + "___id": "T000002R033540", "___s": true }, { @@ -298302,7 +298873,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#target", "scope": "instance", "kind": "member", - "___id": "T000002R033549", + "___id": "T000002R033542", "___s": true }, { @@ -298330,7 +298901,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#swap", "scope": "instance", "kind": "member", - "___id": "T000002R033551", + "___id": "T000002R033544", "___s": true }, { @@ -298391,7 +298962,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onDraw", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#onDraw", - "___id": "T000002R033553", + "___id": "T000002R033546", "___s": true }, { @@ -298410,7 +298981,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#runDraw", "scope": "instance", - "___id": "T000002R033565", + "___id": "T000002R033558", "___s": true }, { @@ -298470,7 +299041,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onGlow", "scope": "instance", - "___id": "T000002R033571", + "___id": "T000002R033564", "___s": true }, { @@ -298504,7 +299075,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onShadow", "scope": "instance", - "___id": "T000002R033574", + "___id": "T000002R033567", "___s": true }, { @@ -298564,7 +299135,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onPixelate", "scope": "instance", - "___id": "T000002R033577", + "___id": "T000002R033570", "___s": true }, { @@ -298598,7 +299169,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onVignette", "scope": "instance", - "___id": "T000002R033580", + "___id": "T000002R033573", "___s": true }, { @@ -298658,7 +299229,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onShine", "scope": "instance", - "___id": "T000002R033583", + "___id": "T000002R033576", "___s": true }, { @@ -298718,7 +299289,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onBlur", "scope": "instance", - "___id": "T000002R033586", + "___id": "T000002R033579", "___s": true }, { @@ -298752,7 +299323,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onGradient", "scope": "instance", - "___id": "T000002R033594", + "___id": "T000002R033587", "___s": true }, { @@ -298812,7 +299383,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onBloom", "scope": "instance", - "___id": "T000002R033597", + "___id": "T000002R033590", "___s": true }, { @@ -298846,7 +299417,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onColorMatrix", "scope": "instance", - "___id": "T000002R033604", + "___id": "T000002R033597", "___s": true }, { @@ -298906,7 +299477,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onCircle", "scope": "instance", - "___id": "T000002R033606", + "___id": "T000002R033599", "___s": true }, { @@ -298940,7 +299511,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onBarrel", "scope": "instance", - "___id": "T000002R033609", + "___id": "T000002R033602", "___s": true }, { @@ -298974,7 +299545,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onDisplacement", "scope": "instance", - "___id": "T000002R033612", + "___id": "T000002R033605", "___s": true }, { @@ -299008,7 +299579,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onWipe", "scope": "instance", - "___id": "T000002R033614", + "___id": "T000002R033607", "___s": true }, { @@ -299042,7 +299613,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.FXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#onBokeh", "scope": "instance", - "___id": "T000002R033617", + "___id": "T000002R033610", "___s": true }, { @@ -299077,7 +299648,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.FXPipeline#destroy", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#destroy", - "___id": "T000002R033620", + "___id": "T000002R033613", "___s": true }, { @@ -299094,7 +299665,7 @@ "memberof": "Phaser.Renderer.WebGL", "longname": "Phaser.Renderer.WebGL.Pipelines", "scope": "static", - "___id": "T000002R033629", + "___id": "T000002R033622", "___s": true }, { @@ -299131,7 +299702,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.LightPipeline", - "___id": "T000002R033653", + "___id": "T000002R033646", "___s": true }, { @@ -299161,7 +299732,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.LightPipeline#currentNormalMap;", "scope": "instance", "kind": "member", - "___id": "T000002R033661", + "___id": "T000002R033654", "___s": true }, { @@ -299190,7 +299761,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.LightPipeline#lightsActive", "scope": "instance", "kind": "member", - "___id": "T000002R033663", + "___id": "T000002R033656", "___s": true }, { @@ -299218,7 +299789,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.LightPipeline#tempVec2", "scope": "instance", "kind": "member", - "___id": "T000002R033665", + "___id": "T000002R033658", "___s": true }, { @@ -299238,7 +299809,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.LightPipeline#boot", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#boot", - "___id": "T000002R033671", + "___id": "T000002R033664", "___s": true }, { @@ -299272,14 +299843,14 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.LightPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.LightPipeline#setNormalMapRotation", "scope": "instance", - "___id": "T000002R033690", + "___id": "T000002R033683", "___s": true }, { "comment": "/**\r\n * Checks to see if the given diffuse and normal map textures are already bound, or not.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#isNewNormalMap\r\n * @since 3.50.0\r\n *\r\n * @param {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} texture - The diffuse texture.\r\n * @param {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} normalMap - The normal map texture.\r\n *\r\n * @return {boolean} Returns `false` if this combination is already set, or `true` if it's a new combination.\r\n */", "meta": { "filename": "LightPipeline.js", - "lineno": 345, + "lineno": 359, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl\\pipelines", "code": {} @@ -299333,14 +299904,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#isNewNormalMap", "scope": "instance", - "___id": "T000002R033722", + "___id": "T000002R033715", "___s": true }, { "comment": "/**\r\n * Returns the normal map WebGLTextureWrapper from the given Game Object.\r\n * If the Game Object doesn't have one, it returns the default normal map from this pipeline instead.\r\n *\r\n * @method Phaser.Renderer.WebGL.Pipelines.LightPipeline#getNormalMap\r\n * @since 3.50.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject} [gameObject] - The Game Object to get the normal map from.\r\n *\r\n * @return {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} The normal map texture.\r\n */", "meta": { "filename": "LightPipeline.js", - "lineno": 361, + "lineno": 375, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl\\pipelines", "code": {} @@ -299382,14 +299953,14 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.LightPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.LightPipeline#getNormalMap", "scope": "instance", - "___id": "T000002R033724", + "___id": "T000002R033717", "___s": true }, { "comment": "/**\r\n * Takes a Sprite Game Object, or any object that extends it, and adds it to the batch.\r\n *\r\n * @method Phaser.Renderer.WebGL.Pipelines.LightPipeline#batchSprite\r\n * @since 3.50.0\r\n *\r\n * @param {(Phaser.GameObjects.Image|Phaser.GameObjects.Sprite)} gameObject - The texture based Game Object to add to the batch.\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to use for the rendering transform.\r\n * @param {Phaser.GameObjects.Components.TransformMatrix} [parentTransformMatrix] - The transform matrix of the parent container, if set.\r\n */", "meta": { "filename": "LightPipeline.js", - "lineno": 408, + "lineno": 422, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl\\pipelines", "code": {} @@ -299454,14 +300025,14 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.LightPipeline#batchSprite", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchSprite", - "___id": "T000002R033731", + "___id": "T000002R033724", "___s": true }, { "comment": "/**\r\n * Generic function for batching a textured quad using argument values instead of a Game Object.\r\n *\r\n * @method Phaser.Renderer.WebGL.Pipelines.LightPipeline#batchTexture\r\n * @since 3.50.0\r\n *\r\n * @param {Phaser.GameObjects.GameObject} gameObject - Source GameObject.\r\n * @param {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} texture - Texture associated with the quad.\r\n * @param {number} textureWidth - Real texture width.\r\n * @param {number} textureHeight - Real texture height.\r\n * @param {number} srcX - X coordinate of the quad.\r\n * @param {number} srcY - Y coordinate of the quad.\r\n * @param {number} srcWidth - Width of the quad.\r\n * @param {number} srcHeight - Height of the quad.\r\n * @param {number} scaleX - X component of scale.\r\n * @param {number} scaleY - Y component of scale.\r\n * @param {number} rotation - Rotation of the quad.\r\n * @param {boolean} flipX - Indicates if the quad is horizontally flipped.\r\n * @param {boolean} flipY - Indicates if the quad is vertically flipped.\r\n * @param {number} scrollFactorX - By which factor is the quad affected by the camera horizontal scroll.\r\n * @param {number} scrollFactorY - By which factor is the quad effected by the camera vertical scroll.\r\n * @param {number} displayOriginX - Horizontal origin in pixels.\r\n * @param {number} displayOriginY - Vertical origin in pixels.\r\n * @param {number} frameX - X coordinate of the texture frame.\r\n * @param {number} frameY - Y coordinate of the texture frame.\r\n * @param {number} frameWidth - Width of the texture frame.\r\n * @param {number} frameHeight - Height of the texture frame.\r\n * @param {number} tintTL - Tint for top left.\r\n * @param {number} tintTR - Tint for top right.\r\n * @param {number} tintBL - Tint for bottom left.\r\n * @param {number} tintBR - Tint for bottom right.\r\n * @param {number} tintEffect - The tint effect.\r\n * @param {number} uOffset - Horizontal offset on texture coordinate.\r\n * @param {number} vOffset - Vertical offset on texture coordinate.\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - Current used camera.\r\n * @param {Phaser.GameObjects.Components.TransformMatrix} parentTransformMatrix - Parent container.\r\n * @param {boolean} [skipFlip=false] - Skip the renderTexture check.\r\n * @param {number} [textureUnit] - Use the currently bound texture unit?\r\n */", "meta": { "filename": "LightPipeline.js", - "lineno": 426, + "lineno": 440, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl\\pipelines", "code": {} @@ -299895,14 +300466,14 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.LightPipeline#batchTexture", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchTexture", - "___id": "T000002R033733", + "___id": "T000002R033726", "___s": true }, { "comment": "/**\r\n * Adds a Texture Frame into the batch for rendering.\r\n *\r\n * @method Phaser.Renderer.WebGL.Pipelines.LightPipeline#batchTextureFrame\r\n * @since 3.50.0\r\n *\r\n * @param {Phaser.Textures.Frame} frame - The Texture Frame to be rendered.\r\n * @param {number} x - The horizontal position to render the texture at.\r\n * @param {number} y - The vertical position to render the texture at.\r\n * @param {number} tint - The tint color.\r\n * @param {number} alpha - The alpha value.\r\n * @param {Phaser.GameObjects.Components.TransformMatrix} transformMatrix - The Transform Matrix to use for the texture.\r\n * @param {Phaser.GameObjects.Components.TransformMatrix} [parentTransformMatrix] - A parent Transform Matrix.\r\n */", "meta": { "filename": "LightPipeline.js", - "lineno": 509, + "lineno": 523, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl\\pipelines", "code": {} @@ -300009,7 +300580,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.LightPipeline#batchTextureFrame", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchTextureFrame", - "___id": "T000002R033735", + "___id": "T000002R033728", "___s": true }, { @@ -300046,7 +300617,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.MobilePipeline", - "___id": "T000002R033745", + "___id": "T000002R033738", "___s": true }, { @@ -300066,7 +300637,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.MobilePipeline#boot", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#boot", - "___id": "T000002R033764", + "___id": "T000002R033757", "___s": true }, { @@ -300103,7 +300674,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline", - "___id": "T000002R033777", + "___id": "T000002R033770", "___s": true }, { @@ -300131,7 +300702,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#calcMatrix", "scope": "instance", "kind": "member", - "___id": "T000002R033803", + "___id": "T000002R033796", "___s": true }, { @@ -300151,7 +300722,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#boot", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.WebGLPipeline#boot", - "___id": "T000002R033843", + "___id": "T000002R033836", "___s": true }, { @@ -300222,7 +300793,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchSprite", "scope": "instance", - "___id": "T000002R033846", + "___id": "T000002R033839", "___s": true }, { @@ -300677,7 +301248,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchTexture", "scope": "instance", - "___id": "T000002R033899", + "___id": "T000002R033892", "___s": true }, { @@ -300790,7 +301361,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchTextureFrame", "scope": "instance", - "___id": "T000002R033945", + "___id": "T000002R033938", "___s": true }, { @@ -300889,7 +301460,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillRect", "scope": "instance", - "___id": "T000002R033953", + "___id": "T000002R033946", "___s": true }, { @@ -301014,7 +301585,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillTriangle", "scope": "instance", - "___id": "T000002R033958", + "___id": "T000002R033951", "___s": true }, { @@ -301152,7 +301723,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchStrokeTriangle", "scope": "instance", - "___id": "T000002R033968", + "___id": "T000002R033961", "___s": true }, { @@ -301221,7 +301792,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillPath", "scope": "instance", - "___id": "T000002R033983", + "___id": "T000002R033976", "___s": true }, { @@ -301316,7 +301887,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchStrokePath", "scope": "instance", - "___id": "T000002R034015", + "___id": "T000002R034008", "___s": true }, { @@ -301467,7 +302038,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchLine", "scope": "instance", - "___id": "T000002R034023", + "___id": "T000002R034016", "___s": true }, { @@ -301505,7 +302076,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#destroy", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.WebGLPipeline#destroy", - "___id": "T000002R034066", + "___id": "T000002R034059", "___s": true }, { @@ -301542,7 +302113,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.PointLightPipeline", - "___id": "T000002R034077", + "___id": "T000002R034070", "___s": true }, { @@ -301719,7 +302290,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PointLightPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PointLightPipeline#batchPointLight", "scope": "instance", - "___id": "T000002R034093", + "___id": "T000002R034086", "___s": true }, { @@ -301870,7 +302441,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PointLightPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PointLightPipeline#batchLightVert", "scope": "instance", - "___id": "T000002R034104", + "___id": "T000002R034097", "___s": true }, { @@ -301907,7 +302478,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", - "___id": "T000002R034125", + "___id": "T000002R034118", "___s": true }, { @@ -301945,7 +302516,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "scope": "instance", "kind": "member", - "___id": "T000002R034140", + "___id": "T000002R034133", "___s": true }, { @@ -301973,7 +302544,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "scope": "instance", "kind": "member", - "___id": "T000002R034142", + "___id": "T000002R034135", "___s": true }, { @@ -302001,7 +302572,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "scope": "instance", "kind": "member", - "___id": "T000002R034144", + "___id": "T000002R034137", "___s": true }, { @@ -302030,7 +302601,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "scope": "instance", "kind": "member", - "___id": "T000002R034146", + "___id": "T000002R034139", "___s": true }, { @@ -302059,7 +302630,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "scope": "instance", "kind": "member", - "___id": "T000002R034148", + "___id": "T000002R034141", "___s": true }, { @@ -302088,7 +302659,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "scope": "instance", "kind": "member", - "___id": "T000002R034150", + "___id": "T000002R034143", "___s": true }, { @@ -302117,7 +302688,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "scope": "instance", "kind": "member", - "___id": "T000002R034152", + "___id": "T000002R034145", "___s": true }, { @@ -302136,7 +302707,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "scope": "instance", - "___id": "T000002R034155", + "___id": "T000002R034148", "___s": true }, { @@ -302197,7 +302768,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.WebGLPipeline#postBatch", - "___id": "T000002R034166", + "___id": "T000002R034159", "___s": true }, { @@ -302256,7 +302827,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "scope": "instance", - "___id": "T000002R034169", + "___id": "T000002R034162", "___s": true }, { @@ -302303,7 +302874,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "scope": "instance", - "___id": "T000002R034171", + "___id": "T000002R034164", "___s": true }, { @@ -302396,7 +302967,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "scope": "instance", - "___id": "T000002R034176", + "___id": "T000002R034169", "___s": true }, { @@ -302430,7 +303001,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "scope": "instance", - "___id": "T000002R034178", + "___id": "T000002R034171", "___s": true }, { @@ -302493,7 +303064,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "scope": "instance", - "___id": "T000002R034180", + "___id": "T000002R034173", "___s": true }, { @@ -302584,7 +303155,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "scope": "instance", - "___id": "T000002R034182", + "___id": "T000002R034175", "___s": true }, { @@ -302675,7 +303246,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "scope": "instance", - "___id": "T000002R034184", + "___id": "T000002R034177", "___s": true }, { @@ -302724,7 +303295,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "scope": "instance", - "___id": "T000002R034186", + "___id": "T000002R034179", "___s": true }, { @@ -302831,7 +303402,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "scope": "instance", - "___id": "T000002R034188", + "___id": "T000002R034181", "___s": true }, { @@ -302960,7 +303531,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "scope": "instance", - "___id": "T000002R034190", + "___id": "T000002R034183", "___s": true }, { @@ -303052,7 +303623,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "scope": "instance", - "___id": "T000002R034192", + "___id": "T000002R034185", "___s": true }, { @@ -303087,7 +303658,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.WebGLPipeline#destroy", - "___id": "T000002R034198", + "___id": "T000002R034191", "___s": true }, { @@ -303124,7 +303695,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", - "___id": "T000002R034220", + "___id": "T000002R034213", "___s": true }, { @@ -303153,7 +303724,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#drawSpriteShader", "scope": "instance", "kind": "member", - "___id": "T000002R034245", + "___id": "T000002R034238", "___s": true }, { @@ -303182,7 +303753,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#copyShader", "scope": "instance", "kind": "member", - "___id": "T000002R034247", + "___id": "T000002R034240", "___s": true }, { @@ -303211,7 +303782,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#gameShader", "scope": "instance", "kind": "member", - "___id": "T000002R034249", + "___id": "T000002R034242", "___s": true }, { @@ -303239,7 +303810,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#colorMatrixShader", "scope": "instance", "kind": "member", - "___id": "T000002R034251", + "___id": "T000002R034244", "___s": true }, { @@ -303268,7 +303839,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#quadVertexData", "scope": "instance", "kind": "member", - "___id": "T000002R034253", + "___id": "T000002R034246", "___s": true }, { @@ -303297,7 +303868,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#quadVertexBuffer", "scope": "instance", "kind": "member", - "___id": "T000002R034255", + "___id": "T000002R034248", "___s": true }, { @@ -303325,7 +303896,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#quadVertexViewF32", "scope": "instance", "kind": "member", - "___id": "T000002R034257", + "___id": "T000002R034250", "___s": true }, { @@ -303353,7 +303924,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#fsTarget", "scope": "instance", "kind": "member", - "___id": "T000002R034263", + "___id": "T000002R034256", "___s": true }, { @@ -303401,7 +303972,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#onResize", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.WebGLPipeline#onResize", - "___id": "T000002R034282", + "___id": "T000002R034275", "___s": true }, { @@ -303704,7 +304275,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#batchQuad", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.WebGLPipeline#batchQuad", - "___id": "T000002R034291", + "___id": "T000002R034284", "___s": true }, { @@ -303751,7 +304322,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#onDrawSprite", "scope": "instance", - "___id": "T000002R034311", + "___id": "T000002R034304", "___s": true }, { @@ -303811,7 +304382,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#onCopySprite", "scope": "instance", - "___id": "T000002R034313", + "___id": "T000002R034306", "___s": true }, { @@ -303931,7 +304502,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#copySprite", "scope": "instance", - "___id": "T000002R034315", + "___id": "T000002R034308", "___s": true }, { @@ -303978,7 +304549,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#copy", "scope": "instance", - "___id": "T000002R034329", + "___id": "T000002R034322", "___s": true }, { @@ -304069,7 +304640,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#blendFrames", "scope": "instance", - "___id": "T000002R034332", + "___id": "T000002R034325", "___s": true }, { @@ -304160,7 +304731,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#blendFramesAdditive", "scope": "instance", - "___id": "T000002R034334", + "___id": "T000002R034327", "___s": true }, { @@ -304194,7 +304765,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#drawToGame", "scope": "instance", - "___id": "T000002R034336", + "___id": "T000002R034329", "___s": true }, { @@ -304228,7 +304799,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#copyToGame", "scope": "instance", - "___id": "T000002R034339", + "___id": "T000002R034332", "___s": true }, { @@ -304262,7 +304833,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#bindAndDraw", "scope": "instance", - "___id": "T000002R034342", + "___id": "T000002R034335", "___s": true }, { @@ -304325,7 +304896,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#onDraw", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.WebGLPipeline#onDraw", - "___id": "T000002R034361", + "___id": "T000002R034354", "___s": true }, { @@ -304450,7 +305021,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#setUVs", "scope": "instance", - "___id": "T000002R034363", + "___id": "T000002R034356", "___s": true }, { @@ -304497,7 +305068,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#setTargetUVs", "scope": "instance", - "___id": "T000002R034378", + "___id": "T000002R034371", "___s": true }, { @@ -304516,7 +305087,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#resetUVs", "scope": "instance", - "___id": "T000002R034383", + "___id": "T000002R034376", "___s": true }, { @@ -304554,7 +305125,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#destroy", "scope": "instance", "overrides": "Phaser.Renderer.WebGL.WebGLPipeline#destroy", - "___id": "T000002R034385", + "___id": "T000002R034378", "___s": true }, { @@ -304591,7 +305162,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.RopePipeline", - "___id": "T000002R034400", + "___id": "T000002R034393", "___s": true }, { @@ -304628,7 +305199,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.SinglePipeline", - "___id": "T000002R034413", + "___id": "T000002R034406", "___s": true }, { @@ -304665,7 +305236,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", - "___id": "T000002R034433", + "___id": "T000002R034426", "___s": true }, { @@ -304693,7 +305264,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#colorMatrix", "scope": "instance", "kind": "member", - "___id": "T000002R034463", + "___id": "T000002R034456", "___s": true }, { @@ -304722,7 +305293,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#copyShader", "scope": "instance", "kind": "member", - "___id": "T000002R034465", + "___id": "T000002R034458", "___s": true }, { @@ -304750,7 +305321,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#addShader", "scope": "instance", "kind": "member", - "___id": "T000002R034467", + "___id": "T000002R034460", "___s": true }, { @@ -304778,7 +305349,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#linearShader", "scope": "instance", "kind": "member", - "___id": "T000002R034469", + "___id": "T000002R034462", "___s": true }, { @@ -304806,7 +305377,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#colorMatrixShader", "scope": "instance", "kind": "member", - "___id": "T000002R034471", + "___id": "T000002R034464", "___s": true }, { @@ -304834,7 +305405,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#fullFrame1", "scope": "instance", "kind": "member", - "___id": "T000002R034473", + "___id": "T000002R034466", "___s": true }, { @@ -304862,7 +305433,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#fullFrame2", "scope": "instance", "kind": "member", - "___id": "T000002R034475", + "___id": "T000002R034468", "___s": true }, { @@ -304890,7 +305461,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#halfFrame1", "scope": "instance", "kind": "member", - "___id": "T000002R034477", + "___id": "T000002R034470", "___s": true }, { @@ -304918,7 +305489,7 @@ "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#halfFrame2", "scope": "instance", "kind": "member", - "___id": "T000002R034479", + "___id": "T000002R034472", "___s": true }, { @@ -305011,7 +305582,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#copyFrame", "scope": "instance", - "___id": "T000002R034492", + "___id": "T000002R034485", "___s": true }, { @@ -305133,7 +305704,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#blitFrame", "scope": "instance", - "___id": "T000002R034498", + "___id": "T000002R034491", "___s": true }, { @@ -305262,7 +305833,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#copyFrameRect", "scope": "instance", - "___id": "T000002R034508", + "___id": "T000002R034501", "___s": true }, { @@ -305296,7 +305867,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#copyToGame", "scope": "instance", - "___id": "T000002R034513", + "___id": "T000002R034506", "___s": true }, { @@ -305373,7 +305944,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#drawFrame", "scope": "instance", - "___id": "T000002R034516", + "___id": "T000002R034509", "___s": true }, { @@ -305478,7 +306049,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#blendFrames", "scope": "instance", - "___id": "T000002R034521", + "___id": "T000002R034514", "___s": true }, { @@ -305569,7 +306140,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#blendFramesAdditive", "scope": "instance", - "___id": "T000002R034527", + "___id": "T000002R034520", "___s": true }, { @@ -305618,7 +306189,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#clearFrame", "scope": "instance", - "___id": "T000002R034529", + "___id": "T000002R034522", "___s": true }, { @@ -305743,7 +306314,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#setUVs", "scope": "instance", - "___id": "T000002R034534", + "___id": "T000002R034527", "___s": true }, { @@ -305790,7 +306361,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#setTargetUVs", "scope": "instance", - "___id": "T000002R034549", + "___id": "T000002R034542", "___s": true }, { @@ -305809,7 +306380,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#flipX", "scope": "instance", - "___id": "T000002R034554", + "___id": "T000002R034547", "___s": true }, { @@ -305828,7 +306399,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#flipY", "scope": "instance", - "___id": "T000002R034556", + "___id": "T000002R034549", "___s": true }, { @@ -305847,7 +306418,7 @@ "memberof": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline", "longname": "Phaser.Renderer.WebGL.Pipelines.UtilityPipeline#resetUVs", "scope": "instance", - "___id": "T000002R034558", + "___id": "T000002R034551", "___s": true }, { @@ -305997,7 +306568,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.RenderTarget", - "___id": "T000002R034563", + "___id": "T000002R034556", "___s": true }, { @@ -306025,7 +306596,7 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#renderer", "scope": "instance", "kind": "member", - "___id": "T000002R034572", + "___id": "T000002R034565", "___s": true }, { @@ -306053,7 +306624,7 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#framebuffer", "scope": "instance", "kind": "member", - "___id": "T000002R034574", + "___id": "T000002R034567", "___s": true }, { @@ -306081,7 +306652,7 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#texture", "scope": "instance", "kind": "member", - "___id": "T000002R034576", + "___id": "T000002R034569", "___s": true }, { @@ -306110,7 +306681,7 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#width", "scope": "instance", "kind": "member", - "___id": "T000002R034578", + "___id": "T000002R034571", "___s": true }, { @@ -306139,7 +306710,7 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#height", "scope": "instance", "kind": "member", - "___id": "T000002R034580", + "___id": "T000002R034573", "___s": true }, { @@ -306167,7 +306738,7 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#scale", "scope": "instance", "kind": "member", - "___id": "T000002R034582", + "___id": "T000002R034575", "___s": true }, { @@ -306195,7 +306766,7 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#minFilter", "scope": "instance", "kind": "member", - "___id": "T000002R034584", + "___id": "T000002R034577", "___s": true }, { @@ -306223,7 +306794,7 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#autoClear", "scope": "instance", "kind": "member", - "___id": "T000002R034586", + "___id": "T000002R034579", "___s": true }, { @@ -306252,7 +306823,7 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#autoResize", "scope": "instance", "kind": "member", - "___id": "T000002R034588", + "___id": "T000002R034581", "___s": true }, { @@ -306281,7 +306852,7 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#hasDepthBuffer", "scope": "instance", "kind": "member", - "___id": "T000002R034590", + "___id": "T000002R034583", "___s": true }, { @@ -306309,7 +306880,7 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#forceClamp", "scope": "instance", "kind": "member", - "___id": "T000002R034592", + "___id": "T000002R034585", "___s": true }, { @@ -306358,11 +306929,11 @@ "memberof": "Phaser.Renderer.WebGL.RenderTarget", "longname": "Phaser.Renderer.WebGL.RenderTarget#setAutoResize", "scope": "instance", - "___id": "T000002R034595", + "___id": "T000002R034588", "___s": true }, { - "comment": "/**\r\n * Resizes this Render Target.\r\n *\r\n * Deletes both the frame buffer and texture, if they exist and then re-creates\r\n * them using the new sizes.\r\n *\r\n * This method is called automatically by the pipeline during its resize handler.\r\n *\r\n * @method Phaser.Renderer.WebGL.RenderTarget#resize\r\n * @since 3.50.0\r\n *\r\n * @param {number} width - The new width of this Render Target.\r\n * @param {number} height - The new height of this Render Target.\r\n *\r\n * @return {this} This RenderTarget instance.\r\n */", + "comment": "/**\r\n * Resizes this Render Target as long as the given width and height are different\r\n * to the current width and height.\r\n *\r\n * Deletes both the frame buffer and texture, if they exist and then re-creates\r\n * them using the new sizes.\r\n *\r\n * This method is called automatically by the pipeline during its resize handler.\r\n * \r\n * Previous to Phaser v3.85 this method would only run if `autoResize` was `true`,\r\n * it will now run regardless.\r\n *\r\n * @method Phaser.Renderer.WebGL.RenderTarget#resize\r\n * @since 3.50.0\r\n *\r\n * @param {number} width - The new width of this Render Target.\r\n * @param {number} height - The new height of this Render Target.\r\n *\r\n * @return {this} This RenderTarget instance.\r\n */", "meta": { "filename": "RenderTarget.js", "lineno": 205, @@ -306370,7 +306941,7 @@ "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} }, - "description": "Resizes this Render Target.\r\rDeletes both the frame buffer and texture, if they exist and then re-creates\rthem using the new sizes.\r\rThis method is called automatically by the pipeline during its resize handler.", + "description": "Resizes this Render Target as long as the given width and height are different\rto the current width and height.\r\rDeletes both the frame buffer and texture, if they exist and then re-creates\rthem using the new sizes.\r\rThis method is called automatically by the pipeline during its resize handler.\r\rPrevious to Phaser v3.85 this method would only run if `autoResize` was `true`,\rit will now run regardless.", "kind": "function", "name": "resize", "since": "3.50.0", @@ -306420,14 +306991,14 @@ "memberof": "Phaser.Renderer.WebGL.RenderTarget", "longname": "Phaser.Renderer.WebGL.RenderTarget#resize", "scope": "instance", - "___id": "T000002R034599", + "___id": "T000002R034592", "___s": true }, { "comment": "/**\r\n * Checks if this Render Target will resize, or not, if given the new\r\n * width and height values.\r\n *\r\n * @method Phaser.Renderer.WebGL.RenderTarget#willResize\r\n * @since 3.70.0\r\n *\r\n * @param {number} width - The new width of this Render Target.\r\n * @param {number} height - The new height of this Render Target.\r\n *\r\n * @return {boolean} `true` if the Render Target will resize, otherwise `false`.\r\n */", "meta": { "filename": "RenderTarget.js", - "lineno": 254, + "lineno": 245, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -306481,14 +307052,14 @@ "memberof": "Phaser.Renderer.WebGL.RenderTarget", "longname": "Phaser.Renderer.WebGL.RenderTarget#willResize", "scope": "instance", - "___id": "T000002R034610", + "___id": "T000002R034599", "___s": true }, { "comment": "/**\r\n * Pushes this Render Target as the current frame buffer of the renderer.\r\n *\r\n * If `autoClear` is set, then clears the texture.\r\n *\r\n * If `adjustViewport` is `true` then it will flush the renderer and then adjust the GL viewport.\r\n *\r\n * @method Phaser.Renderer.WebGL.RenderTarget#bind\r\n * @since 3.50.0\r\n *\r\n * @param {boolean} [adjustViewport=false] - Adjust the GL viewport by calling `RenderTarget.adjustViewport` ?\r\n * @param {number} [width] - Optional new width of this Render Target.\r\n * @param {number} [height] - Optional new height of this Render Target.\r\n */", "meta": { "filename": "RenderTarget.js", - "lineno": 284, + "lineno": 275, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -306545,14 +307116,14 @@ "memberof": "Phaser.Renderer.WebGL.RenderTarget", "longname": "Phaser.Renderer.WebGL.RenderTarget#bind", "scope": "instance", - "___id": "T000002R034616", + "___id": "T000002R034605", "___s": true }, { "comment": "/**\r\n * Adjusts the GL viewport to match the width and height of this Render Target.\r\n *\r\n * Also disables `SCISSOR_TEST`.\r\n *\r\n * @method Phaser.Renderer.WebGL.RenderTarget#adjustViewport\r\n * @since 3.50.0\r\n */", "meta": { "filename": "RenderTarget.js", - "lineno": 333, + "lineno": 324, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -306564,14 +307135,14 @@ "memberof": "Phaser.Renderer.WebGL.RenderTarget", "longname": "Phaser.Renderer.WebGL.RenderTarget#adjustViewport", "scope": "instance", - "___id": "T000002R034621", + "___id": "T000002R034610", "___s": true }, { "comment": "/**\r\n * Clears a portion or everything from this Render Target. To clear an area,\r\n * specify the `x`, `y`, `width` and `height`.\r\n * \r\n * @param {number} [x=0] - The left coordinate of the fill rectangle.\r\n * @param {number} [y=0] - The top coordinate of the fill rectangle.\r\n * @param {number} [width=this.width] - The width of the fill rectangle.\r\n * @param {number} [height=this.height] - The height of the fill rectangle.\r\n *\r\n * @method Phaser.Renderer.WebGL.RenderTarget#clear\r\n * @since 3.50.0\r\n */", "meta": { "filename": "RenderTarget.js", - "lineno": 350, + "lineno": 341, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -306645,14 +307216,14 @@ "memberof": "Phaser.Renderer.WebGL.RenderTarget", "longname": "Phaser.Renderer.WebGL.RenderTarget#clear", "scope": "instance", - "___id": "T000002R034624", + "___id": "T000002R034613", "___s": true }, { "comment": "/**\r\n * Unbinds this Render Target and optionally flushes the WebGL Renderer first.\r\n *\r\n * @name Phaser.Renderer.WebGL.RenderTarget#unbind\r\n * @since 3.50.0\r\n *\r\n * @param {boolean} [flush=false] - Flush the WebGL Renderer before unbinding?\r\n *\r\n * @return {Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper} The Framebuffer that was set, or `null` if there aren't any more in the stack.\r\n */", "meta": { "filename": "RenderTarget.js", - "lineno": 388, + "lineno": 379, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -306695,14 +307266,14 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#unbind", "scope": "instance", "kind": "member", - "___id": "T000002R034628", + "___id": "T000002R034617", "___s": true }, { "comment": "/**\r\n * Removes all external references from this class and deletes the\r\n * WebGL framebuffer and texture instances.\r\n *\r\n * Does not remove this Render Target from the parent pipeline.\r\n *\r\n * @name Phaser.Renderer.WebGL.RenderTarget#destroy\r\n * @since 3.50.0\r\n */", "meta": { "filename": "RenderTarget.js", - "lineno": 412, + "lineno": 403, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -306714,7 +307285,7 @@ "longname": "Phaser.Renderer.WebGL.RenderTarget#destroy", "scope": "instance", "kind": "member", - "___id": "T000002R034632", + "___id": "T000002R034621", "___s": true }, { @@ -306731,7 +307302,7 @@ "memberof": "Phaser.Renderer.WebGL", "longname": "Phaser.Renderer.WebGL.Shaders", "scope": "static", - "___id": "T000002R034659", + "___id": "T000002R034648", "___s": true }, { @@ -306748,7 +307319,7 @@ "memberof": "Phaser.Types.Renderer", "longname": "Phaser.Types.Renderer.WebGL", "scope": "static", - "___id": "T000002R034709", + "___id": "T000002R034698", "___s": true }, { @@ -306866,7 +307437,7 @@ "memberof": "Phaser.Types.Renderer.WebGL", "longname": "Phaser.Types.Renderer.WebGL.RenderTargetConfig", "scope": "static", - "___id": "T000002R034710", + "___id": "T000002R034699", "___s": true }, { @@ -306921,7 +307492,7 @@ "memberof": "Phaser.Types.Renderer.WebGL", "longname": "Phaser.Types.Renderer.WebGL.WebGLConst", "scope": "static", - "___id": "T000002R034711", + "___id": "T000002R034700", "___s": true }, { @@ -307051,7 +307622,7 @@ "memberof": "Phaser.Types.Renderer.WebGL", "longname": "Phaser.Types.Renderer.WebGL.WebGLPipelineAttribute", "scope": "static", - "___id": "T000002R034712", + "___id": "T000002R034701", "___s": true }, { @@ -307134,7 +307705,7 @@ "memberof": "Phaser.Types.Renderer.WebGL", "longname": "Phaser.Types.Renderer.WebGL.WebGLPipelineAttributeConfig", "scope": "static", - "___id": "T000002R034713", + "___id": "T000002R034702", "___s": true }, { @@ -307237,7 +307808,7 @@ "memberof": "Phaser.Types.Renderer.WebGL", "longname": "Phaser.Types.Renderer.WebGL.WebGLPipelineBatchEntry", "scope": "static", - "___id": "T000002R034714", + "___id": "T000002R034703", "___s": true }, { @@ -307511,7 +308082,7 @@ "memberof": "Phaser.Types.Renderer.WebGL", "longname": "Phaser.Types.Renderer.WebGL.WebGLPipelineConfig", "scope": "static", - "___id": "T000002R034715", + "___id": "T000002R034704", "___s": true }, { @@ -307605,7 +308176,7 @@ "memberof": "Phaser.Types.Renderer.WebGL", "longname": "Phaser.Types.Renderer.WebGL.WebGLPipelineShaderConfig", "scope": "static", - "___id": "T000002R034716", + "___id": "T000002R034705", "___s": true }, { @@ -307731,7 +308302,7 @@ "memberof": "Phaser.Types.Renderer.WebGL", "longname": "Phaser.Types.Renderer.WebGL.WebGLPipelineUniformsConfig", "scope": "static", - "___id": "T000002R034717", + "___id": "T000002R034706", "___s": true }, { @@ -307980,7 +308551,7 @@ "memberof": "Phaser.Types.Renderer.WebGL", "longname": "Phaser.Types.Renderer.WebGL.WebGLTextureCompression", "scope": "static", - "___id": "T000002R034718", + "___id": "T000002R034707", "___s": true }, { @@ -307998,7 +308569,7 @@ "memberof": "Phaser.Renderer.WebGL", "longname": "Phaser.Renderer.WebGL.Utils", "scope": "static", - "___id": "T000002R034719", + "___id": "T000002R034708", "___s": true }, { @@ -308085,7 +308656,7 @@ "memberof": "Phaser.Renderer.WebGL.Utils", "longname": "Phaser.Renderer.WebGL.Utils.getTintFromFloats", "scope": "static", - "___id": "T000002R034721", + "___id": "T000002R034710", "___s": true }, { @@ -308146,7 +308717,7 @@ "memberof": "Phaser.Renderer.WebGL.Utils", "longname": "Phaser.Renderer.WebGL.Utils.getTintAppendFloatAlpha", "scope": "static", - "___id": "T000002R034727", + "___id": "T000002R034716", "___s": true }, { @@ -308207,7 +308778,7 @@ "memberof": "Phaser.Renderer.WebGL.Utils", "longname": "Phaser.Renderer.WebGL.Utils.getTintAppendFloatAlphaAndSwap", "scope": "static", - "___id": "T000002R034730", + "___id": "T000002R034719", "___s": true }, { @@ -308255,7 +308826,7 @@ "memberof": "Phaser.Renderer.WebGL.Utils", "longname": "Phaser.Renderer.WebGL.Utils.getFloatsFromUintRGB", "scope": "static", - "___id": "T000002R034736", + "___id": "T000002R034725", "___s": true }, { @@ -308316,7 +308887,7 @@ "memberof": "Phaser.Renderer.WebGL.Utils", "longname": "Phaser.Renderer.WebGL.Utils.checkShaderMax", "scope": "static", - "___id": "T000002R034741", + "___id": "T000002R034730", "___s": true }, { @@ -308377,7 +308948,7 @@ "memberof": "Phaser.Renderer.WebGL.Utils", "longname": "Phaser.Renderer.WebGL.Utils.parseFragmentShaderMaxTextures", "scope": "static", - "___id": "T000002R034744", + "___id": "T000002R034733", "___s": true }, { @@ -308466,7 +309037,7 @@ "memberof": "Phaser.Renderer.WebGL.Utils", "longname": "Phaser.Renderer.WebGL.Utils.setGlowQuality", "scope": "static", - "___id": "T000002R034754", + "___id": "T000002R034743", "___s": true }, { @@ -308503,7 +309074,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.WebGLPipeline", - "___id": "T000002R034770", + "___id": "T000002R034759", "___s": true }, { @@ -308531,7 +309102,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#name", "scope": "instance", "kind": "member", - "___id": "T000002R034777", + "___id": "T000002R034766", "___s": true }, { @@ -308559,7 +309130,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#game", "scope": "instance", "kind": "member", - "___id": "T000002R034779", + "___id": "T000002R034768", "___s": true }, { @@ -308587,7 +309158,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "scope": "instance", "kind": "member", - "___id": "T000002R034781", + "___id": "T000002R034770", "___s": true }, { @@ -308617,7 +309188,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "scope": "instance", "kind": "member", - "___id": "T000002R034783", + "___id": "T000002R034772", "___s": true }, { @@ -308645,7 +309216,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "scope": "instance", "kind": "member", - "___id": "T000002R034785", + "___id": "T000002R034774", "___s": true }, { @@ -308673,7 +309244,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#view", "scope": "instance", "kind": "member", - "___id": "T000002R034787", + "___id": "T000002R034776", "___s": true }, { @@ -308701,7 +309272,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#width", "scope": "instance", "kind": "member", - "___id": "T000002R034789", + "___id": "T000002R034778", "___s": true }, { @@ -308729,7 +309300,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#height", "scope": "instance", "kind": "member", - "___id": "T000002R034791", + "___id": "T000002R034780", "___s": true }, { @@ -308758,7 +309329,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "scope": "instance", "kind": "member", - "___id": "T000002R034793", + "___id": "T000002R034782", "___s": true }, { @@ -308786,7 +309357,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "scope": "instance", "kind": "member", - "___id": "T000002R034795", + "___id": "T000002R034784", "___s": true }, { @@ -308815,7 +309386,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "scope": "instance", "kind": "member", - "___id": "T000002R034797", + "___id": "T000002R034786", "___s": true }, { @@ -308844,7 +309415,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "scope": "instance", "kind": "member", - "___id": "T000002R034799", + "___id": "T000002R034788", "___s": true }, { @@ -308872,7 +309443,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "scope": "instance", "kind": "member", - "___id": "T000002R034801", + "___id": "T000002R034790", "___s": true }, { @@ -308900,7 +309471,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "scope": "instance", "kind": "member", - "___id": "T000002R034803", + "___id": "T000002R034792", "___s": true }, { @@ -308928,7 +309499,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "scope": "instance", "kind": "member", - "___id": "T000002R034805", + "___id": "T000002R034794", "___s": true }, { @@ -308956,7 +309527,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "scope": "instance", "kind": "member", - "___id": "T000002R034807", + "___id": "T000002R034796", "___s": true }, { @@ -308984,7 +309555,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "scope": "instance", "kind": "member", - "___id": "T000002R034809", + "___id": "T000002R034798", "___s": true }, { @@ -309012,7 +309583,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#active", "scope": "instance", "kind": "member", - "___id": "T000002R034811", + "___id": "T000002R034800", "___s": true }, { @@ -309040,7 +309611,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "scope": "instance", "kind": "member", - "___id": "T000002R034813", + "___id": "T000002R034802", "___s": true }, { @@ -309069,7 +309640,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "scope": "instance", "kind": "member", - "___id": "T000002R034815", + "___id": "T000002R034804", "___s": true }, { @@ -309098,7 +309669,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "scope": "instance", "kind": "member", - "___id": "T000002R034817", + "___id": "T000002R034806", "___s": true }, { @@ -309127,7 +309698,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "scope": "instance", "kind": "member", - "___id": "T000002R034819", + "___id": "T000002R034808", "___s": true }, { @@ -309164,7 +309735,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "scope": "instance", "kind": "member", - "___id": "T000002R034821", + "___id": "T000002R034810", "___s": true }, { @@ -309192,7 +309763,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "scope": "instance", "kind": "member", - "___id": "T000002R034823", + "___id": "T000002R034812", "___s": true }, { @@ -309229,7 +309800,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "scope": "instance", "kind": "member", - "___id": "T000002R034825", + "___id": "T000002R034814", "___s": true }, { @@ -309257,7 +309828,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "scope": "instance", "kind": "member", - "___id": "T000002R034827", + "___id": "T000002R034816", "___s": true }, { @@ -309285,7 +309856,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "scope": "instance", "kind": "member", - "___id": "T000002R034829", + "___id": "T000002R034818", "___s": true }, { @@ -309313,7 +309884,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "scope": "instance", "kind": "member", - "___id": "T000002R034831", + "___id": "T000002R034820", "___s": true }, { @@ -309341,7 +309912,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "scope": "instance", "kind": "member", - "___id": "T000002R034833", + "___id": "T000002R034822", "___s": true }, { @@ -309369,7 +309940,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#config", "scope": "instance", "kind": "member", - "___id": "T000002R034835", + "___id": "T000002R034824", "___s": true }, { @@ -309397,7 +309968,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "scope": "instance", "kind": "member", - "___id": "T000002R034837", + "___id": "T000002R034826", "___s": true }, { @@ -309434,7 +310005,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "scope": "instance", "kind": "member", - "___id": "T000002R034839", + "___id": "T000002R034828", "___s": true }, { @@ -309464,7 +310035,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "scope": "instance", "kind": "member", - "___id": "T000002R034841", + "___id": "T000002R034830", "___s": true }, { @@ -309494,7 +310065,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "scope": "instance", "kind": "member", - "___id": "T000002R034843", + "___id": "T000002R034832", "___s": true }, { @@ -309522,7 +310093,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "scope": "instance", "kind": "member", - "___id": "T000002R034845", + "___id": "T000002R034834", "___s": true }, { @@ -309559,7 +310130,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "scope": "instance", "kind": "member", - "___id": "T000002R034847", + "___id": "T000002R034836", "___s": true }, { @@ -309587,7 +310158,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "scope": "instance", "kind": "member", - "___id": "T000002R034849", + "___id": "T000002R034838", "___s": true }, { @@ -309609,7 +310180,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "scope": "instance", - "___id": "T000002R034851", + "___id": "T000002R034840", "___s": true }, { @@ -309628,7 +310199,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "scope": "instance", - "___id": "T000002R034888", + "___id": "T000002R034877", "___s": true }, { @@ -309675,7 +310246,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onResize", "scope": "instance", - "___id": "T000002R034890", + "___id": "T000002R034879", "___s": true }, { @@ -309753,7 +310324,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#setShader", "scope": "instance", - "___id": "T000002R034892", + "___id": "T000002R034881", "___s": true }, { @@ -309801,7 +310372,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#getShaderByName", "scope": "instance", - "___id": "T000002R034898", + "___id": "T000002R034887", "___s": true }, { @@ -309850,7 +310421,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#setShadersFromConfig", "scope": "instance", - "___id": "T000002R034902", + "___id": "T000002R034891", "___s": true }, { @@ -309898,7 +310469,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#createBatch", "scope": "instance", - "___id": "T000002R034937", + "___id": "T000002R034926", "___s": true }, { @@ -309932,7 +310503,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#addTextureToBatch", "scope": "instance", - "___id": "T000002R034947", + "___id": "T000002R034936", "___s": true }, { @@ -309980,7 +310551,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#pushBatch", "scope": "instance", - "___id": "T000002R034950", + "___id": "T000002R034939", "___s": true }, { @@ -310042,7 +310613,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#setGameObject", "scope": "instance", - "___id": "T000002R034958", + "___id": "T000002R034947", "___s": true }, { @@ -310092,7 +310663,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#shouldFlush", "scope": "instance", - "___id": "T000002R034961", + "___id": "T000002R034950", "___s": true }, { @@ -310125,7 +310696,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "scope": "instance", - "___id": "T000002R034964", + "___id": "T000002R034953", "___s": true }, { @@ -310190,7 +310761,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#resize", "scope": "instance", - "___id": "T000002R034966", + "___id": "T000002R034955", "___s": true }, { @@ -310252,7 +310823,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#setProjectionMatrix", "scope": "instance", - "___id": "T000002R034972", + "___id": "T000002R034961", "___s": true }, { @@ -310288,7 +310859,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#flipProjectionMatrix", "scope": "instance", - "___id": "T000002R034981", + "___id": "T000002R034970", "___s": true }, { @@ -310307,7 +310878,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "scope": "instance", - "___id": "T000002R034987", + "___id": "T000002R034976", "___s": true }, { @@ -310360,7 +310931,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#bind", "scope": "instance", - "___id": "T000002R034991", + "___id": "T000002R034980", "___s": true }, { @@ -310413,7 +310984,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#rebind", "scope": "instance", - "___id": "T000002R035000", + "___id": "T000002R034989", "___s": true }, { @@ -310432,7 +311003,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "scope": "instance", - "___id": "T000002R035009", + "___id": "T000002R034998", "___s": true }, { @@ -310481,7 +311052,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#setVertexBuffer", "scope": "instance", - "___id": "T000002R035021", + "___id": "T000002R035010", "___s": true }, { @@ -310541,7 +311112,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#preBatch", "scope": "instance", - "___id": "T000002R035026", + "___id": "T000002R035015", "___s": true }, { @@ -310601,7 +311172,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#postBatch", "scope": "instance", - "___id": "T000002R035028", + "___id": "T000002R035017", "___s": true }, { @@ -310649,7 +311220,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onDraw", "scope": "instance", - "___id": "T000002R035030", + "___id": "T000002R035019", "___s": true }, { @@ -310668,7 +311239,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "scope": "instance", - "___id": "T000002R035032", + "___id": "T000002R035021", "___s": true }, { @@ -310723,7 +311294,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#flush", "scope": "instance", - "___id": "T000002R035034", + "___id": "T000002R035023", "___s": true }, { @@ -310757,7 +311328,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onActive", "scope": "instance", - "___id": "T000002R035060", + "___id": "T000002R035049", "___s": true }, { @@ -310792,7 +311363,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onBind", "scope": "instance", - "___id": "T000002R035062", + "___id": "T000002R035051", "___s": true }, { @@ -310811,7 +311382,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "scope": "instance", - "___id": "T000002R035064", + "___id": "T000002R035053", "___s": true }, { @@ -310846,7 +311417,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onBatch", "scope": "instance", - "___id": "T000002R035066", + "___id": "T000002R035055", "___s": true }, { @@ -310881,7 +311452,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onPreBatch", "scope": "instance", - "___id": "T000002R035068", + "___id": "T000002R035057", "___s": true }, { @@ -310916,7 +311487,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onPostBatch", "scope": "instance", - "___id": "T000002R035070", + "___id": "T000002R035059", "___s": true }, { @@ -310935,7 +311506,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "scope": "instance", - "___id": "T000002R035072", + "___id": "T000002R035061", "___s": true }, { @@ -310982,7 +311553,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onRender", "scope": "instance", - "___id": "T000002R035074", + "___id": "T000002R035063", "___s": true }, { @@ -311001,7 +311572,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "scope": "instance", - "___id": "T000002R035076", + "___id": "T000002R035065", "___s": true }, { @@ -311037,7 +311608,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onBeforeFlush", "scope": "instance", - "___id": "T000002R035078", + "___id": "T000002R035067", "___s": true }, { @@ -311073,7 +311644,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#onAfterFlush", "scope": "instance", - "___id": "T000002R035080", + "___id": "T000002R035069", "___s": true }, { @@ -311195,7 +311766,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#batchVert", "scope": "instance", - "___id": "T000002R035082", + "___id": "T000002R035071", "___s": true }, { @@ -311512,7 +312083,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#batchQuad", "scope": "instance", - "___id": "T000002R035095", + "___id": "T000002R035084", "___s": true }, { @@ -311790,7 +312361,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#batchTri", "scope": "instance", - "___id": "T000002R035148", + "___id": "T000002R035137", "___s": true }, { @@ -311918,7 +312489,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#drawFillRect", "scope": "instance", - "___id": "T000002R035180", + "___id": "T000002R035169", "___s": true }, { @@ -311967,7 +312538,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#setTexture2D", "scope": "instance", - "___id": "T000002R035196", + "___id": "T000002R035185", "___s": true }, { @@ -312032,7 +312603,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#bindTexture", "scope": "instance", - "___id": "T000002R035199", + "___id": "T000002R035188", "___s": true }, { @@ -312097,7 +312668,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#bindRenderTarget", "scope": "instance", - "___id": "T000002R035203", + "___id": "T000002R035192", "___s": true }, { @@ -312160,7 +312731,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#setTime", "scope": "instance", - "___id": "T000002R035205", + "___id": "T000002R035194", "___s": true }, { @@ -312236,7 +312807,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#setBoolean", "scope": "instance", - "___id": "T000002R035207", + "___id": "T000002R035196", "___s": true }, { @@ -312312,7 +312883,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set1f", "scope": "instance", - "___id": "T000002R035210", + "___id": "T000002R035199", "___s": true }, { @@ -312401,7 +312972,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set2f", "scope": "instance", - "___id": "T000002R035213", + "___id": "T000002R035202", "___s": true }, { @@ -312503,7 +313074,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set3f", "scope": "instance", - "___id": "T000002R035216", + "___id": "T000002R035205", "___s": true }, { @@ -312618,7 +313189,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set4f", "scope": "instance", - "___id": "T000002R035219", + "___id": "T000002R035208", "___s": true }, { @@ -312713,7 +313284,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set1fv", "scope": "instance", - "___id": "T000002R035222", + "___id": "T000002R035211", "___s": true }, { @@ -312808,7 +313379,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set2fv", "scope": "instance", - "___id": "T000002R035225", + "___id": "T000002R035214", "___s": true }, { @@ -312903,7 +313474,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set3fv", "scope": "instance", - "___id": "T000002R035228", + "___id": "T000002R035217", "___s": true }, { @@ -312998,7 +313569,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set4fv", "scope": "instance", - "___id": "T000002R035231", + "___id": "T000002R035220", "___s": true }, { @@ -313093,7 +313664,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set1iv", "scope": "instance", - "___id": "T000002R035234", + "___id": "T000002R035223", "___s": true }, { @@ -313188,7 +313759,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set2iv", "scope": "instance", - "___id": "T000002R035237", + "___id": "T000002R035226", "___s": true }, { @@ -313283,7 +313854,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set3iv", "scope": "instance", - "___id": "T000002R035240", + "___id": "T000002R035229", "___s": true }, { @@ -313378,7 +313949,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set4iv", "scope": "instance", - "___id": "T000002R035243", + "___id": "T000002R035232", "___s": true }, { @@ -313454,7 +314025,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set1i", "scope": "instance", - "___id": "T000002R035246", + "___id": "T000002R035235", "___s": true }, { @@ -313543,7 +314114,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set2i", "scope": "instance", - "___id": "T000002R035249", + "___id": "T000002R035238", "___s": true }, { @@ -313645,7 +314216,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set3i", "scope": "instance", - "___id": "T000002R035252", + "___id": "T000002R035241", "___s": true }, { @@ -313760,7 +314331,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#set4i", "scope": "instance", - "___id": "T000002R035255", + "___id": "T000002R035244", "___s": true }, { @@ -313868,7 +314439,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix2fv", "scope": "instance", - "___id": "T000002R035258", + "___id": "T000002R035247", "___s": true }, { @@ -313957,7 +314528,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix3fv", "scope": "instance", - "___id": "T000002R035261", + "___id": "T000002R035250", "___s": true }, { @@ -314046,7 +314617,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLPipeline", "longname": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix4fv", "scope": "instance", - "___id": "T000002R035264", + "___id": "T000002R035253", "___s": true }, { @@ -314084,7 +314655,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLPipeline#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R035267", + "___id": "T000002R035256", "___s": true }, { @@ -314120,7 +314691,7 @@ ], "longname": "WebGLContextCallback", "scope": "global", - "___id": "T000002R035316", + "___id": "T000002R035305", "___s": true }, { @@ -314157,7 +314728,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.WebGLRenderer", - "___id": "T000002R035317", + "___id": "T000002R035306", "___s": true }, { @@ -314185,7 +314756,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#config", "scope": "instance", "kind": "member", - "___id": "T000002R035333", + "___id": "T000002R035322", "___s": true }, { @@ -314213,7 +314784,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#game", "scope": "instance", "kind": "member", - "___id": "T000002R035345", + "___id": "T000002R035334", "___s": true }, { @@ -314241,7 +314812,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#type", "scope": "instance", "kind": "member", - "___id": "T000002R035347", + "___id": "T000002R035336", "___s": true }, { @@ -314269,7 +314840,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#pipelines", "scope": "instance", "kind": "member", - "___id": "T000002R035349", + "___id": "T000002R035338", "___s": true }, { @@ -314297,7 +314868,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#width", "scope": "instance", "kind": "member", - "___id": "T000002R035351", + "___id": "T000002R035340", "___s": true }, { @@ -314325,7 +314896,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#height", "scope": "instance", "kind": "member", - "___id": "T000002R035353", + "___id": "T000002R035342", "___s": true }, { @@ -314353,7 +314924,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#canvas", "scope": "instance", "kind": "member", - "___id": "T000002R035355", + "___id": "T000002R035344", "___s": true }, { @@ -314382,7 +314953,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#blendModes", "scope": "instance", "kind": "member", - "___id": "T000002R035357", + "___id": "T000002R035346", "___s": true }, { @@ -314411,7 +314982,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#contextLost", "scope": "instance", "kind": "member", - "___id": "T000002R035359", + "___id": "T000002R035348", "___s": true }, { @@ -314439,7 +315010,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#snapshotState", "scope": "instance", "kind": "member", - "___id": "T000002R035361", + "___id": "T000002R035350", "___s": true }, { @@ -314467,7 +315038,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#maxTextures", "scope": "instance", "kind": "member", - "___id": "T000002R035374", + "___id": "T000002R035363", "___s": true }, { @@ -314495,7 +315066,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#textureIndexes", "scope": "instance", "kind": "member", - "___id": "T000002R035376", + "___id": "T000002R035365", "___s": true }, { @@ -314532,7 +315103,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#glBufferWrappers", "scope": "instance", "kind": "member", - "___id": "T000002R035378", + "___id": "T000002R035367", "___s": true }, { @@ -314569,7 +315140,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#glProgramWrappers", "scope": "instance", "kind": "member", - "___id": "T000002R035380", + "___id": "T000002R035369", "___s": true }, { @@ -314606,7 +315177,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#glTextureWrappers", "scope": "instance", "kind": "member", - "___id": "T000002R035382", + "___id": "T000002R035371", "___s": true }, { @@ -314643,7 +315214,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#glFramebufferWrappers", "scope": "instance", "kind": "member", - "___id": "T000002R035384", + "___id": "T000002R035373", "___s": true }, { @@ -314680,7 +315251,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#glAttribLocationWrappers", "scope": "instance", "kind": "member", - "___id": "T000002R035386", + "___id": "T000002R035375", "___s": true }, { @@ -314717,7 +315288,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#glUniformLocationWrappers", "scope": "instance", "kind": "member", - "___id": "T000002R035388", + "___id": "T000002R035377", "___s": true }, { @@ -314746,7 +315317,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#currentFramebuffer", "scope": "instance", "kind": "member", - "___id": "T000002R035390", + "___id": "T000002R035379", "___s": true }, { @@ -314783,7 +315354,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#fboStack", "scope": "instance", "kind": "member", - "___id": "T000002R035392", + "___id": "T000002R035381", "___s": true }, { @@ -314812,7 +315383,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#currentProgram", "scope": "instance", "kind": "member", - "___id": "T000002R035394", + "___id": "T000002R035383", "___s": true }, { @@ -314840,7 +315411,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#currentBlendMode", "scope": "instance", "kind": "member", - "___id": "T000002R035396", + "___id": "T000002R035385", "___s": true }, { @@ -314869,7 +315440,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#currentScissorEnabled", "scope": "instance", "kind": "member", - "___id": "T000002R035398", + "___id": "T000002R035387", "___s": true }, { @@ -314897,7 +315468,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#currentScissor", "scope": "instance", "kind": "member", - "___id": "T000002R035400", + "___id": "T000002R035389", "___s": true }, { @@ -314925,7 +315496,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#scissorStack", "scope": "instance", "kind": "member", - "___id": "T000002R035402", + "___id": "T000002R035391", "___s": true }, { @@ -314953,7 +315524,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#contextLostHandler", "scope": "instance", "kind": "member", - "___id": "T000002R035404", + "___id": "T000002R035393", "___s": true }, { @@ -314981,7 +315552,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#contextRestoredHandler", "scope": "instance", "kind": "member", - "___id": "T000002R035406", + "___id": "T000002R035395", "___s": true }, { @@ -315009,7 +315580,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#previousContextLostHandler", "scope": "instance", "kind": "member", - "___id": "T000002R035408", + "___id": "T000002R035397", "___s": true }, { @@ -315037,7 +315608,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#previousContextRestoredHandler", "scope": "instance", "kind": "member", - "___id": "T000002R035410", + "___id": "T000002R035399", "___s": true }, { @@ -315066,7 +315637,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#gl", "scope": "instance", "kind": "member", - "___id": "T000002R035412", + "___id": "T000002R035401", "___s": true }, { @@ -315104,7 +315675,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#supportedExtensions", "scope": "instance", "kind": "member", - "___id": "T000002R035414", + "___id": "T000002R035403", "___s": true }, { @@ -315133,7 +315704,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#instancedArraysExtension", "scope": "instance", "kind": "member", - "___id": "T000002R035416", + "___id": "T000002R035405", "___s": true }, { @@ -315162,7 +315733,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#vaoExtension", "scope": "instance", "kind": "member", - "___id": "T000002R035418", + "___id": "T000002R035407", "___s": true }, { @@ -315191,7 +315762,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#extensions", "scope": "instance", "kind": "member", - "___id": "T000002R035420", + "___id": "T000002R035409", "___s": true }, { @@ -315219,7 +315790,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#glFormats", "scope": "instance", "kind": "member", - "___id": "T000002R035422", + "___id": "T000002R035411", "___s": true }, { @@ -315247,7 +315818,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#compression", "scope": "instance", "kind": "member", - "___id": "T000002R035424", + "___id": "T000002R035413", "___s": true }, { @@ -315276,7 +315847,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#drawingBufferHeight", "scope": "instance", "kind": "member", - "___id": "T000002R035426", + "___id": "T000002R035415", "___s": true }, { @@ -315305,7 +315876,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#blankTexture", "scope": "instance", "kind": "member", - "___id": "T000002R035428", + "___id": "T000002R035417", "___s": true }, { @@ -315334,7 +315905,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#normalTexture", "scope": "instance", "kind": "member", - "___id": "T000002R035430", + "___id": "T000002R035419", "___s": true }, { @@ -315363,7 +315934,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#whiteTexture", "scope": "instance", "kind": "member", - "___id": "T000002R035432", + "___id": "T000002R035421", "___s": true }, { @@ -315391,7 +315962,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#maskCount", "scope": "instance", "kind": "member", - "___id": "T000002R035434", + "___id": "T000002R035423", "___s": true }, { @@ -315428,7 +315999,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#maskStack", "scope": "instance", "kind": "member", - "___id": "T000002R035436", + "___id": "T000002R035425", "___s": true }, { @@ -315456,7 +316027,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#currentMask", "scope": "instance", "kind": "member", - "___id": "T000002R035438", + "___id": "T000002R035427", "___s": true }, { @@ -315484,7 +316055,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#currentCameraMask", "scope": "instance", "kind": "member", - "___id": "T000002R035442", + "___id": "T000002R035431", "___s": true }, { @@ -315512,7 +316083,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#glFuncMap", "scope": "instance", "kind": "member", - "___id": "T000002R035446", + "___id": "T000002R035435", "___s": true }, { @@ -315540,7 +316111,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#currentType", "scope": "instance", "kind": "member", - "___id": "T000002R035448", + "___id": "T000002R035437", "___s": true }, { @@ -315568,7 +316139,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#newType", "scope": "instance", "kind": "member", - "___id": "T000002R035450", + "___id": "T000002R035439", "___s": true }, { @@ -315596,7 +316167,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#nextTypeMatch", "scope": "instance", "kind": "member", - "___id": "T000002R035452", + "___id": "T000002R035441", "___s": true }, { @@ -315624,7 +316195,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#finalType", "scope": "instance", "kind": "member", - "___id": "T000002R035454", + "___id": "T000002R035443", "___s": true }, { @@ -315652,7 +316223,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#mipmapFilter", "scope": "instance", "kind": "member", - "___id": "T000002R035456", + "___id": "T000002R035445", "___s": true }, { @@ -315680,7 +316251,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#isBooted", "scope": "instance", "kind": "member", - "___id": "T000002R035460", + "___id": "T000002R035449", "___s": true }, { @@ -315708,7 +316279,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#renderTarget", "scope": "instance", "kind": "member", - "___id": "T000002R035462", + "___id": "T000002R035451", "___s": true }, { @@ -315736,7 +316307,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#projectionMatrix", "scope": "instance", "kind": "member", - "___id": "T000002R035464", + "___id": "T000002R035453", "___s": true }, { @@ -315764,7 +316335,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#projectionWidth", "scope": "instance", "kind": "member", - "___id": "T000002R035466", + "___id": "T000002R035455", "___s": true }, { @@ -315792,7 +316363,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#projectionHeight", "scope": "instance", "kind": "member", - "___id": "T000002R035468", + "___id": "T000002R035457", "___s": true }, { @@ -315820,7 +316391,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#maskSource", "scope": "instance", "kind": "member", - "___id": "T000002R035470", + "___id": "T000002R035459", "___s": true }, { @@ -315848,7 +316419,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#maskTarget", "scope": "instance", "kind": "member", - "___id": "T000002R035472", + "___id": "T000002R035461", "___s": true }, { @@ -315876,7 +316447,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#spector", "scope": "instance", "kind": "member", - "___id": "T000002R035474", + "___id": "T000002R035463", "___s": true }, { @@ -315925,7 +316496,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#init", "scope": "instance", - "___id": "T000002R035478", + "___id": "T000002R035467", "___s": true }, { @@ -315974,7 +316545,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#setContextHandlers", "scope": "instance", - "___id": "T000002R035596", + "___id": "T000002R035585", "___s": true }, { @@ -316008,7 +316579,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#dispatchContextLost", "scope": "instance", - "___id": "T000002R035604", + "___id": "T000002R035593", "___s": true }, { @@ -316042,7 +316613,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#dispatchContextRestored", "scope": "instance", - "___id": "T000002R035607", + "___id": "T000002R035596", "___s": true }, { @@ -316061,7 +316632,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#createTemporaryTextures", "scope": "instance", - "___id": "T000002R035615", + "___id": "T000002R035604", "___s": true }, { @@ -316112,7 +316683,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#captureFrame", "scope": "instance", - "___id": "T000002R035620", + "___id": "T000002R035609", "___s": true }, { @@ -316131,7 +316702,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#captureNextFrame", "scope": "instance", - "___id": "T000002R035625", + "___id": "T000002R035614", "___s": true }, { @@ -316164,7 +316735,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#getFps", "scope": "instance", - "___id": "T000002R035628", + "___id": "T000002R035617", "___s": true }, { @@ -316213,7 +316784,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#log", "scope": "instance", - "___id": "T000002R035630", + "___id": "T000002R035619", "___s": true }, { @@ -316279,7 +316850,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#startCapture", "scope": "instance", - "___id": "T000002R035633", + "___id": "T000002R035622", "___s": true }, { @@ -316312,7 +316883,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#stopCapture", "scope": "instance", - "___id": "T000002R035639", + "___id": "T000002R035628", "___s": true }, { @@ -316359,7 +316930,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#onResize", "scope": "instance", - "___id": "T000002R035645", + "___id": "T000002R035634", "___s": true }, { @@ -316408,7 +316979,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#beginCapture", "scope": "instance", - "___id": "T000002R035647", + "___id": "T000002R035636", "___s": true }, { @@ -316441,7 +317012,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#endCapture", "scope": "instance", - "___id": "T000002R035651", + "___id": "T000002R035640", "___s": true }, { @@ -316508,7 +317079,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#resize", "scope": "instance", - "___id": "T000002R035653", + "___id": "T000002R035642", "___s": true }, { @@ -316541,7 +317112,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#getCompressedTextures", "scope": "instance", - "___id": "T000002R035661", + "___id": "T000002R035650", "___s": true }, { @@ -316603,7 +317174,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#getCompressedTextureName", "scope": "instance", - "___id": "T000002R035682", + "___id": "T000002R035671", "___s": true }, { @@ -316665,7 +317236,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#supportsCompressedTexture", "scope": "instance", - "___id": "T000002R035685", + "___id": "T000002R035674", "___s": true }, { @@ -316698,7 +317269,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#getAspectRatio", "scope": "instance", - "___id": "T000002R035688", + "___id": "T000002R035677", "___s": true }, { @@ -316760,7 +317331,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#setProjectionMatrix", "scope": "instance", - "___id": "T000002R035690", + "___id": "T000002R035679", "___s": true }, { @@ -316794,7 +317365,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#resetProjectionMatrix", "scope": "instance", - "___id": "T000002R035694", + "___id": "T000002R035683", "___s": true }, { @@ -316842,7 +317413,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#hasExtension", "scope": "instance", - "___id": "T000002R035696", + "___id": "T000002R035685", "___s": true }, { @@ -316890,7 +317461,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#getExtension", "scope": "instance", - "___id": "T000002R035698", + "___id": "T000002R035687", "___s": true }, { @@ -316909,7 +317480,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#flush", "scope": "instance", - "___id": "T000002R035701", + "___id": "T000002R035690", "___s": true }, { @@ -317019,7 +317590,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#pushScissor", "scope": "instance", - "___id": "T000002R035703", + "___id": "T000002R035692", "___s": true }, { @@ -317106,7 +317677,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#setScissor", "scope": "instance", - "___id": "T000002R035709", + "___id": "T000002R035698", "___s": true }, { @@ -317125,7 +317696,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#resetScissor", "scope": "instance", - "___id": "T000002R035720", + "___id": "T000002R035709", "___s": true }, { @@ -317144,7 +317715,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#popScissor", "scope": "instance", - "___id": "T000002R035728", + "___id": "T000002R035717", "___s": true }, { @@ -317177,7 +317748,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#hasActiveStencilMask", "scope": "instance", - "___id": "T000002R035733", + "___id": "T000002R035722", "___s": true }, { @@ -317196,7 +317767,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#resetViewport", "scope": "instance", - "___id": "T000002R035737", + "___id": "T000002R035726", "___s": true }, { @@ -317259,7 +317830,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#setBlendMode", "scope": "instance", - "___id": "T000002R035741", + "___id": "T000002R035730", "___s": true }, { @@ -317329,7 +317900,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#addBlendMode", "scope": "instance", - "___id": "T000002R035747", + "___id": "T000002R035736", "___s": true }, { @@ -317404,7 +317975,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#updateBlendMode", "scope": "instance", - "___id": "T000002R035752", + "___id": "T000002R035741", "___s": true }, { @@ -317453,7 +318024,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#removeBlendMode", "scope": "instance", - "___id": "T000002R035756", + "___id": "T000002R035745", "___s": true }, { @@ -317562,7 +318133,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#pushFramebuffer", "scope": "instance", - "___id": "T000002R035758", + "___id": "T000002R035747", "___s": true }, { @@ -317680,7 +318251,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#setFramebuffer", "scope": "instance", - "___id": "T000002R035760", + "___id": "T000002R035749", "___s": true }, { @@ -317745,7 +318316,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#popFramebuffer", "scope": "instance", - "___id": "T000002R035774", + "___id": "T000002R035763", "___s": true }, { @@ -317796,7 +318367,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#restoreFramebuffer", "scope": "instance", - "___id": "T000002R035781", + "___id": "T000002R035770", "___s": true }, { @@ -317844,7 +318415,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#setProgram", "scope": "instance", - "___id": "T000002R035789", + "___id": "T000002R035778", "___s": true }, { @@ -317878,7 +318449,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#resetProgram", "scope": "instance", - "___id": "T000002R035792", + "___id": "T000002R035781", "___s": true }, { @@ -317982,7 +318553,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#createTextureFromSource", "scope": "instance", - "___id": "T000002R035794", + "___id": "T000002R035783", "___s": true }, { @@ -318185,7 +318756,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#createTexture2D", "scope": "instance", - "___id": "T000002R035812", + "___id": "T000002R035801", "___s": true }, { @@ -318274,7 +318845,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#createFramebuffer", "scope": "instance", - "___id": "T000002R035817", + "___id": "T000002R035806", "___s": true }, { @@ -318321,7 +318892,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#beginBitmapMask", "scope": "instance", - "___id": "T000002R035821", + "___id": "T000002R035810", "___s": true }, { @@ -318381,7 +318952,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#drawBitmapMask", "scope": "instance", - "___id": "T000002R035826", + "___id": "T000002R035815", "___s": true }, { @@ -318442,7 +319013,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#createProgram", "scope": "instance", - "___id": "T000002R035831", + "___id": "T000002R035820", "___s": true }, { @@ -318503,7 +319074,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#createVertexBuffer", "scope": "instance", - "___id": "T000002R035834", + "___id": "T000002R035823", "___s": true }, { @@ -318550,7 +319121,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#createAttribLocation", "scope": "instance", - "___id": "T000002R035838", + "___id": "T000002R035827", "___s": true }, { @@ -318597,7 +319168,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#createUniformLocation", "scope": "instance", - "___id": "T000002R035841", + "___id": "T000002R035830", "___s": true }, { @@ -318658,7 +319229,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#createIndexBuffer", "scope": "instance", - "___id": "T000002R035844", + "___id": "T000002R035833", "___s": true }, { @@ -318707,7 +319278,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#deleteTexture", "scope": "instance", - "___id": "T000002R035848", + "___id": "T000002R035837", "___s": true }, { @@ -318765,7 +319336,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#deleteFramebuffer", "scope": "instance", - "___id": "T000002R035850", + "___id": "T000002R035839", "___s": true }, { @@ -318814,7 +319385,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#deleteProgram", "scope": "instance", - "___id": "T000002R035852", + "___id": "T000002R035841", "___s": true }, { @@ -318848,7 +319419,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#deleteAttribLocation", "scope": "instance", - "___id": "T000002R035854", + "___id": "T000002R035843", "___s": true }, { @@ -318882,7 +319453,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#deleteUniformLocation", "scope": "instance", - "___id": "T000002R035856", + "___id": "T000002R035845", "___s": true }, { @@ -318931,7 +319502,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#deleteBuffer", "scope": "instance", - "___id": "T000002R035858", + "___id": "T000002R035847", "___s": true }, { @@ -318965,7 +319536,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#preRenderCamera", "scope": "instance", - "___id": "T000002R035860", + "___id": "T000002R035849", "___s": true }, { @@ -318999,11 +319570,11 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#postRenderCamera", "scope": "instance", - "___id": "T000002R035877", + "___id": "T000002R035866", "___s": true }, { - "comment": "/**\r\n * Clears the current vertex buffer and updates pipelines.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#preRender\r\n * @fires Phaser.Renderer.Events#PRE_RENDER\r\n * @since 3.0.0\r\n */", + "comment": "/**\r\n * Clears the current vertex buffer and updates pipelines.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#preRender\r\n * @fires Phaser.Renderer.Events#PRE_RENDER_CLEAR\r\n * @fires Phaser.Renderer.Events#PRE_RENDER\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebGLRenderer.js", "lineno": 2642, @@ -319015,20 +319586,21 @@ "kind": "function", "name": "preRender", "fires": [ + "Phaser.Renderer.Events#event:PRE_RENDER_CLEAR", "Phaser.Renderer.Events#event:PRE_RENDER" ], "since": "3.0.0", "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#preRender", "scope": "instance", - "___id": "T000002R035884", + "___id": "T000002R035873", "___s": true }, { "comment": "/**\r\n * The core render step for a Scene Camera.\r\n *\r\n * Iterates through the given array of Game Objects and renders them with the given Camera.\r\n *\r\n * This is called by the `CameraManager.render` method. The Camera Manager instance belongs to a Scene, and is invoked\r\n * by the Scene Systems.render method.\r\n *\r\n * This method is not called if `Camera.visible` is `false`, or `Camera.alpha` is zero.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#render\r\n * @fires Phaser.Renderer.Events#RENDER\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Scene} scene - The Scene to render.\r\n * @param {Phaser.GameObjects.GameObject[]} children - An array of filtered Game Objects that can be rendered by the given Camera.\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Scene Camera to render with.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 2686, + "lineno": 2689, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -319093,14 +319665,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#render", "scope": "instance", - "___id": "T000002R035893", + "___id": "T000002R035882", "___s": true }, { "comment": "/**\r\n * The post-render step happens after all Cameras in all Scenes have been rendered.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#postRender\r\n * @fires Phaser.Renderer.Events#POST_RENDER\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 2793, + "lineno": 2796, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -319115,14 +319687,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#postRender", "scope": "instance", - "___id": "T000002R035910", + "___id": "T000002R035899", "___s": true }, { "comment": "/**\r\n * Disables the STENCIL_TEST but does not change the status\r\n * of the current stencil mask.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#clearStencilMask\r\n * @since 3.60.0\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 2818, + "lineno": 2821, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -319134,14 +319706,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#clearStencilMask", "scope": "instance", - "___id": "T000002R035914", + "___id": "T000002R035903", "___s": true }, { "comment": "/**\r\n * Restores the current stencil function to the one that was in place\r\n * before `clearStencilMask` was called.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#restoreStencilMask\r\n * @since 3.60.0\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 2830, + "lineno": 2833, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -319153,14 +319725,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#restoreStencilMask", "scope": "instance", - "___id": "T000002R035916", + "___id": "T000002R035905", "___s": true }, { "comment": "/**\r\n * Schedules a snapshot of the entire game viewport to be taken after the current frame is rendered.\r\n *\r\n * To capture a specific area see the `snapshotArea` method. To capture a specific pixel, see `snapshotPixel`.\r\n *\r\n * Only one snapshot can be active _per frame_. If you have already called `snapshotPixel`, for example, then\r\n * calling this method will override it.\r\n *\r\n * Snapshots work by using the WebGL `readPixels` feature to grab every pixel from the frame buffer into an ArrayBufferView.\r\n * It then parses this, copying the contents to a temporary Canvas and finally creating an Image object from it,\r\n * which is the image returned to the callback provided. All in all, this is a computationally expensive and blocking process,\r\n * which gets more expensive the larger the canvas size gets, so please be careful how you employ this in your game.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#snapshot\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Types.Renderer.Snapshot.SnapshotCallback} callback - The Function to invoke after the snapshot image is created.\r\n * @param {string} [type='image/png'] - The format of the image to create, usually `image/png` or `image/jpeg`.\r\n * @param {number} [encoderOptions=0.92] - The image quality, between 0 and 1. Used for image formats with lossy compression, such as `image/jpeg`.\r\n *\r\n * @return {this} This WebGL Renderer.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 2862, + "lineno": 2865, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -319232,14 +319804,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#snapshot", "scope": "instance", - "___id": "T000002R035921", + "___id": "T000002R035910", "___s": true }, { "comment": "/**\r\n * Schedules a snapshot of the given area of the game viewport to be taken after the current frame is rendered.\r\n *\r\n * To capture the whole game viewport see the `snapshot` method. To capture a specific pixel, see `snapshotPixel`.\r\n *\r\n * Only one snapshot can be active _per frame_. If you have already called `snapshotPixel`, for example, then\r\n * calling this method will override it.\r\n *\r\n * Snapshots work by using the WebGL `readPixels` feature to grab every pixel from the frame buffer into an ArrayBufferView.\r\n * It then parses this, copying the contents to a temporary Canvas and finally creating an Image object from it,\r\n * which is the image returned to the callback provided. All in all, this is a computationally expensive and blocking process,\r\n * which gets more expensive the larger the canvas size gets, so please be careful how you employ this in your game.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#snapshotArea\r\n * @since 3.16.0\r\n *\r\n * @param {number} x - The x coordinate to grab from. This is based on the game viewport, not the world.\r\n * @param {number} y - The y coordinate to grab from. This is based on the game viewport, not the world.\r\n * @param {number} width - The width of the area to grab.\r\n * @param {number} height - The height of the area to grab.\r\n * @param {Phaser.Types.Renderer.Snapshot.SnapshotCallback} callback - The Function to invoke after the snapshot image is created.\r\n * @param {string} [type='image/png'] - The format of the image to create, usually `image/png` or `image/jpeg`.\r\n * @param {number} [encoderOptions=0.92] - The image quality, between 0 and 1. Used for image formats with lossy compression, such as `image/jpeg`.\r\n *\r\n * @return {this} This WebGL Renderer.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 2889, + "lineno": 2892, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -319363,14 +319935,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#snapshotArea", "scope": "instance", - "___id": "T000002R035923", + "___id": "T000002R035912", "___s": true }, { "comment": "/**\r\n * Schedules a snapshot of the given pixel from the game viewport to be taken after the current frame is rendered.\r\n *\r\n * To capture the whole game viewport see the `snapshot` method. To capture a specific area, see `snapshotArea`.\r\n *\r\n * Only one snapshot can be active _per frame_. If you have already called `snapshotArea`, for example, then\r\n * calling this method will override it.\r\n *\r\n * Unlike the other two snapshot methods, this one will return a `Color` object containing the color data for\r\n * the requested pixel. It doesn't need to create an internal Canvas or Image object, so is a lot faster to execute,\r\n * using less memory.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#snapshotPixel\r\n * @since 3.16.0\r\n *\r\n * @param {number} x - The x coordinate of the pixel to get. This is based on the game viewport, not the world.\r\n * @param {number} y - The y coordinate of the pixel to get. This is based on the game viewport, not the world.\r\n * @param {Phaser.Types.Renderer.Snapshot.SnapshotCallback} callback - The Function to invoke after the snapshot pixel data is extracted.\r\n *\r\n * @return {this} This WebGL Renderer.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 2931, + "lineno": 2934, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -319438,14 +320010,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#snapshotPixel", "scope": "instance", - "___id": "T000002R035934", + "___id": "T000002R035923", "___s": true }, { "comment": "/**\r\n * Takes a snapshot of the given area of the given frame buffer.\r\n *\r\n * Unlike the other snapshot methods, this one is processed immediately and doesn't wait for the next render.\r\n *\r\n * Snapshots work by using the WebGL `readPixels` feature to grab every pixel from the frame buffer into an ArrayBufferView.\r\n * It then parses this, copying the contents to a temporary Canvas and finally creating an Image object from it,\r\n * which is the image returned to the callback provided. All in all, this is a computationally expensive and blocking process,\r\n * which gets more expensive the larger the canvas size gets, so please be careful how you employ this in your game.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#snapshotFramebuffer\r\n * @since 3.19.0\r\n *\r\n * @param {Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper} framebuffer - The framebuffer to grab from.\r\n * @param {number} bufferWidth - The width of the framebuffer.\r\n * @param {number} bufferHeight - The height of the framebuffer.\r\n * @param {Phaser.Types.Renderer.Snapshot.SnapshotCallback} callback - The Function to invoke after the snapshot image is created.\r\n * @param {boolean} [getPixel=false] - Grab a single pixel as a Color object, or an area as an Image object?\r\n * @param {number} [x=0] - The x coordinate to grab from. This is based on the framebuffer, not the world.\r\n * @param {number} [y=0] - The y coordinate to grab from. This is based on the framebuffer, not the world.\r\n * @param {number} [width=bufferWidth] - The width of the area to grab.\r\n * @param {number} [height=bufferHeight] - The height of the area to grab.\r\n * @param {string} [type='image/png'] - The format of the image to create, usually `image/png` or `image/jpeg`.\r\n * @param {number} [encoderOptions=0.92] - The image quality, between 0 and 1. Used for image formats with lossy compression, such as `image/jpeg`.\r\n *\r\n * @return {this} This WebGL Renderer.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 2961, + "lineno": 2964, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -319631,14 +320203,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#snapshotFramebuffer", "scope": "instance", - "___id": "T000002R035937", + "___id": "T000002R035926", "___s": true }, { "comment": "/**\r\n * Creates a new WebGL Texture based on the given Canvas Element.\r\n *\r\n * If the `dstTexture` parameter is given, the WebGL Texture is updated, rather than created fresh.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#canvasToTexture\r\n * @since 3.0.0\r\n *\r\n * @param {HTMLCanvasElement} srcCanvas - The Canvas to create the WebGL Texture from\r\n * @param {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} [dstTexture] - The destination WebGLTextureWrapper to set.\r\n * @param {boolean} [noRepeat=false] - Should this canvas be allowed to set `REPEAT` (such as for Text objects?)\r\n * @param {boolean} [flipY=false] - Should the WebGL Texture set `UNPACK_MULTIPLY_FLIP_Y`?\r\n *\r\n * @return {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} The newly created, or updated, WebGLTextureWrapper.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 3030, + "lineno": 3033, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -319723,14 +320295,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#canvasToTexture", "scope": "instance", - "___id": "T000002R035956", + "___id": "T000002R035945", "___s": true }, { "comment": "/**\r\n * Creates a new WebGL Texture based on the given Canvas Element.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#createCanvasTexture\r\n * @since 3.20.0\r\n *\r\n * @param {HTMLCanvasElement} srcCanvas - The Canvas to create the WebGL Texture from.\r\n * @param {boolean} [noRepeat=false] - Should this canvas be allowed to set `REPEAT` (such as for Text objects?)\r\n * @param {boolean} [flipY=false] - Should the WebGL Texture set `UNPACK_MULTIPLY_FLIP_Y`?\r\n *\r\n * @return {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} The newly created WebGLTextureWrapper.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 3084, + "lineno": 3087, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -319801,14 +320373,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#createCanvasTexture", "scope": "instance", - "___id": "T000002R035970", + "___id": "T000002R035959", "___s": true }, { "comment": "/**\r\n * Updates a WebGL Texture based on the given Canvas Element.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#updateCanvasTexture\r\n * @since 3.20.0\r\n *\r\n * @param {HTMLCanvasElement} srcCanvas - The Canvas to update the WebGL Texture from.\r\n * @param {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} dstTexture - The destination WebGLTextureWrapper to update.\r\n * @param {boolean} [flipY=false] - Should the WebGL Texture set `UNPACK_MULTIPLY_FLIP_Y`?\r\n * @param {boolean} [noRepeat=false] - Should this canvas be allowed to set `REPEAT` (such as for Text objects?)\r\n *\r\n * @return {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} The updated WebGLTextureWrapper. This is the same wrapper object as `dstTexture`.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 3104, + "lineno": 3107, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -319892,14 +320464,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#updateCanvasTexture", "scope": "instance", - "___id": "T000002R035974", + "___id": "T000002R035963", "___s": true }, { "comment": "/**\r\n * Creates or updates a WebGL Texture based on the given HTML Video Element.\r\n *\r\n * If the `dstTexture` parameter is given, the WebGL Texture is updated, rather than created fresh.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#videoToTexture\r\n * @since 3.85.0\r\n *\r\n * @param {HTMLVideoElement} srcVideo - The Video to create the WebGL Texture from\r\n * @param {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} [dstTexture] - The destination WebGLTextureWrapper to set.\r\n * @param {boolean} [noRepeat=false] - Should this canvas be allowed to set `REPEAT`?\r\n * @param {boolean} [flipY=false] - Should the WebGL Texture set `UNPACK_MULTIPLY_FLIP_Y`?\r\n *\r\n * @return {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} The newly created, or updated, WebGLTextureWrapper.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 3125, + "lineno": 3128, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -319984,14 +320556,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#videoToTexture", "scope": "instance", - "___id": "T000002R035978", + "___id": "T000002R035967", "___s": true }, { "comment": "/**\r\n * Creates a new WebGL Texture based on the given HTML Video Element.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#createVideoTexture\r\n * @since 3.20.0\r\n *\r\n * @param {HTMLVideoElement} srcVideo - The Video to create the WebGL Texture from\r\n * @param {boolean} [noRepeat=false] - Should this canvas be allowed to set `REPEAT`?\r\n * @param {boolean} [flipY=false] - Should the WebGL Texture set `UNPACK_MULTIPLY_FLIP_Y`?\r\n *\r\n * @return {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} The newly created WebGLTextureWrapper.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 3179, + "lineno": 3182, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -320062,14 +320634,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#createVideoTexture", "scope": "instance", - "___id": "T000002R035992", + "___id": "T000002R035981", "___s": true }, { "comment": "/**\r\n * Updates a WebGL Texture based on the given HTML Video Element.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#updateVideoTexture\r\n * @since 3.20.0\r\n *\r\n * @param {HTMLVideoElement} srcVideo - The Video to update the WebGL Texture with.\r\n * @param {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} dstTexture - The destination WebGLTextureWrapper to update.\r\n * @param {boolean} [flipY=false] - Should the WebGL Texture set `UNPACK_MULTIPLY_FLIP_Y`?\r\n * @param {boolean} [noRepeat=false] - Should this canvas be allowed to set `REPEAT`?\r\n *\r\n * @return {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} The updated WebGLTextureWrapper. This is the same wrapper object as `dstTexture`.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 3199, + "lineno": 3202, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -320153,14 +320725,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#updateVideoTexture", "scope": "instance", - "___id": "T000002R035996", + "___id": "T000002R035985", "___s": true }, { "comment": "/**\r\n * Create a WebGLTexture from a Uint8Array.\r\n *\r\n * The Uint8Array is assumed to be RGBA values, one byte per color component.\r\n *\r\n * The texture will be filtered with `gl.NEAREST` and will not be mipped.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#createUint8ArrayTexture\r\n * @since 3.80.0\r\n * @param {Uint8Array} data - The Uint8Array to create the texture from.\r\n * @param {number} width - The width of the texture.\r\n * @param {number} height - The height of the texture.\r\n * @return {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} The newly created WebGLTextureWrapper.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 3220, + "lineno": 3223, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -320227,14 +320799,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#createUint8ArrayTexture", "scope": "instance", - "___id": "T000002R036000", + "___id": "T000002R035989", "___s": true }, { "comment": "/**\r\n * Sets the minification and magnification filter for a texture.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#setTextureFilter\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} texture - The texture to set the filter for.\r\n * @param {number} filter - The filter to set. 0 for linear filtering, 1 for nearest neighbor (blocky) filtering.\r\n *\r\n * @return {this} This WebGL Renderer instance.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 3251, + "lineno": 3254, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -320289,14 +320861,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#setTextureFilter", "scope": "instance", - "___id": "T000002R036008", + "___id": "T000002R035997", "___s": true }, { "comment": "/**\r\n * Returns the largest texture size (either width or height) that can be created.\r\n * Note that VRAM may not allow a texture of any given size, it just expresses\r\n * hardware / driver support for a given size.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#getMaxTextureSize\r\n * @since 3.8.0\r\n *\r\n * @return {number} The maximum supported texture size.\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 3289, + "lineno": 3292, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -320322,14 +320894,14 @@ "memberof": "Phaser.Renderer.WebGL.WebGLRenderer", "longname": "Phaser.Renderer.WebGL.WebGLRenderer#getMaxTextureSize", "scope": "instance", - "___id": "T000002R036015", + "___id": "T000002R036004", "___s": true }, { "comment": "/**\r\n * Destroy this WebGLRenderer, cleaning up all related resources such as pipelines, native textures, etc.\r\n *\r\n * @method Phaser.Renderer.WebGL.WebGLRenderer#destroy\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebGLRenderer.js", - "lineno": 3304, + "lineno": 3307, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\renderer\\webgl", "code": {} @@ -320342,7 +320914,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLRenderer#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R036017", + "___id": "T000002R036006", "___s": true }, { @@ -320437,7 +321009,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.WebGLShader", - "___id": "T000002R036036", + "___id": "T000002R036025", "___s": true }, { @@ -320465,7 +321037,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLShader#pipeline", "scope": "instance", "kind": "member", - "___id": "T000002R036039", + "___id": "T000002R036028", "___s": true }, { @@ -320493,7 +321065,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLShader#name", "scope": "instance", "kind": "member", - "___id": "T000002R036041", + "___id": "T000002R036030", "___s": true }, { @@ -320521,7 +321093,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLShader#renderer", "scope": "instance", "kind": "member", - "___id": "T000002R036043", + "___id": "T000002R036032", "___s": true }, { @@ -320549,7 +321121,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLShader#gl", "scope": "instance", "kind": "member", - "___id": "T000002R036045", + "___id": "T000002R036034", "___s": true }, { @@ -320577,7 +321149,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLShader#fragSrc", "scope": "instance", "kind": "member", - "___id": "T000002R036047", + "___id": "T000002R036036", "___s": true }, { @@ -320605,7 +321177,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLShader#vertSrc", "scope": "instance", "kind": "member", - "___id": "T000002R036049", + "___id": "T000002R036038", "___s": true }, { @@ -320633,7 +321205,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLShader#program", "scope": "instance", "kind": "member", - "___id": "T000002R036051", + "___id": "T000002R036040", "___s": true }, { @@ -320670,7 +321242,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLShader#attributes", "scope": "instance", "kind": "member", - "___id": "T000002R036053", + "___id": "T000002R036042", "___s": true }, { @@ -320698,7 +321270,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLShader#vertexComponentCount", "scope": "instance", "kind": "member", - "___id": "T000002R036055", + "___id": "T000002R036044", "___s": true }, { @@ -320727,7 +321299,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLShader#vertexSize", "scope": "instance", "kind": "member", - "___id": "T000002R036057", + "___id": "T000002R036046", "___s": true }, { @@ -320755,7 +321327,7 @@ "longname": "Phaser.Renderer.WebGL.WebGLShader#uniforms", "scope": "instance", "kind": "member", - "___id": "T000002R036059", + "___id": "T000002R036048", "___s": true }, { @@ -320798,7 +321370,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#createAttributes", "scope": "instance", - "___id": "T000002R036061", + "___id": "T000002R036050", "___s": true }, { @@ -320864,7 +321436,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#bind", "scope": "instance", - "___id": "T000002R036087", + "___id": "T000002R036076", "___s": true }, { @@ -320898,7 +321470,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#rebind", "scope": "instance", - "___id": "T000002R036091", + "___id": "T000002R036080", "___s": true }, { @@ -320949,7 +321521,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#setAttribPointers", "scope": "instance", - "___id": "T000002R036093", + "___id": "T000002R036082", "___s": true }, { @@ -320983,7 +321555,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#createUniforms", "scope": "instance", - "___id": "T000002R036113", + "___id": "T000002R036102", "___s": true }, { @@ -321002,7 +321574,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#syncUniforms", "scope": "instance", - "___id": "T000002R036145", + "___id": "T000002R036134", "___s": true }, { @@ -321050,7 +321622,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#hasUniform", "scope": "instance", - "___id": "T000002R036150", + "___id": "T000002R036139", "___s": true }, { @@ -321099,7 +321671,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#resetUniform", "scope": "instance", - "___id": "T000002R036152", + "___id": "T000002R036141", "___s": true }, { @@ -321218,7 +321790,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#setUniform1", "scope": "instance", - "___id": "T000002R036159", + "___id": "T000002R036148", "___s": true }, { @@ -321379,7 +321951,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#setUniform2", "scope": "instance", - "___id": "T000002R036165", + "___id": "T000002R036154", "___s": true }, { @@ -321582,7 +322154,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#setUniform3", "scope": "instance", - "___id": "T000002R036172", + "___id": "T000002R036161", "___s": true }, { @@ -321827,7 +322399,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#setUniform4", "scope": "instance", - "___id": "T000002R036180", + "___id": "T000002R036169", "___s": true }, { @@ -321889,7 +322461,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#setBoolean", "scope": "instance", - "___id": "T000002R036189", + "___id": "T000002R036178", "___s": true }, { @@ -321951,7 +322523,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set1f", "scope": "instance", - "___id": "T000002R036191", + "___id": "T000002R036180", "___s": true }, { @@ -322026,7 +322598,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set2f", "scope": "instance", - "___id": "T000002R036193", + "___id": "T000002R036182", "___s": true }, { @@ -322114,7 +322686,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set3f", "scope": "instance", - "___id": "T000002R036195", + "___id": "T000002R036184", "___s": true }, { @@ -322215,7 +322787,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set4f", "scope": "instance", - "___id": "T000002R036197", + "___id": "T000002R036186", "___s": true }, { @@ -322296,7 +322868,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set1fv", "scope": "instance", - "___id": "T000002R036199", + "___id": "T000002R036188", "___s": true }, { @@ -322377,7 +322949,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set2fv", "scope": "instance", - "___id": "T000002R036201", + "___id": "T000002R036190", "___s": true }, { @@ -322458,7 +323030,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set3fv", "scope": "instance", - "___id": "T000002R036203", + "___id": "T000002R036192", "___s": true }, { @@ -322539,7 +323111,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set4fv", "scope": "instance", - "___id": "T000002R036205", + "___id": "T000002R036194", "___s": true }, { @@ -322620,7 +323192,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set1iv", "scope": "instance", - "___id": "T000002R036207", + "___id": "T000002R036196", "___s": true }, { @@ -322701,7 +323273,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set2iv", "scope": "instance", - "___id": "T000002R036209", + "___id": "T000002R036198", "___s": true }, { @@ -322782,7 +323354,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set3iv", "scope": "instance", - "___id": "T000002R036211", + "___id": "T000002R036200", "___s": true }, { @@ -322863,7 +323435,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set4iv", "scope": "instance", - "___id": "T000002R036213", + "___id": "T000002R036202", "___s": true }, { @@ -322925,7 +323497,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set1i", "scope": "instance", - "___id": "T000002R036215", + "___id": "T000002R036204", "___s": true }, { @@ -323000,7 +323572,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set2i", "scope": "instance", - "___id": "T000002R036217", + "___id": "T000002R036206", "___s": true }, { @@ -323088,7 +323660,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set3i", "scope": "instance", - "___id": "T000002R036219", + "___id": "T000002R036208", "___s": true }, { @@ -323189,7 +323761,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#set4i", "scope": "instance", - "___id": "T000002R036221", + "___id": "T000002R036210", "___s": true }, { @@ -323283,7 +323855,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#setMatrix2fv", "scope": "instance", - "___id": "T000002R036223", + "___id": "T000002R036212", "___s": true }, { @@ -323358,7 +323930,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#setMatrix3fv", "scope": "instance", - "___id": "T000002R036225", + "___id": "T000002R036214", "___s": true }, { @@ -323433,7 +324005,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#setMatrix4fv", "scope": "instance", - "___id": "T000002R036227", + "___id": "T000002R036216", "___s": true }, { @@ -323497,7 +324069,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#createProgram", "scope": "instance", - "___id": "T000002R036229", + "___id": "T000002R036218", "___s": true }, { @@ -323516,7 +324088,7 @@ "memberof": "Phaser.Renderer.WebGL.WebGLShader", "longname": "Phaser.Renderer.WebGL.WebGLShader#destroy", "scope": "instance", - "___id": "T000002R036236", + "___id": "T000002R036225", "___s": true }, { @@ -323533,7 +324105,7 @@ "memberof": "Phaser.Renderer.WebGL", "longname": "Phaser.Renderer.WebGL.Wrappers", "scope": "static", - "___id": "T000002R036246", + "___id": "T000002R036235", "___s": true }, { @@ -323593,7 +324165,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLAttribLocationWrapper", - "___id": "T000002R036256", + "___id": "T000002R036245", "___s": true }, { @@ -323622,7 +324194,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLAttribLocationWrapper#webGLAttribLocation", "scope": "instance", "kind": "member", - "___id": "T000002R036259", + "___id": "T000002R036248", "___s": true }, { @@ -323650,7 +324222,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLAttribLocationWrapper#gl", "scope": "instance", "kind": "member", - "___id": "T000002R036261", + "___id": "T000002R036250", "___s": true }, { @@ -323678,7 +324250,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLAttribLocationWrapper#program", "scope": "instance", "kind": "member", - "___id": "T000002R036263", + "___id": "T000002R036252", "___s": true }, { @@ -323706,7 +324278,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLAttribLocationWrapper#name", "scope": "instance", "kind": "member", - "___id": "T000002R036265", + "___id": "T000002R036254", "___s": true }, { @@ -323725,7 +324297,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLAttribLocationWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLAttribLocationWrapper#createResource", "scope": "instance", - "___id": "T000002R036267", + "___id": "T000002R036256", "___s": true }, { @@ -323744,7 +324316,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLAttribLocationWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLAttribLocationWrapper#destroy", "scope": "instance", - "___id": "T000002R036272", + "___id": "T000002R036261", "___s": true }, { @@ -323827,7 +324399,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLBufferWrapper", - "___id": "T000002R036280", + "___id": "T000002R036269", "___s": true }, { @@ -323858,7 +324430,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLBufferWrapper#webGLBuffer", "scope": "instance", "kind": "member", - "___id": "T000002R036283", + "___id": "T000002R036272", "___s": true }, { @@ -323886,7 +324458,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLBufferWrapper#gl", "scope": "instance", "kind": "member", - "___id": "T000002R036285", + "___id": "T000002R036274", "___s": true }, { @@ -323924,7 +324496,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLBufferWrapper#initialDataOrSize", "scope": "instance", "kind": "member", - "___id": "T000002R036287", + "___id": "T000002R036276", "___s": true }, { @@ -323952,7 +324524,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLBufferWrapper#bufferType", "scope": "instance", "kind": "member", - "___id": "T000002R036289", + "___id": "T000002R036278", "___s": true }, { @@ -323980,7 +324552,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLBufferWrapper#bufferUsage", "scope": "instance", "kind": "member", - "___id": "T000002R036291", + "___id": "T000002R036280", "___s": true }, { @@ -323999,7 +324571,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLBufferWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLBufferWrapper#createResource", "scope": "instance", - "___id": "T000002R036293", + "___id": "T000002R036282", "___s": true }, { @@ -324018,7 +324590,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLBufferWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLBufferWrapper#destroy", "scope": "instance", - "___id": "T000002R036299", + "___id": "T000002R036288", "___s": true }, { @@ -324106,7 +324678,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper", - "___id": "T000002R036312", + "___id": "T000002R036301", "___s": true }, { @@ -324137,7 +324709,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper#webGLFramebuffer", "scope": "instance", "kind": "member", - "___id": "T000002R036315", + "___id": "T000002R036304", "___s": true }, { @@ -324165,7 +324737,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper#gl", "scope": "instance", "kind": "member", - "___id": "T000002R036317", + "___id": "T000002R036306", "___s": true }, { @@ -324193,7 +324765,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper#width", "scope": "instance", "kind": "member", - "___id": "T000002R036319", + "___id": "T000002R036308", "___s": true }, { @@ -324221,7 +324793,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper#height", "scope": "instance", "kind": "member", - "___id": "T000002R036321", + "___id": "T000002R036310", "___s": true }, { @@ -324249,7 +324821,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper#renderTexture", "scope": "instance", "kind": "member", - "___id": "T000002R036323", + "___id": "T000002R036312", "___s": true }, { @@ -324278,7 +324850,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper#addDepthStencilBuffer", "scope": "instance", "kind": "member", - "___id": "T000002R036325", + "___id": "T000002R036314", "___s": true }, { @@ -324297,7 +324869,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper#createResource", "scope": "instance", - "___id": "T000002R036327", + "___id": "T000002R036316", "___s": true }, { @@ -324316,7 +324888,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLFramebufferWrapper#destroy", "scope": "instance", - "___id": "T000002R036338", + "___id": "T000002R036327", "___s": true }, { @@ -324376,7 +324948,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLProgramWrapper", - "___id": "T000002R036348", + "___id": "T000002R036337", "___s": true }, { @@ -324407,7 +324979,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLProgramWrapper#webGLProgram", "scope": "instance", "kind": "member", - "___id": "T000002R036351", + "___id": "T000002R036340", "___s": true }, { @@ -324435,7 +325007,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLProgramWrapper#gl", "scope": "instance", "kind": "member", - "___id": "T000002R036353", + "___id": "T000002R036342", "___s": true }, { @@ -324463,7 +325035,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLProgramWrapper#vertexSource", "scope": "instance", "kind": "member", - "___id": "T000002R036355", + "___id": "T000002R036344", "___s": true }, { @@ -324491,7 +325063,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLProgramWrapper#fragmentSource", "scope": "instance", "kind": "member", - "___id": "T000002R036357", + "___id": "T000002R036346", "___s": true }, { @@ -324524,7 +325096,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLProgramWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLProgramWrapper#createResource", "scope": "instance", - "___id": "T000002R036359", + "___id": "T000002R036348", "___s": true }, { @@ -324543,7 +325115,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLProgramWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLProgramWrapper#destroy", "scope": "instance", - "___id": "T000002R036367", + "___id": "T000002R036356", "___s": true }, { @@ -324741,7 +325313,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper", - "___id": "T000002R036374", + "___id": "T000002R036363", "___s": true }, { @@ -324772,7 +325344,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#webGLTexture", "scope": "instance", "kind": "member", - "___id": "T000002R036377", + "___id": "T000002R036366", "___s": true }, { @@ -324801,7 +325373,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#isRenderTexture", "scope": "instance", "kind": "member", - "___id": "T000002R036379", + "___id": "T000002R036368", "___s": true }, { @@ -324829,7 +325401,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#gl", "scope": "instance", "kind": "member", - "___id": "T000002R036381", + "___id": "T000002R036370", "___s": true }, { @@ -324857,7 +325429,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#mipLevel", "scope": "instance", "kind": "member", - "___id": "T000002R036383", + "___id": "T000002R036372", "___s": true }, { @@ -324885,7 +325457,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#minFilter", "scope": "instance", "kind": "member", - "___id": "T000002R036385", + "___id": "T000002R036374", "___s": true }, { @@ -324913,7 +325485,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#magFilter", "scope": "instance", "kind": "member", - "___id": "T000002R036387", + "___id": "T000002R036376", "___s": true }, { @@ -324941,7 +325513,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#wrapT", "scope": "instance", "kind": "member", - "___id": "T000002R036389", + "___id": "T000002R036378", "___s": true }, { @@ -324969,7 +325541,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#wrapS", "scope": "instance", "kind": "member", - "___id": "T000002R036391", + "___id": "T000002R036380", "___s": true }, { @@ -324997,7 +325569,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#format", "scope": "instance", "kind": "member", - "___id": "T000002R036393", + "___id": "T000002R036382", "___s": true }, { @@ -325027,7 +325599,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#pixels", "scope": "instance", "kind": "member", - "___id": "T000002R036395", + "___id": "T000002R036384", "___s": true }, { @@ -325055,7 +325627,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#width", "scope": "instance", "kind": "member", - "___id": "T000002R036397", + "___id": "T000002R036386", "___s": true }, { @@ -325083,7 +325655,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#height", "scope": "instance", "kind": "member", - "___id": "T000002R036399", + "___id": "T000002R036388", "___s": true }, { @@ -325111,7 +325683,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#pma", "scope": "instance", "kind": "member", - "___id": "T000002R036401", + "___id": "T000002R036390", "___s": true }, { @@ -325139,7 +325711,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#forceSize", "scope": "instance", "kind": "member", - "___id": "T000002R036403", + "___id": "T000002R036392", "___s": true }, { @@ -325167,7 +325739,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#flipY", "scope": "instance", "kind": "member", - "___id": "T000002R036405", + "___id": "T000002R036394", "___s": true }, { @@ -325186,7 +325758,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#createResource", "scope": "instance", - "___id": "T000002R036409", + "___id": "T000002R036398", "___s": true }, { @@ -325326,7 +325898,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#update", "scope": "instance", - "___id": "T000002R036416", + "___id": "T000002R036405", "___s": true }, { @@ -325354,7 +325926,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#spectorMetadata", "scope": "instance", "kind": "member", - "___id": "T000002R036447", + "___id": "T000002R036436", "___s": true }, { @@ -325373,7 +325945,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#destroy", "scope": "instance", - "___id": "T000002R036453", + "___id": "T000002R036442", "___s": true }, { @@ -325433,7 +326005,7 @@ ], "scope": "static", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLUniformLocationWrapper", - "___id": "T000002R036460", + "___id": "T000002R036449", "___s": true }, { @@ -325464,7 +326036,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLUniformLocationWrapper#webGLUniformLocation", "scope": "instance", "kind": "member", - "___id": "T000002R036463", + "___id": "T000002R036452", "___s": true }, { @@ -325492,7 +326064,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLUniformLocationWrapper#gl", "scope": "instance", "kind": "member", - "___id": "T000002R036465", + "___id": "T000002R036454", "___s": true }, { @@ -325520,7 +326092,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLUniformLocationWrapper#program", "scope": "instance", "kind": "member", - "___id": "T000002R036467", + "___id": "T000002R036456", "___s": true }, { @@ -325548,7 +326120,7 @@ "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLUniformLocationWrapper#name", "scope": "instance", "kind": "member", - "___id": "T000002R036469", + "___id": "T000002R036458", "___s": true }, { @@ -325567,7 +326139,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLUniformLocationWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLUniformLocationWrapper#createResource", "scope": "instance", - "___id": "T000002R036471", + "___id": "T000002R036460", "___s": true }, { @@ -325586,7 +326158,7 @@ "memberof": "Phaser.Renderer.WebGL.Wrappers.WebGLUniformLocationWrapper", "longname": "Phaser.Renderer.WebGL.Wrappers.WebGLUniformLocationWrapper#destroy", "scope": "instance", - "___id": "T000002R036476", + "___id": "T000002R036465", "___s": true }, { @@ -325605,7 +326177,7 @@ "since": "3.16.0", "longname": "Phaser.Scale.Center", "scope": "static", - "___id": "T000002R036483", + "___id": "T000002R036472", "___s": true }, { @@ -325633,7 +326205,7 @@ "since": "3.16.0", "longname": "Phaser.Scale.CenterType", "scope": "static", - "___id": "T000002R036484", + "___id": "T000002R036473", "___s": true }, { @@ -325661,7 +326233,7 @@ "memberof": "Phaser.Scale.Center", "longname": "Phaser.Scale.Center.NO_CENTER", "scope": "static", - "___id": "T000002R036486", + "___id": "T000002R036475", "___s": true }, { @@ -325689,7 +326261,7 @@ "memberof": "Phaser.Scale.Center", "longname": "Phaser.Scale.Center.CENTER_BOTH", "scope": "static", - "___id": "T000002R036488", + "___id": "T000002R036477", "___s": true }, { @@ -325717,7 +326289,7 @@ "memberof": "Phaser.Scale.Center", "longname": "Phaser.Scale.Center.CENTER_HORIZONTALLY", "scope": "static", - "___id": "T000002R036490", + "___id": "T000002R036479", "___s": true }, { @@ -325745,7 +326317,7 @@ "memberof": "Phaser.Scale.Center", "longname": "Phaser.Scale.Center.CENTER_VERTICALLY", "scope": "static", - "___id": "T000002R036492", + "___id": "T000002R036481", "___s": true }, { @@ -325764,7 +326336,7 @@ "since": "3.16.0", "longname": "Phaser.Scale.Orientation", "scope": "static", - "___id": "T000002R036500", + "___id": "T000002R036489", "___s": true }, { @@ -325792,7 +326364,7 @@ "since": "3.16.0", "longname": "Phaser.Scale.OrientationType", "scope": "static", - "___id": "T000002R036501", + "___id": "T000002R036490", "___s": true }, { @@ -325820,7 +326392,7 @@ "memberof": "Phaser.Scale.Orientation", "longname": "Phaser.Scale.Orientation.LANDSCAPE", "scope": "static", - "___id": "T000002R036503", + "___id": "T000002R036492", "___s": true }, { @@ -325848,7 +326420,7 @@ "memberof": "Phaser.Scale.Orientation", "longname": "Phaser.Scale.Orientation.LANDSCAPE_SECONDARY", "scope": "static", - "___id": "T000002R036505", + "___id": "T000002R036494", "___s": true }, { @@ -325876,7 +326448,7 @@ "memberof": "Phaser.Scale.Orientation", "longname": "Phaser.Scale.Orientation.PORTRAIT", "scope": "static", - "___id": "T000002R036507", + "___id": "T000002R036496", "___s": true }, { @@ -325904,7 +326476,7 @@ "memberof": "Phaser.Scale.Orientation", "longname": "Phaser.Scale.Orientation.PORTRAIT_SECONDARY", "scope": "static", - "___id": "T000002R036509", + "___id": "T000002R036498", "___s": true }, { @@ -325923,7 +326495,7 @@ "since": "3.16.0", "longname": "Phaser.Scale.ScaleModes", "scope": "static", - "___id": "T000002R036511", + "___id": "T000002R036500", "___s": true }, { @@ -325951,7 +326523,7 @@ "since": "3.16.0", "longname": "Phaser.Scale.ScaleModeType", "scope": "static", - "___id": "T000002R036512", + "___id": "T000002R036501", "___s": true }, { @@ -325979,7 +326551,7 @@ "memberof": "Phaser.Scale.ScaleModes", "longname": "Phaser.Scale.ScaleModes.NONE", "scope": "static", - "___id": "T000002R036514", + "___id": "T000002R036503", "___s": true }, { @@ -326007,7 +326579,7 @@ "memberof": "Phaser.Scale.ScaleModes", "longname": "Phaser.Scale.ScaleModes.WIDTH_CONTROLS_HEIGHT", "scope": "static", - "___id": "T000002R036516", + "___id": "T000002R036505", "___s": true }, { @@ -326035,7 +326607,7 @@ "memberof": "Phaser.Scale.ScaleModes", "longname": "Phaser.Scale.ScaleModes.HEIGHT_CONTROLS_WIDTH", "scope": "static", - "___id": "T000002R036518", + "___id": "T000002R036507", "___s": true }, { @@ -326063,7 +326635,7 @@ "memberof": "Phaser.Scale.ScaleModes", "longname": "Phaser.Scale.ScaleModes.FIT", "scope": "static", - "___id": "T000002R036520", + "___id": "T000002R036509", "___s": true }, { @@ -326091,7 +326663,7 @@ "memberof": "Phaser.Scale.ScaleModes", "longname": "Phaser.Scale.ScaleModes.ENVELOP", "scope": "static", - "___id": "T000002R036522", + "___id": "T000002R036511", "___s": true }, { @@ -326119,7 +326691,7 @@ "memberof": "Phaser.Scale.ScaleModes", "longname": "Phaser.Scale.ScaleModes.RESIZE", "scope": "static", - "___id": "T000002R036524", + "___id": "T000002R036513", "___s": true }, { @@ -326147,7 +326719,7 @@ "memberof": "Phaser.Scale.ScaleModes", "longname": "Phaser.Scale.ScaleModes.EXPAND", "scope": "static", - "___id": "T000002R036526", + "___id": "T000002R036515", "___s": true }, { @@ -326166,7 +326738,7 @@ "since": "3.16.0", "longname": "Phaser.Scale.Zoom", "scope": "static", - "___id": "T000002R036528", + "___id": "T000002R036517", "___s": true }, { @@ -326194,7 +326766,7 @@ "since": "3.16.0", "longname": "Phaser.Scale.ZoomType", "scope": "static", - "___id": "T000002R036529", + "___id": "T000002R036518", "___s": true }, { @@ -326222,7 +326794,7 @@ "memberof": "Phaser.Scale.Zoom", "longname": "Phaser.Scale.Zoom.NO_ZOOM", "scope": "static", - "___id": "T000002R036531", + "___id": "T000002R036520", "___s": true }, { @@ -326250,7 +326822,7 @@ "memberof": "Phaser.Scale.Zoom", "longname": "Phaser.Scale.Zoom.ZOOM_2X", "scope": "static", - "___id": "T000002R036533", + "___id": "T000002R036522", "___s": true }, { @@ -326278,7 +326850,7 @@ "memberof": "Phaser.Scale.Zoom", "longname": "Phaser.Scale.Zoom.ZOOM_4X", "scope": "static", - "___id": "T000002R036535", + "___id": "T000002R036524", "___s": true }, { @@ -326306,7 +326878,7 @@ "memberof": "Phaser.Scale.Zoom", "longname": "Phaser.Scale.Zoom.MAX_ZOOM", "scope": "static", - "___id": "T000002R036537", + "___id": "T000002R036526", "___s": true }, { @@ -326334,7 +326906,7 @@ "memberof": "Phaser.Scale.Events", "longname": "Phaser.Scale.Events#event:ENTER_FULLSCREEN", "scope": "instance", - "___id": "T000002R036539", + "___id": "T000002R036528", "___s": true }, { @@ -326362,7 +326934,7 @@ "memberof": "Phaser.Scale.Events", "longname": "Phaser.Scale.Events#event:FULLSCREEN_FAILED", "scope": "instance", - "___id": "T000002R036541", + "___id": "T000002R036530", "___s": true }, { @@ -326390,7 +326962,7 @@ "memberof": "Phaser.Scale.Events", "longname": "Phaser.Scale.Events#event:FULLSCREEN_UNSUPPORTED", "scope": "instance", - "___id": "T000002R036543", + "___id": "T000002R036532", "___s": true }, { @@ -326407,7 +326979,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.Events", "scope": "static", - "___id": "T000002R036545", + "___id": "T000002R036534", "___s": true }, { @@ -326435,7 +327007,7 @@ "memberof": "Phaser.Scale.Events", "longname": "Phaser.Scale.Events#event:LEAVE_FULLSCREEN", "scope": "instance", - "___id": "T000002R036553", + "___id": "T000002R036542", "___s": true }, { @@ -326478,7 +327050,7 @@ "memberof": "Phaser.Scale.Events", "longname": "Phaser.Scale.Events#event:ORIENTATION_CHANGE", "scope": "instance", - "___id": "T000002R036555", + "___id": "T000002R036544", "___s": true }, { @@ -326573,7 +327145,7 @@ "memberof": "Phaser.Scale.Events", "longname": "Phaser.Scale.Events#event:RESIZE", "scope": "instance", - "___id": "T000002R036557", + "___id": "T000002R036546", "___s": true }, { @@ -326590,7 +327162,7 @@ "memberof": "Phaser", "longname": "Phaser.Scale", "scope": "static", - "___id": "T000002R036561", + "___id": "T000002R036550", "___s": true }, { @@ -326627,7 +327199,7 @@ ], "scope": "static", "longname": "Phaser.Scale.ScaleManager", - "___id": "T000002R036588", + "___id": "T000002R036577", "___s": true }, { @@ -326656,7 +327228,7 @@ "longname": "Phaser.Scale.ScaleManager#game", "scope": "instance", "kind": "member", - "___id": "T000002R036592", + "___id": "T000002R036581", "___s": true }, { @@ -326684,7 +327256,7 @@ "longname": "Phaser.Scale.ScaleManager#canvas", "scope": "instance", "kind": "member", - "___id": "T000002R036594", + "___id": "T000002R036583", "___s": true }, { @@ -326712,7 +327284,7 @@ "longname": "Phaser.Scale.ScaleManager#canvasBounds", "scope": "instance", "kind": "member", - "___id": "T000002R036596", + "___id": "T000002R036585", "___s": true }, { @@ -326742,7 +327314,7 @@ "longname": "Phaser.Scale.ScaleManager#parent", "scope": "instance", "kind": "member", - "___id": "T000002R036598", + "___id": "T000002R036587", "___s": true }, { @@ -326770,7 +327342,7 @@ "longname": "Phaser.Scale.ScaleManager#parentIsWindow", "scope": "instance", "kind": "member", - "___id": "T000002R036600", + "___id": "T000002R036589", "___s": true }, { @@ -326798,7 +327370,7 @@ "longname": "Phaser.Scale.ScaleManager#parentSize", "scope": "instance", "kind": "member", - "___id": "T000002R036602", + "___id": "T000002R036591", "___s": true }, { @@ -326826,7 +327398,7 @@ "longname": "Phaser.Scale.ScaleManager#gameSize", "scope": "instance", "kind": "member", - "___id": "T000002R036604", + "___id": "T000002R036593", "___s": true }, { @@ -326854,7 +327426,7 @@ "longname": "Phaser.Scale.ScaleManager#baseSize", "scope": "instance", "kind": "member", - "___id": "T000002R036606", + "___id": "T000002R036595", "___s": true }, { @@ -326882,7 +327454,7 @@ "longname": "Phaser.Scale.ScaleManager#displaySize", "scope": "instance", "kind": "member", - "___id": "T000002R036608", + "___id": "T000002R036597", "___s": true }, { @@ -326910,7 +327482,7 @@ "longname": "Phaser.Scale.ScaleManager#scaleMode", "scope": "instance", "kind": "member", - "___id": "T000002R036610", + "___id": "T000002R036599", "___s": true }, { @@ -326938,7 +327510,7 @@ "longname": "Phaser.Scale.ScaleManager#zoom", "scope": "instance", "kind": "member", - "___id": "T000002R036612", + "___id": "T000002R036601", "___s": true }, { @@ -326967,7 +327539,7 @@ "longname": "Phaser.Scale.ScaleManager#_resetZoom", "scope": "instance", "kind": "member", - "___id": "T000002R036614", + "___id": "T000002R036603", "___s": true }, { @@ -326995,7 +327567,7 @@ "longname": "Phaser.Scale.ScaleManager#displayScale", "scope": "instance", "kind": "member", - "___id": "T000002R036616", + "___id": "T000002R036605", "___s": true }, { @@ -327023,7 +327595,7 @@ "longname": "Phaser.Scale.ScaleManager#autoRound", "scope": "instance", "kind": "member", - "___id": "T000002R036618", + "___id": "T000002R036607", "___s": true }, { @@ -327051,7 +327623,7 @@ "longname": "Phaser.Scale.ScaleManager#autoCenter", "scope": "instance", "kind": "member", - "___id": "T000002R036620", + "___id": "T000002R036609", "___s": true }, { @@ -327079,7 +327651,7 @@ "longname": "Phaser.Scale.ScaleManager#orientation", "scope": "instance", "kind": "member", - "___id": "T000002R036622", + "___id": "T000002R036611", "___s": true }, { @@ -327107,7 +327679,7 @@ "longname": "Phaser.Scale.ScaleManager#fullscreen", "scope": "instance", "kind": "member", - "___id": "T000002R036624", + "___id": "T000002R036613", "___s": true }, { @@ -327137,7 +327709,7 @@ "longname": "Phaser.Scale.ScaleManager#fullscreenTarget", "scope": "instance", "kind": "member", - "___id": "T000002R036626", + "___id": "T000002R036615", "___s": true }, { @@ -327165,7 +327737,7 @@ "longname": "Phaser.Scale.ScaleManager#dirty", "scope": "instance", "kind": "member", - "___id": "T000002R036630", + "___id": "T000002R036619", "___s": true }, { @@ -327193,7 +327765,7 @@ "longname": "Phaser.Scale.ScaleManager#resizeInterval", "scope": "instance", "kind": "member", - "___id": "T000002R036632", + "___id": "T000002R036621", "___s": true }, { @@ -327216,7 +327788,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#preBoot", "scope": "instance", - "___id": "T000002R036644", + "___id": "T000002R036633", "___s": true }, { @@ -327239,7 +327811,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#boot", "scope": "instance", - "___id": "T000002R036646", + "___id": "T000002R036635", "___s": true }, { @@ -327274,7 +327846,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#parseConfig", "scope": "instance", - "___id": "T000002R036651", + "___id": "T000002R036640", "___s": true }, { @@ -327308,7 +327880,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#getParent", "scope": "instance", - "___id": "T000002R036680", + "___id": "T000002R036669", "___s": true }, { @@ -327341,7 +327913,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#getParentBounds", "scope": "instance", - "___id": "T000002R036693", + "___id": "T000002R036682", "___s": true }, { @@ -327389,7 +327961,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#lockOrientation", "scope": "instance", - "___id": "T000002R036702", + "___id": "T000002R036691", "___s": true }, { @@ -327454,7 +328026,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#setParentSize", "scope": "instance", - "___id": "T000002R036705", + "___id": "T000002R036694", "___s": true }, { @@ -327519,7 +328091,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#setGameSize", "scope": "instance", - "___id": "T000002R036707", + "___id": "T000002R036696", "___s": true }, { @@ -327584,7 +328156,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#resize", "scope": "instance", - "___id": "T000002R036718", + "___id": "T000002R036707", "___s": true }, { @@ -327636,7 +328208,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#setZoom", "scope": "instance", - "___id": "T000002R036737", + "___id": "T000002R036726", "___s": true }, { @@ -327673,7 +328245,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#setMaxZoom", "scope": "instance", - "___id": "T000002R036741", + "___id": "T000002R036730", "___s": true }, { @@ -327742,7 +328314,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#setSnap", "scope": "instance", - "___id": "T000002R036745", + "___id": "T000002R036734", "___s": true }, { @@ -327809,7 +328381,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#refresh", "scope": "instance", - "___id": "T000002R036749", + "___id": "T000002R036738", "___s": true }, { @@ -327831,7 +328403,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#updateOrientation", "scope": "instance", - "___id": "T000002R036759", + "___id": "T000002R036748", "___s": true }, { @@ -327850,7 +328422,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#updateScale", "scope": "instance", - "___id": "T000002R036764", + "___id": "T000002R036753", "___s": true }, { @@ -327883,7 +328455,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#getMaxZoom", "scope": "instance", - "___id": "T000002R036808", + "___id": "T000002R036797", "___s": true }, { @@ -327902,7 +328474,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#updateCenter", "scope": "instance", - "___id": "T000002R036812", + "___id": "T000002R036801", "___s": true }, { @@ -327921,7 +328493,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#updateBounds", "scope": "instance", - "___id": "T000002R036826", + "___id": "T000002R036815", "___s": true }, { @@ -327969,7 +328541,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#transformX", "scope": "instance", - "___id": "T000002R036834", + "___id": "T000002R036823", "___s": true }, { @@ -328017,7 +328589,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#transformY", "scope": "instance", - "___id": "T000002R036836", + "___id": "T000002R036825", "___s": true }, { @@ -328058,7 +328630,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#startFullscreen", "scope": "instance", - "___id": "T000002R036838", + "___id": "T000002R036827", "___s": true }, { @@ -328091,7 +328663,7 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#getFullscreenTarget", "scope": "instance", - "___id": "T000002R036848", + "___id": "T000002R036837", "___s": true }, { @@ -328110,11 +328682,11 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#removeFullscreenTarget", "scope": "instance", - "___id": "T000002R036858", + "___id": "T000002R036847", "___s": true }, { - "comment": "/**\r\n * Calling this method will cancel fullscreen mode, if the browser has entered it.\r\n *\r\n * @method Phaser.Scale.ScaleManager#stopFullscreen\r\n * @fires Phaser.Scale.Events#LEAVE_FULLSCREEN\r\n * @fires Phaser.Scale.Events#FULLSCREEN_UNSUPPORTED\r\n * @since 3.16.0\r\n */", + "comment": "/**\r\n * Calling this method will cancel fullscreen mode, if the browser has entered it.\r\n *\r\n * @method Phaser.Scale.ScaleManager#stopFullscreen\r\n * @fires Phaser.Scale.Events#FULLSCREEN_UNSUPPORTED\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", "lineno": 1437, @@ -328126,21 +328698,42 @@ "kind": "function", "name": "stopFullscreen", "fires": [ - "Phaser.Scale.Events#event:LEAVE_FULLSCREEN", "Phaser.Scale.Events#event:FULLSCREEN_UNSUPPORTED" ], "since": "3.16.0", "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#stopFullscreen", "scope": "instance", - "___id": "T000002R036862", + "___id": "T000002R036851", + "___s": true + }, + { + "comment": "/**\r\n * The browser has successfully left fullscreen mode.\r\n *\r\n * @method Phaser.Scale.ScaleManager#leaveFullScreenSuccessHandler\r\n * @fires Phaser.Scale.Events#LEAVE_FULLSCREEN\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "ScaleManager.js", + "lineno": 1463, + "columnno": 4, + "path": "D:\\wamp\\www\\phaser\\src\\scale", + "code": {} + }, + "description": "The browser has successfully left fullscreen mode.", + "kind": "function", + "name": "leaveFullScreenSuccessHandler", + "fires": [ + "Phaser.Scale.Events#event:LEAVE_FULLSCREEN" + ], + "since": "3.85.0", + "memberof": "Phaser.Scale.ScaleManager", + "longname": "Phaser.Scale.ScaleManager#leaveFullScreenSuccessHandler", + "scope": "instance", + "___id": "T000002R036854", "___s": true }, { "comment": "/**\r\n * Toggles the fullscreen mode. If already in fullscreen, calling this will cancel it.\r\n * If not in fullscreen, this will request the browser to enter fullscreen mode.\r\n *\r\n * If the browser does not support this, a `FULLSCREEN_UNSUPPORTED` event will be emitted.\r\n *\r\n * This method _must_ be called from a user-input gesture, such as `pointerdown`. You cannot launch\r\n * games fullscreen without this, as most browsers block it. Games within an iframe will also be blocked\r\n * from fullscreen unless the iframe has the `allowfullscreen` attribute.\r\n *\r\n * @method Phaser.Scale.ScaleManager#toggleFullscreen\r\n * @fires Phaser.Scale.Events#ENTER_FULLSCREEN\r\n * @fires Phaser.Scale.Events#LEAVE_FULLSCREEN\r\n * @fires Phaser.Scale.Events#FULLSCREEN_UNSUPPORTED\r\n * @fires Phaser.Scale.Events#RESIZE\r\n * @since 3.16.0\r\n *\r\n * @param {object} [fullscreenOptions] - The FullscreenOptions dictionary is used to provide configuration options when entering full screen.\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1471, + "lineno": 1480, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328174,14 +328767,14 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#toggleFullscreen", "scope": "instance", - "___id": "T000002R036865", + "___id": "T000002R036856", "___s": true }, { "comment": "/**\r\n * An internal method that starts the different DOM event listeners running.\r\n *\r\n * @method Phaser.Scale.ScaleManager#startListeners\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1502, + "lineno": 1511, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328193,14 +328786,14 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#startListeners", "scope": "instance", - "___id": "T000002R036867", + "___id": "T000002R036858", "___s": true }, { "comment": "/**\r\n * Triggered when a fullscreenchange event is dispatched by the DOM.\r\n *\r\n * @method Phaser.Scale.ScaleManager#onFullScreenChange\r\n * @protected\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1568, + "lineno": 1577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328213,14 +328806,14 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#onFullScreenChange", "scope": "instance", - "___id": "T000002R036879", + "___id": "T000002R036870", "___s": true }, { "comment": "/**\r\n * Triggered when a fullscreenerror event is dispatched by the DOM.\r\n *\r\n * @method Phaser.Scale.ScaleManager#onFullScreenError\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1588, + "lineno": 1598, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328232,14 +328825,14 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#onFullScreenError", "scope": "instance", - "___id": "T000002R036881", + "___id": "T000002R036872", "___s": true }, { "comment": "/**\r\n * Get Rectange of visible area.\r\n *\r\n * @method Phaser.Scale.ScaleManager#getViewPort\r\n * @since 3.60.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} [camera] - The camera this viewport is respond upon.\r\n * @param {Phaser.Geom.Rectangle} [out] - The Rectangle of visible area.\r\n *\r\n * @return {Phaser.Geom.Rectangle} The Rectangle of visible area.\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1599, + "lineno": 1609, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328295,14 +328888,14 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#getViewPort", "scope": "instance", - "___id": "T000002R036883", + "___id": "T000002R036874", "___s": true }, { "comment": "/**\r\n * Internal method, called automatically by the game step.\r\n * Monitors the elapsed time and resize interval to see if a parent bounds check needs to take place.\r\n *\r\n * @method Phaser.Scale.ScaleManager#step\r\n * @since 3.16.0\r\n *\r\n * @param {number} time - The time value from the most recent Game step. Typically a high-resolution timer value, or Date.now().\r\n * @param {number} delta - The delta value since the last frame. This is smoothed to avoid delta spikes by the TimeStep class.\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1665, + "lineno": 1675, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328342,14 +328935,14 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#step", "scope": "instance", - "___id": "T000002R036904", + "___id": "T000002R036895", "___s": true }, { "comment": "/**\r\n * Stops all DOM event listeners.\r\n *\r\n * @method Phaser.Scale.ScaleManager#stopListeners\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1697, + "lineno": 1707, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328361,14 +328954,14 @@ "memberof": "Phaser.Scale.ScaleManager", "longname": "Phaser.Scale.ScaleManager#stopListeners", "scope": "instance", - "___id": "T000002R036909", + "___id": "T000002R036900", "___s": true }, { "comment": "/**\r\n * Destroys this Scale Manager, releasing all references to external resources.\r\n * Once destroyed, the Scale Manager cannot be used again.\r\n *\r\n * @method Phaser.Scale.ScaleManager#destroy\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1731, + "lineno": 1741, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328381,14 +328974,14 @@ "longname": "Phaser.Scale.ScaleManager#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R036913", + "___id": "T000002R036904", "___s": true }, { "comment": "/**\r\n * Is the browser currently in fullscreen mode or not?\r\n *\r\n * @name Phaser.Scale.ScaleManager#isFullscreen\r\n * @type {boolean}\r\n * @readonly\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1756, + "lineno": 1766, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328410,14 +329003,14 @@ "longname": "Phaser.Scale.ScaleManager#isFullscreen", "scope": "instance", "kind": "member", - "___id": "T000002R036920", + "___id": "T000002R036911", "___s": true }, { "comment": "/**\r\n * The game width.\r\n *\r\n * This is typically the size given in the game configuration.\r\n *\r\n * @name Phaser.Scale.ScaleManager#width\r\n * @type {number}\r\n * @readonly\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1773, + "lineno": 1783, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328439,14 +329032,14 @@ "longname": "Phaser.Scale.ScaleManager#width", "scope": "instance", "kind": "member", - "___id": "T000002R036923", + "___id": "T000002R036914", "___s": true }, { "comment": "/**\r\n * The game height.\r\n *\r\n * This is typically the size given in the game configuration.\r\n *\r\n * @name Phaser.Scale.ScaleManager#height\r\n * @type {number}\r\n * @readonly\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1792, + "lineno": 1802, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328468,14 +329061,14 @@ "longname": "Phaser.Scale.ScaleManager#height", "scope": "instance", "kind": "member", - "___id": "T000002R036926", + "___id": "T000002R036917", "___s": true }, { "comment": "/**\r\n * Is the device in a portrait orientation as reported by the Orientation API?\r\n * This value is usually only available on mobile devices.\r\n *\r\n * @name Phaser.Scale.ScaleManager#isPortrait\r\n * @type {boolean}\r\n * @readonly\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1811, + "lineno": 1821, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328497,14 +329090,14 @@ "longname": "Phaser.Scale.ScaleManager#isPortrait", "scope": "instance", "kind": "member", - "___id": "T000002R036929", + "___id": "T000002R036920", "___s": true }, { "comment": "/**\r\n * Is the device in a landscape orientation as reported by the Orientation API?\r\n * This value is usually only available on mobile devices.\r\n *\r\n * @name Phaser.Scale.ScaleManager#isLandscape\r\n * @type {boolean}\r\n * @readonly\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1829, + "lineno": 1839, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328526,14 +329119,14 @@ "longname": "Phaser.Scale.ScaleManager#isLandscape", "scope": "instance", "kind": "member", - "___id": "T000002R036932", + "___id": "T000002R036923", "___s": true }, { "comment": "/**\r\n * Are the game dimensions portrait? (i.e. taller than they are wide)\r\n *\r\n * This is different to the device itself being in a portrait orientation.\r\n *\r\n * @name Phaser.Scale.ScaleManager#isGamePortrait\r\n * @type {boolean}\r\n * @readonly\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1847, + "lineno": 1857, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328555,14 +329148,14 @@ "longname": "Phaser.Scale.ScaleManager#isGamePortrait", "scope": "instance", "kind": "member", - "___id": "T000002R036935", + "___id": "T000002R036926", "___s": true }, { "comment": "/**\r\n * Are the game dimensions landscape? (i.e. wider than they are tall)\r\n *\r\n * This is different to the device itself being in a landscape orientation.\r\n *\r\n * @name Phaser.Scale.ScaleManager#isGameLandscape\r\n * @type {boolean}\r\n * @readonly\r\n * @since 3.16.0\r\n */", "meta": { "filename": "ScaleManager.js", - "lineno": 1866, + "lineno": 1876, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scale", "code": {} @@ -328584,7 +329177,7 @@ "longname": "Phaser.Scale.ScaleManager#isGameLandscape", "scope": "instance", "kind": "member", - "___id": "T000002R036938", + "___id": "T000002R036929", "___s": true }, { @@ -328613,7 +329206,7 @@ "longname": "Phaser.Scenes.PENDING", "scope": "static", "kind": "member", - "___id": "T000002R036943", + "___id": "T000002R036934", "___s": true }, { @@ -328642,7 +329235,7 @@ "longname": "Phaser.Scenes.INIT", "scope": "static", "kind": "member", - "___id": "T000002R036945", + "___id": "T000002R036936", "___s": true }, { @@ -328671,7 +329264,7 @@ "longname": "Phaser.Scenes.START", "scope": "static", "kind": "member", - "___id": "T000002R036947", + "___id": "T000002R036938", "___s": true }, { @@ -328700,7 +329293,7 @@ "longname": "Phaser.Scenes.LOADING", "scope": "static", "kind": "member", - "___id": "T000002R036949", + "___id": "T000002R036940", "___s": true }, { @@ -328729,7 +329322,7 @@ "longname": "Phaser.Scenes.CREATING", "scope": "static", "kind": "member", - "___id": "T000002R036951", + "___id": "T000002R036942", "___s": true }, { @@ -328758,7 +329351,7 @@ "longname": "Phaser.Scenes.RUNNING", "scope": "static", "kind": "member", - "___id": "T000002R036953", + "___id": "T000002R036944", "___s": true }, { @@ -328787,7 +329380,7 @@ "longname": "Phaser.Scenes.PAUSED", "scope": "static", "kind": "member", - "___id": "T000002R036955", + "___id": "T000002R036946", "___s": true }, { @@ -328816,7 +329409,7 @@ "longname": "Phaser.Scenes.SLEEPING", "scope": "static", "kind": "member", - "___id": "T000002R036957", + "___id": "T000002R036948", "___s": true }, { @@ -328845,7 +329438,7 @@ "longname": "Phaser.Scenes.SHUTDOWN", "scope": "static", "kind": "member", - "___id": "T000002R036959", + "___id": "T000002R036950", "___s": true }, { @@ -328874,7 +329467,7 @@ "longname": "Phaser.Scenes.DESTROYED", "scope": "static", "kind": "member", - "___id": "T000002R036961", + "___id": "T000002R036952", "___s": true }, { @@ -328930,7 +329523,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:ADDED_TO_SCENE", "scope": "instance", - "___id": "T000002R036964", + "___id": "T000002R036955", "___s": true }, { @@ -328973,7 +329566,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:BOOT", "scope": "instance", - "___id": "T000002R036966", + "___id": "T000002R036957", "___s": true }, { @@ -329016,7 +329609,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:CREATE", "scope": "instance", - "___id": "T000002R036968", + "___id": "T000002R036959", "___s": true }, { @@ -329059,7 +329652,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:DESTROY", "scope": "instance", - "___id": "T000002R036970", + "___id": "T000002R036961", "___s": true }, { @@ -329076,7 +329669,7 @@ "memberof": "Phaser.Scenes", "longname": "Phaser.Scenes.Events", "scope": "static", - "___id": "T000002R036972", + "___id": "T000002R036963", "___s": true }, { @@ -329133,7 +329726,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:PAUSE", "scope": "instance", - "___id": "T000002R036996", + "___id": "T000002R036987", "___s": true }, { @@ -329189,7 +329782,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:POST_UPDATE", "scope": "instance", - "___id": "T000002R036998", + "___id": "T000002R036989", "___s": true }, { @@ -329242,7 +329835,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:PRE_RENDER", "scope": "instance", - "___id": "T000002R037000", + "___id": "T000002R036991", "___s": true }, { @@ -329298,7 +329891,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:PRE_UPDATE", "scope": "instance", - "___id": "T000002R037002", + "___id": "T000002R036993", "___s": true }, { @@ -329355,7 +329948,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:READY", "scope": "instance", - "___id": "T000002R037004", + "___id": "T000002R036995", "___s": true }, { @@ -329411,7 +330004,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:REMOVED_FROM_SCENE", "scope": "instance", - "___id": "T000002R037006", + "___id": "T000002R036997", "___s": true }, { @@ -329464,7 +330057,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:RENDER", "scope": "instance", - "___id": "T000002R037008", + "___id": "T000002R036999", "___s": true }, { @@ -329521,7 +330114,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:RESUME", "scope": "instance", - "___id": "T000002R037010", + "___id": "T000002R037001", "___s": true }, { @@ -329578,7 +330171,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:SHUTDOWN", "scope": "instance", - "___id": "T000002R037012", + "___id": "T000002R037003", "___s": true }, { @@ -329635,7 +330228,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:SLEEP", "scope": "instance", - "___id": "T000002R037014", + "___id": "T000002R037005", "___s": true }, { @@ -329678,7 +330271,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:START", "scope": "instance", - "___id": "T000002R037016", + "___id": "T000002R037007", "___s": true }, { @@ -329721,7 +330314,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:TRANSITION_COMPLETE", "scope": "instance", - "___id": "T000002R037018", + "___id": "T000002R037009", "___s": true }, { @@ -329777,7 +330370,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:TRANSITION_INIT", "scope": "instance", - "___id": "T000002R037020", + "___id": "T000002R037011", "___s": true }, { @@ -329833,7 +330426,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:TRANSITION_OUT", "scope": "instance", - "___id": "T000002R037022", + "___id": "T000002R037013", "___s": true }, { @@ -329889,7 +330482,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:TRANSITION_START", "scope": "instance", - "___id": "T000002R037024", + "___id": "T000002R037015", "___s": true }, { @@ -329945,7 +330538,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:TRANSITION_WAKE", "scope": "instance", - "___id": "T000002R037026", + "___id": "T000002R037017", "___s": true }, { @@ -330001,7 +330594,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:UPDATE", "scope": "instance", - "___id": "T000002R037028", + "___id": "T000002R037019", "___s": true }, { @@ -330058,7 +330651,7 @@ "memberof": "Phaser.Scenes.Events", "longname": "Phaser.Scenes.Events#event:WAKE", "scope": "instance", - "___id": "T000002R037030", + "___id": "T000002R037021", "___s": true }, { @@ -330106,7 +330699,7 @@ "memberof": "Phaser.Scenes", "longname": "Phaser.Scenes.GetPhysicsPlugins", "scope": "static", - "___id": "T000002R037034", + "___id": "T000002R037025", "___s": true }, { @@ -330154,7 +330747,7 @@ "memberof": "Phaser.Scenes", "longname": "Phaser.Scenes.GetScenePlugins", "scope": "static", - "___id": "T000002R037043", + "___id": "T000002R037034", "___s": true }, { @@ -330171,7 +330764,7 @@ "memberof": "Phaser", "longname": "Phaser.Scenes", "scope": "static", - "___id": "T000002R037050", + "___id": "T000002R037041", "___s": true }, { @@ -330216,7 +330809,7 @@ ], "scope": "static", "longname": "Phaser.Scene", - "___id": "T000002R037091", + "___id": "T000002R037082", "___s": true }, { @@ -330244,7 +330837,7 @@ "longname": "Phaser.Scene#sys", "scope": "instance", "kind": "member", - "___id": "T000002R037094", + "___id": "T000002R037085", "___s": true }, { @@ -330272,7 +330865,7 @@ "longname": "Phaser.Scene#game", "scope": "instance", "kind": "member", - "___id": "T000002R037096", + "___id": "T000002R037087", "___s": true }, { @@ -330300,7 +330893,7 @@ "longname": "Phaser.Scene#anims", "scope": "instance", "kind": "member", - "___id": "T000002R037098", + "___id": "T000002R037089", "___s": true }, { @@ -330328,7 +330921,7 @@ "longname": "Phaser.Scene#cache", "scope": "instance", "kind": "member", - "___id": "T000002R037100", + "___id": "T000002R037091", "___s": true }, { @@ -330356,7 +330949,7 @@ "longname": "Phaser.Scene#registry", "scope": "instance", "kind": "member", - "___id": "T000002R037102", + "___id": "T000002R037093", "___s": true }, { @@ -330399,7 +330992,7 @@ "longname": "Phaser.Scene#sound", "scope": "instance", "kind": "member", - "___id": "T000002R037104", + "___id": "T000002R037095", "___s": true }, { @@ -330427,7 +331020,7 @@ "longname": "Phaser.Scene#textures", "scope": "instance", "kind": "member", - "___id": "T000002R037106", + "___id": "T000002R037097", "___s": true }, { @@ -330455,7 +331048,7 @@ "longname": "Phaser.Scene#events", "scope": "instance", "kind": "member", - "___id": "T000002R037108", + "___id": "T000002R037099", "___s": true }, { @@ -330483,7 +331076,7 @@ "longname": "Phaser.Scene#cameras", "scope": "instance", "kind": "member", - "___id": "T000002R037110", + "___id": "T000002R037101", "___s": true }, { @@ -330511,7 +331104,7 @@ "longname": "Phaser.Scene#add", "scope": "instance", "kind": "member", - "___id": "T000002R037112", + "___id": "T000002R037103", "___s": true }, { @@ -330539,7 +331132,7 @@ "longname": "Phaser.Scene#make", "scope": "instance", "kind": "member", - "___id": "T000002R037114", + "___id": "T000002R037105", "___s": true }, { @@ -330567,7 +331160,7 @@ "longname": "Phaser.Scene#scene", "scope": "instance", "kind": "member", - "___id": "T000002R037116", + "___id": "T000002R037107", "___s": true }, { @@ -330595,7 +331188,7 @@ "longname": "Phaser.Scene#children", "scope": "instance", "kind": "member", - "___id": "T000002R037118", + "___id": "T000002R037109", "___s": true }, { @@ -330623,7 +331216,7 @@ "longname": "Phaser.Scene#lights", "scope": "instance", "kind": "member", - "___id": "T000002R037120", + "___id": "T000002R037111", "___s": true }, { @@ -330651,7 +331244,7 @@ "longname": "Phaser.Scene#data", "scope": "instance", "kind": "member", - "___id": "T000002R037122", + "___id": "T000002R037113", "___s": true }, { @@ -330679,7 +331272,7 @@ "longname": "Phaser.Scene#input", "scope": "instance", "kind": "member", - "___id": "T000002R037124", + "___id": "T000002R037115", "___s": true }, { @@ -330707,7 +331300,7 @@ "longname": "Phaser.Scene#load", "scope": "instance", "kind": "member", - "___id": "T000002R037126", + "___id": "T000002R037117", "___s": true }, { @@ -330735,7 +331328,7 @@ "longname": "Phaser.Scene#time", "scope": "instance", "kind": "member", - "___id": "T000002R037128", + "___id": "T000002R037119", "___s": true }, { @@ -330763,7 +331356,7 @@ "longname": "Phaser.Scene#tweens", "scope": "instance", "kind": "member", - "___id": "T000002R037130", + "___id": "T000002R037121", "___s": true }, { @@ -330791,7 +331384,7 @@ "longname": "Phaser.Scene#physics", "scope": "instance", "kind": "member", - "___id": "T000002R037132", + "___id": "T000002R037123", "___s": true }, { @@ -330819,7 +331412,7 @@ "longname": "Phaser.Scene#matter", "scope": "instance", "kind": "member", - "___id": "T000002R037134", + "___id": "T000002R037125", "___s": true }, { @@ -330847,7 +331440,7 @@ "longname": "Phaser.Scene#facebook", "scope": "instance", "kind": "member", - "___id": "T000002R037136", + "___id": "T000002R037127", "___s": true }, { @@ -330875,7 +331468,7 @@ "longname": "Phaser.Scene#scale", "scope": "instance", "kind": "member", - "___id": "T000002R037138", + "___id": "T000002R037129", "___s": true }, { @@ -330903,7 +331496,7 @@ "longname": "Phaser.Scene#plugins", "scope": "instance", "kind": "member", - "___id": "T000002R037140", + "___id": "T000002R037131", "___s": true }, { @@ -330941,7 +331534,7 @@ "longname": "Phaser.Scene#renderer", "scope": "instance", "kind": "member", - "___id": "T000002R037142", + "___id": "T000002R037133", "___s": true }, { @@ -330988,7 +331581,7 @@ "memberof": "Phaser.Scene", "longname": "Phaser.Scene#update", "scope": "instance", - "___id": "T000002R037144", + "___id": "T000002R037135", "___s": true }, { @@ -331035,7 +331628,7 @@ ], "scope": "static", "longname": "Phaser.Scenes.SceneManager", - "___id": "T000002R037156", + "___id": "T000002R037147", "___s": true }, { @@ -331063,7 +331656,7 @@ "longname": "Phaser.Scenes.SceneManager#game", "scope": "instance", "kind": "member", - "___id": "T000002R037159", + "___id": "T000002R037150", "___s": true }, { @@ -331104,7 +331697,7 @@ "longname": "Phaser.Scenes.SceneManager#keys", "scope": "instance", "kind": "member", - "___id": "T000002R037161", + "___id": "T000002R037152", "___s": true }, { @@ -331141,7 +331734,7 @@ "longname": "Phaser.Scenes.SceneManager#scenes", "scope": "instance", "kind": "member", - "___id": "T000002R037163", + "___id": "T000002R037154", "___s": true }, { @@ -331171,7 +331764,7 @@ "longname": "Phaser.Scenes.SceneManager#isProcessing", "scope": "instance", "kind": "member", - "___id": "T000002R037173", + "___id": "T000002R037164", "___s": true }, { @@ -331201,7 +331794,7 @@ "longname": "Phaser.Scenes.SceneManager#isBooted", "scope": "instance", "kind": "member", - "___id": "T000002R037175", + "___id": "T000002R037166", "___s": true }, { @@ -331230,7 +331823,7 @@ "longname": "Phaser.Scenes.SceneManager#customViewports", "scope": "instance", "kind": "member", - "___id": "T000002R037177", + "___id": "T000002R037168", "___s": true }, { @@ -331258,7 +331851,7 @@ "longname": "Phaser.Scenes.SceneManager#systemScene", "scope": "instance", "kind": "member", - "___id": "T000002R037179", + "___id": "T000002R037170", "___s": true }, { @@ -331277,7 +331870,7 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#processQueue", "scope": "instance", - "___id": "T000002R037212", + "___id": "T000002R037203", "___s": true }, { @@ -331374,7 +331967,7 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#add", "scope": "instance", - "___id": "T000002R037227", + "___id": "T000002R037218", "___s": true }, { @@ -331423,14 +332016,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#remove", "scope": "instance", - "___id": "T000002R037246", + "___id": "T000002R037237", "___s": true }, { "comment": "/**\r\n * Updates the Scenes.\r\n *\r\n * @method Phaser.Scenes.SceneManager#update\r\n * @since 3.0.0\r\n *\r\n * @param {number} time - Time elapsed.\r\n * @param {number} delta - Delta time from the last update.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 555, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -331470,14 +332063,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#update", "scope": "instance", - "___id": "T000002R037268", + "___id": "T000002R037256", "___s": true }, { "comment": "/**\r\n * Renders the Scenes.\r\n *\r\n * @method Phaser.Scenes.SceneManager#render\r\n * @since 3.0.0\r\n *\r\n * @param {(Phaser.Renderer.Canvas.CanvasRenderer|Phaser.Renderer.WebGL.WebGLRenderer)} renderer - The renderer to use.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 587, + "lineno": 578, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -331514,14 +332107,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#render", "scope": "instance", - "___id": "T000002R037273", + "___id": "T000002R037261", "___s": true }, { "comment": "/**\r\n * Returns an array of all the current Scenes being managed by this Scene Manager.\r\n *\r\n * You can filter the output by the active state of the Scene and choose to have\r\n * the array returned in normal or reversed order.\r\n *\r\n * @method Phaser.Scenes.SceneManager#getScenes\r\n * @since 3.16.0\r\n *\r\n * @generic {Phaser.Scene[]} T - [$return]\r\n *\r\n * @param {boolean} [isActive=true] - Only include Scene's that are currently active?\r\n * @param {boolean} [inReverse=false] - Return the array of Scenes in reverse?\r\n *\r\n * @return {Phaser.Scene[]} An array containing all of the Scenes in the Scene Manager.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 849, + "lineno": 840, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -331596,14 +332189,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#getScenes", "scope": "instance", - "___id": "T000002R037314", + "___id": "T000002R037302", "___s": true }, { - "comment": "/**\r\n * Retrieves a Scene based on the given key.\r\n *\r\n * If an actual Scene is passed to this method, it can be used to check if\r\n * its currently within the Scene Manager, or not.\r\n *\r\n * @method Phaser.Scenes.SceneManager#getScene\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n * @genericUse {T} - [$return]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The key of the Scene to retrieve.\r\n *\r\n * @return {?Phaser.Scene} The Scene, or `null` if no matching Scene was found.\r\n */", + "comment": "/**\r\n * Retrieves a Scene based on the given key.\r\n *\r\n * If an actual Scene is passed to this method, it can be used to check if\r\n * its currently within the Scene Manager, or not.\r\n *\r\n * @method Phaser.Scenes.SceneManager#getScene\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The key of the Scene to retrieve.\r\n *\r\n * @return {?Phaser.Scene} The Scene, or `null` if no matching Scene was found.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 886, + "lineno": 877, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -331624,12 +332217,6 @@ "title": "genericuse", "text": "{(T|string)} - [key]", "value": "{(T|string)} - [key]" - }, - { - "originalTitle": "genericUse", - "title": "genericuse", - "text": "{T} - [$return]", - "value": "{T} - [$return]" } ], "params": [ @@ -331676,14 +332263,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#getScene", "scope": "instance", - "___id": "T000002R037322", + "___id": "T000002R037310", "___s": true }, { "comment": "/**\r\n * Determines whether a Scene is running.\r\n *\r\n * @method Phaser.Scenes.SceneManager#isActive\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to check.\r\n *\r\n * @return {boolean} Whether the Scene is running, or `null` if no matching Scene was found.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 926, + "lineno": 916, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -331748,14 +332335,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#isActive", "scope": "instance", - "___id": "T000002R037325", + "___id": "T000002R037313", "___s": true }, { "comment": "/**\r\n * Determines whether a Scene is paused.\r\n *\r\n * @method Phaser.Scenes.SceneManager#isPaused\r\n * @since 3.17.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to check.\r\n *\r\n * @return {boolean} Whether the Scene is paused, or `null` if no matching Scene was found.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 951, + "lineno": 941, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -331820,14 +332407,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#isPaused", "scope": "instance", - "___id": "T000002R037328", + "___id": "T000002R037316", "___s": true }, { "comment": "/**\r\n * Determines whether a Scene is visible.\r\n *\r\n * @method Phaser.Scenes.SceneManager#isVisible\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to check.\r\n *\r\n * @return {boolean} Whether the Scene is visible, or `null` if no matching Scene was found.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 976, + "lineno": 966, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -331892,14 +332479,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#isVisible", "scope": "instance", - "___id": "T000002R037331", + "___id": "T000002R037319", "___s": true }, { "comment": "/**\r\n * Determines whether a Scene is sleeping.\r\n *\r\n * @method Phaser.Scenes.SceneManager#isSleeping\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to check.\r\n *\r\n * @return {boolean} Whether the Scene is sleeping, or `null` if no matching Scene was found.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1001, + "lineno": 991, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -331964,14 +332551,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#isSleeping", "scope": "instance", - "___id": "T000002R037334", + "___id": "T000002R037322", "___s": true }, { "comment": "/**\r\n * Pauses the given Scene.\r\n *\r\n * @method Phaser.Scenes.SceneManager#pause\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to pause.\r\n * @param {object} [data] - An optional data object that will be passed to the Scene and emitted by its pause event.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1026, + "lineno": 1016, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -332051,14 +332638,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#pause", "scope": "instance", - "___id": "T000002R037337", + "___id": "T000002R037325", "___s": true }, { "comment": "/**\r\n * Resumes the given Scene.\r\n *\r\n * @method Phaser.Scenes.SceneManager#resume\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to resume.\r\n * @param {object} [data] - An optional data object that will be passed to the Scene and emitted by its resume event.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1052, + "lineno": 1042, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -332138,14 +332725,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#resume", "scope": "instance", - "___id": "T000002R037340", + "___id": "T000002R037328", "___s": true }, { "comment": "/**\r\n * Puts the given Scene to sleep.\r\n *\r\n * @method Phaser.Scenes.SceneManager#sleep\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to put to sleep.\r\n * @param {object} [data] - An optional data object that will be passed to the Scene and emitted by its sleep event.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1078, + "lineno": 1068, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -332225,14 +332812,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#sleep", "scope": "instance", - "___id": "T000002R037343", + "___id": "T000002R037331", "___s": true }, { "comment": "/**\r\n * Awakens the given Scene.\r\n *\r\n * @method Phaser.Scenes.SceneManager#wake\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to wake up.\r\n * @param {object} [data] - An optional data object that will be passed to the Scene and emitted by its wake event.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1104, + "lineno": 1094, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -332312,14 +332899,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#wake", "scope": "instance", - "___id": "T000002R037346", + "___id": "T000002R037334", "___s": true }, { "comment": "/**\r\n * Runs the given Scene.\r\n *\r\n * If the given Scene is paused, it will resume it. If sleeping, it will wake it.\r\n * If not running at all, it will be started.\r\n *\r\n * Use this if you wish to open a modal Scene by calling `pause` on the current\r\n * Scene, then `run` on the modal Scene.\r\n *\r\n * @method Phaser.Scenes.SceneManager#run\r\n * @since 3.10.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to run.\r\n * @param {object} [data] - A data object that will be passed to the Scene on start, wake, or resume.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1130, + "lineno": 1120, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -332399,14 +332986,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#run", "scope": "instance", - "___id": "T000002R037349", + "___id": "T000002R037337", "___s": true }, { "comment": "/**\r\n * Starts the given Scene, if it is not starting, loading, or creating.\r\n *\r\n * If the Scene is running, paused, or sleeping, it will be shutdown and then started.\r\n *\r\n * @method Phaser.Scenes.SceneManager#start\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to start.\r\n * @param {object} [data] - Optional data object to pass to `Scene.Settings` and `Scene.init`, and `Scene.create`.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1184, + "lineno": 1174, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -332486,14 +333073,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#start", "scope": "instance", - "___id": "T000002R037353", + "___id": "T000002R037341", "___s": true }, { "comment": "/**\r\n * Stops the given Scene.\r\n *\r\n * @method Phaser.Scenes.SceneManager#stop\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to stop.\r\n * @param {object} [data] - Optional data object to pass to Scene.shutdown.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1280, + "lineno": 1270, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -332573,14 +333160,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#stop", "scope": "instance", - "___id": "T000002R037367", + "___id": "T000002R037355", "___s": true }, { - "comment": "/**\r\n * Sleeps one one Scene and starts the other.\r\n *\r\n * @method Phaser.Scenes.SceneManager#switch\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [from,to]\r\n *\r\n * @param {(string|Phaser.Scene)} from - The Scene to sleep.\r\n * @param {(string|Phaser.Scene)} to - The Scene to start.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", + "comment": "/**\r\n * Sleeps one one Scene and starts the other.\r\n *\r\n * @method Phaser.Scenes.SceneManager#switch\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [from,to]\r\n *\r\n * @param {(string|Phaser.Scene)} from - The Scene to sleep.\r\n * @param {(string|Phaser.Scene)} to - The Scene to start.\r\n * @param {object} [data] - Optional data object to pass to `Scene.Settings` and `Scene.init`, and `Scene.create`. It is only passed when the scene starts for the first time.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1314, + "lineno": 1304, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -332649,6 +333236,20 @@ }, "description": "The Scene to start.", "name": "to" + }, + { + "type": { + "names": [ + "object" + ], + "parsedType": { + "type": "NameExpression", + "name": "object" + } + }, + "optional": true, + "description": "Optional data object to pass to `Scene.Settings` and `Scene.init`, and `Scene.create`. It is only passed when the scene starts for the first time.", + "name": "data" } ], "returns": [ @@ -332669,14 +333270,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#switch", "scope": "instance", - "___id": "T000002R037371", + "___id": "T000002R037359", "___s": true }, { "comment": "/**\r\n * Retrieves a Scene by numeric index.\r\n *\r\n * @method Phaser.Scenes.SceneManager#getAt\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {T} - [$return]\r\n *\r\n * @param {number} index - The index of the Scene to retrieve.\r\n *\r\n * @return {(Phaser.Scene|undefined)} The Scene.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1350, + "lineno": 1341, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -332740,14 +333341,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#getAt", "scope": "instance", - "___id": "T000002R037375", + "___id": "T000002R037363", "___s": true }, { "comment": "/**\r\n * Retrieves the numeric index of a Scene.\r\n *\r\n * @method Phaser.Scenes.SceneManager#getIndex\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The key of the Scene.\r\n *\r\n * @return {number} The index of the Scene.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1368, + "lineno": 1359, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -332812,14 +333413,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#getIndex", "scope": "instance", - "___id": "T000002R037377", + "___id": "T000002R037365", "___s": true }, { "comment": "/**\r\n * Brings a Scene to the top of the Scenes list.\r\n *\r\n * This means it will render above all other Scenes.\r\n *\r\n * @method Phaser.Scenes.SceneManager#bringToTop\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to move.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1388, + "lineno": 1379, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -332885,14 +333486,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#bringToTop", "scope": "instance", - "___id": "T000002R037380", + "___id": "T000002R037368", "___s": true }, { "comment": "/**\r\n * Sends a Scene to the back of the Scenes list.\r\n *\r\n * This means it will render below all other Scenes.\r\n *\r\n * @method Phaser.Scenes.SceneManager#sendToBack\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to move.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1425, + "lineno": 1415, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -332958,14 +333559,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#sendToBack", "scope": "instance", - "___id": "T000002R037387", + "___id": "T000002R037373", "___s": true }, { "comment": "/**\r\n * Moves a Scene down one position in the Scenes list.\r\n *\r\n * @method Phaser.Scenes.SceneManager#moveDown\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to move.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1462, + "lineno": 1450, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -333031,14 +333632,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#moveDown", "scope": "instance", - "___id": "T000002R037394", + "___id": "T000002R037377", "___s": true }, { "comment": "/**\r\n * Moves a Scene up one position in the Scenes list.\r\n *\r\n * @method Phaser.Scenes.SceneManager#moveUp\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to move.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1499, + "lineno": 1485, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -333104,19 +333705,19 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#moveUp", "scope": "instance", - "___id": "T000002R037405", + "___id": "T000002R037385", "___s": true }, { - "comment": "/**\r\n * Moves a Scene so it is immediately above another Scene in the Scenes list.\r\n *\r\n * This means it will render over the top of the other Scene.\r\n *\r\n * @method Phaser.Scenes.SceneManager#moveAbove\r\n * @since 3.2.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [keyA,keyB]\r\n *\r\n * @param {(string|Phaser.Scene)} keyA - The Scene that Scene B will be moved above.\r\n * @param {(string|Phaser.Scene)} keyB - The Scene to be moved.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", + "comment": "/**\r\n * Moves a Scene so it is immediately above another Scene in the Scenes list.\r\n * If the Scene is already above the other, it isn't moved.\r\n *\r\n * This means it will render over the top of the other Scene.\r\n *\r\n * @method Phaser.Scenes.SceneManager#moveAbove\r\n * @since 3.2.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [keyA,keyB]\r\n *\r\n * @param {(string|Phaser.Scene)} keyA - The Scene that Scene B will be moved above.\r\n * @param {(string|Phaser.Scene)} keyB - The Scene to be moved.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1536, + "lineno": 1520, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} }, - "description": "Moves a Scene so it is immediately above another Scene in the Scenes list.\r\rThis means it will render over the top of the other Scene.", + "description": "Moves a Scene so it is immediately above another Scene in the Scenes list.\rIf the Scene is already above the other, it isn't moved.\r\rThis means it will render over the top of the other Scene.", "kind": "function", "name": "moveAbove", "since": "3.2.0", @@ -333200,19 +333801,19 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#moveAbove", "scope": "instance", - "___id": "T000002R037416", + "___id": "T000002R037393", "___s": true }, { - "comment": "/**\r\n * Moves a Scene so it is immediately below another Scene in the Scenes list.\r\n *\r\n * This means it will render behind the other Scene.\r\n *\r\n * @method Phaser.Scenes.SceneManager#moveBelow\r\n * @since 3.2.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [keyA,keyB]\r\n *\r\n * @param {(string|Phaser.Scene)} keyA - The Scene that Scene B will be moved below.\r\n * @param {(string|Phaser.Scene)} keyB - The Scene to be moved.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", + "comment": "/**\r\n * Moves a Scene so it is immediately below another Scene in the Scenes list.\r\n * If the Scene is already below the other, it isn't moved.\r\n *\r\n * This means it will render behind the other Scene.\r\n *\r\n * @method Phaser.Scenes.SceneManager#moveBelow\r\n * @since 3.2.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [keyA,keyB]\r\n *\r\n * @param {(string|Phaser.Scene)} keyA - The Scene that Scene B will be moved below.\r\n * @param {(string|Phaser.Scene)} keyB - The Scene to be moved.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1583, + "lineno": 1566, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} }, - "description": "Moves a Scene so it is immediately below another Scene in the Scenes list.\r\rThis means it will render behind the other Scene.", + "description": "Moves a Scene so it is immediately below another Scene in the Scenes list.\rIf the Scene is already below the other, it isn't moved.\r\rThis means it will render behind the other Scene.", "kind": "function", "name": "moveBelow", "since": "3.2.0", @@ -333296,14 +333897,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#moveBelow", "scope": "instance", - "___id": "T000002R037424", + "___id": "T000002R037398", "___s": true }, { "comment": "/**\r\n * Swaps the positions of two Scenes in the Scenes list.\r\n *\r\n * @method Phaser.Scenes.SceneManager#swapPosition\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [keyA,keyB]\r\n *\r\n * @param {(string|Phaser.Scene)} keyA - The first Scene to swap.\r\n * @param {(string|Phaser.Scene)} keyB - The second Scene to swap.\r\n *\r\n * @return {this} This Scene Manager instance.\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1657, + "lineno": 1640, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -333392,14 +333993,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#swapPosition", "scope": "instance", - "___id": "T000002R037437", + "___id": "T000002R037409", "___s": true }, { "comment": "/**\r\n * Dumps debug information about each Scene to the developer console.\r\n *\r\n * @method Phaser.Scenes.SceneManager#dump\r\n * @since 3.2.0\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1699, + "lineno": 1680, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -333411,14 +334012,14 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#dump", "scope": "instance", - "___id": "T000002R037447", + "___id": "T000002R037416", "___s": true }, { "comment": "/**\r\n * Destroy this Scene Manager and all of its systems.\r\n *\r\n * This process cannot be reversed.\r\n *\r\n * This method is called automatically when a Phaser Game instance is destroyed.\r\n *\r\n * @method Phaser.Scenes.SceneManager#destroy\r\n * @since 3.0.0\r\n */", "meta": { "filename": "SceneManager.js", - "lineno": 1723, + "lineno": 1704, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -333430,7 +334031,7 @@ "memberof": "Phaser.Scenes.SceneManager", "longname": "Phaser.Scenes.SceneManager#destroy", "scope": "instance", - "___id": "T000002R037455", + "___id": "T000002R037424", "___s": true }, { @@ -333464,7 +334065,7 @@ ], "scope": "static", "longname": "Phaser.Scenes.ScenePlugin", - "___id": "T000002R037472", + "___id": "T000002R037441", "___s": true }, { @@ -333492,7 +334093,7 @@ "longname": "Phaser.Scenes.ScenePlugin#scene", "scope": "instance", "kind": "member", - "___id": "T000002R037475", + "___id": "T000002R037444", "___s": true }, { @@ -333520,7 +334121,7 @@ "longname": "Phaser.Scenes.ScenePlugin#systems", "scope": "instance", "kind": "member", - "___id": "T000002R037477", + "___id": "T000002R037446", "___s": true }, { @@ -333548,7 +334149,7 @@ "longname": "Phaser.Scenes.ScenePlugin#settings", "scope": "instance", "kind": "member", - "___id": "T000002R037479", + "___id": "T000002R037448", "___s": true }, { @@ -333576,7 +334177,7 @@ "longname": "Phaser.Scenes.ScenePlugin#key", "scope": "instance", "kind": "member", - "___id": "T000002R037481", + "___id": "T000002R037450", "___s": true }, { @@ -333604,7 +334205,7 @@ "longname": "Phaser.Scenes.ScenePlugin#manager", "scope": "instance", "kind": "member", - "___id": "T000002R037483", + "___id": "T000002R037452", "___s": true }, { @@ -333632,7 +334233,7 @@ "longname": "Phaser.Scenes.ScenePlugin#transitionProgress", "scope": "instance", "kind": "member", - "___id": "T000002R037485", + "___id": "T000002R037454", "___s": true }, { @@ -333720,7 +334321,7 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#start", "scope": "instance", - "___id": "T000002R037506", + "___id": "T000002R037475", "___s": true }, { @@ -333770,7 +334371,7 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#restart", "scope": "instance", - "___id": "T000002R037509", + "___id": "T000002R037478", "___s": true }, { @@ -333821,7 +334422,7 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#transition", "scope": "instance", - "___id": "T000002R037512", + "___id": "T000002R037481", "___s": true }, { @@ -333918,7 +334519,7 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#add", "scope": "instance", - "___id": "T000002R037551", + "___id": "T000002R037520", "___s": true }, { @@ -334005,7 +334606,7 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#launch", "scope": "instance", - "___id": "T000002R037553", + "___id": "T000002R037522", "___s": true }, { @@ -334092,7 +334693,7 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#run", "scope": "instance", - "___id": "T000002R037555", + "___id": "T000002R037524", "___s": true }, { @@ -334180,7 +334781,7 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#pause", "scope": "instance", - "___id": "T000002R037557", + "___id": "T000002R037526", "___s": true }, { @@ -334268,7 +334869,7 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#resume", "scope": "instance", - "___id": "T000002R037560", + "___id": "T000002R037529", "___s": true }, { @@ -334356,7 +334957,7 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#sleep", "scope": "instance", - "___id": "T000002R037563", + "___id": "T000002R037532", "___s": true }, { @@ -334444,11 +335045,11 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#wake", "scope": "instance", - "___id": "T000002R037566", + "___id": "T000002R037535", "___s": true }, { - "comment": "/**\r\n * Makes this Scene sleep then starts the Scene given.\r\n *\r\n * This will happen at the next Scene Manager update, not immediately.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#switch\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to start.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", + "comment": "/**\r\n * Makes this Scene sleep then starts the Scene given.\r\n *\r\n * This will happen at the next Scene Manager update, not immediately.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#switch\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to start.\r\n * @param {any} [data] - Optional data object to pass to either the Scene `wake` or `start` method.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", "meta": { "filename": "ScenePlugin.js", "lineno": 623, @@ -334497,6 +335098,20 @@ }, "description": "The Scene to start.", "name": "key" + }, + { + "type": { + "names": [ + "any" + ], + "parsedType": { + "type": "NameExpression", + "name": "any" + } + }, + "optional": true, + "description": "Optional data object to pass to either the Scene `wake` or `start` method.", + "name": "data" } ], "returns": [ @@ -334517,14 +335132,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#switch", "scope": "instance", - "___id": "T000002R037569", + "___id": "T000002R037538", "___s": true }, { "comment": "/**\r\n * Shutdown the Scene, clearing display list, timers, etc.\r\n *\r\n * This happens at the next Scene Manager update, not immediately.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#stop\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to stop.\r\n * @param {any} [data] - Optional data object to pass to Scene.Systems.shutdown.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 648, + "lineno": 649, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -334605,14 +335220,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#stop", "scope": "instance", - "___id": "T000002R037571", + "___id": "T000002R037540", "___s": true }, { "comment": "/**\r\n * Sets the active state of the given Scene.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#setActive\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {boolean} value - If `true` the Scene will be resumed. If `false` it will be paused.\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to set the active state of.\r\n * @param {object} [data] - An optional data object that will be passed to the Scene and emitted with its events.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 673, + "lineno": 674, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -334706,14 +335321,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#setActive", "scope": "instance", - "___id": "T000002R037574", + "___id": "T000002R037543", "___s": true }, { "comment": "/**\r\n * Sets the visible state of the given Scene.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#setVisible\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {boolean} value - The visible value.\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to set the visible state for.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 702, + "lineno": 703, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -334793,14 +335408,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#setVisible", "scope": "instance", - "___id": "T000002R037578", + "___id": "T000002R037547", "___s": true }, { "comment": "/**\r\n * Checks if the given Scene is sleeping or not?\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#isSleeping\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to check.\r\n *\r\n * @return {boolean} Whether the Scene is sleeping, or `null` if no matching Scene was found.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 730, + "lineno": 731, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -334866,14 +335481,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#isSleeping", "scope": "instance", - "___id": "T000002R037582", + "___id": "T000002R037551", "___s": true }, { "comment": "/**\r\n * Checks if the given Scene is running or not?\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#isActive\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to check.\r\n *\r\n * @return {boolean} Whether the Scene is running, or `null` if no matching Scene was found.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 750, + "lineno": 751, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -334939,14 +335554,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#isActive", "scope": "instance", - "___id": "T000002R037585", + "___id": "T000002R037554", "___s": true }, { "comment": "/**\r\n * Checks if the given Scene is paused or not?\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#isPaused\r\n * @since 3.17.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to check.\r\n *\r\n * @return {boolean} Whether the Scene is paused, or `null` if no matching Scene was found.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 770, + "lineno": 771, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -335012,14 +335627,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#isPaused", "scope": "instance", - "___id": "T000002R037588", + "___id": "T000002R037557", "___s": true }, { "comment": "/**\r\n * Checks if the given Scene is visible or not?\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#isVisible\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to check.\r\n *\r\n * @return {boolean} Whether the Scene is visible, or `null` if no matching Scene was found.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 790, + "lineno": 791, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -335085,14 +335700,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#isVisible", "scope": "instance", - "___id": "T000002R037591", + "___id": "T000002R037560", "___s": true }, { "comment": "/**\r\n * Swaps the position of two scenes in the Scenes list.\r\n *\r\n * This controls the order in which they are rendered and updated.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#swapPosition\r\n * @since 3.2.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [keyA,keyB]\r\n *\r\n * @param {(string|Phaser.Scene)} keyA - The first Scene to swap.\r\n * @param {(string|Phaser.Scene)} [keyB] - The second Scene to swap. If none is given it defaults to this Scene.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 810, + "lineno": 811, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -335182,19 +335797,19 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#swapPosition", "scope": "instance", - "___id": "T000002R037594", + "___id": "T000002R037563", "___s": true }, { - "comment": "/**\r\n * Swaps the position of two scenes in the Scenes list, so that Scene B is directly above Scene A.\r\n *\r\n * This controls the order in which they are rendered and updated.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#moveAbove\r\n * @since 3.2.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [keyA,keyB]\r\n *\r\n * @param {(string|Phaser.Scene)} keyA - The Scene that Scene B will be moved to be above.\r\n * @param {(string|Phaser.Scene)} [keyB] - The Scene to be moved. If none is given it defaults to this Scene.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", + "comment": "/**\r\n * Moves a Scene so it is immediately above another Scene in the Scenes list.\r\n * If the Scene is already above the other, it isn't moved.\r\n *\r\n * This means it will render over the top of the other Scene.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#moveAbove\r\n * @since 3.2.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [keyA,keyB]\r\n *\r\n * @param {(string|Phaser.Scene)} keyA - The Scene that Scene B will be moved to be above.\r\n * @param {(string|Phaser.Scene)} [keyB] - The Scene to be moved. If none is given it defaults to this Scene.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 838, + "lineno": 839, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} }, - "description": "Swaps the position of two scenes in the Scenes list, so that Scene B is directly above Scene A.\r\rThis controls the order in which they are rendered and updated.", + "description": "Moves a Scene so it is immediately above another Scene in the Scenes list.\rIf the Scene is already above the other, it isn't moved.\r\rThis means it will render over the top of the other Scene.", "kind": "function", "name": "moveAbove", "since": "3.2.0", @@ -335279,19 +335894,19 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#moveAbove", "scope": "instance", - "___id": "T000002R037597", + "___id": "T000002R037566", "___s": true }, { - "comment": "/**\r\n * Swaps the position of two scenes in the Scenes list, so that Scene B is directly below Scene A.\r\n *\r\n * This controls the order in which they are rendered and updated.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#moveBelow\r\n * @since 3.2.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [keyA,keyB]\r\n *\r\n * @param {(string|Phaser.Scene)} keyA - The Scene that Scene B will be moved to be below.\r\n * @param {(string|Phaser.Scene)} [keyB] - The Scene to be moved. If none is given it defaults to this Scene.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", + "comment": "/**\r\n * Moves a Scene so it is immediately below another Scene in the Scenes list.\r\n * If the Scene is already below the other, it isn't moved.\r\n *\r\n * This means it will render behind the other Scene.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#moveBelow\r\n * @since 3.2.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [keyA,keyB]\r\n *\r\n * @param {(string|Phaser.Scene)} keyA - The Scene that Scene B will be moved to be below.\r\n * @param {(string|Phaser.Scene)} [keyB] - The Scene to be moved. If none is given it defaults to this Scene.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 866, + "lineno": 868, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} }, - "description": "Swaps the position of two scenes in the Scenes list, so that Scene B is directly below Scene A.\r\rThis controls the order in which they are rendered and updated.", + "description": "Moves a Scene so it is immediately below another Scene in the Scenes list.\rIf the Scene is already below the other, it isn't moved.\r\rThis means it will render behind the other Scene.", "kind": "function", "name": "moveBelow", "since": "3.2.0", @@ -335376,14 +335991,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#moveBelow", "scope": "instance", - "___id": "T000002R037600", + "___id": "T000002R037569", "___s": true }, { "comment": "/**\r\n * Removes a Scene from the SceneManager.\r\n *\r\n * The Scene is removed from the local scenes array, it's key is cleared from the keys\r\n * cache and Scene.Systems.destroy is then called on it.\r\n *\r\n * If the SceneManager is processing the Scenes when this method is called it will\r\n * queue the operation for the next update sequence.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#remove\r\n * @since 3.2.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to be removed.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 894, + "lineno": 897, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -335450,14 +336065,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#remove", "scope": "instance", - "___id": "T000002R037603", + "___id": "T000002R037572", "___s": true }, { "comment": "/**\r\n * Moves a Scene up one position in the Scenes list.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#moveUp\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to move.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 922, + "lineno": 925, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -335524,14 +336139,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#moveUp", "scope": "instance", - "___id": "T000002R037606", + "___id": "T000002R037575", "___s": true }, { "comment": "/**\r\n * Moves a Scene down one position in the Scenes list.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#moveDown\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to move.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 944, + "lineno": 947, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -335598,14 +336213,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#moveDown", "scope": "instance", - "___id": "T000002R037609", + "___id": "T000002R037578", "___s": true }, { "comment": "/**\r\n * Brings a Scene to the top of the Scenes list.\r\n *\r\n * This means it will render above all other Scenes.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#bringToTop\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to move.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 966, + "lineno": 969, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -335672,14 +336287,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#bringToTop", "scope": "instance", - "___id": "T000002R037612", + "___id": "T000002R037581", "___s": true }, { "comment": "/**\r\n * Sends a Scene to the back of the Scenes list.\r\n *\r\n * This means it will render below all other Scenes.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#sendToBack\r\n * @since 3.0.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to move.\r\n *\r\n * @return {this} This Scene Plugin instance.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 990, + "lineno": 993, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -335746,19 +336361,19 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#sendToBack", "scope": "instance", - "___id": "T000002R037615", + "___id": "T000002R037584", "___s": true }, { - "comment": "/**\r\n * Retrieve a Scene.\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n * @genericUse {T} - [$return]\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#get\r\n * @since 3.0.0\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to retrieve.\r\n *\r\n * @return {Phaser.Scene} The Scene.\r\n */", + "comment": "/**\r\n * Retrieves a Scene based on the given key.\r\n *\r\n * If an actual Scene is passed to this method, it can be used to check if\r\n * its currently within the Scene Manager, or not.\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#get\r\n * @since 3.0.0\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to retrieve.\r\n *\r\n * @return {Phaser.Scene} The Scene.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 1014, + "lineno": 1017, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} }, - "description": "Retrieve a Scene.", + "description": "Retrieves a Scene based on the given key.\r\rIf an actual Scene is passed to this method, it can be used to check if\rits currently within the Scene Manager, or not.", "tags": [ { "originalTitle": "generic", @@ -335771,12 +336386,6 @@ "title": "genericuse", "text": "{(T|string)} - [key]", "value": "{(T|string)} - [key]" - }, - { - "originalTitle": "genericUse", - "title": "genericuse", - "text": "{T} - [$return]", - "value": "{T} - [$return]" } ], "kind": "function", @@ -335824,14 +336433,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#get", "scope": "instance", - "___id": "T000002R037618", + "___id": "T000002R037587", "___s": true }, { "comment": "/**\r\n * Return the status of the Scene.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#getStatus\r\n * @since 3.60.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} key - The Scene to get the status from.\r\n *\r\n * @return {number} The Scene status. This maps to the `Phaser.Scene` constants, such as `Phaser.Scene.LOADING`.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 1033, + "lineno": 1038, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -335896,14 +336505,14 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#getStatus", "scope": "instance", - "___id": "T000002R037620", + "___id": "T000002R037589", "___s": true }, { "comment": "/**\r\n * Retrieves the numeric index of a Scene in the Scenes list.\r\n *\r\n * @method Phaser.Scenes.ScenePlugin#getIndex\r\n * @since 3.7.0\r\n *\r\n * @generic {Phaser.Scene} T\r\n * @genericUse {(T|string)} - [key]\r\n *\r\n * @param {(string|Phaser.Scene)} [key] - The Scene to get the index of.\r\n *\r\n * @return {number} The index of the Scene.\r\n */", "meta": { "filename": "ScenePlugin.js", - "lineno": 1056, + "lineno": 1061, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\scene", "code": {} @@ -335969,7 +336578,7 @@ "memberof": "Phaser.Scenes.ScenePlugin", "longname": "Phaser.Scenes.ScenePlugin#getIndex", "scope": "instance", - "___id": "T000002R037623", + "___id": "T000002R037592", "___s": true }, { @@ -335986,7 +336595,7 @@ "memberof": "Phaser.Scenes", "longname": "Phaser.Scenes.Settings", "scope": "static", - "___id": "T000002R037640", + "___id": "T000002R037609", "___s": true }, { @@ -336044,7 +336653,7 @@ "memberof": "Phaser.Scenes.Settings", "longname": "Phaser.Scenes.Settings.create", "scope": "static", - "___id": "T000002R037642", + "___id": "T000002R037611", "___s": true }, { @@ -336101,7 +336710,7 @@ ], "scope": "static", "longname": "Phaser.Scenes.Systems", - "___id": "T000002R037673", + "___id": "T000002R037642", "___s": true }, { @@ -336129,7 +336738,7 @@ "longname": "Phaser.Scenes.Systems#scene", "scope": "instance", "kind": "member", - "___id": "T000002R037676", + "___id": "T000002R037645", "___s": true }, { @@ -336157,7 +336766,7 @@ "longname": "Phaser.Scenes.Systems#game", "scope": "instance", "kind": "member", - "___id": "T000002R037678", + "___id": "T000002R037647", "___s": true }, { @@ -336195,7 +336804,7 @@ "longname": "Phaser.Scenes.Systems#renderer", "scope": "instance", "kind": "member", - "___id": "T000002R037680", + "___id": "T000002R037649", "___s": true }, { @@ -336223,7 +336832,7 @@ "longname": "Phaser.Scenes.Systems#facebook", "scope": "instance", "kind": "member", - "___id": "T000002R037682", + "___id": "T000002R037651", "___s": true }, { @@ -336261,7 +336870,7 @@ "longname": "Phaser.Scenes.Systems#config", "scope": "instance", "kind": "member", - "___id": "T000002R037684", + "___id": "T000002R037653", "___s": true }, { @@ -336289,7 +336898,7 @@ "longname": "Phaser.Scenes.Systems#settings", "scope": "instance", "kind": "member", - "___id": "T000002R037686", + "___id": "T000002R037655", "___s": true }, { @@ -336317,7 +336926,7 @@ "longname": "Phaser.Scenes.Systems#canvas", "scope": "instance", "kind": "member", - "___id": "T000002R037688", + "___id": "T000002R037657", "___s": true }, { @@ -336345,7 +336954,7 @@ "longname": "Phaser.Scenes.Systems#context", "scope": "instance", "kind": "member", - "___id": "T000002R037690", + "___id": "T000002R037659", "___s": true }, { @@ -336373,7 +336982,7 @@ "longname": "Phaser.Scenes.Systems#anims", "scope": "instance", "kind": "member", - "___id": "T000002R037692", + "___id": "T000002R037661", "___s": true }, { @@ -336401,7 +337010,7 @@ "longname": "Phaser.Scenes.Systems#cache", "scope": "instance", "kind": "member", - "___id": "T000002R037694", + "___id": "T000002R037663", "___s": true }, { @@ -336429,7 +337038,7 @@ "longname": "Phaser.Scenes.Systems#plugins", "scope": "instance", "kind": "member", - "___id": "T000002R037696", + "___id": "T000002R037665", "___s": true }, { @@ -336457,7 +337066,7 @@ "longname": "Phaser.Scenes.Systems#registry", "scope": "instance", "kind": "member", - "___id": "T000002R037698", + "___id": "T000002R037667", "___s": true }, { @@ -336485,7 +337094,7 @@ "longname": "Phaser.Scenes.Systems#scale", "scope": "instance", "kind": "member", - "___id": "T000002R037700", + "___id": "T000002R037669", "___s": true }, { @@ -336528,7 +337137,7 @@ "longname": "Phaser.Scenes.Systems#sound", "scope": "instance", "kind": "member", - "___id": "T000002R037702", + "___id": "T000002R037671", "___s": true }, { @@ -336556,7 +337165,7 @@ "longname": "Phaser.Scenes.Systems#textures", "scope": "instance", "kind": "member", - "___id": "T000002R037704", + "___id": "T000002R037673", "___s": true }, { @@ -336584,7 +337193,7 @@ "longname": "Phaser.Scenes.Systems#add", "scope": "instance", "kind": "member", - "___id": "T000002R037706", + "___id": "T000002R037675", "___s": true }, { @@ -336612,7 +337221,7 @@ "longname": "Phaser.Scenes.Systems#cameras", "scope": "instance", "kind": "member", - "___id": "T000002R037708", + "___id": "T000002R037677", "___s": true }, { @@ -336640,7 +337249,7 @@ "longname": "Phaser.Scenes.Systems#displayList", "scope": "instance", "kind": "member", - "___id": "T000002R037710", + "___id": "T000002R037679", "___s": true }, { @@ -336668,7 +337277,7 @@ "longname": "Phaser.Scenes.Systems#events", "scope": "instance", "kind": "member", - "___id": "T000002R037712", + "___id": "T000002R037681", "___s": true }, { @@ -336696,7 +337305,7 @@ "longname": "Phaser.Scenes.Systems#make", "scope": "instance", "kind": "member", - "___id": "T000002R037714", + "___id": "T000002R037683", "___s": true }, { @@ -336724,7 +337333,7 @@ "longname": "Phaser.Scenes.Systems#scenePlugin", "scope": "instance", "kind": "member", - "___id": "T000002R037716", + "___id": "T000002R037685", "___s": true }, { @@ -336752,7 +337361,7 @@ "longname": "Phaser.Scenes.Systems#updateList", "scope": "instance", "kind": "member", - "___id": "T000002R037718", + "___id": "T000002R037687", "___s": true }, { @@ -336790,7 +337399,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#init", "scope": "instance", - "___id": "T000002R037722", + "___id": "T000002R037691", "___s": true }, { @@ -336842,7 +337451,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#step", "scope": "instance", - "___id": "T000002R037733", + "___id": "T000002R037702", "___s": true }, { @@ -336890,7 +337499,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#render", "scope": "instance", - "___id": "T000002R037736", + "___id": "T000002R037705", "___s": true }, { @@ -336909,7 +337518,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#queueDepthSort", "scope": "instance", - "___id": "T000002R037739", + "___id": "T000002R037708", "___s": true }, { @@ -336928,7 +337537,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#depthSort", "scope": "instance", - "___id": "T000002R037741", + "___id": "T000002R037710", "___s": true }, { @@ -336980,7 +337589,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#pause", "scope": "instance", - "___id": "T000002R037743", + "___id": "T000002R037712", "___s": true }, { @@ -337032,7 +337641,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#resume", "scope": "instance", - "___id": "T000002R037749", + "___id": "T000002R037718", "___s": true }, { @@ -337084,7 +337693,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#sleep", "scope": "instance", - "___id": "T000002R037755", + "___id": "T000002R037724", "___s": true }, { @@ -337136,7 +337745,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#wake", "scope": "instance", - "___id": "T000002R037762", + "___id": "T000002R037731", "___s": true }, { @@ -337169,7 +337778,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#getData", "scope": "instance", - "___id": "T000002R037769", + "___id": "T000002R037738", "___s": true }, { @@ -337202,7 +337811,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#getStatus", "scope": "instance", - "___id": "T000002R037771", + "___id": "T000002R037740", "___s": true }, { @@ -337235,7 +337844,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#canInput", "scope": "instance", - "___id": "T000002R037773", + "___id": "T000002R037742", "___s": true }, { @@ -337268,7 +337877,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#isSleeping", "scope": "instance", - "___id": "T000002R037776", + "___id": "T000002R037745", "___s": true }, { @@ -337301,7 +337910,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#isActive", "scope": "instance", - "___id": "T000002R037778", + "___id": "T000002R037747", "___s": true }, { @@ -337334,7 +337943,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#isPaused", "scope": "instance", - "___id": "T000002R037780", + "___id": "T000002R037749", "___s": true }, { @@ -337367,7 +337976,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#isTransitioning", "scope": "instance", - "___id": "T000002R037782", + "___id": "T000002R037751", "___s": true }, { @@ -337400,7 +338009,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#isTransitionOut", "scope": "instance", - "___id": "T000002R037784", + "___id": "T000002R037753", "___s": true }, { @@ -337433,7 +338042,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#isTransitionIn", "scope": "instance", - "___id": "T000002R037786", + "___id": "T000002R037755", "___s": true }, { @@ -337466,7 +338075,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#isVisible", "scope": "instance", - "___id": "T000002R037788", + "___id": "T000002R037757", "___s": true }, { @@ -337514,7 +338123,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#setVisible", "scope": "instance", - "___id": "T000002R037790", + "___id": "T000002R037759", "___s": true }, { @@ -337576,7 +338185,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#setActive", "scope": "instance", - "___id": "T000002R037793", + "___id": "T000002R037762", "___s": true }, { @@ -337614,7 +338223,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#start", "scope": "instance", - "___id": "T000002R037795", + "___id": "T000002R037764", "___s": true }, { @@ -337652,7 +338261,7 @@ "memberof": "Phaser.Scenes.Systems", "longname": "Phaser.Scenes.Systems#shutdown", "scope": "instance", - "___id": "T000002R037803", + "___id": "T000002R037772", "___s": true }, { @@ -337765,7 +338374,7 @@ "memberof": "Phaser.Types.Scenes", "longname": "Phaser.Types.Scenes.CreateSceneFromObjectConfig", "scope": "static", - "___id": "T000002R037821", + "___id": "T000002R037790", "___s": true }, { @@ -337782,7 +338391,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Scenes", "scope": "static", - "___id": "T000002R037822", + "___id": "T000002R037791", "___s": true }, { @@ -337822,7 +338431,7 @@ "memberof": "Phaser.Types.Scenes", "longname": "Phaser.Types.Scenes.SceneCreateCallback", "scope": "static", - "___id": "T000002R037823", + "___id": "T000002R037792", "___s": true }, { @@ -337862,7 +338471,7 @@ "memberof": "Phaser.Types.Scenes", "longname": "Phaser.Types.Scenes.SceneInitCallback", "scope": "static", - "___id": "T000002R037824", + "___id": "T000002R037793", "___s": true }, { @@ -337887,7 +338496,7 @@ "memberof": "Phaser.Types.Scenes", "longname": "Phaser.Types.Scenes.ScenePreloadCallback", "scope": "static", - "___id": "T000002R037825", + "___id": "T000002R037794", "___s": true }, { @@ -338087,7 +338696,7 @@ "memberof": "Phaser.Types.Scenes", "longname": "Phaser.Types.Scenes.SceneTransitionConfig", "scope": "static", - "___id": "T000002R037826", + "___id": "T000002R037795", "___s": true }, { @@ -338156,7 +338765,7 @@ "memberof": "Phaser.Types.Scenes", "longname": "Phaser.Types.Scenes.SceneTransitionOnStartCallback", "scope": "static", - "___id": "T000002R037827", + "___id": "T000002R037796", "___s": true }, { @@ -338203,7 +338812,7 @@ "memberof": "Phaser.Types.Scenes", "longname": "Phaser.Types.Scenes.SceneType", "scope": "static", - "___id": "T000002R037828", + "___id": "T000002R037797", "___s": true }, { @@ -338255,7 +338864,7 @@ "memberof": "Phaser.Types.Scenes", "longname": "Phaser.Types.Scenes.SceneUpdateCallback", "scope": "static", - "___id": "T000002R037829", + "___id": "T000002R037798", "___s": true }, { @@ -338499,7 +339108,7 @@ "memberof": "Phaser.Types.Scenes", "longname": "Phaser.Types.Scenes.SettingsConfig", "scope": "static", - "___id": "T000002R037830", + "___id": "T000002R037799", "___s": true }, { @@ -338793,7 +339402,7 @@ "memberof": "Phaser.Types.Scenes", "longname": "Phaser.Types.Scenes.SettingsObject", "scope": "static", - "___id": "T000002R037831", + "___id": "T000002R037800", "___s": true }, { @@ -338857,7 +339466,7 @@ ], "scope": "static", "longname": "Phaser.Sound.BaseSound", - "___id": "T000002R037837", + "___id": "T000002R037806", "___s": true }, { @@ -338885,7 +339494,7 @@ "longname": "Phaser.Sound.BaseSound#manager", "scope": "instance", "kind": "member", - "___id": "T000002R037841", + "___id": "T000002R037810", "___s": true }, { @@ -338914,7 +339523,7 @@ "longname": "Phaser.Sound.BaseSound#key", "scope": "instance", "kind": "member", - "___id": "T000002R037843", + "___id": "T000002R037812", "___s": true }, { @@ -338944,7 +339553,7 @@ "longname": "Phaser.Sound.BaseSound#isPlaying", "scope": "instance", "kind": "member", - "___id": "T000002R037845", + "___id": "T000002R037814", "___s": true }, { @@ -338974,7 +339583,7 @@ "longname": "Phaser.Sound.BaseSound#isPaused", "scope": "instance", "kind": "member", - "___id": "T000002R037847", + "___id": "T000002R037816", "___s": true }, { @@ -339004,7 +339613,7 @@ "longname": "Phaser.Sound.BaseSound#totalRate", "scope": "instance", "kind": "member", - "___id": "T000002R037849", + "___id": "T000002R037818", "___s": true }, { @@ -339033,7 +339642,7 @@ "longname": "Phaser.Sound.BaseSound#duration", "scope": "instance", "kind": "member", - "___id": "T000002R037851", + "___id": "T000002R037820", "___s": true }, { @@ -339062,7 +339671,7 @@ "longname": "Phaser.Sound.BaseSound#totalDuration", "scope": "instance", "kind": "member", - "___id": "T000002R037853", + "___id": "T000002R037822", "___s": true }, { @@ -339105,7 +339714,7 @@ "longname": "Phaser.Sound.BaseSound#markers", "scope": "instance", "kind": "member", - "___id": "T000002R037868", + "___id": "T000002R037837", "___s": true }, { @@ -339135,7 +339744,7 @@ "longname": "Phaser.Sound.BaseSound#currentMarker", "scope": "instance", "kind": "member", - "___id": "T000002R037870", + "___id": "T000002R037839", "___s": true }, { @@ -339164,7 +339773,7 @@ "longname": "Phaser.Sound.BaseSound#pendingRemove", "scope": "instance", "kind": "member", - "___id": "T000002R037872", + "___id": "T000002R037841", "___s": true }, { @@ -339212,7 +339821,7 @@ "memberof": "Phaser.Sound.BaseSound", "longname": "Phaser.Sound.BaseSound#addMarker", "scope": "instance", - "___id": "T000002R037874", + "___id": "T000002R037843", "___s": true }, { @@ -339260,7 +339869,7 @@ "memberof": "Phaser.Sound.BaseSound", "longname": "Phaser.Sound.BaseSound#updateMarker", "scope": "instance", - "___id": "T000002R037890", + "___id": "T000002R037859", "___s": true }, { @@ -339310,7 +339919,7 @@ "memberof": "Phaser.Sound.BaseSound", "longname": "Phaser.Sound.BaseSound#removeMarker", "scope": "instance", - "___id": "T000002R037893", + "___id": "T000002R037862", "___s": true }, { @@ -339384,7 +339993,7 @@ "memberof": "Phaser.Sound.BaseSound", "longname": "Phaser.Sound.BaseSound#play", "scope": "instance", - "___id": "T000002R037897", + "___id": "T000002R037866", "___s": true }, { @@ -339417,7 +340026,7 @@ "memberof": "Phaser.Sound.BaseSound", "longname": "Phaser.Sound.BaseSound#pause", "scope": "instance", - "___id": "T000002R037911", + "___id": "T000002R037880", "___s": true }, { @@ -339450,7 +340059,7 @@ "memberof": "Phaser.Sound.BaseSound", "longname": "Phaser.Sound.BaseSound#resume", "scope": "instance", - "___id": "T000002R037915", + "___id": "T000002R037884", "___s": true }, { @@ -339483,7 +340092,7 @@ "memberof": "Phaser.Sound.BaseSound", "longname": "Phaser.Sound.BaseSound#stop", "scope": "instance", - "___id": "T000002R037919", + "___id": "T000002R037888", "___s": true }, { @@ -339502,7 +340111,7 @@ "memberof": "Phaser.Sound.BaseSound", "longname": "Phaser.Sound.BaseSound#applyConfig", "scope": "instance", - "___id": "T000002R037923", + "___id": "T000002R037892", "___s": true }, { @@ -339521,7 +340130,7 @@ "memberof": "Phaser.Sound.BaseSound", "longname": "Phaser.Sound.BaseSound#resetConfig", "scope": "instance", - "___id": "T000002R037931", + "___id": "T000002R037900", "___s": true }, { @@ -339568,7 +340177,7 @@ "memberof": "Phaser.Sound.BaseSound", "longname": "Phaser.Sound.BaseSound#update", "scope": "instance", - "___id": "T000002R037935", + "___id": "T000002R037904", "___s": true }, { @@ -339587,7 +340196,7 @@ "memberof": "Phaser.Sound.BaseSound", "longname": "Phaser.Sound.BaseSound#calculateRate", "scope": "instance", - "___id": "T000002R037937", + "___id": "T000002R037906", "___s": true }, { @@ -339610,7 +340219,7 @@ "longname": "Phaser.Sound.BaseSound#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R037943", + "___id": "T000002R037912", "___s": true }, { @@ -339652,7 +340261,7 @@ ], "scope": "static", "longname": "Phaser.Sound.BaseSoundManager", - "___id": "T000002R037961", + "___id": "T000002R037930", "___s": true }, { @@ -339681,7 +340290,7 @@ "longname": "Phaser.Sound.BaseSoundManager#game", "scope": "instance", "kind": "member", - "___id": "T000002R037965", + "___id": "T000002R037934", "___s": true }, { @@ -339710,7 +340319,7 @@ "longname": "Phaser.Sound.BaseSoundManager#jsonCache", "scope": "instance", "kind": "member", - "___id": "T000002R037967", + "___id": "T000002R037936", "___s": true }, { @@ -339739,7 +340348,7 @@ "longname": "Phaser.Sound.BaseSoundManager#mute", "scope": "instance", "kind": "member", - "___id": "T000002R037971", + "___id": "T000002R037940", "___s": true }, { @@ -339768,7 +340377,7 @@ "longname": "Phaser.Sound.BaseSoundManager#volume", "scope": "instance", "kind": "member", - "___id": "T000002R037973", + "___id": "T000002R037942", "___s": true }, { @@ -339797,7 +340406,7 @@ "longname": "Phaser.Sound.BaseSoundManager#pauseOnBlur", "scope": "instance", "kind": "member", - "___id": "T000002R037975", + "___id": "T000002R037944", "___s": true }, { @@ -339826,7 +340435,7 @@ "longname": "Phaser.Sound.BaseSoundManager#locked", "scope": "instance", "kind": "member", - "___id": "T000002R037981", + "___id": "T000002R037950", "___s": true }, { @@ -339855,7 +340464,7 @@ "longname": "Phaser.Sound.BaseSoundManager#gameLostFocus", "scope": "instance", "kind": "member", - "___id": "T000002R037985", + "___id": "T000002R037954", "___s": true }, { @@ -339883,7 +340492,7 @@ "longname": "Phaser.Sound.BaseSoundManager#listenerPosition", "scope": "instance", "kind": "member", - "___id": "T000002R037987", + "___id": "T000002R037956", "___s": true }, { @@ -339946,7 +340555,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#add", "scope": "instance", - "___id": "T000002R037989", + "___id": "T000002R037958", "___s": true }, { @@ -340023,7 +340632,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#addAudioSprite", "scope": "instance", - "___id": "T000002R037991", + "___id": "T000002R037960", "___s": true }, { @@ -340087,7 +340696,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#get", "scope": "instance", - "___id": "T000002R038004", + "___id": "T000002R037973", "___s": true }, { @@ -340159,7 +340768,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#getAll", "scope": "instance", - "___id": "T000002R038006", + "___id": "T000002R037975", "___s": true }, { @@ -340215,7 +340824,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#getAllPlaying", "scope": "instance", - "___id": "T000002R038008", + "___id": "T000002R037977", "___s": true }, { @@ -340290,7 +340899,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#play", "scope": "instance", - "___id": "T000002R038010", + "___id": "T000002R037979", "___s": true }, { @@ -340368,7 +340977,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#playAudioSprite", "scope": "instance", - "___id": "T000002R038013", + "___id": "T000002R037982", "___s": true }, { @@ -340416,7 +341025,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#remove", "scope": "instance", - "___id": "T000002R038016", + "___id": "T000002R037985", "___s": true }, { @@ -340435,7 +341044,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#removeAll", "scope": "instance", - "___id": "T000002R038019", + "___id": "T000002R037988", "___s": true }, { @@ -340483,7 +341092,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#removeByKey", "scope": "instance", - "___id": "T000002R038022", + "___id": "T000002R037991", "___s": true }, { @@ -340505,7 +341114,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#pauseAll", "scope": "instance", - "___id": "T000002R038027", + "___id": "T000002R037996", "___s": true }, { @@ -340527,7 +341136,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#resumeAll", "scope": "instance", - "___id": "T000002R038029", + "___id": "T000002R037998", "___s": true }, { @@ -340576,7 +341185,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#setListenerPosition", "scope": "instance", - "___id": "T000002R038031", + "___id": "T000002R038000", "___s": true }, { @@ -340598,7 +341207,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#stopAll", "scope": "instance", - "___id": "T000002R038033", + "___id": "T000002R038002", "___s": true }, { @@ -340646,7 +341255,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#stopByKey", "scope": "instance", - "___id": "T000002R038035", + "___id": "T000002R038004", "___s": true }, { @@ -340696,7 +341305,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#isPlaying", "scope": "instance", - "___id": "T000002R038038", + "___id": "T000002R038007", "___s": true }, { @@ -340717,7 +341326,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#unlock", "scope": "instance", - "___id": "T000002R038045", + "___id": "T000002R038014", "___s": true }, { @@ -340738,7 +341347,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#onBlur", "scope": "instance", - "___id": "T000002R038047", + "___id": "T000002R038016", "___s": true }, { @@ -340759,7 +341368,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#onFocus", "scope": "instance", - "___id": "T000002R038049", + "___id": "T000002R038018", "___s": true }, { @@ -340810,7 +341419,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#update", "scope": "instance", - "___id": "T000002R038057", + "___id": "T000002R038026", "___s": true }, { @@ -340830,7 +341439,7 @@ "longname": "Phaser.Sound.BaseSoundManager#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R038062", + "___id": "T000002R038031", "___s": true }, { @@ -340882,7 +341491,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#setRate", "scope": "instance", - "___id": "T000002R038071", + "___id": "T000002R038040", "___s": true }, { @@ -340911,7 +341520,7 @@ "longname": "Phaser.Sound.BaseSoundManager#rate", "scope": "instance", "kind": "member", - "___id": "T000002R038074", + "___id": "T000002R038043", "___s": true }, { @@ -340963,7 +341572,7 @@ "memberof": "Phaser.Sound.BaseSoundManager", "longname": "Phaser.Sound.BaseSoundManager#setDetune", "scope": "instance", - "___id": "T000002R038079", + "___id": "T000002R038048", "___s": true }, { @@ -340992,7 +341601,7 @@ "longname": "Phaser.Sound.BaseSoundManager#detune", "scope": "instance", "kind": "member", - "___id": "T000002R038082", + "___id": "T000002R038051", "___s": true }, { @@ -341045,7 +341654,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:COMPLETE", "scope": "instance", - "___id": "T000002R038088", + "___id": "T000002R038057", "___s": true }, { @@ -341073,7 +341682,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:DECODED_ALL", "scope": "instance", - "___id": "T000002R038090", + "___id": "T000002R038059", "___s": true }, { @@ -341116,7 +341725,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:DECODED", "scope": "instance", - "___id": "T000002R038092", + "___id": "T000002R038061", "___s": true }, { @@ -341169,7 +341778,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:DESTROY", "scope": "instance", - "___id": "T000002R038094", + "___id": "T000002R038063", "___s": true }, { @@ -341235,7 +341844,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:DETUNE", "scope": "instance", - "___id": "T000002R038096", + "___id": "T000002R038065", "___s": true }, { @@ -341291,7 +341900,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:GLOBAL_DETUNE", "scope": "instance", - "___id": "T000002R038098", + "___id": "T000002R038067", "___s": true }, { @@ -341357,7 +341966,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:GLOBAL_MUTE", "scope": "instance", - "___id": "T000002R038100", + "___id": "T000002R038069", "___s": true }, { @@ -341413,7 +342022,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:GLOBAL_RATE", "scope": "instance", - "___id": "T000002R038102", + "___id": "T000002R038071", "___s": true }, { @@ -341479,7 +342088,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:GLOBAL_VOLUME", "scope": "instance", - "___id": "T000002R038104", + "___id": "T000002R038073", "___s": true }, { @@ -341496,7 +342105,7 @@ "memberof": "Phaser.Sound", "longname": "Phaser.Sound.Events", "scope": "static", - "___id": "T000002R038106", + "___id": "T000002R038075", "___s": true }, { @@ -341549,7 +342158,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:LOOPED", "scope": "instance", - "___id": "T000002R038132", + "___id": "T000002R038101", "___s": true }, { @@ -341615,7 +342224,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:LOOP", "scope": "instance", - "___id": "T000002R038134", + "___id": "T000002R038103", "___s": true }, { @@ -341681,7 +342290,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:MUTE", "scope": "instance", - "___id": "T000002R038136", + "___id": "T000002R038105", "___s": true }, { @@ -341747,7 +342356,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:PAN", "scope": "instance", - "___id": "T000002R038138", + "___id": "T000002R038107", "___s": true }, { @@ -341790,7 +342399,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:PAUSE_ALL", "scope": "instance", - "___id": "T000002R038140", + "___id": "T000002R038109", "___s": true }, { @@ -341843,7 +342452,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:PAUSE", "scope": "instance", - "___id": "T000002R038142", + "___id": "T000002R038111", "___s": true }, { @@ -341896,7 +342505,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:PLAY", "scope": "instance", - "___id": "T000002R038144", + "___id": "T000002R038113", "___s": true }, { @@ -341962,7 +342571,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:RATE", "scope": "instance", - "___id": "T000002R038146", + "___id": "T000002R038115", "___s": true }, { @@ -342005,7 +342614,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:RESUME_ALL", "scope": "instance", - "___id": "T000002R038148", + "___id": "T000002R038117", "___s": true }, { @@ -342058,7 +342667,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:RESUME", "scope": "instance", - "___id": "T000002R038150", + "___id": "T000002R038119", "___s": true }, { @@ -342124,7 +342733,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:SEEK", "scope": "instance", - "___id": "T000002R038152", + "___id": "T000002R038121", "___s": true }, { @@ -342167,7 +342776,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:STOP_ALL", "scope": "instance", - "___id": "T000002R038154", + "___id": "T000002R038123", "___s": true }, { @@ -342220,7 +342829,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:STOP", "scope": "instance", - "___id": "T000002R038156", + "___id": "T000002R038125", "___s": true }, { @@ -342263,7 +342872,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:UNLOCKED", "scope": "instance", - "___id": "T000002R038158", + "___id": "T000002R038127", "___s": true }, { @@ -342329,7 +342938,7 @@ "memberof": "Phaser.Sound.Events", "longname": "Phaser.Sound.Events#event:VOLUME", "scope": "instance", - "___id": "T000002R038160", + "___id": "T000002R038129", "___s": true }, { @@ -342394,7 +343003,7 @@ ], "scope": "static", "longname": "Phaser.Sound.HTML5AudioSound", - "___id": "T000002R038166", + "___id": "T000002R038135", "___s": true }, { @@ -342431,7 +343040,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#tags", "scope": "instance", "kind": "member", - "___id": "T000002R038171", + "___id": "T000002R038140", "___s": true }, { @@ -342460,7 +343069,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#audio", "scope": "instance", "kind": "member", - "___id": "T000002R038173", + "___id": "T000002R038142", "___s": true }, { @@ -342489,7 +343098,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#startTime", "scope": "instance", "kind": "member", - "___id": "T000002R038175", + "___id": "T000002R038144", "___s": true }, { @@ -342518,7 +343127,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#previousTime", "scope": "instance", "kind": "member", - "___id": "T000002R038177", + "___id": "T000002R038146", "___s": true }, { @@ -342596,7 +343205,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#play", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#play", - "___id": "T000002R038181", + "___id": "T000002R038150", "___s": true }, { @@ -342633,7 +343242,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#pause", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#pause", - "___id": "T000002R038183", + "___id": "T000002R038152", "___s": true }, { @@ -342670,7 +343279,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#resume", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#resume", - "___id": "T000002R038186", + "___id": "T000002R038155", "___s": true }, { @@ -342707,7 +343316,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#stop", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#stop", - "___id": "T000002R038188", + "___id": "T000002R038157", "___s": true }, { @@ -342740,7 +343349,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#pickAndPlayAudioTag", "scope": "instance", - "___id": "T000002R038190", + "___id": "T000002R038159", "___s": true }, { @@ -342773,7 +343382,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#pickAudioTag", "scope": "instance", - "___id": "T000002R038199", + "___id": "T000002R038168", "___s": true }, { @@ -342792,7 +343401,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#playCatchPromise", "scope": "instance", - "___id": "T000002R038211", + "___id": "T000002R038180", "___s": true }, { @@ -342811,7 +343420,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#stopAndReleaseAudioTag", "scope": "instance", - "___id": "T000002R038214", + "___id": "T000002R038183", "___s": true }, { @@ -342830,7 +343439,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#reset", "scope": "instance", - "___id": "T000002R038220", + "___id": "T000002R038189", "___s": true }, { @@ -342849,7 +343458,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#onBlur", "scope": "instance", - "___id": "T000002R038222", + "___id": "T000002R038191", "___s": true }, { @@ -342868,7 +343477,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#onFocus", "scope": "instance", - "___id": "T000002R038228", + "___id": "T000002R038197", "___s": true }, { @@ -342907,7 +343516,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#update", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#update", - "___id": "T000002R038232", + "___id": "T000002R038201", "___s": true }, { @@ -342927,7 +343536,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#destroy", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#destroy", - "___id": "T000002R038245", + "___id": "T000002R038214", "___s": true }, { @@ -342946,7 +343555,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#updateMute", "scope": "instance", - "___id": "T000002R038248", + "___id": "T000002R038217", "___s": true }, { @@ -342965,7 +343574,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#updateVolume", "scope": "instance", - "___id": "T000002R038251", + "___id": "T000002R038220", "___s": true }, { @@ -342985,7 +343594,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#calculateRate", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#calculateRate", - "___id": "T000002R038254", + "___id": "T000002R038223", "___s": true }, { @@ -343017,7 +343626,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#mute", "scope": "instance", "kind": "member", - "___id": "T000002R038257", + "___id": "T000002R038226", "___s": true }, { @@ -343069,7 +343678,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#setMute", "scope": "instance", - "___id": "T000002R038262", + "___id": "T000002R038231", "___s": true }, { @@ -343101,7 +343710,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#volume", "scope": "instance", "kind": "member", - "___id": "T000002R038265", + "___id": "T000002R038234", "___s": true }, { @@ -343153,7 +343762,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#setVolume", "scope": "instance", - "___id": "T000002R038270", + "___id": "T000002R038239", "___s": true }, { @@ -343185,7 +343794,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#rate", "scope": "instance", "kind": "member", - "___id": "T000002R038273", + "___id": "T000002R038242", "___s": true }, { @@ -343237,7 +343846,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#setRate", "scope": "instance", - "___id": "T000002R038278", + "___id": "T000002R038247", "___s": true }, { @@ -343269,7 +343878,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#detune", "scope": "instance", "kind": "member", - "___id": "T000002R038281", + "___id": "T000002R038250", "___s": true }, { @@ -343321,7 +343930,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#setDetune", "scope": "instance", - "___id": "T000002R038286", + "___id": "T000002R038255", "___s": true }, { @@ -343352,7 +343961,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#seek", "scope": "instance", "kind": "member", - "___id": "T000002R038289", + "___id": "T000002R038258", "___s": true }, { @@ -343404,7 +344013,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#setSeek", "scope": "instance", - "___id": "T000002R038297", + "___id": "T000002R038266", "___s": true }, { @@ -343436,7 +344045,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#loop", "scope": "instance", "kind": "member", - "___id": "T000002R038300", + "___id": "T000002R038269", "___s": true }, { @@ -343487,7 +344096,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#setLoop", "scope": "instance", - "___id": "T000002R038306", + "___id": "T000002R038275", "___s": true }, { @@ -343519,7 +344128,7 @@ "longname": "Phaser.Sound.HTML5AudioSound#pan", "scope": "instance", "kind": "member", - "___id": "T000002R038309", + "___id": "T000002R038278", "___s": true }, { @@ -343571,7 +344180,7 @@ "memberof": "Phaser.Sound.HTML5AudioSound", "longname": "Phaser.Sound.HTML5AudioSound#setPan", "scope": "instance", - "___id": "T000002R038314", + "___id": "T000002R038283", "___s": true }, { @@ -343586,7 +344195,7 @@ "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\html5", "code": { - "id": "astnode100321179", + "id": "astnode100321512", "name": "HTML5AudioSoundManager", "type": "NewExpression", "value": "" @@ -343618,7 +344227,7 @@ "name": "HTML5AudioSoundManager", "longname": "Phaser.Sound.HTML5AudioSoundManager", "scope": "static", - "___id": "T000002R038322", + "___id": "T000002R038291", "___s": true }, { @@ -343647,7 +344256,7 @@ "longname": "Phaser.Sound.HTML5AudioSoundManager#override", "scope": "instance", "kind": "member", - "___id": "T000002R038325", + "___id": "T000002R038294", "___s": true }, { @@ -343676,7 +344285,7 @@ "longname": "Phaser.Sound.HTML5AudioSoundManager#audioPlayDelay", "scope": "instance", "kind": "member", - "___id": "T000002R038327", + "___id": "T000002R038296", "___s": true }, { @@ -343705,7 +344314,7 @@ "longname": "Phaser.Sound.HTML5AudioSoundManager#loopEndOffset", "scope": "instance", "kind": "member", - "___id": "T000002R038329", + "___id": "T000002R038298", "___s": true }, { @@ -343768,7 +344377,7 @@ "longname": "Phaser.Sound.HTML5AudioSoundManager#add", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#add", - "___id": "T000002R038340", + "___id": "T000002R038309", "___s": true }, { @@ -343788,7 +344397,7 @@ "longname": "Phaser.Sound.HTML5AudioSoundManager#unlock", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#unlock", - "___id": "T000002R038343", + "___id": "T000002R038312", "___s": true }, { @@ -343809,7 +344418,7 @@ "longname": "Phaser.Sound.HTML5AudioSoundManager#onBlur", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#onBlur", - "___id": "T000002R038366", + "___id": "T000002R038335", "___s": true }, { @@ -343830,7 +344439,7 @@ "longname": "Phaser.Sound.HTML5AudioSoundManager#onFocus", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#onFocus", - "___id": "T000002R038368", + "___id": "T000002R038337", "___s": true }, { @@ -343850,7 +344459,7 @@ "longname": "Phaser.Sound.HTML5AudioSoundManager#destroy", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#destroy", - "___id": "T000002R038371", + "___id": "T000002R038340", "___s": true }, { @@ -343925,7 +344534,7 @@ "memberof": "Phaser.Sound.HTML5AudioSoundManager", "longname": "Phaser.Sound.HTML5AudioSoundManager#isLocked", "scope": "instance", - "___id": "T000002R038375", + "___id": "T000002R038344", "___s": true }, { @@ -343976,7 +344585,7 @@ "memberof": "Phaser.Sound.HTML5AudioSoundManager", "longname": "Phaser.Sound.HTML5AudioSoundManager#setMute", "scope": "instance", - "___id": "T000002R038380", + "___id": "T000002R038349", "___s": true }, { @@ -344007,7 +344616,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.Sound.BaseSoundManager#mute", - "___id": "T000002R038383", + "___id": "T000002R038352", "___s": true }, { @@ -344058,7 +344667,7 @@ "memberof": "Phaser.Sound.HTML5AudioSoundManager", "longname": "Phaser.Sound.HTML5AudioSoundManager#setVolume", "scope": "instance", - "___id": "T000002R038388", + "___id": "T000002R038357", "___s": true }, { @@ -344089,7 +344698,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.Sound.BaseSoundManager#volume", - "___id": "T000002R038391", + "___id": "T000002R038360", "___s": true }, { @@ -344106,7 +344715,7 @@ "memberof": "Phaser", "longname": "Phaser.Sound", "scope": "static", - "___id": "T000002R038397", + "___id": "T000002R038366", "___s": true }, { @@ -344171,7 +344780,7 @@ ], "scope": "static", "longname": "Phaser.Sound.NoAudioSound", - "___id": "T000002R038417", + "___id": "T000002R038386", "___s": true }, { @@ -344199,7 +344808,7 @@ "longname": "Phaser.Sound.NoAudioSound#manager", "scope": "instance", "kind": "member", - "___id": "T000002R038422", + "___id": "T000002R038391", "___s": true }, { @@ -344228,7 +344837,7 @@ "longname": "Phaser.Sound.NoAudioSound#key", "scope": "instance", "kind": "member", - "___id": "T000002R038424", + "___id": "T000002R038393", "___s": true }, { @@ -344258,7 +344867,7 @@ "longname": "Phaser.Sound.NoAudioSound#isPlaying", "scope": "instance", "kind": "member", - "___id": "T000002R038426", + "___id": "T000002R038395", "___s": true }, { @@ -344288,7 +344897,7 @@ "longname": "Phaser.Sound.NoAudioSound#isPaused", "scope": "instance", "kind": "member", - "___id": "T000002R038428", + "___id": "T000002R038397", "___s": true }, { @@ -344318,7 +344927,7 @@ "longname": "Phaser.Sound.NoAudioSound#totalRate", "scope": "instance", "kind": "member", - "___id": "T000002R038430", + "___id": "T000002R038399", "___s": true }, { @@ -344347,7 +344956,7 @@ "longname": "Phaser.Sound.NoAudioSound#duration", "scope": "instance", "kind": "member", - "___id": "T000002R038432", + "___id": "T000002R038401", "___s": true }, { @@ -344376,7 +344985,7 @@ "longname": "Phaser.Sound.NoAudioSound#totalDuration", "scope": "instance", "kind": "member", - "___id": "T000002R038434", + "___id": "T000002R038403", "___s": true }, { @@ -344404,7 +345013,7 @@ "longname": "Phaser.Sound.NoAudioSound#config", "scope": "instance", "kind": "member", - "___id": "T000002R038436", + "___id": "T000002R038405", "___s": true }, { @@ -344432,7 +345041,7 @@ "longname": "Phaser.Sound.NoAudioSound#currentConfig", "scope": "instance", "kind": "member", - "___id": "T000002R038446", + "___id": "T000002R038415", "___s": true }, { @@ -344464,7 +345073,7 @@ "longname": "Phaser.Sound.NoAudioSound#mute", "scope": "instance", "kind": "member", - "___id": "T000002R038448", + "___id": "T000002R038417", "___s": true }, { @@ -344496,7 +345105,7 @@ "longname": "Phaser.Sound.NoAudioSound#volume", "scope": "instance", "kind": "member", - "___id": "T000002R038450", + "___id": "T000002R038419", "___s": true }, { @@ -344528,7 +345137,7 @@ "longname": "Phaser.Sound.NoAudioSound#rate", "scope": "instance", "kind": "member", - "___id": "T000002R038452", + "___id": "T000002R038421", "___s": true }, { @@ -344560,7 +345169,7 @@ "longname": "Phaser.Sound.NoAudioSound#detune", "scope": "instance", "kind": "member", - "___id": "T000002R038454", + "___id": "T000002R038423", "___s": true }, { @@ -344591,7 +345200,7 @@ "longname": "Phaser.Sound.NoAudioSound#seek", "scope": "instance", "kind": "member", - "___id": "T000002R038456", + "___id": "T000002R038425", "___s": true }, { @@ -344623,7 +345232,7 @@ "longname": "Phaser.Sound.NoAudioSound#loop", "scope": "instance", "kind": "member", - "___id": "T000002R038458", + "___id": "T000002R038427", "___s": true }, { @@ -344655,7 +345264,7 @@ "longname": "Phaser.Sound.NoAudioSound#pan", "scope": "instance", "kind": "member", - "___id": "T000002R038460", + "___id": "T000002R038429", "___s": true }, { @@ -344698,7 +345307,7 @@ "longname": "Phaser.Sound.NoAudioSound#markers", "scope": "instance", "kind": "member", - "___id": "T000002R038462", + "___id": "T000002R038431", "___s": true }, { @@ -344728,7 +345337,7 @@ "longname": "Phaser.Sound.NoAudioSound#currentMarker", "scope": "instance", "kind": "member", - "___id": "T000002R038464", + "___id": "T000002R038433", "___s": true }, { @@ -344757,7 +345366,7 @@ "longname": "Phaser.Sound.NoAudioSound#pendingRemove", "scope": "instance", "kind": "member", - "___id": "T000002R038466", + "___id": "T000002R038435", "___s": true }, { @@ -344804,7 +345413,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#addMarker", "scope": "instance", - "___id": "T000002R038468", + "___id": "T000002R038437", "___s": true }, { @@ -344851,7 +345460,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#updateMarker", "scope": "instance", - "___id": "T000002R038470", + "___id": "T000002R038439", "___s": true }, { @@ -344897,7 +345506,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#removeMarker", "scope": "instance", - "___id": "T000002R038472", + "___id": "T000002R038441", "___s": true }, { @@ -344970,7 +345579,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#play", "scope": "instance", - "___id": "T000002R038474", + "___id": "T000002R038443", "___s": true }, { @@ -345002,7 +345611,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#pause", "scope": "instance", - "___id": "T000002R038476", + "___id": "T000002R038445", "___s": true }, { @@ -345035,7 +345644,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#resume", "scope": "instance", - "___id": "T000002R038478", + "___id": "T000002R038447", "___s": true }, { @@ -345068,7 +345677,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#stop", "scope": "instance", - "___id": "T000002R038480", + "___id": "T000002R038449", "___s": true }, { @@ -345117,7 +345726,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#setMute", "scope": "instance", - "___id": "T000002R038482", + "___id": "T000002R038451", "___s": true }, { @@ -345166,7 +345775,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#setVolume", "scope": "instance", - "___id": "T000002R038484", + "___id": "T000002R038453", "___s": true }, { @@ -345215,7 +345824,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#setRate", "scope": "instance", - "___id": "T000002R038486", + "___id": "T000002R038455", "___s": true }, { @@ -345264,7 +345873,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#setDetune", "scope": "instance", - "___id": "T000002R038488", + "___id": "T000002R038457", "___s": true }, { @@ -345313,7 +345922,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#setSeek", "scope": "instance", - "___id": "T000002R038490", + "___id": "T000002R038459", "___s": true }, { @@ -345362,7 +345971,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#setLoop", "scope": "instance", - "___id": "T000002R038492", + "___id": "T000002R038461", "___s": true }, { @@ -345411,7 +346020,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#setPan", "scope": "instance", - "___id": "T000002R038494", + "___id": "T000002R038463", "___s": true }, { @@ -345430,7 +346039,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#applyConfig", "scope": "instance", - "___id": "T000002R038496", + "___id": "T000002R038465", "___s": true }, { @@ -345449,7 +346058,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#resetConfig", "scope": "instance", - "___id": "T000002R038498", + "___id": "T000002R038467", "___s": true }, { @@ -345497,7 +346106,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#update", "scope": "instance", - "___id": "T000002R038500", + "___id": "T000002R038469", "___s": true }, { @@ -345516,7 +346125,7 @@ "memberof": "Phaser.Sound.NoAudioSound", "longname": "Phaser.Sound.NoAudioSound#calculateRate", "scope": "instance", - "___id": "T000002R038502", + "___id": "T000002R038471", "___s": true }, { @@ -345539,7 +346148,7 @@ "longname": "Phaser.Sound.NoAudioSound#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R038504", + "___id": "T000002R038473", "___s": true }, { @@ -345576,7 +346185,7 @@ ], "scope": "static", "longname": "Phaser.Sound.NoAudioSoundManager", - "___id": "T000002R038512", + "___id": "T000002R038481", "___s": true }, { @@ -345639,7 +346248,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#add", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#add", - "___id": "T000002R038524", + "___id": "T000002R038493", "___s": true }, { @@ -345702,7 +346311,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#addAudioSprite", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#addAudioSprite", - "___id": "T000002R038527", + "___id": "T000002R038496", "___s": true }, { @@ -345767,7 +346376,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#get", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#get", - "___id": "T000002R038531", + "___id": "T000002R038500", "___s": true }, { @@ -345839,7 +346448,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#getAll", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#getAll", - "___id": "T000002R038533", + "___id": "T000002R038502", "___s": true }, { @@ -345912,7 +346521,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#play", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#play", - "___id": "T000002R038535", + "___id": "T000002R038504", "___s": true }, { @@ -345988,7 +346597,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#playAudioSprite", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#playAudioSprite", - "___id": "T000002R038537", + "___id": "T000002R038506", "___s": true }, { @@ -346037,7 +346646,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#remove", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#remove", - "___id": "T000002R038539", + "___id": "T000002R038508", "___s": true }, { @@ -346057,7 +346666,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#removeAll", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#removeAll", - "___id": "T000002R038541", + "___id": "T000002R038510", "___s": true }, { @@ -346106,7 +346715,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#removeByKey", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#removeByKey", - "___id": "T000002R038543", + "___id": "T000002R038512", "___s": true }, { @@ -346155,7 +346764,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#stopByKey", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#stopByKey", - "___id": "T000002R038545", + "___id": "T000002R038514", "___s": true }, { @@ -346175,7 +346784,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#onBlur", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#onBlur", - "___id": "T000002R038547", + "___id": "T000002R038516", "___s": true }, { @@ -346195,7 +346804,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#onFocus", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#onFocus", - "___id": "T000002R038549", + "___id": "T000002R038518", "___s": true }, { @@ -346215,7 +346824,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#onGameBlur", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#onGameBlur", - "___id": "T000002R038551", + "___id": "T000002R038520", "___s": true }, { @@ -346235,7 +346844,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#onGameFocus", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#onGameFocus", - "___id": "T000002R038553", + "___id": "T000002R038522", "___s": true }, { @@ -346255,7 +346864,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#pauseAll", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#pauseAll", - "___id": "T000002R038555", + "___id": "T000002R038524", "___s": true }, { @@ -346275,7 +346884,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#resumeAll", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#resumeAll", - "___id": "T000002R038557", + "___id": "T000002R038526", "___s": true }, { @@ -346295,7 +346904,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#stopAll", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#stopAll", - "___id": "T000002R038559", + "___id": "T000002R038528", "___s": true }, { @@ -346315,7 +346924,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#update", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#update", - "___id": "T000002R038561", + "___id": "T000002R038530", "___s": true }, { @@ -346350,7 +346959,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#setRate", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#setRate", - "___id": "T000002R038563", + "___id": "T000002R038532", "___s": true }, { @@ -346385,7 +346994,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#setDetune", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#setDetune", - "___id": "T000002R038565", + "___id": "T000002R038534", "___s": true }, { @@ -346404,7 +347013,7 @@ "memberof": "Phaser.Sound.NoAudioSoundManager", "longname": "Phaser.Sound.NoAudioSoundManager#setMute", "scope": "instance", - "___id": "T000002R038567", + "___id": "T000002R038536", "___s": true }, { @@ -346423,7 +347032,7 @@ "memberof": "Phaser.Sound.NoAudioSoundManager", "longname": "Phaser.Sound.NoAudioSoundManager#setVolume", "scope": "instance", - "___id": "T000002R038569", + "___id": "T000002R038538", "___s": true }, { @@ -346443,7 +347052,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#unlock", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#unlock", - "___id": "T000002R038571", + "___id": "T000002R038540", "___s": true }, { @@ -346463,7 +347072,7 @@ "longname": "Phaser.Sound.NoAudioSoundManager#destroy", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#destroy", - "___id": "T000002R038575", + "___id": "T000002R038544", "___s": true }, { @@ -346526,7 +347135,7 @@ "memberof": "Phaser.Sound", "longname": "Phaser.Sound.SoundManagerCreator", "scope": "static", - "___id": "T000002R038581", + "___id": "T000002R038550", "___s": true }, { @@ -346569,7 +347178,7 @@ "memberof": "Phaser.Types.Sound", "longname": "Phaser.Types.Sound.AudioSpriteSound", "scope": "static", - "___id": "T000002R038587", + "___id": "T000002R038556", "___s": true }, { @@ -346635,7 +347244,7 @@ "memberof": "Phaser.Types.Sound", "longname": "Phaser.Types.Sound.DecodeAudioConfig", "scope": "static", - "___id": "T000002R038588", + "___id": "T000002R038557", "___s": true }, { @@ -346721,7 +347330,7 @@ "memberof": "Phaser.Types.Sound", "longname": "Phaser.Types.Sound.EachActiveSoundCallback", "scope": "static", - "___id": "T000002R038589", + "___id": "T000002R038558", "___s": true }, { @@ -346738,7 +347347,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Sound", "scope": "static", - "___id": "T000002R038590", + "___id": "T000002R038559", "___s": true }, { @@ -346903,7 +347512,7 @@ "memberof": "Phaser.Types.Sound", "longname": "Phaser.Types.Sound.SoundConfig", "scope": "static", - "___id": "T000002R038591", + "___id": "T000002R038560", "___s": true }, { @@ -346989,7 +347598,7 @@ "memberof": "Phaser.Types.Sound", "longname": "Phaser.Types.Sound.SoundMarker", "scope": "static", - "___id": "T000002R038592", + "___id": "T000002R038561", "___s": true }, { @@ -347268,7 +347877,7 @@ "memberof": "Phaser.Types.Sound", "longname": "Phaser.Types.Sound.SpatialSoundConfig", "scope": "static", - "___id": "T000002R038593", + "___id": "T000002R038562", "___s": true }, { @@ -347350,7 +347959,7 @@ "memberof": "Phaser.Types.Sound", "longname": "Phaser.Types.Sound.WebAudioDecodeEntry", "scope": "static", - "___id": "T000002R038594", + "___id": "T000002R038563", "___s": true }, { @@ -347415,7 +348024,7 @@ ], "scope": "static", "longname": "Phaser.Sound.WebAudioSound", - "___id": "T000002R038599", + "___id": "T000002R038568", "___s": true }, { @@ -347443,7 +348052,7 @@ "longname": "Phaser.Sound.WebAudioSound#audioBuffer", "scope": "instance", "kind": "member", - "___id": "T000002R038604", + "___id": "T000002R038573", "___s": true }, { @@ -347472,7 +348081,7 @@ "longname": "Phaser.Sound.WebAudioSound#source", "scope": "instance", "kind": "member", - "___id": "T000002R038606", + "___id": "T000002R038575", "___s": true }, { @@ -347501,7 +348110,7 @@ "longname": "Phaser.Sound.WebAudioSound#loopSource", "scope": "instance", "kind": "member", - "___id": "T000002R038608", + "___id": "T000002R038577", "___s": true }, { @@ -347529,7 +348138,7 @@ "longname": "Phaser.Sound.WebAudioSound#muteNode", "scope": "instance", "kind": "member", - "___id": "T000002R038610", + "___id": "T000002R038579", "___s": true }, { @@ -347557,7 +348166,7 @@ "longname": "Phaser.Sound.WebAudioSound#volumeNode", "scope": "instance", "kind": "member", - "___id": "T000002R038612", + "___id": "T000002R038581", "___s": true }, { @@ -347585,7 +348194,7 @@ "longname": "Phaser.Sound.WebAudioSound#pannerNode", "scope": "instance", "kind": "member", - "___id": "T000002R038614", + "___id": "T000002R038583", "___s": true }, { @@ -347613,7 +348222,7 @@ "longname": "Phaser.Sound.WebAudioSound#spatialNode", "scope": "instance", "kind": "member", - "___id": "T000002R038616", + "___id": "T000002R038585", "___s": true }, { @@ -347641,7 +348250,7 @@ "longname": "Phaser.Sound.WebAudioSound#spatialSource", "scope": "instance", "kind": "member", - "___id": "T000002R038618", + "___id": "T000002R038587", "___s": true }, { @@ -347670,7 +348279,7 @@ "longname": "Phaser.Sound.WebAudioSound#playTime", "scope": "instance", "kind": "member", - "___id": "T000002R038620", + "___id": "T000002R038589", "___s": true }, { @@ -347699,7 +348308,7 @@ "longname": "Phaser.Sound.WebAudioSound#startTime", "scope": "instance", "kind": "member", - "___id": "T000002R038622", + "___id": "T000002R038591", "___s": true }, { @@ -347728,7 +348337,7 @@ "longname": "Phaser.Sound.WebAudioSound#loopTime", "scope": "instance", "kind": "member", - "___id": "T000002R038624", + "___id": "T000002R038593", "___s": true }, { @@ -347757,7 +348366,7 @@ "longname": "Phaser.Sound.WebAudioSound#rateUpdates", "scope": "instance", "kind": "member", - "___id": "T000002R038626", + "___id": "T000002R038595", "___s": true }, { @@ -347787,7 +348396,7 @@ "longname": "Phaser.Sound.WebAudioSound#hasEnded", "scope": "instance", "kind": "member", - "___id": "T000002R038628", + "___id": "T000002R038597", "___s": true }, { @@ -347817,7 +348426,7 @@ "longname": "Phaser.Sound.WebAudioSound#hasLooped", "scope": "instance", "kind": "member", - "___id": "T000002R038630", + "___id": "T000002R038599", "___s": true }, { @@ -347895,7 +348504,7 @@ "longname": "Phaser.Sound.WebAudioSound#play", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#play", - "___id": "T000002R038636", + "___id": "T000002R038605", "___s": true }, { @@ -347932,7 +348541,7 @@ "longname": "Phaser.Sound.WebAudioSound#pause", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#pause", - "___id": "T000002R038638", + "___id": "T000002R038607", "___s": true }, { @@ -347969,7 +348578,7 @@ "longname": "Phaser.Sound.WebAudioSound#resume", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#resume", - "___id": "T000002R038641", + "___id": "T000002R038610", "___s": true }, { @@ -348006,7 +348615,7 @@ "longname": "Phaser.Sound.WebAudioSound#stop", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#stop", - "___id": "T000002R038643", + "___id": "T000002R038612", "___s": true }, { @@ -348025,7 +348634,7 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#createAndStartLoopBufferSource", "scope": "instance", - "___id": "T000002R038655", + "___id": "T000002R038624", "___s": true }, { @@ -348057,14 +348666,14 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#createBufferSource", "scope": "instance", - "___id": "T000002R038662", + "___id": "T000002R038631", "___s": true }, { "comment": "/**\r\n * This method is only used internally and it stops and removes a buffer source.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#stopAndRemoveBufferSource\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 437, + "lineno": 439, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348076,14 +348685,14 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#stopAndRemoveBufferSource", "scope": "instance", - "___id": "T000002R038670", + "___id": "T000002R038640", "___s": true }, { "comment": "/**\r\n * This method is only used internally and it stops and removes a looping buffer source.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#stopAndRemoveLoopBufferSource\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 462, + "lineno": 464, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348095,14 +348704,14 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#stopAndRemoveLoopBufferSource", "scope": "instance", - "___id": "T000002R038677", + "___id": "T000002R038647", "___s": true }, { "comment": "/**\r\n * Method used internally for applying config values to some of the sound properties.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#applyConfig\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 480, + "lineno": 482, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348115,14 +348724,14 @@ "longname": "Phaser.Sound.WebAudioSound#applyConfig", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#applyConfig", - "___id": "T000002R038681", + "___id": "T000002R038651", "___s": true }, { "comment": "/**\r\n * Sets the x position of this Sound in Spatial Audio space.\r\n *\r\n * This only has any effect if the sound was created with a SpatialSoundConfig object.\r\n *\r\n * Also see the `WebAudioSoundManager.setListenerPosition` method.\r\n *\r\n * If you find that the sound becomes too quiet, too quickly, as it moves away from\r\n * the listener, then try different `refDistance` property values when configuring\r\n * the spatial sound.\r\n *\r\n * @name Phaser.Sound.WebAudioSound#x\r\n * @type {number}\r\n * @since 3.60.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 526, + "lineno": 528, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348143,14 +348752,14 @@ "longname": "Phaser.Sound.WebAudioSound#x", "scope": "instance", "kind": "member", - "___id": "T000002R038703", + "___id": "T000002R038673", "___s": true }, { "comment": "/**\r\n * Sets the y position of this Sound in Spatial Audio space.\r\n *\r\n * This only has any effect if the sound was created with a SpatialSoundConfig object.\r\n *\r\n * Also see the `WebAudioSoundManager.setListenerPosition` method.\r\n *\r\n * If you find that the sound becomes too quiet, too quickly, as it moves away from\r\n * the listener, then try different `refDistance` property values when configuring\r\n * the spatial sound.\r\n *\r\n * @name Phaser.Sound.WebAudioSound#y\r\n * @type {number}\r\n * @since 3.60.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 564, + "lineno": 566, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348171,14 +348780,14 @@ "longname": "Phaser.Sound.WebAudioSound#y", "scope": "instance", "kind": "member", - "___id": "T000002R038708", + "___id": "T000002R038678", "___s": true }, { "comment": "/**\r\n * Update method called automatically by sound manager on every game step.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#update\r\n * @fires Phaser.Sound.Events#COMPLETE\r\n * @fires Phaser.Sound.Events#LOOPED\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 602, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348195,14 +348804,14 @@ "longname": "Phaser.Sound.WebAudioSound#update", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#update", - "___id": "T000002R038713", + "___id": "T000002R038683", "___s": true }, { "comment": "/**\r\n * Calls Phaser.Sound.BaseSound#destroy method\r\n * and cleans up all Web Audio API related stuff.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#destroy\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 654, + "lineno": 656, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348215,14 +348824,14 @@ "longname": "Phaser.Sound.WebAudioSound#destroy", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#destroy", - "___id": "T000002R038729", + "___id": "T000002R038699", "___s": true }, { "comment": "/**\r\n * Method used internally to calculate total playback rate of the sound.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#calculateRate\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 694, + "lineno": 696, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348235,14 +348844,14 @@ "longname": "Phaser.Sound.WebAudioSound#calculateRate", "scope": "instance", "overrides": "Phaser.Sound.BaseSound#calculateRate", - "___id": "T000002R038739", + "___id": "T000002R038709", "___s": true }, { "comment": "/**\r\n * Method used internally for calculating current playback time of a playing sound.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#getCurrentTime\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 726, + "lineno": 728, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348254,14 +348863,14 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#getCurrentTime", "scope": "instance", - "___id": "T000002R038744", + "___id": "T000002R038714", "___s": true }, { "comment": "/**\r\n * Method used internally for calculating the time\r\n * at witch the loop source should start playing.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#getLoopTime\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 755, + "lineno": 757, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348273,14 +348882,14 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#getLoopTime", "scope": "instance", - "___id": "T000002R038752", + "___id": "T000002R038722", "___s": true }, { "comment": "/**\r\n * Rate at which this Sound will be played.\r\n * Value of 1.0 plays the audio at full speed, 0.5 plays the audio at half speed\r\n * and 2.0 doubles the audios playback speed.\r\n *\r\n * @name Phaser.Sound.WebAudioSound#rate\r\n * @type {number}\r\n * @default 1\r\n * @fires Phaser.Sound.Events#RATE\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 776, + "lineno": 778, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348305,14 +348914,14 @@ "longname": "Phaser.Sound.WebAudioSound#rate", "scope": "instance", "kind": "member", - "___id": "T000002R038758", + "___id": "T000002R038728", "___s": true }, { "comment": "/**\r\n * Sets the playback rate of this Sound.\r\n *\r\n * For example, a value of 1.0 plays the audio at full speed, 0.5 plays the audio at half speed\r\n * and 2.0 doubles the audios playback speed.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#setRate\r\n * @fires Phaser.Sound.Events#RATE\r\n * @since 3.3.0\r\n *\r\n * @param {number} value - The playback rate at of this Sound.\r\n *\r\n * @return {this} This Sound instance.\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 805, + "lineno": 807, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348357,14 +348966,14 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#setRate", "scope": "instance", - "___id": "T000002R038763", + "___id": "T000002R038733", "___s": true }, { "comment": "/**\r\n * The detune value of this Sound, given in [cents](https://en.wikipedia.org/wiki/Cent_%28music%29).\r\n * The range of the value is -1200 to 1200, but we recommend setting it to [50](https://en.wikipedia.org/wiki/50_Cent).\r\n *\r\n * @name Phaser.Sound.WebAudioSound#detune\r\n * @type {number}\r\n * @default 0\r\n * @fires Phaser.Sound.Events#DETUNE\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 826, + "lineno": 828, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348389,14 +348998,14 @@ "longname": "Phaser.Sound.WebAudioSound#detune", "scope": "instance", "kind": "member", - "___id": "T000002R038766", + "___id": "T000002R038736", "___s": true }, { "comment": "/**\r\n * Sets the detune value of this Sound, given in [cents](https://en.wikipedia.org/wiki/Cent_%28music%29).\r\n * The range of the value is -1200 to 1200, but we recommend setting it to [50](https://en.wikipedia.org/wiki/50_Cent).\r\n *\r\n * @method Phaser.Sound.WebAudioSound#setDetune\r\n * @fires Phaser.Sound.Events#DETUNE\r\n * @since 3.3.0\r\n *\r\n * @param {number} value - The range of the value is -1200 to 1200, but we recommend setting it to [50](https://en.wikipedia.org/wiki/50_Cent).\r\n *\r\n * @return {this} This Sound instance.\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 854, + "lineno": 856, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348441,14 +349050,14 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#setDetune", "scope": "instance", - "___id": "T000002R038771", + "___id": "T000002R038741", "___s": true }, { "comment": "/**\r\n * Boolean indicating whether the sound is muted or not.\r\n * Gets or sets the muted state of this sound.\r\n *\r\n * @name Phaser.Sound.WebAudioSound#mute\r\n * @type {boolean}\r\n * @default false\r\n * @fires Phaser.Sound.Events#MUTE\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 873, + "lineno": 875, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348473,14 +349082,14 @@ "longname": "Phaser.Sound.WebAudioSound#mute", "scope": "instance", "kind": "member", - "___id": "T000002R038774", + "___id": "T000002R038744", "___s": true }, { "comment": "/**\r\n * Sets the muted state of this Sound.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#setMute\r\n * @fires Phaser.Sound.Events#MUTE\r\n * @since 3.4.0\r\n *\r\n * @param {boolean} value - `true` to mute this sound, `false` to unmute it.\r\n *\r\n * @return {this} This Sound instance.\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 900, + "lineno": 902, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348525,14 +349134,14 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#setMute", "scope": "instance", - "___id": "T000002R038779", + "___id": "T000002R038749", "___s": true }, { "comment": "/**\r\n * Gets or sets the volume of this sound, a value between 0 (silence) and 1 (full volume).\r\n *\r\n * @name Phaser.Sound.WebAudioSound#volume\r\n * @type {number}\r\n * @default 1\r\n * @fires Phaser.Sound.Events#VOLUME\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 918, + "lineno": 920, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348557,14 +349166,14 @@ "longname": "Phaser.Sound.WebAudioSound#volume", "scope": "instance", "kind": "member", - "___id": "T000002R038782", + "___id": "T000002R038752", "___s": true }, { "comment": "/**\r\n * Sets the volume of this Sound.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#setVolume\r\n * @fires Phaser.Sound.Events#VOLUME\r\n * @since 3.4.0\r\n *\r\n * @param {number} value - The volume of the sound.\r\n *\r\n * @return {this} This Sound instance.\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 943, + "lineno": 945, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348609,14 +349218,14 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#setVolume", "scope": "instance", - "___id": "T000002R038787", + "___id": "T000002R038757", "___s": true }, { "comment": "/**\r\n * Property representing the position of playback for this sound, in seconds.\r\n * Setting it to a specific value moves current playback to that position.\r\n * The value given is clamped to the range 0 to current marker duration.\r\n * Setting seek of a stopped sound has no effect.\r\n *\r\n * @name Phaser.Sound.WebAudioSound#seek\r\n * @type {number}\r\n * @fires Phaser.Sound.Events#SEEK\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 961, + "lineno": 963, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348640,14 +349249,14 @@ "longname": "Phaser.Sound.WebAudioSound#seek", "scope": "instance", "kind": "member", - "___id": "T000002R038790", + "___id": "T000002R038760", "___s": true }, { "comment": "/**\r\n * Seeks to a specific point in this sound.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#setSeek\r\n * @fires Phaser.Sound.Events#SEEK\r\n * @since 3.4.0\r\n *\r\n * @param {number} value - The point in the sound to seek to.\r\n *\r\n * @return {this} This Sound instance.\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 1019, + "lineno": 1021, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348692,14 +349301,14 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#setSeek", "scope": "instance", - "___id": "T000002R038796", + "___id": "T000002R038766", "___s": true }, { "comment": "/**\r\n * Flag indicating whether or not the sound or current sound marker will loop.\r\n *\r\n * @name Phaser.Sound.WebAudioSound#loop\r\n * @type {boolean}\r\n * @default false\r\n * @fires Phaser.Sound.Events#LOOP\r\n * @since 3.0.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 1037, + "lineno": 1039, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348724,14 +349333,14 @@ "longname": "Phaser.Sound.WebAudioSound#loop", "scope": "instance", "kind": "member", - "___id": "T000002R038799", + "___id": "T000002R038769", "___s": true }, { "comment": "/**\r\n * Sets the loop state of this Sound.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#setLoop\r\n * @fires Phaser.Sound.Events#LOOP\r\n * @since 3.4.0\r\n *\r\n * @param {boolean} value - `true` to loop this sound, `false` to not loop it.\r\n *\r\n * @return {this} This Sound instance.\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 1071, + "lineno": 1073, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348776,14 +349385,14 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#setLoop", "scope": "instance", - "___id": "T000002R038804", + "___id": "T000002R038774", "___s": true }, { "comment": "/**\r\n * Gets or sets the pan of this sound, a value between -1 (full left pan) and 1 (full right pan).\r\n *\r\n * Always returns zero on iOS / Safari as it doesn't support the stereo panner node.\r\n *\r\n * @name Phaser.Sound.WebAudioSound#pan\r\n * @type {number}\r\n * @default 0\r\n * @fires Phaser.Sound.Events#PAN\r\n * @since 3.50.0\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 1089, + "lineno": 1091, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348808,14 +349417,14 @@ "longname": "Phaser.Sound.WebAudioSound#pan", "scope": "instance", "kind": "member", - "___id": "T000002R038807", + "___id": "T000002R038777", "___s": true }, { "comment": "/**\r\n * Sets the pan of this sound, a value between -1 (full left pan) and 1 (full right pan).\r\n *\r\n * Note: iOS / Safari doesn't support the stereo panner node.\r\n *\r\n * @method Phaser.Sound.WebAudioSound#setPan\r\n * @fires Phaser.Sound.Events#PAN\r\n * @since 3.50.0\r\n *\r\n * @param {number} value - The pan of the sound. A value between -1 (full left pan) and 1 (full right pan).\r\n *\r\n * @return {this} This Sound instance.\r\n */", "meta": { "filename": "WebAudioSound.js", - "lineno": 1127, + "lineno": 1129, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\sound\\webaudio", "code": {} @@ -348860,7 +349469,7 @@ "memberof": "Phaser.Sound.WebAudioSound", "longname": "Phaser.Sound.WebAudioSound#setPan", "scope": "instance", - "___id": "T000002R038812", + "___id": "T000002R038782", "___s": true }, { @@ -348897,7 +349506,7 @@ ], "scope": "static", "longname": "Phaser.Sound.WebAudioSoundManager", - "___id": "T000002R038823", + "___id": "T000002R038793", "___s": true }, { @@ -348925,7 +349534,7 @@ "longname": "Phaser.Sound.WebAudioSoundManager#context", "scope": "instance", "kind": "member", - "___id": "T000002R038827", + "___id": "T000002R038797", "___s": true }, { @@ -348953,7 +349562,7 @@ "longname": "Phaser.Sound.WebAudioSoundManager#masterMuteNode", "scope": "instance", "kind": "member", - "___id": "T000002R038829", + "___id": "T000002R038799", "___s": true }, { @@ -348981,7 +349590,7 @@ "longname": "Phaser.Sound.WebAudioSoundManager#masterVolumeNode", "scope": "instance", "kind": "member", - "___id": "T000002R038831", + "___id": "T000002R038801", "___s": true }, { @@ -349009,7 +349618,7 @@ "longname": "Phaser.Sound.WebAudioSoundManager#destination", "scope": "instance", "kind": "member", - "___id": "T000002R038833", + "___id": "T000002R038803", "___s": true }, { @@ -349057,7 +349666,7 @@ "memberof": "Phaser.Sound.WebAudioSoundManager", "longname": "Phaser.Sound.WebAudioSoundManager#createAudioContext", "scope": "instance", - "___id": "T000002R038836", + "___id": "T000002R038806", "___s": true }, { @@ -349106,7 +349715,7 @@ "memberof": "Phaser.Sound.WebAudioSoundManager", "longname": "Phaser.Sound.WebAudioSoundManager#setAudioContext", "scope": "instance", - "___id": "T000002R038839", + "___id": "T000002R038809", "___s": true }, { @@ -349169,7 +349778,7 @@ "longname": "Phaser.Sound.WebAudioSoundManager#add", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#add", - "___id": "T000002R038845", + "___id": "T000002R038815", "___s": true }, { @@ -349251,7 +349860,7 @@ "memberof": "Phaser.Sound.WebAudioSoundManager", "longname": "Phaser.Sound.WebAudioSoundManager#decodeAudio", "scope": "instance", - "___id": "T000002R038848", + "___id": "T000002R038818", "___s": true }, { @@ -349301,7 +349910,7 @@ "longname": "Phaser.Sound.WebAudioSoundManager#setListenerPosition", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#setListenerPosition", - "___id": "T000002R038864", + "___id": "T000002R038834", "___s": true }, { @@ -349321,7 +349930,7 @@ "longname": "Phaser.Sound.WebAudioSoundManager#unlock", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#unlock", - "___id": "T000002R038868", + "___id": "T000002R038838", "___s": true }, { @@ -349342,7 +349951,7 @@ "longname": "Phaser.Sound.WebAudioSoundManager#onBlur", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#onBlur", - "___id": "T000002R038875", + "___id": "T000002R038845", "___s": true }, { @@ -349363,7 +349972,7 @@ "longname": "Phaser.Sound.WebAudioSoundManager#onFocus", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#onFocus", - "___id": "T000002R038877", + "___id": "T000002R038847", "___s": true }, { @@ -349415,7 +350024,7 @@ "longname": "Phaser.Sound.WebAudioSoundManager#update", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#update", - "___id": "T000002R038880", + "___id": "T000002R038850", "___s": true }, { @@ -349435,7 +350044,7 @@ "longname": "Phaser.Sound.WebAudioSoundManager#destroy", "scope": "instance", "overrides": "Phaser.Sound.BaseSoundManager#destroy", - "___id": "T000002R038889", + "___id": "T000002R038859", "___s": true }, { @@ -349486,7 +350095,7 @@ "memberof": "Phaser.Sound.WebAudioSoundManager", "longname": "Phaser.Sound.WebAudioSoundManager#setMute", "scope": "instance", - "___id": "T000002R038896", + "___id": "T000002R038866", "___s": true }, { @@ -349517,7 +350126,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.Sound.BaseSoundManager#mute", - "___id": "T000002R038899", + "___id": "T000002R038869", "___s": true }, { @@ -349568,7 +350177,7 @@ "memberof": "Phaser.Sound.WebAudioSoundManager", "longname": "Phaser.Sound.WebAudioSoundManager#setVolume", "scope": "instance", - "___id": "T000002R038903", + "___id": "T000002R038873", "___s": true }, { @@ -349599,7 +350208,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.Sound.BaseSoundManager#volume", - "___id": "T000002R038906", + "___id": "T000002R038876", "___s": true }, { @@ -349616,7 +350225,7 @@ "memberof": "Phaser.Structs", "longname": "Phaser.Structs.Events", "scope": "static", - "___id": "T000002R038911", + "___id": "T000002R038881", "___s": true }, { @@ -349658,7 +350267,7 @@ "memberof": "Phaser.Structs.Events", "longname": "Phaser.Structs.Events#event:PROCESS_QUEUE_ADD", "scope": "instance", - "___id": "T000002R038915", + "___id": "T000002R038885", "___s": true }, { @@ -349700,7 +350309,7 @@ "memberof": "Phaser.Structs.Events", "longname": "Phaser.Structs.Events#event:PROCESS_QUEUE_REMOVE", "scope": "instance", - "___id": "T000002R038917", + "___id": "T000002R038887", "___s": true }, { @@ -349717,7 +350326,7 @@ "memberof": "Phaser", "longname": "Phaser.Structs", "scope": "static", - "___id": "T000002R038919", + "___id": "T000002R038889", "___s": true }, { @@ -349768,7 +350377,7 @@ ], "longname": "EachListCallback", "scope": "global", - "___id": "T000002R038932", + "___id": "T000002R038902", "___s": true }, { @@ -349809,7 +350418,7 @@ ], "scope": "static", "longname": "Phaser.Structs.List", - "___id": "T000002R038933", + "___id": "T000002R038903", "___s": true }, { @@ -349836,7 +350445,7 @@ "longname": "Phaser.Structs.List#parent", "scope": "instance", "kind": "member", - "___id": "T000002R038936", + "___id": "T000002R038906", "___s": true }, { @@ -349881,7 +350490,7 @@ "longname": "Phaser.Structs.List#list", "scope": "instance", "kind": "member", - "___id": "T000002R038938", + "___id": "T000002R038908", "___s": true }, { @@ -349910,7 +350519,7 @@ "longname": "Phaser.Structs.List#position", "scope": "instance", "kind": "member", - "___id": "T000002R038940", + "___id": "T000002R038910", "___s": true }, { @@ -349938,7 +350547,7 @@ "longname": "Phaser.Structs.List#addCallback", "scope": "instance", "kind": "member", - "___id": "T000002R038942", + "___id": "T000002R038912", "___s": true }, { @@ -349966,7 +350575,7 @@ "longname": "Phaser.Structs.List#removeCallback", "scope": "instance", "kind": "member", - "___id": "T000002R038944", + "___id": "T000002R038914", "___s": true }, { @@ -349994,7 +350603,7 @@ "longname": "Phaser.Structs.List#_sortKey", "scope": "instance", "kind": "member", - "___id": "T000002R038946", + "___id": "T000002R038916", "___s": true }, { @@ -350073,7 +350682,7 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#add", "scope": "instance", - "___id": "T000002R038948", + "___id": "T000002R038918", "___s": true }, { @@ -350157,7 +350766,7 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#addAt", "scope": "instance", - "___id": "T000002R038950", + "___id": "T000002R038920", "___s": true }, { @@ -350212,7 +350821,7 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#getAt", "scope": "instance", - "___id": "T000002R038952", + "___id": "T000002R038922", "___s": true }, { @@ -350267,7 +350876,7 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#getIndex", "scope": "instance", - "___id": "T000002R038954", + "___id": "T000002R038924", "___s": true }, { @@ -350337,7 +350946,7 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#sort", "scope": "instance", - "___id": "T000002R038956", + "___id": "T000002R038926", "___s": true }, { @@ -350394,7 +351003,7 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#getByName", "scope": "instance", - "___id": "T000002R038959", + "___id": "T000002R038929", "___s": true }, { @@ -350468,7 +351077,7 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#getRandom", "scope": "instance", - "___id": "T000002R038961", + "___id": "T000002R038931", "___s": true }, { @@ -350566,7 +351175,7 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#getFirst", "scope": "instance", - "___id": "T000002R038963", + "___id": "T000002R038933", "___s": true }, { @@ -350673,7 +351282,7 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#getAll", "scope": "instance", - "___id": "T000002R038965", + "___id": "T000002R038935", "___s": true }, { @@ -350741,7 +351350,7 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#count", "scope": "instance", - "___id": "T000002R038967", + "___id": "T000002R038937", "___s": true }, { @@ -350794,7 +351403,7 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#swap", "scope": "instance", - "___id": "T000002R038969", + "___id": "T000002R038939", "___s": true }, { @@ -350861,11 +351470,11 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#moveTo", "scope": "instance", - "___id": "T000002R038971", + "___id": "T000002R038941", "___s": true }, { - "comment": "/**\r\n * Moves the given array element above another one in the array.\r\n *\r\n * @method Phaser.Structs.List#moveAbove\r\n * @since 3.55.0\r\n *\r\n * @genericUse {T} - [child1,child2]\r\n *\r\n * @param {*} child1 - The element to move above base element.\r\n * @param {*} child2 - The base element.\r\n */", + "comment": "/**\r\n * Moves an item above another one in the List.\r\n * If the given item is already above the other, it isn't moved.\r\n * Above means toward the end of the List.\r\n *\r\n * @method Phaser.Structs.List#moveAbove\r\n * @since 3.55.0\r\n *\r\n * @genericUse {T} - [child1,child2]\r\n *\r\n * @param {*} child1 - The element to move above base element.\r\n * @param {*} child2 - The base element.\r\n */", "meta": { "filename": "List.js", "lineno": 358, @@ -350873,7 +351482,7 @@ "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} }, - "description": "Moves the given array element above another one in the array.", + "description": "Moves an item above another one in the List.\rIf the given item is already above the other, it isn't moved.\rAbove means toward the end of the List.", "kind": "function", "name": "moveAbove", "since": "3.55.0", @@ -350914,19 +351523,19 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#moveAbove", "scope": "instance", - "___id": "T000002R038973", + "___id": "T000002R038943", "___s": true }, { - "comment": "/**\r\n * Moves the given array element below another one in the array.\r\n *\r\n * @method Phaser.Structs.List#moveBelow\r\n * @since 3.55.0\r\n *\r\n * @genericUse {T} - [child1,child2]\r\n *\r\n * @param {*} child1 - The element to move below base element.\r\n * @param {*} child2 - The base element.\r\n */", + "comment": "/**\r\n * Moves an item below another one in the List.\r\n * If the given item is already below the other, it isn't moved.\r\n * Below means toward the start of the List.\r\n *\r\n * @method Phaser.Structs.List#moveBelow\r\n * @since 3.55.0\r\n *\r\n * @genericUse {T} - [child1,child2]\r\n *\r\n * @param {*} child1 - The element to move below base element.\r\n * @param {*} child2 - The base element.\r\n */", "meta": { "filename": "List.js", - "lineno": 374, + "lineno": 376, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} }, - "description": "Moves the given array element below another one in the array.", + "description": "Moves an item below another one in the List.\rIf the given item is already below the other, it isn't moved.\rBelow means toward the start of the List.", "kind": "function", "name": "moveBelow", "since": "3.55.0", @@ -350967,14 +351576,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#moveBelow", "scope": "instance", - "___id": "T000002R038975", + "___id": "T000002R038945", "___s": true }, { "comment": "/**\r\n * Removes one or many items from the List.\r\n *\r\n * @method Phaser.Structs.List#remove\r\n * @since 3.0.0\r\n *\r\n * @param {*} child - The item, or array of items, to remove.\r\n * @param {boolean} [skipCallback=false] - Skip calling the List.removeCallback.\r\n *\r\n * @return {*} The item, or array of items, which were successfully removed from the List.\r\n */", "meta": { "filename": "List.js", - "lineno": 390, + "lineno": 394, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351028,14 +351637,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#remove", "scope": "instance", - "___id": "T000002R038977", + "___id": "T000002R038947", "___s": true }, { "comment": "/**\r\n * Removes the item at the given position in the List.\r\n *\r\n * @method Phaser.Structs.List#removeAt\r\n * @since 3.0.0\r\n *\r\n * @genericUse {T} - [$return]\r\n *\r\n * @param {number} index - The position to remove the item from.\r\n * @param {boolean} [skipCallback=false] - Skip calling the List.removeCallback.\r\n *\r\n * @return {*} The item that was removed.\r\n */", "meta": { "filename": "List.js", - "lineno": 413, + "lineno": 417, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351098,14 +351707,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#removeAt", "scope": "instance", - "___id": "T000002R038979", + "___id": "T000002R038949", "___s": true }, { "comment": "/**\r\n * Removes the items within the given range in the List.\r\n *\r\n * @method Phaser.Structs.List#removeBetween\r\n * @since 3.0.0\r\n *\r\n * @genericUse {T[]} - [$return]\r\n *\r\n * @param {number} [startIndex=0] - The index to start removing from.\r\n * @param {number} [endIndex] - The position to stop removing at. The item at this position won't be removed.\r\n * @param {boolean} [skipCallback=false] - Skip calling the List.removeCallback.\r\n *\r\n * @return {Array.<*>} An array of the items which were removed.\r\n */", "meta": { "filename": "List.js", - "lineno": 438, + "lineno": 442, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351193,14 +351802,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#removeBetween", "scope": "instance", - "___id": "T000002R038981", + "___id": "T000002R038951", "___s": true }, { "comment": "/**\r\n * Removes all the items.\r\n *\r\n * @method Phaser.Structs.List#removeAll\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [skipCallback=false] - Skip calling the List.removeCallback.\r\n *\r\n * @return {this} This List object.\r\n */", "meta": { "filename": "List.js", - "lineno": 464, + "lineno": 468, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351244,14 +351853,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#removeAll", "scope": "instance", - "___id": "T000002R038983", + "___id": "T000002R038953", "___s": true }, { "comment": "/**\r\n * Brings the given child to the top of this List.\r\n *\r\n * @method Phaser.Structs.List#bringToTop\r\n * @since 3.0.0\r\n *\r\n * @genericUse {T} - [child,$return]\r\n *\r\n * @param {*} child - The item to bring to the top of the List.\r\n *\r\n * @return {*} The item which was moved.\r\n */", "meta": { "filename": "List.js", - "lineno": 486, + "lineno": 490, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351298,14 +351907,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#bringToTop", "scope": "instance", - "___id": "T000002R038986", + "___id": "T000002R038956", "___s": true }, { "comment": "/**\r\n * Sends the given child to the bottom of this List.\r\n *\r\n * @method Phaser.Structs.List#sendToBack\r\n * @since 3.0.0\r\n *\r\n * @genericUse {T} - [child,$return]\r\n *\r\n * @param {*} child - The item to send to the back of the list.\r\n *\r\n * @return {*} The item which was moved.\r\n */", "meta": { "filename": "List.js", - "lineno": 503, + "lineno": 507, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351352,14 +351961,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#sendToBack", "scope": "instance", - "___id": "T000002R038988", + "___id": "T000002R038958", "___s": true }, { "comment": "/**\r\n * Moves the given child up one place in this group unless it's already at the top.\r\n *\r\n * @method Phaser.Structs.List#moveUp\r\n * @since 3.0.0\r\n *\r\n * @genericUse {T} - [child,$return]\r\n *\r\n * @param {*} child - The item to move up.\r\n *\r\n * @return {*} The item which was moved.\r\n */", "meta": { "filename": "List.js", - "lineno": 520, + "lineno": 524, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351406,14 +352015,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#moveUp", "scope": "instance", - "___id": "T000002R038990", + "___id": "T000002R038960", "___s": true }, { "comment": "/**\r\n * Moves the given child down one place in this group unless it's already at the bottom.\r\n *\r\n * @method Phaser.Structs.List#moveDown\r\n * @since 3.0.0\r\n *\r\n * @genericUse {T} - [child,$return]\r\n *\r\n * @param {*} child - The item to move down.\r\n *\r\n * @return {*} The item which was moved.\r\n */", "meta": { "filename": "List.js", - "lineno": 539, + "lineno": 543, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351460,14 +352069,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#moveDown", "scope": "instance", - "___id": "T000002R038992", + "___id": "T000002R038962", "___s": true }, { "comment": "/**\r\n * Reverses the order of all children in this List.\r\n *\r\n * @method Phaser.Structs.List#reverse\r\n * @since 3.0.0\r\n *\r\n * @genericUse {Phaser.Structs.List.} - [$return]\r\n *\r\n * @return {Phaser.Structs.List} This List object.\r\n */", "meta": { "filename": "List.js", - "lineno": 558, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351501,14 +352110,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#reverse", "scope": "instance", - "___id": "T000002R038994", + "___id": "T000002R038964", "___s": true }, { "comment": "/**\r\n * Shuffles the items in the list.\r\n *\r\n * @method Phaser.Structs.List#shuffle\r\n * @since 3.0.0\r\n *\r\n * @genericUse {Phaser.Structs.List.} - [$return]\r\n *\r\n * @return {Phaser.Structs.List} This List object.\r\n */", "meta": { "filename": "List.js", - "lineno": 575, + "lineno": 579, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351542,14 +352151,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#shuffle", "scope": "instance", - "___id": "T000002R038996", + "___id": "T000002R038966", "___s": true }, { "comment": "/**\r\n * Replaces a child of this List with the given newChild. The newChild cannot be a member of this List.\r\n *\r\n * @method Phaser.Structs.List#replace\r\n * @since 3.0.0\r\n *\r\n * @genericUse {T} - [oldChild,newChild,$return]\r\n *\r\n * @param {*} oldChild - The child in this List that will be replaced.\r\n * @param {*} newChild - The child to be inserted into this List.\r\n *\r\n * @return {*} Returns the oldChild that was replaced within this group.\r\n */", "meta": { "filename": "List.js", - "lineno": 592, + "lineno": 596, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351608,14 +352217,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#replace", "scope": "instance", - "___id": "T000002R038998", + "___id": "T000002R038968", "___s": true }, { "comment": "/**\r\n * Checks if an item exists within the List.\r\n *\r\n * @method Phaser.Structs.List#exists\r\n * @since 3.0.0\r\n *\r\n * @genericUse {T} - [child]\r\n *\r\n * @param {*} child - The item to check for the existence of.\r\n *\r\n * @return {boolean} `true` if the item is found in the list, otherwise `false`.\r\n */", "meta": { "filename": "List.js", - "lineno": 610, + "lineno": 614, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351663,14 +352272,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#exists", "scope": "instance", - "___id": "T000002R039000", + "___id": "T000002R038970", "___s": true }, { "comment": "/**\r\n * Sets the property `key` to the given value on all members of this List.\r\n *\r\n * @method Phaser.Structs.List#setAll\r\n * @since 3.0.0\r\n *\r\n * @genericUse {T} - [value]\r\n *\r\n * @param {string} property - The name of the property to set.\r\n * @param {*} value - The value to set the property to.\r\n * @param {number} [startIndex] - The first child index to start the search from.\r\n * @param {number} [endIndex] - The last child index to search up until.\r\n */", "meta": { "filename": "List.js", - "lineno": 627, + "lineno": 631, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351745,14 +352354,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#setAll", "scope": "instance", - "___id": "T000002R039002", + "___id": "T000002R038972", "___s": true }, { "comment": "/**\r\n * Passes all children to the given callback.\r\n *\r\n * @method Phaser.Structs.List#each\r\n * @since 3.0.0\r\n *\r\n * @genericUse {EachListCallback.} - [callback]\r\n *\r\n * @param {EachListCallback} callback - The function to call.\r\n * @param {*} [context] - Value to use as `this` when executing callback.\r\n * @param {...*} [args] - Additional arguments that will be passed to the callback, after the child.\r\n */", "meta": { "filename": "List.js", - "lineno": 647, + "lineno": 651, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351815,14 +352424,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#each", "scope": "instance", - "___id": "T000002R039004", + "___id": "T000002R038974", "___s": true }, { "comment": "/**\r\n * Clears the List and recreates its internal array.\r\n *\r\n * @method Phaser.Structs.List#shutdown\r\n * @since 3.0.0\r\n */", "meta": { "filename": "List.js", - "lineno": 676, + "lineno": 680, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351834,14 +352443,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#shutdown", "scope": "instance", - "___id": "T000002R039010", + "___id": "T000002R038980", "___s": true }, { "comment": "/**\r\n * Destroys this List.\r\n *\r\n * @method Phaser.Structs.List#destroy\r\n * @since 3.0.0\r\n */", "meta": { "filename": "List.js", - "lineno": 689, + "lineno": 693, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351853,14 +352462,14 @@ "memberof": "Phaser.Structs.List", "longname": "Phaser.Structs.List#destroy", "scope": "instance", - "___id": "T000002R039013", + "___id": "T000002R038983", "___s": true }, { "comment": "/**\r\n * The number of items inside the List.\r\n *\r\n * @name Phaser.Structs.List#length\r\n * @type {number}\r\n * @readonly\r\n * @since 3.0.0\r\n */", "meta": { "filename": "List.js", - "lineno": 704, + "lineno": 708, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351882,14 +352491,14 @@ "longname": "Phaser.Structs.List#length", "scope": "instance", "kind": "member", - "___id": "T000002R039018", + "___id": "T000002R038988", "___s": true }, { "comment": "/**\r\n * The first item in the List or `null` for an empty List.\r\n *\r\n * @name Phaser.Structs.List#first\r\n * @genericUse {T} - [$type]\r\n * @type {*}\r\n * @readonly\r\n * @since 3.0.0\r\n */", "meta": { "filename": "List.js", - "lineno": 721, + "lineno": 725, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351918,14 +352527,14 @@ "longname": "Phaser.Structs.List#first", "scope": "instance", "kind": "member", - "___id": "T000002R039021", + "___id": "T000002R038991", "___s": true }, { "comment": "/**\r\n * The last item in the List, or `null` for an empty List.\r\n *\r\n * @name Phaser.Structs.List#last\r\n * @genericUse {T} - [$type]\r\n * @type {*}\r\n * @readonly\r\n * @since 3.0.0\r\n */", "meta": { "filename": "List.js", - "lineno": 748, + "lineno": 752, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351954,14 +352563,14 @@ "longname": "Phaser.Structs.List#last", "scope": "instance", "kind": "member", - "___id": "T000002R039025", + "___id": "T000002R038995", "___s": true }, { "comment": "/**\r\n * The next item in the List, or `null` if the entire List has been traversed.\r\n *\r\n * This property can be read successively after reading {@link #first} or manually setting the {@link #position} to iterate the List.\r\n *\r\n * @name Phaser.Structs.List#next\r\n * @genericUse {T} - [$type]\r\n * @type {*}\r\n * @readonly\r\n * @since 3.0.0\r\n */", "meta": { "filename": "List.js", - "lineno": 775, + "lineno": 779, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -351990,14 +352599,14 @@ "longname": "Phaser.Structs.List#next", "scope": "instance", "kind": "member", - "___id": "T000002R039029", + "___id": "T000002R038999", "___s": true }, { "comment": "/**\r\n * The previous item in the List, or `null` if the entire List has been traversed.\r\n *\r\n * This property can be read successively after reading {@link #last} or manually setting the {@link #position} to iterate the List backwards.\r\n *\r\n * @name Phaser.Structs.List#previous\r\n * @genericUse {T} - [$type]\r\n * @type {*}\r\n * @readonly\r\n * @since 3.0.0\r\n */", "meta": { "filename": "List.js", - "lineno": 804, + "lineno": 808, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\structs", "code": {} @@ -352026,7 +352635,7 @@ "longname": "Phaser.Structs.List#previous", "scope": "instance", "kind": "member", - "___id": "T000002R039032", + "___id": "T000002R039002", "___s": true }, { @@ -352091,7 +352700,7 @@ ], "longname": "EachMapCallback", "scope": "global", - "___id": "T000002R039037", + "___id": "T000002R039007", "___s": true }, { @@ -352153,7 +352762,7 @@ ], "scope": "static", "longname": "Phaser.Structs.Map", - "___id": "T000002R039038", + "___id": "T000002R039008", "___s": true }, { @@ -352202,7 +352811,7 @@ "longname": "Phaser.Structs.Map#entries", "scope": "instance", "kind": "member", - "___id": "T000002R039041", + "___id": "T000002R039011", "___s": true }, { @@ -352231,7 +352840,7 @@ "longname": "Phaser.Structs.Map#size", "scope": "instance", "kind": "member", - "___id": "T000002R039043", + "___id": "T000002R039013", "___s": true }, { @@ -352308,7 +352917,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#setAll", "scope": "instance", - "___id": "T000002R039045", + "___id": "T000002R039015", "___s": true }, { @@ -352389,7 +352998,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#set", "scope": "instance", - "___id": "T000002R039048", + "___id": "T000002R039018", "___s": true }, { @@ -352450,7 +353059,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#get", "scope": "instance", - "___id": "T000002R039051", + "___id": "T000002R039021", "___s": true }, { @@ -352499,7 +353108,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#getArray", "scope": "instance", - "___id": "T000002R039053", + "___id": "T000002R039023", "___s": true }, { @@ -352555,7 +353164,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#has", "scope": "instance", - "___id": "T000002R039058", + "___id": "T000002R039028", "___s": true }, { @@ -352618,7 +353227,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#delete", "scope": "instance", - "___id": "T000002R039060", + "___id": "T000002R039030", "___s": true }, { @@ -352660,7 +353269,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#clear", "scope": "instance", - "___id": "T000002R039062", + "___id": "T000002R039032", "___s": true }, { @@ -352710,7 +353319,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#keys", "scope": "instance", - "___id": "T000002R039065", + "___id": "T000002R039035", "___s": true }, { @@ -352759,7 +353368,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#values", "scope": "instance", - "___id": "T000002R039067", + "___id": "T000002R039037", "___s": true }, { @@ -352778,7 +353387,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#dump", "scope": "instance", - "___id": "T000002R039072", + "___id": "T000002R039042", "___s": true }, { @@ -352841,7 +353450,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#each", "scope": "instance", - "___id": "T000002R039076", + "___id": "T000002R039046", "___s": true }, { @@ -352896,7 +353505,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#contains", "scope": "instance", - "___id": "T000002R039080", + "___id": "T000002R039050", "___s": true }, { @@ -352968,7 +353577,7 @@ "memberof": "Phaser.Structs.Map", "longname": "Phaser.Structs.Map#merge", "scope": "instance", - "___id": "T000002R039084", + "___id": "T000002R039054", "___s": true }, { @@ -352998,7 +353607,7 @@ ], "scope": "static", "longname": "Phaser.Structs.ProcessQueue", - "___id": "T000002R039095", + "___id": "T000002R039065", "___s": true }, { @@ -353026,7 +353635,7 @@ "longname": "Phaser.Structs.ProcessQueue#checkQueue", "scope": "instance", "kind": "member", - "___id": "T000002R039107", + "___id": "T000002R039077", "___s": true }, { @@ -353087,7 +353696,7 @@ "memberof": "Phaser.Structs.ProcessQueue", "longname": "Phaser.Structs.ProcessQueue#isActive", "scope": "instance", - "___id": "T000002R039109", + "___id": "T000002R039079", "___s": true }, { @@ -353148,7 +353757,7 @@ "memberof": "Phaser.Structs.ProcessQueue", "longname": "Phaser.Structs.ProcessQueue#isPending", "scope": "instance", - "___id": "T000002R039111", + "___id": "T000002R039081", "___s": true }, { @@ -353209,7 +353818,7 @@ "memberof": "Phaser.Structs.ProcessQueue", "longname": "Phaser.Structs.ProcessQueue#isDestroying", "scope": "instance", - "___id": "T000002R039113", + "___id": "T000002R039083", "___s": true }, { @@ -353269,7 +353878,7 @@ "memberof": "Phaser.Structs.ProcessQueue", "longname": "Phaser.Structs.ProcessQueue#add", "scope": "instance", - "___id": "T000002R039115", + "___id": "T000002R039085", "___s": true }, { @@ -353329,7 +353938,7 @@ "memberof": "Phaser.Structs.ProcessQueue", "longname": "Phaser.Structs.ProcessQueue#remove", "scope": "instance", - "___id": "T000002R039117", + "___id": "T000002R039087", "___s": true }, { @@ -353363,7 +353972,7 @@ "memberof": "Phaser.Structs.ProcessQueue", "longname": "Phaser.Structs.ProcessQueue#removeAll", "scope": "instance", - "___id": "T000002R039121", + "___id": "T000002R039091", "___s": true }, { @@ -353412,7 +354021,7 @@ "memberof": "Phaser.Structs.ProcessQueue", "longname": "Phaser.Structs.ProcessQueue#update", "scope": "instance", - "___id": "T000002R039126", + "___id": "T000002R039096", "___s": true }, { @@ -353461,7 +354070,7 @@ "memberof": "Phaser.Structs.ProcessQueue", "longname": "Phaser.Structs.ProcessQueue#getActive", "scope": "instance", - "___id": "T000002R039141", + "___id": "T000002R039111", "___s": true }, { @@ -353490,7 +354099,7 @@ "longname": "Phaser.Structs.ProcessQueue#length", "scope": "instance", "kind": "member", - "___id": "T000002R039143", + "___id": "T000002R039113", "___s": true }, { @@ -353510,7 +354119,7 @@ "longname": "Phaser.Structs.ProcessQueue#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R039146", + "___id": "T000002R039116", "___s": true }, { @@ -353529,7 +354138,7 @@ "since": "3.0.0", "scope": "static", "longname": "Phaser.Structs.RTree", - "___id": "T000002R039154", + "___id": "T000002R039124", "___s": true }, { @@ -353594,7 +354203,7 @@ ], "longname": "EachSetCallback", "scope": "global", - "___id": "T000002R039385", + "___id": "T000002R039355", "___s": true }, { @@ -353651,7 +354260,7 @@ ], "scope": "static", "longname": "Phaser.Structs.Set", - "___id": "T000002R039386", + "___id": "T000002R039356", "___s": true }, { @@ -353696,7 +354305,7 @@ "longname": "Phaser.Structs.Set#entries", "scope": "instance", "kind": "member", - "___id": "T000002R039389", + "___id": "T000002R039359", "___s": true }, { @@ -353757,7 +354366,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#set", "scope": "instance", - "___id": "T000002R039392", + "___id": "T000002R039362", "___s": true }, { @@ -353824,7 +354433,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#get", "scope": "instance", - "___id": "T000002R039394", + "___id": "T000002R039364", "___s": true }, { @@ -353873,7 +354482,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#getArray", "scope": "instance", - "___id": "T000002R039398", + "___id": "T000002R039368", "___s": true }, { @@ -353934,7 +354543,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#delete", "scope": "instance", - "___id": "T000002R039400", + "___id": "T000002R039370", "___s": true }, { @@ -353953,7 +354562,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#dump", "scope": "instance", - "___id": "T000002R039403", + "___id": "T000002R039373", "___s": true }, { @@ -354028,7 +354637,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#each", "scope": "instance", - "___id": "T000002R039407", + "___id": "T000002R039377", "___s": true }, { @@ -354103,7 +354712,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#iterate", "scope": "instance", - "___id": "T000002R039414", + "___id": "T000002R039384", "___s": true }, { @@ -354174,7 +354783,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#iterateLocal", "scope": "instance", - "___id": "T000002R039420", + "___id": "T000002R039390", "___s": true }, { @@ -354215,7 +354824,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#clear", "scope": "instance", - "___id": "T000002R039428", + "___id": "T000002R039398", "___s": true }, { @@ -354270,7 +354879,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#contains", "scope": "instance", - "___id": "T000002R039431", + "___id": "T000002R039401", "___s": true }, { @@ -354326,7 +354935,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#union", "scope": "instance", - "___id": "T000002R039433", + "___id": "T000002R039403", "___s": true }, { @@ -354382,7 +354991,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#intersect", "scope": "instance", - "___id": "T000002R039436", + "___id": "T000002R039406", "___s": true }, { @@ -354438,7 +355047,7 @@ "memberof": "Phaser.Structs.Set", "longname": "Phaser.Structs.Set#difference", "scope": "instance", - "___id": "T000002R039439", + "___id": "T000002R039409", "___s": true }, { @@ -354466,7 +355075,7 @@ "longname": "Phaser.Structs.Set#size", "scope": "instance", "kind": "member", - "___id": "T000002R039442", + "___id": "T000002R039412", "___s": true }, { @@ -354547,7 +355156,7 @@ ], "scope": "static", "longname": "Phaser.Structs.Size", - "___id": "T000002R039452", + "___id": "T000002R039422", "___s": true }, { @@ -354576,7 +355185,7 @@ "longname": "Phaser.Structs.Size#aspectMode", "scope": "instance", "kind": "member", - "___id": "T000002R039465", + "___id": "T000002R039435", "___s": true }, { @@ -354605,7 +355214,7 @@ "longname": "Phaser.Structs.Size#aspectRatio", "scope": "instance", "kind": "member", - "___id": "T000002R039467", + "___id": "T000002R039437", "___s": true }, { @@ -354634,7 +355243,7 @@ "longname": "Phaser.Structs.Size#minWidth", "scope": "instance", "kind": "member", - "___id": "T000002R039469", + "___id": "T000002R039439", "___s": true }, { @@ -354663,7 +355272,7 @@ "longname": "Phaser.Structs.Size#minHeight", "scope": "instance", "kind": "member", - "___id": "T000002R039471", + "___id": "T000002R039441", "___s": true }, { @@ -354692,7 +355301,7 @@ "longname": "Phaser.Structs.Size#maxWidth", "scope": "instance", "kind": "member", - "___id": "T000002R039473", + "___id": "T000002R039443", "___s": true }, { @@ -354721,7 +355330,7 @@ "longname": "Phaser.Structs.Size#maxHeight", "scope": "instance", "kind": "member", - "___id": "T000002R039475", + "___id": "T000002R039445", "___s": true }, { @@ -354750,7 +355359,7 @@ "longname": "Phaser.Structs.Size#snapTo", "scope": "instance", "kind": "member", - "___id": "T000002R039477", + "___id": "T000002R039447", "___s": true }, { @@ -354801,7 +355410,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#setAspectMode", "scope": "instance", - "___id": "T000002R039479", + "___id": "T000002R039449", "___s": true }, { @@ -354867,7 +355476,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#setSnap", "scope": "instance", - "___id": "T000002R039483", + "___id": "T000002R039453", "___s": true }, { @@ -354917,7 +355526,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#setParent", "scope": "instance", - "___id": "T000002R039487", + "___id": "T000002R039457", "___s": true }, { @@ -354983,7 +355592,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#setMin", "scope": "instance", - "___id": "T000002R039490", + "___id": "T000002R039460", "___s": true }, { @@ -355049,7 +355658,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#setMax", "scope": "instance", - "___id": "T000002R039496", + "___id": "T000002R039466", "___s": true }, { @@ -355115,7 +355724,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#setSize", "scope": "instance", - "___id": "T000002R039502", + "___id": "T000002R039472", "___s": true }, { @@ -355164,7 +355773,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#setAspectRatio", "scope": "instance", - "___id": "T000002R039513", + "___id": "T000002R039483", "___s": true }, { @@ -355228,7 +355837,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#resize", "scope": "instance", - "___id": "T000002R039516", + "___id": "T000002R039486", "___s": true }, { @@ -355291,7 +355900,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#getNewWidth", "scope": "instance", - "___id": "T000002R039521", + "___id": "T000002R039491", "___s": true }, { @@ -355354,7 +355963,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#getNewHeight", "scope": "instance", - "___id": "T000002R039526", + "___id": "T000002R039496", "___s": true }, { @@ -355434,7 +356043,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#constrain", "scope": "instance", - "___id": "T000002R039531", + "___id": "T000002R039501", "___s": true }, { @@ -355499,7 +356108,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#fitTo", "scope": "instance", - "___id": "T000002R039550", + "___id": "T000002R039520", "___s": true }, { @@ -355564,7 +356173,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#envelop", "scope": "instance", - "___id": "T000002R039552", + "___id": "T000002R039522", "___s": true }, { @@ -355613,7 +356222,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#setWidth", "scope": "instance", - "___id": "T000002R039554", + "___id": "T000002R039524", "___s": true }, { @@ -355662,7 +356271,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#setHeight", "scope": "instance", - "___id": "T000002R039556", + "___id": "T000002R039526", "___s": true }, { @@ -355695,7 +356304,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#toString", "scope": "instance", - "___id": "T000002R039558", + "___id": "T000002R039528", "___s": true }, { @@ -355729,7 +356338,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#setCSS", "scope": "instance", - "___id": "T000002R039560", + "___id": "T000002R039530", "___s": true }, { @@ -355777,7 +356386,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#copy", "scope": "instance", - "___id": "T000002R039564", + "___id": "T000002R039534", "___s": true }, { @@ -355796,7 +356405,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size#destroy", "scope": "instance", - "___id": "T000002R039567", + "___id": "T000002R039537", "___s": true }, { @@ -355824,7 +356433,7 @@ "longname": "Phaser.Structs.Size#width", "scope": "instance", "kind": "member", - "___id": "T000002R039571", + "___id": "T000002R039541", "___s": true }, { @@ -355852,7 +356461,7 @@ "longname": "Phaser.Structs.Size#height", "scope": "instance", "kind": "member", - "___id": "T000002R039575", + "___id": "T000002R039545", "___s": true }, { @@ -355880,7 +356489,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size.NONE", "scope": "static", - "___id": "T000002R039579", + "___id": "T000002R039549", "___s": true }, { @@ -355908,7 +356517,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size.WIDTH_CONTROLS_HEIGHT", "scope": "static", - "___id": "T000002R039581", + "___id": "T000002R039551", "___s": true }, { @@ -355936,7 +356545,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size.HEIGHT_CONTROLS_WIDTH", "scope": "static", - "___id": "T000002R039583", + "___id": "T000002R039553", "___s": true }, { @@ -355964,7 +356573,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size.FIT", "scope": "static", - "___id": "T000002R039585", + "___id": "T000002R039555", "___s": true }, { @@ -355992,7 +356601,7 @@ "memberof": "Phaser.Structs.Size", "longname": "Phaser.Structs.Size.ENVELOP", "scope": "static", - "___id": "T000002R039587", + "___id": "T000002R039557", "___s": true }, { @@ -356081,7 +356690,7 @@ ], "scope": "static", "longname": "Phaser.Textures.CanvasTexture", - "___id": "T000002R039596", + "___id": "T000002R039566", "___s": true }, { @@ -356110,7 +356719,7 @@ "longname": "Phaser.Textures.CanvasTexture#canvas", "scope": "instance", "kind": "member", - "___id": "T000002R039602", + "___id": "T000002R039572", "___s": true }, { @@ -356139,7 +356748,7 @@ "longname": "Phaser.Textures.CanvasTexture#context", "scope": "instance", "kind": "member", - "___id": "T000002R039604", + "___id": "T000002R039574", "___s": true }, { @@ -356168,7 +356777,7 @@ "longname": "Phaser.Textures.CanvasTexture#width", "scope": "instance", "kind": "member", - "___id": "T000002R039607", + "___id": "T000002R039577", "___s": true }, { @@ -356197,7 +356806,7 @@ "longname": "Phaser.Textures.CanvasTexture#height", "scope": "instance", "kind": "member", - "___id": "T000002R039609", + "___id": "T000002R039579", "___s": true }, { @@ -356225,7 +356834,7 @@ "longname": "Phaser.Textures.CanvasTexture#imageData", "scope": "instance", "kind": "member", - "___id": "T000002R039611", + "___id": "T000002R039581", "___s": true }, { @@ -356253,7 +356862,7 @@ "longname": "Phaser.Textures.CanvasTexture#data", "scope": "instance", "kind": "member", - "___id": "T000002R039613", + "___id": "T000002R039583", "___s": true }, { @@ -356281,7 +356890,7 @@ "longname": "Phaser.Textures.CanvasTexture#pixels", "scope": "instance", "kind": "member", - "___id": "T000002R039616", + "___id": "T000002R039586", "___s": true }, { @@ -356309,7 +356918,7 @@ "longname": "Phaser.Textures.CanvasTexture#buffer", "scope": "instance", "kind": "member", - "___id": "T000002R039618", + "___id": "T000002R039588", "___s": true }, { @@ -356342,7 +356951,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#update", "scope": "instance", - "___id": "T000002R039625", + "___id": "T000002R039595", "___s": true }, { @@ -356441,7 +357050,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#draw", "scope": "instance", - "___id": "T000002R039634", + "___id": "T000002R039604", "___s": true }, { @@ -356558,7 +357167,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#drawFrame", "scope": "instance", - "___id": "T000002R039637", + "___id": "T000002R039607", "___s": true }, { @@ -356674,7 +357283,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#setPixel", "scope": "instance", - "___id": "T000002R039647", + "___id": "T000002R039617", "___s": true }, { @@ -356807,7 +357416,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#putData", "scope": "instance", - "___id": "T000002R039658", + "___id": "T000002R039628", "___s": true }, { @@ -356894,7 +357503,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#getData", "scope": "instance", - "___id": "T000002R039664", + "___id": "T000002R039634", "___s": true }, { @@ -356969,7 +357578,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#getPixel", "scope": "instance", - "___id": "T000002R039671", + "___id": "T000002R039641", "___s": true }, { @@ -357080,7 +357689,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#getPixels", "scope": "instance", - "___id": "T000002R039680", + "___id": "T000002R039650", "___s": true }, { @@ -357140,7 +357749,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#getIndex", "scope": "instance", - "___id": "T000002R039702", + "___id": "T000002R039672", "___s": true }, { @@ -357173,7 +357782,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#refresh", "scope": "instance", - "___id": "T000002R039706", + "___id": "T000002R039676", "___s": true }, { @@ -357206,7 +357815,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#getCanvas", "scope": "instance", - "___id": "T000002R039708", + "___id": "T000002R039678", "___s": true }, { @@ -357239,7 +357848,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#getContext", "scope": "instance", - "___id": "T000002R039710", + "___id": "T000002R039680", "___s": true }, { @@ -357347,7 +357956,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#clear", "scope": "instance", - "___id": "T000002R039712", + "___id": "T000002R039682", "___s": true }, { @@ -357409,7 +358018,7 @@ "memberof": "Phaser.Textures.CanvasTexture", "longname": "Phaser.Textures.CanvasTexture#setSize", "scope": "instance", - "___id": "T000002R039719", + "___id": "T000002R039689", "___s": true }, { @@ -357429,7 +358038,7 @@ "longname": "Phaser.Textures.CanvasTexture#destroy", "scope": "instance", "overrides": "Phaser.Textures.Texture#destroy", - "___id": "T000002R039729", + "___id": "T000002R039699", "___s": true }, { @@ -357448,7 +358057,7 @@ "since": "3.0.0", "longname": "Phaser.Textures.FilterMode", "scope": "static", - "___id": "T000002R039739", + "___id": "T000002R039709", "___s": true }, { @@ -357476,7 +358085,7 @@ "memberof": "Phaser.Textures.FilterMode", "longname": "Phaser.Textures.FilterMode.LINEAR", "scope": "static", - "___id": "T000002R039741", + "___id": "T000002R039711", "___s": true }, { @@ -357504,7 +358113,7 @@ "memberof": "Phaser.Textures.FilterMode", "longname": "Phaser.Textures.FilterMode.NEAREST", "scope": "static", - "___id": "T000002R039743", + "___id": "T000002R039713", "___s": true }, { @@ -357584,7 +358193,7 @@ ], "scope": "static", "longname": "Phaser.Textures.DynamicTexture", - "___id": "T000002R039757", + "___id": "T000002R039727", "___s": true }, { @@ -357613,7 +358222,7 @@ "longname": "Phaser.Textures.DynamicTexture#type", "scope": "instance", "kind": "member", - "___id": "T000002R039763", + "___id": "T000002R039733", "___s": true }, { @@ -357651,7 +358260,7 @@ "longname": "Phaser.Textures.DynamicTexture#renderer", "scope": "instance", "kind": "member", - "___id": "T000002R039768", + "___id": "T000002R039738", "___s": true }, { @@ -357679,7 +358288,7 @@ "longname": "Phaser.Textures.DynamicTexture#width", "scope": "instance", "kind": "member", - "___id": "T000002R039770", + "___id": "T000002R039740", "___s": true }, { @@ -357707,7 +358316,7 @@ "longname": "Phaser.Textures.DynamicTexture#height", "scope": "instance", "kind": "member", - "___id": "T000002R039772", + "___id": "T000002R039742", "___s": true }, { @@ -357736,7 +358345,7 @@ "longname": "Phaser.Textures.DynamicTexture#isDrawing", "scope": "instance", "kind": "member", - "___id": "T000002R039774", + "___id": "T000002R039744", "___s": true }, { @@ -357764,7 +358373,7 @@ "longname": "Phaser.Textures.DynamicTexture#canvas", "scope": "instance", "kind": "member", - "___id": "T000002R039776", + "___id": "T000002R039746", "___s": true }, { @@ -357793,7 +358402,7 @@ "longname": "Phaser.Textures.DynamicTexture#context", "scope": "instance", "kind": "member", - "___id": "T000002R039778", + "___id": "T000002R039748", "___s": true }, { @@ -357821,7 +358430,7 @@ "longname": "Phaser.Textures.DynamicTexture#dirty", "scope": "instance", "kind": "member", - "___id": "T000002R039781", + "___id": "T000002R039751", "___s": true }, { @@ -357849,7 +358458,7 @@ "longname": "Phaser.Textures.DynamicTexture#isSpriteTexture", "scope": "instance", "kind": "member", - "___id": "T000002R039783", + "___id": "T000002R039753", "___s": true }, { @@ -357877,7 +358486,7 @@ "longname": "Phaser.Textures.DynamicTexture#camera", "scope": "instance", "kind": "member", - "___id": "T000002R039787", + "___id": "T000002R039757", "___s": true }, { @@ -357905,7 +358514,7 @@ "longname": "Phaser.Textures.DynamicTexture#renderTarget", "scope": "instance", "kind": "member", - "___id": "T000002R039789", + "___id": "T000002R039759", "___s": true }, { @@ -357933,7 +358542,7 @@ "longname": "Phaser.Textures.DynamicTexture#pipeline", "scope": "instance", "kind": "member", - "___id": "T000002R039791", + "___id": "T000002R039761", "___s": true }, { @@ -357997,7 +358606,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#setSize", "scope": "instance", - "___id": "T000002R039793", + "___id": "T000002R039763", "___s": true }, { @@ -358031,7 +358640,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#setFromRenderTarget", "scope": "instance", - "___id": "T000002R039808", + "___id": "T000002R039778", "___s": true }, { @@ -358080,7 +358689,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#setIsSpriteTexture", "scope": "instance", - "___id": "T000002R039816", + "___id": "T000002R039786", "___s": true }, { @@ -358204,7 +358813,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#fill", "scope": "instance", - "___id": "T000002R039819", + "___id": "T000002R039789", "___s": true }, { @@ -358300,7 +358909,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#clear", "scope": "instance", - "___id": "T000002R039840", + "___id": "T000002R039810", "___s": true }, { @@ -358417,7 +359026,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#stamp", "scope": "instance", - "___id": "T000002R039845", + "___id": "T000002R039815", "___s": true }, { @@ -358496,7 +359105,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#erase", "scope": "instance", - "___id": "T000002R039864", + "___id": "T000002R039834", "___s": true }, { @@ -358605,7 +359214,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#draw", "scope": "instance", - "___id": "T000002R039868", + "___id": "T000002R039838", "___s": true }, { @@ -358738,7 +359347,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#drawFrame", "scope": "instance", - "___id": "T000002R039870", + "___id": "T000002R039840", "___s": true }, { @@ -358916,7 +359525,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#repeat", "scope": "instance", - "___id": "T000002R039872", + "___id": "T000002R039842", "___s": true }, { @@ -358950,7 +359559,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#beginDraw", "scope": "instance", - "___id": "T000002R039919", + "___id": "T000002R039889", "___s": true }, { @@ -359059,7 +359668,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#batchDraw", "scope": "instance", - "___id": "T000002R039925", + "___id": "T000002R039895", "___s": true }, { @@ -359192,7 +359801,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#batchDrawFrame", "scope": "instance", - "___id": "T000002R039928", + "___id": "T000002R039898", "___s": true }, { @@ -359243,7 +359852,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#endDraw", "scope": "instance", - "___id": "T000002R039935", + "___id": "T000002R039905", "___s": true }, { @@ -359374,7 +359983,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#snapshotArea", "scope": "instance", - "___id": "T000002R039984", + "___id": "T000002R039954", "___s": true }, { @@ -359453,7 +360062,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#snapshot", "scope": "instance", - "___id": "T000002R039986", + "___id": "T000002R039956", "___s": true }, { @@ -359528,7 +360137,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#snapshotPixel", "scope": "instance", - "___id": "T000002R039988", + "___id": "T000002R039958", "___s": true }, { @@ -359563,7 +360172,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#getWebGLTexture", "scope": "instance", - "___id": "T000002R039990", + "___id": "T000002R039960", "___s": true }, { @@ -359636,7 +360245,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#renderWebGL", "scope": "instance", - "___id": "T000002R039992", + "___id": "T000002R039962", "___s": true }, { @@ -359706,7 +360315,7 @@ "memberof": "Phaser.Textures.DynamicTexture", "longname": "Phaser.Textures.DynamicTexture#renderCanvas", "scope": "instance", - "___id": "T000002R039995", + "___id": "T000002R039965", "___s": true }, { @@ -359726,7 +360335,7 @@ "longname": "Phaser.Textures.DynamicTexture#destroy", "scope": "instance", "overrides": "Phaser.Textures.Texture#destroy", - "___id": "T000002R039997", + "___id": "T000002R039967", "___s": true }, { @@ -359782,7 +360391,7 @@ "memberof": "Phaser.Textures.Events", "longname": "Phaser.Textures.Events#event:ADD", "scope": "instance", - "___id": "T000002R040004", + "___id": "T000002R039974", "___s": true }, { @@ -359825,7 +360434,7 @@ "memberof": "Phaser.Textures.Events", "longname": "Phaser.Textures.Events#event:ADD_KEY", "scope": "instance", - "___id": "T000002R040006", + "___id": "T000002R039976", "___s": true }, { @@ -359868,7 +360477,7 @@ "memberof": "Phaser.Textures.Events", "longname": "Phaser.Textures.Events#event:ERROR", "scope": "instance", - "___id": "T000002R040008", + "___id": "T000002R039978", "___s": true }, { @@ -359885,7 +360494,7 @@ "memberof": "Phaser.Textures", "longname": "Phaser.Textures.Events", "scope": "static", - "___id": "T000002R040010", + "___id": "T000002R039980", "___s": true }, { @@ -359941,7 +360550,7 @@ "memberof": "Phaser.Textures.Events", "longname": "Phaser.Textures.Events#event:LOAD", "scope": "instance", - "___id": "T000002R040019", + "___id": "T000002R039989", "___s": true }, { @@ -359969,7 +360578,7 @@ "memberof": "Phaser.Textures.Events", "longname": "Phaser.Textures.Events#event:READY", "scope": "instance", - "___id": "T000002R040021", + "___id": "T000002R039991", "___s": true }, { @@ -360012,7 +360621,7 @@ "memberof": "Phaser.Textures.Events", "longname": "Phaser.Textures.Events#event:REMOVE", "scope": "instance", - "___id": "T000002R040023", + "___id": "T000002R039993", "___s": true }, { @@ -360040,7 +360649,7 @@ "memberof": "Phaser.Textures.Events", "longname": "Phaser.Textures.Events#event:REMOVE_KEY", "scope": "instance", - "___id": "T000002R040025", + "___id": "T000002R039995", "___s": true }, { @@ -360162,7 +360771,7 @@ ], "scope": "static", "longname": "Phaser.Textures.Frame", - "___id": "T000002R040030", + "___id": "T000002R040000", "___s": true }, { @@ -360190,7 +360799,7 @@ "longname": "Phaser.Textures.Frame#texture", "scope": "instance", "kind": "member", - "___id": "T000002R040033", + "___id": "T000002R040003", "___s": true }, { @@ -360218,7 +360827,7 @@ "longname": "Phaser.Textures.Frame#name", "scope": "instance", "kind": "member", - "___id": "T000002R040035", + "___id": "T000002R040005", "___s": true }, { @@ -360246,7 +360855,7 @@ "longname": "Phaser.Textures.Frame#source", "scope": "instance", "kind": "member", - "___id": "T000002R040037", + "___id": "T000002R040007", "___s": true }, { @@ -360274,7 +360883,7 @@ "longname": "Phaser.Textures.Frame#sourceIndex", "scope": "instance", "kind": "member", - "___id": "T000002R040039", + "___id": "T000002R040009", "___s": true }, { @@ -360302,7 +360911,7 @@ "longname": "Phaser.Textures.Frame#cutX", "scope": "instance", "kind": "member", - "___id": "T000002R040041", + "___id": "T000002R040011", "___s": true }, { @@ -360330,7 +360939,7 @@ "longname": "Phaser.Textures.Frame#cutY", "scope": "instance", "kind": "member", - "___id": "T000002R040043", + "___id": "T000002R040013", "___s": true }, { @@ -360358,7 +360967,7 @@ "longname": "Phaser.Textures.Frame#cutWidth", "scope": "instance", "kind": "member", - "___id": "T000002R040045", + "___id": "T000002R040015", "___s": true }, { @@ -360386,7 +360995,7 @@ "longname": "Phaser.Textures.Frame#cutHeight", "scope": "instance", "kind": "member", - "___id": "T000002R040047", + "___id": "T000002R040017", "___s": true }, { @@ -360415,7 +361024,7 @@ "longname": "Phaser.Textures.Frame#x", "scope": "instance", "kind": "member", - "___id": "T000002R040049", + "___id": "T000002R040019", "___s": true }, { @@ -360444,7 +361053,7 @@ "longname": "Phaser.Textures.Frame#y", "scope": "instance", "kind": "member", - "___id": "T000002R040051", + "___id": "T000002R040021", "___s": true }, { @@ -360472,7 +361081,7 @@ "longname": "Phaser.Textures.Frame#width", "scope": "instance", "kind": "member", - "___id": "T000002R040053", + "___id": "T000002R040023", "___s": true }, { @@ -360500,7 +361109,7 @@ "longname": "Phaser.Textures.Frame#height", "scope": "instance", "kind": "member", - "___id": "T000002R040055", + "___id": "T000002R040025", "___s": true }, { @@ -360528,7 +361137,7 @@ "longname": "Phaser.Textures.Frame#halfWidth", "scope": "instance", "kind": "member", - "___id": "T000002R040057", + "___id": "T000002R040027", "___s": true }, { @@ -360556,7 +361165,7 @@ "longname": "Phaser.Textures.Frame#halfHeight", "scope": "instance", "kind": "member", - "___id": "T000002R040059", + "___id": "T000002R040029", "___s": true }, { @@ -360584,7 +361193,7 @@ "longname": "Phaser.Textures.Frame#centerX", "scope": "instance", "kind": "member", - "___id": "T000002R040061", + "___id": "T000002R040031", "___s": true }, { @@ -360612,7 +361221,7 @@ "longname": "Phaser.Textures.Frame#centerY", "scope": "instance", "kind": "member", - "___id": "T000002R040063", + "___id": "T000002R040033", "___s": true }, { @@ -360641,7 +361250,7 @@ "longname": "Phaser.Textures.Frame#pivotX", "scope": "instance", "kind": "member", - "___id": "T000002R040065", + "___id": "T000002R040035", "___s": true }, { @@ -360670,7 +361279,7 @@ "longname": "Phaser.Textures.Frame#pivotY", "scope": "instance", "kind": "member", - "___id": "T000002R040067", + "___id": "T000002R040037", "___s": true }, { @@ -360699,7 +361308,7 @@ "longname": "Phaser.Textures.Frame#customPivot", "scope": "instance", "kind": "member", - "___id": "T000002R040069", + "___id": "T000002R040039", "___s": true }, { @@ -360728,7 +361337,7 @@ "longname": "Phaser.Textures.Frame#rotated", "scope": "instance", "kind": "member", - "___id": "T000002R040071", + "___id": "T000002R040041", "___s": true }, { @@ -360757,7 +361366,7 @@ "longname": "Phaser.Textures.Frame#autoRound", "scope": "instance", "kind": "member", - "___id": "T000002R040073", + "___id": "T000002R040043", "___s": true }, { @@ -360785,7 +361394,7 @@ "longname": "Phaser.Textures.Frame#customData", "scope": "instance", "kind": "member", - "___id": "T000002R040075", + "___id": "T000002R040045", "___s": true }, { @@ -360814,7 +361423,7 @@ "longname": "Phaser.Textures.Frame#u0", "scope": "instance", "kind": "member", - "___id": "T000002R040077", + "___id": "T000002R040047", "___s": true }, { @@ -360843,7 +361452,7 @@ "longname": "Phaser.Textures.Frame#v0", "scope": "instance", "kind": "member", - "___id": "T000002R040079", + "___id": "T000002R040049", "___s": true }, { @@ -360872,7 +361481,7 @@ "longname": "Phaser.Textures.Frame#u1", "scope": "instance", "kind": "member", - "___id": "T000002R040081", + "___id": "T000002R040051", "___s": true }, { @@ -360901,7 +361510,7 @@ "longname": "Phaser.Textures.Frame#v1", "scope": "instance", "kind": "member", - "___id": "T000002R040083", + "___id": "T000002R040053", "___s": true }, { @@ -360967,7 +361576,7 @@ "memberof": "Phaser.Textures.Frame", "longname": "Phaser.Textures.Frame#setCutPosition", "scope": "instance", - "___id": "T000002R040118", + "___id": "T000002R040088", "___s": true }, { @@ -361029,7 +361638,7 @@ "memberof": "Phaser.Textures.Frame", "longname": "Phaser.Textures.Frame#setCutSize", "scope": "instance", - "___id": "T000002R040124", + "___id": "T000002R040094", "___s": true }, { @@ -361121,7 +361730,7 @@ "memberof": "Phaser.Textures.Frame", "longname": "Phaser.Textures.Frame#setSize", "scope": "instance", - "___id": "T000002R040128", + "___id": "T000002R040098", "___s": true }, { @@ -361235,7 +361844,7 @@ "memberof": "Phaser.Textures.Frame", "longname": "Phaser.Textures.Frame#setTrim", "scope": "instance", - "___id": "T000002R040156", + "___id": "T000002R040126", "___s": true }, { @@ -361323,7 +361932,7 @@ "memberof": "Phaser.Textures.Frame", "longname": "Phaser.Textures.Frame#setScale9", "scope": "instance", - "___id": "T000002R040177", + "___id": "T000002R040147", "___s": true }, { @@ -361449,7 +362058,7 @@ "memberof": "Phaser.Textures.Frame", "longname": "Phaser.Textures.Frame#setCropUVs", "scope": "instance", - "___id": "T000002R040186", + "___id": "T000002R040156", "___s": true }, { @@ -361523,7 +362132,7 @@ "memberof": "Phaser.Textures.Frame", "longname": "Phaser.Textures.Frame#updateCropUVs", "scope": "instance", - "___id": "T000002R040245", + "___id": "T000002R040215", "___s": true }, { @@ -361637,7 +362246,7 @@ "memberof": "Phaser.Textures.Frame", "longname": "Phaser.Textures.Frame#setUVs", "scope": "instance", - "___id": "T000002R040247", + "___id": "T000002R040217", "___s": true }, { @@ -361671,7 +362280,7 @@ "memberof": "Phaser.Textures.Frame", "longname": "Phaser.Textures.Frame#updateUVs", "scope": "instance", - "___id": "T000002R040256", + "___id": "T000002R040226", "___s": true }, { @@ -361705,7 +362314,7 @@ "memberof": "Phaser.Textures.Frame", "longname": "Phaser.Textures.Frame#updateUVsInverted", "scope": "instance", - "___id": "T000002R040271", + "___id": "T000002R040241", "___s": true }, { @@ -361738,7 +362347,7 @@ "memberof": "Phaser.Textures.Frame", "longname": "Phaser.Textures.Frame#clone", "scope": "instance", - "___id": "T000002R040279", + "___id": "T000002R040249", "___s": true }, { @@ -361757,7 +362366,7 @@ "memberof": "Phaser.Textures.Frame", "longname": "Phaser.Textures.Frame#destroy", "scope": "instance", - "___id": "T000002R040296", + "___id": "T000002R040266", "___s": true }, { @@ -361786,7 +362395,7 @@ "longname": "Phaser.Textures.Frame#glTexture", "scope": "instance", "kind": "member", - "___id": "T000002R040302", + "___id": "T000002R040272", "___s": true }, { @@ -361815,7 +362424,7 @@ "longname": "Phaser.Textures.Frame#realWidth", "scope": "instance", "kind": "member", - "___id": "T000002R040305", + "___id": "T000002R040275", "___s": true }, { @@ -361844,7 +362453,7 @@ "longname": "Phaser.Textures.Frame#realHeight", "scope": "instance", "kind": "member", - "___id": "T000002R040308", + "___id": "T000002R040278", "___s": true }, { @@ -361873,7 +362482,7 @@ "longname": "Phaser.Textures.Frame#radius", "scope": "instance", "kind": "member", - "___id": "T000002R040311", + "___id": "T000002R040281", "___s": true }, { @@ -361902,7 +362511,7 @@ "longname": "Phaser.Textures.Frame#trimmed", "scope": "instance", "kind": "member", - "___id": "T000002R040314", + "___id": "T000002R040284", "___s": true }, { @@ -361931,7 +362540,7 @@ "longname": "Phaser.Textures.Frame#scale9", "scope": "instance", "kind": "member", - "___id": "T000002R040317", + "___id": "T000002R040287", "___s": true }, { @@ -361960,7 +362569,7 @@ "longname": "Phaser.Textures.Frame#is3Slice", "scope": "instance", "kind": "member", - "___id": "T000002R040320", + "___id": "T000002R040290", "___s": true }, { @@ -361989,7 +362598,7 @@ "longname": "Phaser.Textures.Frame#canvasData", "scope": "instance", "kind": "member", - "___id": "T000002R040323", + "___id": "T000002R040293", "___s": true }, { @@ -362006,7 +362615,7 @@ "memberof": "Phaser", "longname": "Phaser.Textures", "scope": "static", - "___id": "T000002R040329", + "___id": "T000002R040299", "___s": true }, { @@ -362034,7 +362643,7 @@ "memberof": "Phaser.Textures", "longname": "Phaser.Textures.LINEAR", "scope": "static", - "___id": "T000002R040330", + "___id": "T000002R040300", "___s": true }, { @@ -362062,7 +362671,7 @@ "memberof": "Phaser.Textures", "longname": "Phaser.Textures.NEAREST", "scope": "static", - "___id": "T000002R040331", + "___id": "T000002R040301", "___s": true }, { @@ -362079,7 +362688,7 @@ "memberof": "Phaser.Textures", "longname": "Phaser.Textures.Parsers", "scope": "static", - "___id": "T000002R040370", + "___id": "T000002R040340", "___s": true }, { @@ -362127,7 +362736,7 @@ ], "longname": "Phaser.Textures.Parsers.KTXParser", "scope": "static", - "___id": "T000002R040420", + "___id": "T000002R040390", "___s": true }, { @@ -362175,7 +362784,7 @@ ], "longname": "Phaser.Textures.Parsers.PVRParser", "scope": "static", - "___id": "T000002R040571", + "___id": "T000002R040541", "___s": true }, { @@ -362223,7 +362832,7 @@ "memberof": "Phaser.Textures.Parsers", "longname": "Phaser.Textures.Parsers.verifyCompressedTexture", "scope": "static", - "___id": "T000002R040731", + "___id": "T000002R040701", "___s": true }, { @@ -362354,7 +362963,7 @@ ], "scope": "static", "longname": "Phaser.Textures.Texture", - "___id": "T000002R040815", + "___id": "T000002R040785", "___s": true }, { @@ -362382,7 +362991,7 @@ "longname": "Phaser.Textures.Texture#manager", "scope": "instance", "kind": "member", - "___id": "T000002R040819", + "___id": "T000002R040789", "___s": true }, { @@ -362410,7 +363019,7 @@ "longname": "Phaser.Textures.Texture#key", "scope": "instance", "kind": "member", - "___id": "T000002R040821", + "___id": "T000002R040791", "___s": true }, { @@ -362447,7 +363056,7 @@ "longname": "Phaser.Textures.Texture#source", "scope": "instance", "kind": "member", - "___id": "T000002R040823", + "___id": "T000002R040793", "___s": true }, { @@ -362475,7 +363084,7 @@ "longname": "Phaser.Textures.Texture#dataSource", "scope": "instance", "kind": "member", - "___id": "T000002R040825", + "___id": "T000002R040795", "___s": true }, { @@ -362503,7 +363112,7 @@ "longname": "Phaser.Textures.Texture#frames", "scope": "instance", "kind": "member", - "___id": "T000002R040827", + "___id": "T000002R040797", "___s": true }, { @@ -362531,7 +363140,7 @@ "longname": "Phaser.Textures.Texture#customData", "scope": "instance", "kind": "member", - "___id": "T000002R040829", + "___id": "T000002R040799", "___s": true }, { @@ -362559,7 +363168,7 @@ "longname": "Phaser.Textures.Texture#firstFrame", "scope": "instance", "kind": "member", - "___id": "T000002R040831", + "___id": "T000002R040801", "___s": true }, { @@ -362588,7 +363197,7 @@ "longname": "Phaser.Textures.Texture#frameTotal", "scope": "instance", "kind": "member", - "___id": "T000002R040833", + "___id": "T000002R040803", "___s": true }, { @@ -362713,7 +363322,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#add", "scope": "instance", - "___id": "T000002R040836", + "___id": "T000002R040806", "___s": true }, { @@ -362761,7 +363370,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#remove", "scope": "instance", - "___id": "T000002R040841", + "___id": "T000002R040811", "___s": true }, { @@ -362809,7 +363418,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#has", "scope": "instance", - "___id": "T000002R040844", + "___id": "T000002R040814", "___s": true }, { @@ -362868,7 +363477,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#get", "scope": "instance", - "___id": "T000002R040846", + "___id": "T000002R040816", "___s": true }, { @@ -362916,7 +363525,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#getTextureSourceIndex", "scope": "instance", - "___id": "T000002R040851", + "___id": "T000002R040821", "___s": true }, { @@ -362988,7 +363597,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#getFramesFromTextureSource", "scope": "instance", - "___id": "T000002R040854", + "___id": "T000002R040824", "___s": true }, { @@ -363038,7 +363647,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#getFrameBounds", "scope": "instance", - "___id": "T000002R040860", + "___id": "T000002R040830", "___s": true }, { @@ -363097,7 +363706,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#getFrameNames", "scope": "instance", - "___id": "T000002R040879", + "___id": "T000002R040849", "___s": true }, { @@ -363171,7 +363780,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#getSourceImage", "scope": "instance", - "___id": "T000002R040884", + "___id": "T000002R040854", "___s": true }, { @@ -363240,7 +363849,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#getDataSourceImage", "scope": "instance", - "___id": "T000002R040888", + "___id": "T000002R040858", "___s": true }, { @@ -363312,7 +363921,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#setDataSource", "scope": "instance", - "___id": "T000002R040895", + "___id": "T000002R040865", "___s": true }, { @@ -363346,7 +363955,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#setFilter", "scope": "instance", - "___id": "T000002R040900", + "___id": "T000002R040870", "___s": true }, { @@ -363365,7 +363974,7 @@ "memberof": "Phaser.Textures.Texture", "longname": "Phaser.Textures.Texture#destroy", "scope": "instance", - "___id": "T000002R040905", + "___id": "T000002R040875", "___s": true }, { @@ -363416,7 +364025,7 @@ ], "longname": "EachTextureCallback", "scope": "global", - "___id": "T000002R040936", + "___id": "T000002R040906", "___s": true }, { @@ -363453,7 +364062,7 @@ ], "scope": "static", "longname": "Phaser.Textures.TextureManager", - "___id": "T000002R040937", + "___id": "T000002R040907", "___s": true }, { @@ -363481,7 +364090,7 @@ "longname": "Phaser.Textures.TextureManager#game", "scope": "instance", "kind": "member", - "___id": "T000002R040941", + "___id": "T000002R040911", "___s": true }, { @@ -363510,7 +364119,7 @@ "longname": "Phaser.Textures.TextureManager#name", "scope": "instance", "kind": "member", - "___id": "T000002R040943", + "___id": "T000002R040913", "___s": true }, { @@ -363539,7 +364148,7 @@ "longname": "Phaser.Textures.TextureManager#list", "scope": "instance", "kind": "member", - "___id": "T000002R040945", + "___id": "T000002R040915", "___s": true }, { @@ -363568,7 +364177,7 @@ "longname": "Phaser.Textures.TextureManager#stamp", "scope": "instance", "kind": "member", - "___id": "T000002R040954", + "___id": "T000002R040924", "___s": true }, { @@ -363596,7 +364205,7 @@ "longname": "Phaser.Textures.TextureManager#stampCrop", "scope": "instance", "kind": "member", - "___id": "T000002R040956", + "___id": "T000002R040926", "___s": true }, { @@ -363625,7 +364234,7 @@ "longname": "Phaser.Textures.TextureManager#silentWarnings", "scope": "instance", "kind": "member", - "___id": "T000002R040958", + "___id": "T000002R040928", "___s": true }, { @@ -363673,7 +364282,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#checkKey", "scope": "instance", - "___id": "T000002R040967", + "___id": "T000002R040937", "___s": true }, { @@ -363734,7 +364343,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#remove", "scope": "instance", - "___id": "T000002R040969", + "___id": "T000002R040939", "___s": true }, { @@ -363782,7 +364391,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#removeKey", "scope": "instance", - "___id": "T000002R040973", + "___id": "T000002R040943", "___s": true }, { @@ -363848,7 +364457,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addBase64", "scope": "instance", - "___id": "T000002R040975", + "___id": "T000002R040945", "___s": true }, { @@ -363950,7 +364559,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#getBase64", "scope": "instance", - "___id": "T000002R040983", + "___id": "T000002R040953", "___s": true }, { @@ -364040,7 +364649,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addImage", "scope": "instance", - "___id": "T000002R040994", + "___id": "T000002R040964", "___s": true }, { @@ -364106,7 +364715,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addGLTexture", "scope": "instance", - "___id": "T000002R040998", + "___id": "T000002R040968", "___s": true }, { @@ -364186,7 +364795,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addCompressedTexture", "scope": "instance", - "___id": "T000002R041004", + "___id": "T000002R040974", "___s": true }, { @@ -364252,7 +364861,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addRenderTexture", "scope": "instance", - "___id": "T000002R041010", + "___id": "T000002R040980", "___s": true }, { @@ -364315,7 +364924,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#generate", "scope": "instance", - "___id": "T000002R041014", + "___id": "T000002R040984", "___s": true }, { @@ -364395,7 +365004,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#createCanvas", "scope": "instance", - "___id": "T000002R041018", + "___id": "T000002R040988", "___s": true }, { @@ -364476,7 +365085,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addCanvas", "scope": "instance", - "___id": "T000002R041023", + "___id": "T000002R040993", "___s": true }, { @@ -364569,7 +365178,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addDynamicTexture", "scope": "instance", - "___id": "T000002R041030", + "___id": "T000002R041000", "___s": true }, { @@ -364740,7 +365349,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addAtlas", "scope": "instance", - "___id": "T000002R041038", + "___id": "T000002R041008", "___s": true }, { @@ -364914,7 +365523,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addAtlasJSONArray", "scope": "instance", - "___id": "T000002R041040", + "___id": "T000002R041010", "___s": true }, { @@ -365088,7 +365697,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addAtlasJSONHash", "scope": "instance", - "___id": "T000002R041049", + "___id": "T000002R041019", "___s": true }, { @@ -365229,7 +365838,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addAtlasXML", "scope": "instance", - "___id": "T000002R041056", + "___id": "T000002R041026", "___s": true }, { @@ -365360,7 +365969,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addUnityAtlas", "scope": "instance", - "___id": "T000002R041062", + "___id": "T000002R041032", "___s": true }, { @@ -365473,7 +366082,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addSpriteSheet", "scope": "instance", - "___id": "T000002R041068", + "___id": "T000002R041038", "___s": true }, { @@ -365539,7 +366148,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addSpriteSheetFromAtlas", "scope": "instance", - "___id": "T000002R041076", + "___id": "T000002R041046", "___s": true }, { @@ -365631,7 +366240,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#addUint8Array", "scope": "instance", - "___id": "T000002R041085", + "___id": "T000002R041055", "___s": true }, { @@ -365765,7 +366374,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#create", "scope": "instance", - "___id": "T000002R041088", + "___id": "T000002R041058", "___s": true }, { @@ -365813,7 +366422,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#exists", "scope": "instance", - "___id": "T000002R041093", + "___id": "T000002R041063", "___s": true }, { @@ -365876,7 +366485,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#get", "scope": "instance", - "___id": "T000002R041095", + "___id": "T000002R041065", "___s": true }, { @@ -365947,7 +366556,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#cloneFrame", "scope": "instance", - "___id": "T000002R041098", + "___id": "T000002R041068", "___s": true }, { @@ -366019,7 +366628,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#getFrame", "scope": "instance", - "___id": "T000002R041100", + "___id": "T000002R041070", "___s": true }, { @@ -366092,7 +366701,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#parseFrame", "scope": "instance", - "___id": "T000002R041102", + "___id": "T000002R041072", "___s": true }, { @@ -366134,7 +366743,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#getTextureKeys", "scope": "instance", - "___id": "T000002R041104", + "___id": "T000002R041074", "___s": true }, { @@ -366234,7 +366843,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#getPixel", "scope": "instance", - "___id": "T000002R041108", + "___id": "T000002R041078", "___s": true }, { @@ -366332,7 +366941,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#getPixelAlpha", "scope": "instance", - "___id": "T000002R041118", + "___id": "T000002R041088", "___s": true }, { @@ -366417,7 +367026,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#setTexture", "scope": "instance", - "___id": "T000002R041128", + "___id": "T000002R041098", "___s": true }, { @@ -366478,7 +367087,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#renameTexture", "scope": "instance", - "___id": "T000002R041132", + "___id": "T000002R041102", "___s": true }, { @@ -366540,7 +367149,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#each", "scope": "instance", - "___id": "T000002R041137", + "___id": "T000002R041107", "___s": true }, { @@ -366605,7 +367214,7 @@ "memberof": "Phaser.Textures.TextureManager", "longname": "Phaser.Textures.TextureManager#resetStamp", "scope": "instance", - "___id": "T000002R041143", + "___id": "T000002R041113", "___s": true }, { @@ -366625,7 +367234,7 @@ "longname": "Phaser.Textures.TextureManager#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R041148", + "___id": "T000002R041118", "___s": true }, { @@ -366750,7 +367359,7 @@ ], "scope": "static", "longname": "Phaser.Textures.TextureSource", - "___id": "T000002R041160", + "___id": "T000002R041130", "___s": true }, { @@ -366788,7 +367397,7 @@ "longname": "Phaser.Textures.TextureSource#renderer", "scope": "instance", "kind": "member", - "___id": "T000002R041165", + "___id": "T000002R041135", "___s": true }, { @@ -366816,7 +367425,7 @@ "longname": "Phaser.Textures.TextureSource#texture", "scope": "instance", "kind": "member", - "___id": "T000002R041167", + "___id": "T000002R041137", "___s": true }, { @@ -366879,7 +367488,7 @@ "longname": "Phaser.Textures.TextureSource#source", "scope": "instance", "kind": "member", - "___id": "T000002R041169", + "___id": "T000002R041139", "___s": true }, { @@ -366927,7 +367536,7 @@ "longname": "Phaser.Textures.TextureSource#image", "scope": "instance", "kind": "member", - "___id": "T000002R041171", + "___id": "T000002R041141", "___s": true }, { @@ -366956,7 +367565,7 @@ "longname": "Phaser.Textures.TextureSource#compressionAlgorithm", "scope": "instance", "kind": "member", - "___id": "T000002R041173", + "___id": "T000002R041143", "___s": true }, { @@ -366985,7 +367594,7 @@ "longname": "Phaser.Textures.TextureSource#resolution", "scope": "instance", "kind": "member", - "___id": "T000002R041175", + "___id": "T000002R041145", "___s": true }, { @@ -367013,7 +367622,7 @@ "longname": "Phaser.Textures.TextureSource#width", "scope": "instance", "kind": "member", - "___id": "T000002R041177", + "___id": "T000002R041147", "___s": true }, { @@ -367041,7 +367650,7 @@ "longname": "Phaser.Textures.TextureSource#height", "scope": "instance", "kind": "member", - "___id": "T000002R041179", + "___id": "T000002R041149", "___s": true }, { @@ -367069,7 +367678,7 @@ "longname": "Phaser.Textures.TextureSource#scaleMode", "scope": "instance", "kind": "member", - "___id": "T000002R041181", + "___id": "T000002R041151", "___s": true }, { @@ -367097,7 +367706,7 @@ "longname": "Phaser.Textures.TextureSource#isCanvas", "scope": "instance", "kind": "member", - "___id": "T000002R041183", + "___id": "T000002R041153", "___s": true }, { @@ -367125,7 +367734,7 @@ "longname": "Phaser.Textures.TextureSource#isVideo", "scope": "instance", "kind": "member", - "___id": "T000002R041185", + "___id": "T000002R041155", "___s": true }, { @@ -367153,7 +367762,7 @@ "longname": "Phaser.Textures.TextureSource#isRenderTexture", "scope": "instance", "kind": "member", - "___id": "T000002R041187", + "___id": "T000002R041157", "___s": true }, { @@ -367181,7 +367790,7 @@ "longname": "Phaser.Textures.TextureSource#isGLTexture", "scope": "instance", "kind": "member", - "___id": "T000002R041189", + "___id": "T000002R041159", "___s": true }, { @@ -367209,7 +367818,7 @@ "longname": "Phaser.Textures.TextureSource#isPowerOf2", "scope": "instance", "kind": "member", - "___id": "T000002R041191", + "___id": "T000002R041161", "___s": true }, { @@ -367240,7 +367849,7 @@ "longname": "Phaser.Textures.TextureSource#glTexture", "scope": "instance", "kind": "member", - "___id": "T000002R041193", + "___id": "T000002R041163", "___s": true }, { @@ -367268,7 +367877,7 @@ "longname": "Phaser.Textures.TextureSource#flipY", "scope": "instance", "kind": "member", - "___id": "T000002R041195", + "___id": "T000002R041165", "___s": true }, { @@ -367302,7 +367911,7 @@ "memberof": "Phaser.Textures.TextureSource", "longname": "Phaser.Textures.TextureSource#init", "scope": "instance", - "___id": "T000002R041197", + "___id": "T000002R041167", "___s": true }, { @@ -367336,7 +367945,7 @@ "memberof": "Phaser.Textures.TextureSource", "longname": "Phaser.Textures.TextureSource#setFilter", "scope": "instance", - "___id": "T000002R041216", + "___id": "T000002R041186", "___s": true }, { @@ -367372,7 +367981,7 @@ "memberof": "Phaser.Textures.TextureSource", "longname": "Phaser.Textures.TextureSource#setFlipY", "scope": "instance", - "___id": "T000002R041219", + "___id": "T000002R041189", "___s": true }, { @@ -367391,7 +368000,7 @@ "memberof": "Phaser.Textures.TextureSource", "longname": "Phaser.Textures.TextureSource#update", "scope": "instance", - "___id": "T000002R041223", + "___id": "T000002R041193", "___s": true }, { @@ -367410,7 +368019,7 @@ "memberof": "Phaser.Textures.TextureSource", "longname": "Phaser.Textures.TextureSource#destroy", "scope": "instance", - "___id": "T000002R041229", + "___id": "T000002R041199", "___s": true }, { @@ -367527,7 +368136,7 @@ "memberof": "Phaser.Types.Textures", "longname": "Phaser.Types.Textures.CompressedTextureData", "scope": "static", - "___id": "T000002R041237", + "___id": "T000002R041207", "___s": true }, { @@ -367544,7 +368153,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Textures", "scope": "static", - "___id": "T000002R041238", + "___id": "T000002R041208", "___s": true }, { @@ -367613,7 +368222,7 @@ "memberof": "Phaser.Types.Textures", "longname": "Phaser.Types.Textures.MipmapType", "scope": "static", - "___id": "T000002R041239", + "___id": "T000002R041209", "___s": true }, { @@ -367695,7 +368304,7 @@ "memberof": "Phaser.Types.Textures", "longname": "Phaser.Types.Textures.PixelConfig", "scope": "static", - "___id": "T000002R041240", + "___id": "T000002R041210", "___s": true }, { @@ -367811,7 +368420,7 @@ "memberof": "Phaser.Types.Textures", "longname": "Phaser.Types.Textures.SpriteSheetConfig", "scope": "static", - "___id": "T000002R041241", + "___id": "T000002R041211", "___s": true }, { @@ -367953,7 +368562,7 @@ "memberof": "Phaser.Types.Textures", "longname": "Phaser.Types.Textures.SpriteSheetFromAtlasConfig", "scope": "static", - "___id": "T000002R041242", + "___id": "T000002R041212", "___s": true }, { @@ -368178,7 +368787,7 @@ "memberof": "Phaser.Types.Textures", "longname": "Phaser.Types.Textures.StampConfig", "scope": "static", - "___id": "T000002R041243", + "___id": "T000002R041213", "___s": true }, { @@ -368238,7 +368847,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.CalculateFacesAt", "scope": "static", - "___id": "T000002R041245", + "___id": "T000002R041215", "___s": true }, { @@ -368324,7 +368933,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.CalculateFacesWithin", "scope": "static", - "___id": "T000002R041268", + "___id": "T000002R041238", "___s": true }, { @@ -368412,7 +369021,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.CheckIsoBounds", "scope": "static", - "___id": "T000002R041288", + "___id": "T000002R041258", "___s": true }, { @@ -368537,7 +369146,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.Copy", "scope": "static", - "___id": "T000002R041299", + "___id": "T000002R041269", "___s": true }, { @@ -368699,7 +369308,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.CreateFromTiles", "scope": "static", - "___id": "T000002R041320", + "___id": "T000002R041290", "___s": true }, { @@ -368760,7 +369369,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.CullBounds", "scope": "static", - "___id": "T000002R041353", + "___id": "T000002R041323", "___s": true }, { @@ -368859,7 +369468,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.CullTiles", "scope": "static", - "___id": "T000002R041366", + "___id": "T000002R041336", "___s": true }, { @@ -368971,7 +369580,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.Fill", "scope": "static", - "___id": "T000002R041381", + "___id": "T000002R041351", "___s": true }, { @@ -369119,7 +369728,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.FilterTiles", "scope": "static", - "___id": "T000002R041389", + "___id": "T000002R041359", "___s": true }, { @@ -369208,7 +369817,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.FindByIndex", "scope": "static", - "___id": "T000002R041393", + "___id": "T000002R041363", "___s": true }, { @@ -369293,7 +369902,7 @@ ], "longname": "FindTileCallback", "scope": "global", - "___id": "T000002R041411", + "___id": "T000002R041381", "___s": true }, { @@ -369434,7 +370043,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.FindTile", "scope": "static", - "___id": "T000002R041412", + "___id": "T000002R041382", "___s": true }, { @@ -369505,7 +370114,7 @@ ], "longname": "EachTileCallback", "scope": "global", - "___id": "T000002R041417", + "___id": "T000002R041387", "___s": true }, { @@ -369630,7 +370239,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.ForEachTile", "scope": "static", - "___id": "T000002R041418", + "___id": "T000002R041388", "___s": true }, { @@ -369678,7 +370287,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetCullTilesFunction", "scope": "static", - "___id": "T000002R041428", + "___id": "T000002R041398", "___s": true }, { @@ -369765,7 +370374,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetTileAt", "scope": "static", - "___id": "T000002R041432", + "___id": "T000002R041402", "___s": true }, { @@ -369865,7 +370474,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetTileAtWorldXY", "scope": "static", - "___id": "T000002R041439", + "___id": "T000002R041409", "___s": true }, { @@ -369961,7 +370570,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetTileCorners", "scope": "static", - "___id": "T000002R041443", + "___id": "T000002R041413", "___s": true }, { @@ -370009,7 +370618,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetTileCornersFunction", "scope": "static", - "___id": "T000002R041462", + "___id": "T000002R041432", "___s": true }, { @@ -370131,7 +370740,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetTilesWithin", "scope": "static", - "___id": "T000002R041466", + "___id": "T000002R041436", "___s": true }, { @@ -370247,7 +370856,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetTilesWithinShape", "scope": "static", - "___id": "T000002R041496", + "___id": "T000002R041466", "___s": true }, { @@ -370382,7 +370991,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetTilesWithinWorldXY", "scope": "static", - "___id": "T000002R041525", + "___id": "T000002R041495", "___s": true }, { @@ -370430,7 +371039,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetTileToWorldXFunction", "scope": "static", - "___id": "T000002R041536", + "___id": "T000002R041506", "___s": true }, { @@ -370478,7 +371087,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetTileToWorldXYFunction", "scope": "static", - "___id": "T000002R041545", + "___id": "T000002R041515", "___s": true }, { @@ -370526,7 +371135,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetTileToWorldYFunction", "scope": "static", - "___id": "T000002R041552", + "___id": "T000002R041522", "___s": true }, { @@ -370574,7 +371183,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetWorldToTileXFunction", "scope": "static", - "___id": "T000002R041558", + "___id": "T000002R041528", "___s": true }, { @@ -370622,7 +371231,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetWorldToTileXYFunction", "scope": "static", - "___id": "T000002R041567", + "___id": "T000002R041537", "___s": true }, { @@ -370670,7 +371279,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.GetWorldToTileYFunction", "scope": "static", - "___id": "T000002R041574", + "___id": "T000002R041544", "___s": true }, { @@ -370746,7 +371355,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.HasTileAt", "scope": "static", - "___id": "T000002R041578", + "___id": "T000002R041548", "___s": true }, { @@ -370835,7 +371444,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.HasTileAtWorldXY", "scope": "static", - "___id": "T000002R041585", + "___id": "T000002R041555", "___s": true }, { @@ -370896,7 +371505,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.HexagonalCullBounds", "scope": "static", - "___id": "T000002R041592", + "___id": "T000002R041562", "___s": true }, { @@ -370995,7 +371604,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.HexagonalCullTiles", "scope": "static", - "___id": "T000002R041620", + "___id": "T000002R041590", "___s": true }, { @@ -371091,7 +371700,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.HexagonalGetTileCorners", "scope": "static", - "___id": "T000002R041635", + "___id": "T000002R041605", "___s": true }, { @@ -371191,7 +371800,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.HexagonalTileToWorldXY", "scope": "static", - "___id": "T000002R041655", + "___id": "T000002R041625", "___s": true }, { @@ -371304,7 +371913,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.HexagonalWorldToTileXY", "scope": "static", - "___id": "T000002R041682", + "___id": "T000002R041652", "___s": true }, { @@ -371321,7 +371930,7 @@ "memberof": "Phaser.Tilemaps", "longname": "Phaser.Tilemaps.Components", "scope": "static", - "___id": "T000002R041726", + "___id": "T000002R041696", "___s": true }, { @@ -371395,7 +372004,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.IsInLayerBounds", "scope": "static", - "___id": "T000002R041798", + "___id": "T000002R041768", "___s": true }, { @@ -371494,7 +372103,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.IsometricCullTiles", "scope": "static", - "___id": "T000002R041802", + "___id": "T000002R041772", "___s": true }, { @@ -371594,7 +372203,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.IsometricTileToWorldXY", "scope": "static", - "___id": "T000002R041835", + "___id": "T000002R041805", "___s": true }, { @@ -371722,7 +372331,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.IsometricWorldToTileXY", "scope": "static", - "___id": "T000002R041852", + "___id": "T000002R041822", "___s": true }, { @@ -371832,7 +372441,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.PutTileAt", "scope": "static", - "___id": "T000002R041876", + "___id": "T000002R041846", "___s": true }, { @@ -371955,7 +372564,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.PutTileAtWorldXY", "scope": "static", - "___id": "T000002R041901", + "___id": "T000002R041871", "___s": true }, { @@ -372115,7 +372724,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.PutTilesAt", "scope": "static", - "___id": "T000002R041906", + "___id": "T000002R041876", "___s": true }, { @@ -372223,7 +372832,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.Randomize", "scope": "static", - "___id": "T000002R041918", + "___id": "T000002R041888", "___s": true }, { @@ -372323,7 +372932,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.RemoveTileAt", "scope": "static", - "___id": "T000002R041930", + "___id": "T000002R041900", "___s": true }, { @@ -372436,7 +373045,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.RemoveTileAtWorldXY", "scope": "static", - "___id": "T000002R041940", + "___id": "T000002R041910", "___s": true }, { @@ -372496,7 +373105,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.RenderDebug", "scope": "static", - "___id": "T000002R041948", + "___id": "T000002R041918", "___s": true }, { @@ -372608,7 +373217,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.ReplaceByIndex", "scope": "static", - "___id": "T000002R041968", + "___id": "T000002R041938", "___s": true }, { @@ -372704,7 +373313,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.RunCull", "scope": "static", - "___id": "T000002R041974", + "___id": "T000002R041944", "___s": true }, { @@ -372802,7 +373411,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.SetCollision", "scope": "static", - "___id": "T000002R042005", + "___id": "T000002R041975", "___s": true }, { @@ -372903,7 +373512,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.SetCollisionBetween", "scope": "static", - "___id": "T000002R042019", + "___id": "T000002R041989", "___s": true }, { @@ -372985,7 +373594,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.SetCollisionByExclusion", "scope": "static", - "___id": "T000002R042032", + "___id": "T000002R042002", "___s": true }, { @@ -373058,7 +373667,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.SetCollisionByProperty", "scope": "static", - "___id": "T000002R042044", + "___id": "T000002R042014", "___s": true }, { @@ -373118,7 +373727,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.SetCollisionFromCollisionGroup", "scope": "static", - "___id": "T000002R042058", + "___id": "T000002R042028", "___s": true }, { @@ -373178,7 +373787,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.SetLayerCollisionIndex", "scope": "static", - "___id": "T000002R042067", + "___id": "T000002R042037", "___s": true }, { @@ -373227,7 +373836,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.SetTileCollision", "scope": "static", - "___id": "T000002R042071", + "___id": "T000002R042041", "___s": true }, { @@ -373310,7 +373919,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.SetTileIndexCallback", "scope": "static", - "___id": "T000002R042074", + "___id": "T000002R042044", "___s": true }, { @@ -373422,7 +374031,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.SetTileLocationCallback", "scope": "static", - "___id": "T000002R042086", + "___id": "T000002R042056", "___s": true }, { @@ -373508,7 +374117,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.Shuffle", "scope": "static", - "___id": "T000002R042093", + "___id": "T000002R042063", "___s": true }, { @@ -373569,7 +374178,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.StaggeredCullBounds", "scope": "static", - "___id": "T000002R042102", + "___id": "T000002R042072", "___s": true }, { @@ -373668,7 +374277,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.StaggeredCullTiles", "scope": "static", - "___id": "T000002R042119", + "___id": "T000002R042089", "___s": true }, { @@ -373768,7 +374377,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.StaggeredTileToWorldXY", "scope": "static", - "___id": "T000002R042132", + "___id": "T000002R042102", "___s": true }, { @@ -373842,7 +374451,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.StaggeredTileToWorldY", "scope": "static", - "___id": "T000002R042148", + "___id": "T000002R042118", "___s": true }, { @@ -373955,7 +374564,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.StaggeredWorldToTileXY", "scope": "static", - "___id": "T000002R042158", + "___id": "T000002R042128", "___s": true }, { @@ -374042,7 +374651,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.StaggeredWorldToTileY", "scope": "static", - "___id": "T000002R042172", + "___id": "T000002R042142", "___s": true }, { @@ -374154,7 +374763,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.SwapByIndex", "scope": "static", - "___id": "T000002R042181", + "___id": "T000002R042151", "___s": true }, { @@ -374227,7 +374836,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.TileToWorldX", "scope": "static", - "___id": "T000002R042188", + "___id": "T000002R042158", "___s": true }, { @@ -374327,7 +374936,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.TileToWorldXY", "scope": "static", - "___id": "T000002R042200", + "___id": "T000002R042170", "___s": true }, { @@ -374401,7 +375010,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.TileToWorldY", "scope": "static", - "___id": "T000002R042206", + "___id": "T000002R042176", "___s": true }, { @@ -374509,7 +375118,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.WeightedRandomize", "scope": "static", - "___id": "T000002R042217", + "___id": "T000002R042187", "___s": true }, { @@ -374598,7 +375207,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.WorldToTileX", "scope": "static", - "___id": "T000002R042237", + "___id": "T000002R042207", "___s": true }, { @@ -374711,7 +375320,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.WorldToTileXY", "scope": "static", - "___id": "T000002R042241", + "___id": "T000002R042211", "___s": true }, { @@ -374800,7 +375409,7 @@ "memberof": "Phaser.Tilemaps.Components", "longname": "Phaser.Tilemaps.Components.WorldToTileY", "scope": "static", - "___id": "T000002R042261", + "___id": "T000002R042231", "___s": true }, { @@ -374819,7 +375428,7 @@ "since": "3.50.0", "longname": "Phaser.Tilemaps.Orientation", "scope": "static", - "___id": "T000002R042267", + "___id": "T000002R042237", "___s": true }, { @@ -374847,7 +375456,7 @@ "since": "3.50.0", "longname": "Phaser.Tilemaps.OrientationType", "scope": "static", - "___id": "T000002R042268", + "___id": "T000002R042238", "___s": true }, { @@ -374875,7 +375484,7 @@ "memberof": "Phaser.Tilemaps.Orientation", "longname": "Phaser.Tilemaps.Orientation.ORTHOGONAL", "scope": "static", - "___id": "T000002R042270", + "___id": "T000002R042240", "___s": true }, { @@ -374903,7 +375512,7 @@ "memberof": "Phaser.Tilemaps.Orientation", "longname": "Phaser.Tilemaps.Orientation.ISOMETRIC", "scope": "static", - "___id": "T000002R042272", + "___id": "T000002R042242", "___s": true }, { @@ -374931,7 +375540,7 @@ "memberof": "Phaser.Tilemaps.Orientation", "longname": "Phaser.Tilemaps.Orientation.STAGGERED", "scope": "static", - "___id": "T000002R042274", + "___id": "T000002R042244", "___s": true }, { @@ -374959,7 +375568,7 @@ "memberof": "Phaser.Tilemaps.Orientation", "longname": "Phaser.Tilemaps.Orientation.HEXAGONAL", "scope": "static", - "___id": "T000002R042276", + "___id": "T000002R042246", "___s": true }, { @@ -374976,7 +375585,7 @@ "memberof": "Phaser.Tilemaps", "longname": "Phaser.Tilemaps.Formats", "scope": "static", - "___id": "T000002R042278", + "___id": "T000002R042248", "___s": true }, { @@ -375004,7 +375613,7 @@ "longname": "Phaser.Tilemaps.Formats.CSV", "scope": "static", "kind": "member", - "___id": "T000002R042280", + "___id": "T000002R042250", "___s": true }, { @@ -375032,7 +375641,7 @@ "longname": "Phaser.Tilemaps.Formats.TILED_JSON", "scope": "static", "kind": "member", - "___id": "T000002R042282", + "___id": "T000002R042252", "___s": true }, { @@ -375060,7 +375669,7 @@ "longname": "Phaser.Tilemaps.Formats.ARRAY_2D", "scope": "static", "kind": "member", - "___id": "T000002R042284", + "___id": "T000002R042254", "___s": true }, { @@ -375088,7 +375697,7 @@ "longname": "Phaser.Tilemaps.Formats.WELTMEISTER", "scope": "static", "kind": "member", - "___id": "T000002R042286", + "___id": "T000002R042256", "___s": true }, { @@ -375210,7 +375819,7 @@ ], "scope": "static", "longname": "Phaser.Tilemaps.ImageCollection", - "___id": "T000002R042289", + "___id": "T000002R042259", "___s": true }, { @@ -375238,7 +375847,7 @@ "longname": "Phaser.Tilemaps.ImageCollection#name", "scope": "instance", "kind": "member", - "___id": "T000002R042296", + "___id": "T000002R042266", "___s": true }, { @@ -375266,7 +375875,7 @@ "longname": "Phaser.Tilemaps.ImageCollection#firstgid", "scope": "instance", "kind": "member", - "___id": "T000002R042298", + "___id": "T000002R042268", "___s": true }, { @@ -375295,7 +375904,7 @@ "longname": "Phaser.Tilemaps.ImageCollection#imageWidth", "scope": "instance", "kind": "member", - "___id": "T000002R042300", + "___id": "T000002R042270", "___s": true }, { @@ -375324,7 +375933,7 @@ "longname": "Phaser.Tilemaps.ImageCollection#imageHeight", "scope": "instance", "kind": "member", - "___id": "T000002R042302", + "___id": "T000002R042272", "___s": true }, { @@ -375353,7 +375962,7 @@ "longname": "Phaser.Tilemaps.ImageCollection#imageMarge", "scope": "instance", "kind": "member", - "___id": "T000002R042304", + "___id": "T000002R042274", "___s": true }, { @@ -375382,7 +375991,7 @@ "longname": "Phaser.Tilemaps.ImageCollection#imageSpacing", "scope": "instance", "kind": "member", - "___id": "T000002R042306", + "___id": "T000002R042276", "___s": true }, { @@ -375410,7 +376019,7 @@ "longname": "Phaser.Tilemaps.ImageCollection#properties", "scope": "instance", "kind": "member", - "___id": "T000002R042308", + "___id": "T000002R042278", "___s": true }, { @@ -375439,7 +376048,7 @@ "longname": "Phaser.Tilemaps.ImageCollection#images", "scope": "instance", "kind": "member", - "___id": "T000002R042310", + "___id": "T000002R042280", "___s": true }, { @@ -375468,7 +376077,7 @@ "longname": "Phaser.Tilemaps.ImageCollection#total", "scope": "instance", "kind": "member", - "___id": "T000002R042312", + "___id": "T000002R042282", "___s": true }, { @@ -375516,7 +376125,7 @@ "memberof": "Phaser.Tilemaps.ImageCollection", "longname": "Phaser.Tilemaps.ImageCollection#containsImageIndex", "scope": "instance", - "___id": "T000002R042314", + "___id": "T000002R042284", "___s": true }, { @@ -375577,7 +376186,7 @@ "memberof": "Phaser.Tilemaps.ImageCollection", "longname": "Phaser.Tilemaps.ImageCollection#addImage", "scope": "instance", - "___id": "T000002R042316", + "___id": "T000002R042286", "___s": true }, { @@ -375594,7 +376203,7 @@ "memberof": "Phaser", "longname": "Phaser.Tilemaps", "scope": "static", - "___id": "T000002R042323", + "___id": "T000002R042293", "___s": true }, { @@ -375629,7 +376238,7 @@ ], "scope": "static", "longname": "Phaser.Tilemaps.LayerData", - "___id": "T000002R042345", + "___id": "T000002R042315", "___s": true }, { @@ -375657,7 +376266,7 @@ "longname": "Phaser.Tilemaps.LayerData#name", "scope": "instance", "kind": "member", - "___id": "T000002R042349", + "___id": "T000002R042319", "___s": true }, { @@ -375685,7 +376294,7 @@ "longname": "Phaser.Tilemaps.LayerData#id", "scope": "instance", "kind": "member", - "___id": "T000002R042351", + "___id": "T000002R042321", "___s": true }, { @@ -375713,7 +376322,7 @@ "longname": "Phaser.Tilemaps.LayerData#x", "scope": "instance", "kind": "member", - "___id": "T000002R042353", + "___id": "T000002R042323", "___s": true }, { @@ -375741,7 +376350,7 @@ "longname": "Phaser.Tilemaps.LayerData#y", "scope": "instance", "kind": "member", - "___id": "T000002R042355", + "___id": "T000002R042325", "___s": true }, { @@ -375769,7 +376378,7 @@ "longname": "Phaser.Tilemaps.LayerData#width", "scope": "instance", "kind": "member", - "___id": "T000002R042357", + "___id": "T000002R042327", "___s": true }, { @@ -375797,7 +376406,7 @@ "longname": "Phaser.Tilemaps.LayerData#height", "scope": "instance", "kind": "member", - "___id": "T000002R042359", + "___id": "T000002R042329", "___s": true }, { @@ -375825,7 +376434,7 @@ "longname": "Phaser.Tilemaps.LayerData#tileWidth", "scope": "instance", "kind": "member", - "___id": "T000002R042361", + "___id": "T000002R042331", "___s": true }, { @@ -375853,7 +376462,7 @@ "longname": "Phaser.Tilemaps.LayerData#tileHeight", "scope": "instance", "kind": "member", - "___id": "T000002R042363", + "___id": "T000002R042333", "___s": true }, { @@ -375881,7 +376490,7 @@ "longname": "Phaser.Tilemaps.LayerData#baseTileWidth", "scope": "instance", "kind": "member", - "___id": "T000002R042365", + "___id": "T000002R042335", "___s": true }, { @@ -375909,7 +376518,7 @@ "longname": "Phaser.Tilemaps.LayerData#baseTileHeight", "scope": "instance", "kind": "member", - "___id": "T000002R042367", + "___id": "T000002R042337", "___s": true }, { @@ -375937,7 +376546,7 @@ "longname": "Phaser.Tilemaps.LayerData#orientation", "scope": "instance", "kind": "member", - "___id": "T000002R042369", + "___id": "T000002R042339", "___s": true }, { @@ -375965,7 +376574,7 @@ "longname": "Phaser.Tilemaps.LayerData#widthInPixels", "scope": "instance", "kind": "member", - "___id": "T000002R042371", + "___id": "T000002R042341", "___s": true }, { @@ -375993,7 +376602,7 @@ "longname": "Phaser.Tilemaps.LayerData#heightInPixels", "scope": "instance", "kind": "member", - "___id": "T000002R042373", + "___id": "T000002R042343", "___s": true }, { @@ -376021,7 +376630,7 @@ "longname": "Phaser.Tilemaps.LayerData#alpha", "scope": "instance", "kind": "member", - "___id": "T000002R042375", + "___id": "T000002R042345", "___s": true }, { @@ -376049,7 +376658,7 @@ "longname": "Phaser.Tilemaps.LayerData#visible", "scope": "instance", "kind": "member", - "___id": "T000002R042377", + "___id": "T000002R042347", "___s": true }, { @@ -376086,7 +376695,7 @@ "longname": "Phaser.Tilemaps.LayerData#properties", "scope": "instance", "kind": "member", - "___id": "T000002R042379", + "___id": "T000002R042349", "___s": true }, { @@ -376114,7 +376723,7 @@ "longname": "Phaser.Tilemaps.LayerData#indexes", "scope": "instance", "kind": "member", - "___id": "T000002R042381", + "___id": "T000002R042351", "___s": true }, { @@ -376142,7 +376751,7 @@ "longname": "Phaser.Tilemaps.LayerData#collideIndexes", "scope": "instance", "kind": "member", - "___id": "T000002R042383", + "___id": "T000002R042353", "___s": true }, { @@ -376170,7 +376779,7 @@ "longname": "Phaser.Tilemaps.LayerData#callbacks", "scope": "instance", "kind": "member", - "___id": "T000002R042385", + "___id": "T000002R042355", "___s": true }, { @@ -376198,7 +376807,7 @@ "longname": "Phaser.Tilemaps.LayerData#bodies", "scope": "instance", "kind": "member", - "___id": "T000002R042387", + "___id": "T000002R042357", "___s": true }, { @@ -376244,7 +376853,7 @@ "longname": "Phaser.Tilemaps.LayerData#data", "scope": "instance", "kind": "member", - "___id": "T000002R042389", + "___id": "T000002R042359", "___s": true }, { @@ -376272,7 +376881,7 @@ "longname": "Phaser.Tilemaps.LayerData#tilemapLayer", "scope": "instance", "kind": "member", - "___id": "T000002R042391", + "___id": "T000002R042361", "___s": true }, { @@ -376300,7 +376909,7 @@ "longname": "Phaser.Tilemaps.LayerData#hexSideLength", "scope": "instance", "kind": "member", - "___id": "T000002R042393", + "___id": "T000002R042363", "___s": true }, { @@ -376328,7 +376937,7 @@ "longname": "Phaser.Tilemaps.LayerData#staggerAxis", "scope": "instance", "kind": "member", - "___id": "T000002R042395", + "___id": "T000002R042365", "___s": true }, { @@ -376356,7 +376965,7 @@ "longname": "Phaser.Tilemaps.LayerData#staggerIndex", "scope": "instance", "kind": "member", - "___id": "T000002R042397", + "___id": "T000002R042367", "___s": true }, { @@ -376391,7 +377000,7 @@ ], "scope": "static", "longname": "Phaser.Tilemaps.MapData", - "___id": "T000002R042403", + "___id": "T000002R042373", "___s": true }, { @@ -376419,7 +377028,7 @@ "longname": "Phaser.Tilemaps.MapData#name", "scope": "instance", "kind": "member", - "___id": "T000002R042407", + "___id": "T000002R042377", "___s": true }, { @@ -376447,7 +377056,7 @@ "longname": "Phaser.Tilemaps.MapData#width", "scope": "instance", "kind": "member", - "___id": "T000002R042409", + "___id": "T000002R042379", "___s": true }, { @@ -376475,7 +377084,7 @@ "longname": "Phaser.Tilemaps.MapData#height", "scope": "instance", "kind": "member", - "___id": "T000002R042411", + "___id": "T000002R042381", "___s": true }, { @@ -376503,7 +377112,7 @@ "longname": "Phaser.Tilemaps.MapData#infinite", "scope": "instance", "kind": "member", - "___id": "T000002R042413", + "___id": "T000002R042383", "___s": true }, { @@ -376531,7 +377140,7 @@ "longname": "Phaser.Tilemaps.MapData#tileWidth", "scope": "instance", "kind": "member", - "___id": "T000002R042415", + "___id": "T000002R042385", "___s": true }, { @@ -376559,7 +377168,7 @@ "longname": "Phaser.Tilemaps.MapData#tileHeight", "scope": "instance", "kind": "member", - "___id": "T000002R042417", + "___id": "T000002R042387", "___s": true }, { @@ -376587,7 +377196,7 @@ "longname": "Phaser.Tilemaps.MapData#widthInPixels", "scope": "instance", "kind": "member", - "___id": "T000002R042419", + "___id": "T000002R042389", "___s": true }, { @@ -376615,7 +377224,7 @@ "longname": "Phaser.Tilemaps.MapData#heightInPixels", "scope": "instance", "kind": "member", - "___id": "T000002R042421", + "___id": "T000002R042391", "___s": true }, { @@ -376643,7 +377252,7 @@ "longname": "Phaser.Tilemaps.MapData#format", "scope": "instance", "kind": "member", - "___id": "T000002R042423", + "___id": "T000002R042393", "___s": true }, { @@ -376671,7 +377280,7 @@ "longname": "Phaser.Tilemaps.MapData#orientation", "scope": "instance", "kind": "member", - "___id": "T000002R042425", + "___id": "T000002R042395", "___s": true }, { @@ -376699,7 +377308,7 @@ "longname": "Phaser.Tilemaps.MapData#renderOrder", "scope": "instance", "kind": "member", - "___id": "T000002R042427", + "___id": "T000002R042397", "___s": true }, { @@ -376727,7 +377336,7 @@ "longname": "Phaser.Tilemaps.MapData#version", "scope": "instance", "kind": "member", - "___id": "T000002R042429", + "___id": "T000002R042399", "___s": true }, { @@ -376755,7 +377364,7 @@ "longname": "Phaser.Tilemaps.MapData#properties", "scope": "instance", "kind": "member", - "___id": "T000002R042431", + "___id": "T000002R042401", "___s": true }, { @@ -376802,7 +377411,7 @@ "longname": "Phaser.Tilemaps.MapData#layers", "scope": "instance", "kind": "member", - "___id": "T000002R042433", + "___id": "T000002R042403", "___s": true }, { @@ -376830,7 +377439,7 @@ "longname": "Phaser.Tilemaps.MapData#images", "scope": "instance", "kind": "member", - "___id": "T000002R042435", + "___id": "T000002R042405", "___s": true }, { @@ -376867,7 +377476,7 @@ "longname": "Phaser.Tilemaps.MapData#objects", "scope": "instance", "kind": "member", - "___id": "T000002R042437", + "___id": "T000002R042407", "___s": true }, { @@ -376895,7 +377504,7 @@ "longname": "Phaser.Tilemaps.MapData#collision", "scope": "instance", "kind": "member", - "___id": "T000002R042440", + "___id": "T000002R042410", "___s": true }, { @@ -376932,7 +377541,7 @@ "longname": "Phaser.Tilemaps.MapData#tilesets", "scope": "instance", "kind": "member", - "___id": "T000002R042442", + "___id": "T000002R042412", "___s": true }, { @@ -376960,7 +377569,7 @@ "longname": "Phaser.Tilemaps.MapData#imageCollections", "scope": "instance", "kind": "member", - "___id": "T000002R042444", + "___id": "T000002R042414", "___s": true }, { @@ -376988,7 +377597,7 @@ "longname": "Phaser.Tilemaps.MapData#tiles", "scope": "instance", "kind": "member", - "___id": "T000002R042446", + "___id": "T000002R042416", "___s": true }, { @@ -377016,7 +377625,7 @@ "longname": "Phaser.Tilemaps.MapData#hexSideLength", "scope": "instance", "kind": "member", - "___id": "T000002R042448", + "___id": "T000002R042418", "___s": true }, { @@ -377044,7 +377653,7 @@ "longname": "Phaser.Tilemaps.MapData#staggerAxis", "scope": "instance", "kind": "member", - "___id": "T000002R042450", + "___id": "T000002R042420", "___s": true }, { @@ -377072,7 +377681,7 @@ "longname": "Phaser.Tilemaps.MapData#staggerIndex", "scope": "instance", "kind": "member", - "___id": "T000002R042452", + "___id": "T000002R042422", "___s": true }, { @@ -377107,7 +377716,7 @@ ], "scope": "static", "longname": "Phaser.Tilemaps.ObjectLayer", - "___id": "T000002R042457", + "___id": "T000002R042427", "___s": true }, { @@ -377135,7 +377744,7 @@ "longname": "Phaser.Tilemaps.ObjectLayer#name", "scope": "instance", "kind": "member", - "___id": "T000002R042461", + "___id": "T000002R042431", "___s": true }, { @@ -377163,7 +377772,7 @@ "longname": "Phaser.Tilemaps.ObjectLayer#id", "scope": "instance", "kind": "member", - "___id": "T000002R042463", + "___id": "T000002R042433", "___s": true }, { @@ -377191,7 +377800,7 @@ "longname": "Phaser.Tilemaps.ObjectLayer#opacity", "scope": "instance", "kind": "member", - "___id": "T000002R042465", + "___id": "T000002R042435", "___s": true }, { @@ -377219,7 +377828,7 @@ "longname": "Phaser.Tilemaps.ObjectLayer#properties", "scope": "instance", "kind": "member", - "___id": "T000002R042467", + "___id": "T000002R042437", "___s": true }, { @@ -377247,7 +377856,7 @@ "longname": "Phaser.Tilemaps.ObjectLayer#propertyTypes", "scope": "instance", "kind": "member", - "___id": "T000002R042469", + "___id": "T000002R042439", "___s": true }, { @@ -377275,7 +377884,7 @@ "longname": "Phaser.Tilemaps.ObjectLayer#type", "scope": "instance", "kind": "member", - "___id": "T000002R042471", + "___id": "T000002R042441", "___s": true }, { @@ -377303,7 +377912,7 @@ "longname": "Phaser.Tilemaps.ObjectLayer#visible", "scope": "instance", "kind": "member", - "___id": "T000002R042473", + "___id": "T000002R042443", "___s": true }, { @@ -377340,7 +377949,7 @@ "longname": "Phaser.Tilemaps.ObjectLayer#objects", "scope": "instance", "kind": "member", - "___id": "T000002R042475", + "___id": "T000002R042445", "___s": true }, { @@ -377383,7 +377992,7 @@ ], "scope": "static", "longname": "Phaser.Tilemaps.ObjectHelper", - "___id": "T000002R042480", + "___id": "T000002R042450", "___s": true }, { @@ -377411,7 +378020,7 @@ "longname": "Phaser.Tilemaps.ObjectHelper#gids", "scope": "instance", "kind": "member", - "___id": "T000002R042483", + "___id": "T000002R042453", "___s": true }, { @@ -377439,7 +378048,7 @@ "longname": "Phaser.Tilemaps.ObjectHelper#enabled", "scope": "instance", "kind": "member", - "___id": "T000002R042491", + "___id": "T000002R042461", "___s": true }, { @@ -377489,7 +378098,7 @@ "memberof": "Phaser.Tilemaps.ObjectHelper", "longname": "Phaser.Tilemaps.ObjectHelper#getTypeIncludingTile", "scope": "instance", - "___id": "T000002R042496", + "___id": "T000002R042466", "___s": true }, { @@ -377590,7 +378199,7 @@ "memberof": "Phaser.Tilemaps.ObjectHelper", "longname": "Phaser.Tilemaps.ObjectHelper#setTextureAndFrame", "scope": "instance", - "___id": "T000002R042500", + "___id": "T000002R042470", "___s": true }, { @@ -377635,7 +378244,7 @@ "memberof": "Phaser.Tilemaps.ObjectHelper", "longname": "Phaser.Tilemaps.ObjectHelper#setPropertiesFromTiledObject", "scope": "instance", - "___id": "T000002R042507", + "___id": "T000002R042477", "___s": true }, { @@ -377684,7 +378293,7 @@ "memberof": "Phaser.Tilemaps.Parsers", "longname": "Phaser.Tilemaps.Parsers.FromOrientationString", "scope": "static", - "___id": "T000002R042519", + "___id": "T000002R042489", "___s": true }, { @@ -377701,7 +378310,7 @@ "memberof": "Phaser.Tilemaps.Parsers", "longname": "Phaser.Tilemaps.Parsers.Impact", "scope": "static", - "___id": "T000002R042523", + "___id": "T000002R042493", "___s": true }, { @@ -377771,7 +378380,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Impact", "longname": "Phaser.Tilemaps.Parsers.Impact.ParseTileLayers", "scope": "static", - "___id": "T000002R042530", + "___id": "T000002R042500", "___s": true }, { @@ -377819,7 +378428,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Impact", "longname": "Phaser.Tilemaps.Parsers.Impact.ParseTilesets", "scope": "static", - "___id": "T000002R042554", + "___id": "T000002R042524", "___s": true }, { @@ -377895,7 +378504,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Impact", "longname": "Phaser.Tilemaps.Parsers.Impact.ParseWeltmeister", "scope": "static", - "___id": "T000002R042566", + "___id": "T000002R042536", "___s": true }, { @@ -377912,7 +378521,7 @@ "memberof": "Phaser.Tilemaps", "longname": "Phaser.Tilemaps.Parsers", "scope": "static", - "___id": "T000002R042583", + "___id": "T000002R042553", "___s": true }, { @@ -378058,7 +378667,7 @@ "memberof": "Phaser.Tilemaps.Parsers", "longname": "Phaser.Tilemaps.Parsers.Parse", "scope": "static", - "___id": "T000002R042596", + "___id": "T000002R042566", "___s": true }, { @@ -378176,7 +378785,7 @@ "memberof": "Phaser.Tilemaps.Parsers", "longname": "Phaser.Tilemaps.Parsers.Parse2DArray", "scope": "static", - "___id": "T000002R042609", + "___id": "T000002R042579", "___s": true }, { @@ -378276,7 +378885,7 @@ "memberof": "Phaser.Tilemaps.Parsers", "longname": "Phaser.Tilemaps.Parsers.ParseCSV", "scope": "static", - "___id": "T000002R042643", + "___id": "T000002R042613", "___s": true }, { @@ -378310,7 +378919,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Tiled", "longname": "Phaser.Tilemaps.Parsers.Tiled.AssignTileProperties", "scope": "static", - "___id": "T000002R042650", + "___id": "T000002R042620", "___s": true }, { @@ -378358,7 +378967,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Tiled", "longname": "Phaser.Tilemaps.Parsers.Tiled.Base64Decode", "scope": "static", - "___id": "T000002R042670", + "___id": "T000002R042640", "___s": true }, { @@ -378416,7 +379025,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Tiled", "longname": "Phaser.Tilemaps.Parsers.Tiled.BuildTilesetIndex", "scope": "static", - "___id": "T000002R042680", + "___id": "T000002R042650", "___s": true }, { @@ -378492,7 +379101,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Tiled", "longname": "Phaser.Tilemaps.Parsers.Tiled.CreateGroupLayer", "scope": "static", - "___id": "T000002R042706", + "___id": "T000002R042676", "___s": true }, { @@ -378509,7 +379118,7 @@ "memberof": "Phaser.Tilemaps.Parsers", "longname": "Phaser.Tilemaps.Parsers.Tiled", "scope": "static", - "___id": "T000002R042725", + "___id": "T000002R042695", "___s": true }, { @@ -378557,7 +379166,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Tiled", "longname": "Phaser.Tilemaps.Parsers.Tiled.ParseGID", "scope": "static", - "___id": "T000002R042741", + "___id": "T000002R042711", "___s": true }, { @@ -378605,7 +379214,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Tiled", "longname": "Phaser.Tilemaps.Parsers.Tiled.ParseImageLayers", "scope": "static", - "___id": "T000002R042774", + "___id": "T000002R042744", "___s": true }, { @@ -378681,7 +379290,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Tiled", "longname": "Phaser.Tilemaps.Parsers.Tiled.ParseJSONTiled", "scope": "static", - "___id": "T000002R042804", + "___id": "T000002R042774", "___s": true }, { @@ -378759,7 +379368,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Tiled", "longname": "Phaser.Tilemaps.Parsers.Tiled.ParseObject", "scope": "static", - "___id": "T000002R042836", + "___id": "T000002R042806", "___s": true }, { @@ -378807,7 +379416,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Tiled", "longname": "Phaser.Tilemaps.Parsers.Tiled.ParseObjectLayers", "scope": "static", - "___id": "T000002R042859", + "___id": "T000002R042829", "___s": true }, { @@ -378877,7 +379486,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Tiled", "longname": "Phaser.Tilemaps.Parsers.Tiled.ParseTileLayers", "scope": "static", - "___id": "T000002R042887", + "___id": "T000002R042857", "___s": true }, { @@ -378925,7 +379534,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Tiled", "longname": "Phaser.Tilemaps.Parsers.Tiled.ParseTilesets", "scope": "static", - "___id": "T000002R042978", + "___id": "T000002R042948", "___s": true }, { @@ -378995,7 +379604,7 @@ "memberof": "Phaser.Tilemaps.Parsers.Tiled", "longname": "Phaser.Tilemaps.Parsers.Tiled.ParseWangsets", "scope": "static", - "___id": "T000002R043027", + "___id": "T000002R042997", "___s": true }, { @@ -379163,7 +379772,7 @@ "memberof": "Phaser.Tilemaps", "longname": "Phaser.Tilemaps.ParseToTilemap", "scope": "static", - "___id": "T000002R043068", + "___id": "T000002R043038", "___s": true }, { @@ -379293,7 +379902,7 @@ ], "scope": "static", "longname": "Phaser.Tilemaps.Tile", - "___id": "T000002R043091", + "___id": "T000002R043061", "___s": true }, { @@ -379321,7 +379930,7 @@ "longname": "Phaser.Tilemaps.Tile#layer", "scope": "instance", "kind": "member", - "___id": "T000002R043095", + "___id": "T000002R043065", "___s": true }, { @@ -379349,7 +379958,7 @@ "longname": "Phaser.Tilemaps.Tile#index", "scope": "instance", "kind": "member", - "___id": "T000002R043097", + "___id": "T000002R043067", "___s": true }, { @@ -379377,7 +379986,7 @@ "longname": "Phaser.Tilemaps.Tile#x", "scope": "instance", "kind": "member", - "___id": "T000002R043099", + "___id": "T000002R043069", "___s": true }, { @@ -379405,7 +380014,7 @@ "longname": "Phaser.Tilemaps.Tile#y", "scope": "instance", "kind": "member", - "___id": "T000002R043101", + "___id": "T000002R043071", "___s": true }, { @@ -379433,7 +380042,7 @@ "longname": "Phaser.Tilemaps.Tile#width", "scope": "instance", "kind": "member", - "___id": "T000002R043103", + "___id": "T000002R043073", "___s": true }, { @@ -379461,7 +380070,7 @@ "longname": "Phaser.Tilemaps.Tile#height", "scope": "instance", "kind": "member", - "___id": "T000002R043105", + "___id": "T000002R043075", "___s": true }, { @@ -379489,7 +380098,7 @@ "longname": "Phaser.Tilemaps.Tile#right", "scope": "instance", "kind": "member", - "___id": "T000002R043107", + "___id": "T000002R043077", "___s": true }, { @@ -379517,7 +380126,7 @@ "longname": "Phaser.Tilemaps.Tile#bottom", "scope": "instance", "kind": "member", - "___id": "T000002R043109", + "___id": "T000002R043079", "___s": true }, { @@ -379545,7 +380154,7 @@ "longname": "Phaser.Tilemaps.Tile#baseWidth", "scope": "instance", "kind": "member", - "___id": "T000002R043111", + "___id": "T000002R043081", "___s": true }, { @@ -379573,7 +380182,7 @@ "longname": "Phaser.Tilemaps.Tile#baseHeight", "scope": "instance", "kind": "member", - "___id": "T000002R043113", + "___id": "T000002R043083", "___s": true }, { @@ -379601,7 +380210,7 @@ "longname": "Phaser.Tilemaps.Tile#pixelX", "scope": "instance", "kind": "member", - "___id": "T000002R043115", + "___id": "T000002R043085", "___s": true }, { @@ -379629,7 +380238,7 @@ "longname": "Phaser.Tilemaps.Tile#pixelY", "scope": "instance", "kind": "member", - "___id": "T000002R043117", + "___id": "T000002R043087", "___s": true }, { @@ -379657,7 +380266,7 @@ "longname": "Phaser.Tilemaps.Tile#properties", "scope": "instance", "kind": "member", - "___id": "T000002R043119", + "___id": "T000002R043089", "___s": true }, { @@ -379685,7 +380294,7 @@ "longname": "Phaser.Tilemaps.Tile#rotation", "scope": "instance", "kind": "member", - "___id": "T000002R043121", + "___id": "T000002R043091", "___s": true }, { @@ -379713,7 +380322,7 @@ "longname": "Phaser.Tilemaps.Tile#collideLeft", "scope": "instance", "kind": "member", - "___id": "T000002R043123", + "___id": "T000002R043093", "___s": true }, { @@ -379741,7 +380350,7 @@ "longname": "Phaser.Tilemaps.Tile#collideRight", "scope": "instance", "kind": "member", - "___id": "T000002R043125", + "___id": "T000002R043095", "___s": true }, { @@ -379769,7 +380378,7 @@ "longname": "Phaser.Tilemaps.Tile#collideUp", "scope": "instance", "kind": "member", - "___id": "T000002R043127", + "___id": "T000002R043097", "___s": true }, { @@ -379797,7 +380406,7 @@ "longname": "Phaser.Tilemaps.Tile#collideDown", "scope": "instance", "kind": "member", - "___id": "T000002R043129", + "___id": "T000002R043099", "___s": true }, { @@ -379825,7 +380434,7 @@ "longname": "Phaser.Tilemaps.Tile#faceLeft", "scope": "instance", "kind": "member", - "___id": "T000002R043131", + "___id": "T000002R043101", "___s": true }, { @@ -379853,7 +380462,7 @@ "longname": "Phaser.Tilemaps.Tile#faceRight", "scope": "instance", "kind": "member", - "___id": "T000002R043133", + "___id": "T000002R043103", "___s": true }, { @@ -379881,7 +380490,7 @@ "longname": "Phaser.Tilemaps.Tile#faceTop", "scope": "instance", "kind": "member", - "___id": "T000002R043135", + "___id": "T000002R043105", "___s": true }, { @@ -379909,7 +380518,7 @@ "longname": "Phaser.Tilemaps.Tile#faceBottom", "scope": "instance", "kind": "member", - "___id": "T000002R043137", + "___id": "T000002R043107", "___s": true }, { @@ -379937,7 +380546,7 @@ "longname": "Phaser.Tilemaps.Tile#collisionCallback", "scope": "instance", "kind": "member", - "___id": "T000002R043139", + "___id": "T000002R043109", "___s": true }, { @@ -379965,7 +380574,7 @@ "longname": "Phaser.Tilemaps.Tile#collisionCallbackContext", "scope": "instance", "kind": "member", - "___id": "T000002R043141", + "___id": "T000002R043111", "___s": true }, { @@ -379993,7 +380602,7 @@ "longname": "Phaser.Tilemaps.Tile#tint", "scope": "instance", "kind": "member", - "___id": "T000002R043143", + "___id": "T000002R043113", "___s": true }, { @@ -380021,7 +380630,7 @@ "longname": "Phaser.Tilemaps.Tile#tintFill", "scope": "instance", "kind": "member", - "___id": "T000002R043145", + "___id": "T000002R043115", "___s": true }, { @@ -380049,7 +380658,7 @@ "longname": "Phaser.Tilemaps.Tile#physics", "scope": "instance", "kind": "member", - "___id": "T000002R043147", + "___id": "T000002R043117", "___s": true }, { @@ -380110,7 +380719,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#containsPoint", "scope": "instance", - "___id": "T000002R043149", + "___id": "T000002R043119", "___s": true }, { @@ -380159,7 +380768,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#copy", "scope": "instance", - "___id": "T000002R043151", + "___id": "T000002R043121", "___s": true }, { @@ -380194,7 +380803,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#getCollisionGroup", "scope": "instance", - "___id": "T000002R043165", + "___id": "T000002R043135", "___s": true }, { @@ -380229,7 +380838,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#getTileData", "scope": "instance", - "___id": "T000002R043167", + "___id": "T000002R043137", "___s": true }, { @@ -380278,7 +380887,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#getLeft", "scope": "instance", - "___id": "T000002R043169", + "___id": "T000002R043139", "___s": true }, { @@ -380327,7 +380936,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#getRight", "scope": "instance", - "___id": "T000002R043173", + "___id": "T000002R043143", "___s": true }, { @@ -380376,7 +380985,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#getTop", "scope": "instance", - "___id": "T000002R043176", + "___id": "T000002R043146", "___s": true }, { @@ -380425,7 +381034,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#getBottom", "scope": "instance", - "___id": "T000002R043180", + "___id": "T000002R043150", "___s": true }, { @@ -380498,7 +381107,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#getBounds", "scope": "instance", - "___id": "T000002R043183", + "___id": "T000002R043153", "___s": true }, { @@ -380547,7 +381156,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#getCenterX", "scope": "instance", - "___id": "T000002R043190", + "___id": "T000002R043160", "___s": true }, { @@ -380596,7 +381205,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#getCenterY", "scope": "instance", - "___id": "T000002R043192", + "___id": "T000002R043162", "___s": true }, { @@ -380683,7 +381292,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#intersects", "scope": "instance", - "___id": "T000002R043194", + "___id": "T000002R043164", "___s": true }, { @@ -380744,7 +381353,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#isInteresting", "scope": "instance", - "___id": "T000002R043196", + "___id": "T000002R043166", "___s": true }, { @@ -380795,7 +381404,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#resetCollision", "scope": "instance", - "___id": "T000002R043198", + "___id": "T000002R043168", "___s": true }, { @@ -380829,7 +381438,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#resetFaces", "scope": "instance", - "___id": "T000002R043210", + "___id": "T000002R043180", "___s": true }, { @@ -380935,7 +381544,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#setCollision", "scope": "instance", - "___id": "T000002R043216", + "___id": "T000002R043186", "___s": true }, { @@ -380997,7 +381606,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#setCollisionCallback", "scope": "instance", - "___id": "T000002R043231", + "___id": "T000002R043201", "___s": true }, { @@ -381085,7 +381694,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#setSize", "scope": "instance", - "___id": "T000002R043237", + "___id": "T000002R043207", "___s": true }, { @@ -381119,7 +381728,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#updatePixelXY", "scope": "instance", - "___id": "T000002R043243", + "___id": "T000002R043213", "___s": true }, { @@ -381138,7 +381747,7 @@ "memberof": "Phaser.Tilemaps.Tile", "longname": "Phaser.Tilemaps.Tile#destroy", "scope": "instance", - "___id": "T000002R043267", + "___id": "T000002R043237", "___s": true }, { @@ -381167,7 +381776,7 @@ "longname": "Phaser.Tilemaps.Tile#canCollide", "scope": "instance", "kind": "member", - "___id": "T000002R043272", + "___id": "T000002R043242", "___s": true }, { @@ -381196,7 +381805,7 @@ "longname": "Phaser.Tilemaps.Tile#collides", "scope": "instance", "kind": "member", - "___id": "T000002R043275", + "___id": "T000002R043245", "___s": true }, { @@ -381225,7 +381834,7 @@ "longname": "Phaser.Tilemaps.Tile#hasInterestingFace", "scope": "instance", "kind": "member", - "___id": "T000002R043278", + "___id": "T000002R043248", "___s": true }, { @@ -381256,7 +381865,7 @@ "longname": "Phaser.Tilemaps.Tile#tileset", "scope": "instance", "kind": "member", - "___id": "T000002R043281", + "___id": "T000002R043251", "___s": true }, { @@ -381287,7 +381896,7 @@ "longname": "Phaser.Tilemaps.Tile#tilemapLayer", "scope": "instance", "kind": "member", - "___id": "T000002R043286", + "___id": "T000002R043256", "___s": true }, { @@ -381318,7 +381927,7 @@ "longname": "Phaser.Tilemaps.Tile#tilemap", "scope": "instance", "kind": "member", - "___id": "T000002R043289", + "___id": "T000002R043259", "___s": true }, { @@ -381404,7 +382013,7 @@ ], "longname": "TilemapFilterCallback", "scope": "global", - "___id": "T000002R043309", + "___id": "T000002R043279", "___s": true }, { @@ -381489,7 +382098,7 @@ ], "longname": "TilemapFindCallback", "scope": "global", - "___id": "T000002R043310", + "___id": "T000002R043280", "___s": true }, { @@ -381536,7 +382145,7 @@ ], "scope": "static", "longname": "Phaser.Tilemaps.Tilemap", - "___id": "T000002R043311", + "___id": "T000002R043281", "___s": true }, { @@ -381563,7 +382172,7 @@ "longname": "Phaser.Tilemaps.Tilemap#scene", "scope": "instance", "kind": "member", - "___id": "T000002R043314", + "___id": "T000002R043284", "___s": true }, { @@ -381591,7 +382200,7 @@ "longname": "Phaser.Tilemaps.Tilemap#tileWidth", "scope": "instance", "kind": "member", - "___id": "T000002R043316", + "___id": "T000002R043286", "___s": true }, { @@ -381619,7 +382228,7 @@ "longname": "Phaser.Tilemaps.Tilemap#tileHeight", "scope": "instance", "kind": "member", - "___id": "T000002R043318", + "___id": "T000002R043288", "___s": true }, { @@ -381647,7 +382256,7 @@ "longname": "Phaser.Tilemaps.Tilemap#width", "scope": "instance", "kind": "member", - "___id": "T000002R043320", + "___id": "T000002R043290", "___s": true }, { @@ -381675,7 +382284,7 @@ "longname": "Phaser.Tilemaps.Tilemap#height", "scope": "instance", "kind": "member", - "___id": "T000002R043322", + "___id": "T000002R043292", "___s": true }, { @@ -381703,7 +382312,7 @@ "longname": "Phaser.Tilemaps.Tilemap#orientation", "scope": "instance", "kind": "member", - "___id": "T000002R043324", + "___id": "T000002R043294", "___s": true }, { @@ -381731,7 +382340,7 @@ "longname": "Phaser.Tilemaps.Tilemap#renderOrder", "scope": "instance", "kind": "member", - "___id": "T000002R043326", + "___id": "T000002R043296", "___s": true }, { @@ -381759,7 +382368,7 @@ "longname": "Phaser.Tilemaps.Tilemap#format", "scope": "instance", "kind": "member", - "___id": "T000002R043328", + "___id": "T000002R043298", "___s": true }, { @@ -381787,7 +382396,7 @@ "longname": "Phaser.Tilemaps.Tilemap#version", "scope": "instance", "kind": "member", - "___id": "T000002R043330", + "___id": "T000002R043300", "___s": true }, { @@ -381834,7 +382443,7 @@ "longname": "Phaser.Tilemaps.Tilemap#properties", "scope": "instance", "kind": "member", - "___id": "T000002R043332", + "___id": "T000002R043302", "___s": true }, { @@ -381862,7 +382471,7 @@ "longname": "Phaser.Tilemaps.Tilemap#widthInPixels", "scope": "instance", "kind": "member", - "___id": "T000002R043334", + "___id": "T000002R043304", "___s": true }, { @@ -381890,7 +382499,7 @@ "longname": "Phaser.Tilemaps.Tilemap#heightInPixels", "scope": "instance", "kind": "member", - "___id": "T000002R043336", + "___id": "T000002R043306", "___s": true }, { @@ -381927,7 +382536,7 @@ "longname": "Phaser.Tilemaps.Tilemap#imageCollections", "scope": "instance", "kind": "member", - "___id": "T000002R043338", + "___id": "T000002R043308", "___s": true }, { @@ -381955,7 +382564,7 @@ "longname": "Phaser.Tilemaps.Tilemap#images", "scope": "instance", "kind": "member", - "___id": "T000002R043340", + "___id": "T000002R043310", "___s": true }, { @@ -381992,7 +382601,7 @@ "longname": "Phaser.Tilemaps.Tilemap#layers", "scope": "instance", "kind": "member", - "___id": "T000002R043342", + "___id": "T000002R043312", "___s": true }, { @@ -382023,7 +382632,7 @@ "longname": "Phaser.Tilemaps.Tilemap#tiles", "scope": "instance", "kind": "member", - "___id": "T000002R043344", + "___id": "T000002R043314", "___s": true }, { @@ -382060,7 +382669,7 @@ "longname": "Phaser.Tilemaps.Tilemap#tilesets", "scope": "instance", "kind": "member", - "___id": "T000002R043346", + "___id": "T000002R043316", "___s": true }, { @@ -382097,7 +382706,7 @@ "longname": "Phaser.Tilemaps.Tilemap#objects", "scope": "instance", "kind": "member", - "___id": "T000002R043348", + "___id": "T000002R043318", "___s": true }, { @@ -382125,7 +382734,7 @@ "longname": "Phaser.Tilemaps.Tilemap#currentLayerIndex", "scope": "instance", "kind": "member", - "___id": "T000002R043350", + "___id": "T000002R043320", "___s": true }, { @@ -382153,7 +382762,7 @@ "longname": "Phaser.Tilemaps.Tilemap#hexSideLength", "scope": "instance", "kind": "member", - "___id": "T000002R043352", + "___id": "T000002R043322", "___s": true }, { @@ -382212,7 +382821,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#setRenderOrder", "scope": "instance", - "___id": "T000002R043364", + "___id": "T000002R043334", "___s": true }, { @@ -382362,7 +382971,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#addTilesetImage", "scope": "instance", - "___id": "T000002R043369", + "___id": "T000002R043339", "___s": true }, { @@ -382521,7 +383130,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#copy", "scope": "instance", - "___id": "T000002R043386", + "___id": "T000002R043356", "___s": true }, { @@ -382708,7 +383317,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#createBlankLayer", "scope": "instance", - "___id": "T000002R043389", + "___id": "T000002R043359", "___s": true }, { @@ -382849,7 +383458,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#createLayer", "scope": "instance", - "___id": "T000002R043411", + "___id": "T000002R043381", "___s": true }, { @@ -382953,7 +383562,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#createFromObjects", "scope": "instance", - "___id": "T000002R043419", + "___id": "T000002R043389", "___s": true }, { @@ -383118,7 +383727,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#createFromTiles", "scope": "instance", - "___id": "T000002R043462", + "___id": "T000002R043432", "___s": true }, { @@ -383268,7 +383877,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#fill", "scope": "instance", - "___id": "T000002R043465", + "___id": "T000002R043435", "___s": true }, { @@ -383364,7 +383973,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#filterObjects", "scope": "instance", - "___id": "T000002R043469", + "___id": "T000002R043439", "___s": true }, { @@ -383536,7 +384145,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#filterTiles", "scope": "instance", - "___id": "T000002R043473", + "___id": "T000002R043443", "___s": true }, { @@ -383645,7 +384254,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#findByIndex", "scope": "instance", - "___id": "T000002R043476", + "___id": "T000002R043446", "___s": true }, { @@ -383732,7 +384341,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#findObject", "scope": "instance", - "___id": "T000002R043479", + "___id": "T000002R043449", "___s": true }, { @@ -383895,7 +384504,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#findTile", "scope": "instance", - "___id": "T000002R043483", + "___id": "T000002R043453", "___s": true }, { @@ -384058,7 +384667,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#forEachTile", "scope": "instance", - "___id": "T000002R043486", + "___id": "T000002R043456", "___s": true }, { @@ -384106,7 +384715,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getImageIndex", "scope": "instance", - "___id": "T000002R043489", + "___id": "T000002R043459", "___s": true }, { @@ -384148,7 +384757,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getImageLayerNames", "scope": "instance", - "___id": "T000002R043491", + "___id": "T000002R043461", "___s": true }, { @@ -384209,7 +384818,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getIndex", "scope": "instance", - "___id": "T000002R043493", + "___id": "T000002R043463", "___s": true }, { @@ -384275,7 +384884,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getLayer", "scope": "instance", - "___id": "T000002R043496", + "___id": "T000002R043466", "___s": true }, { @@ -384326,7 +384935,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getObjectLayer", "scope": "instance", - "___id": "T000002R043499", + "___id": "T000002R043469", "___s": true }, { @@ -384368,7 +384977,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getObjectLayerNames", "scope": "instance", - "___id": "T000002R043502", + "___id": "T000002R043472", "___s": true }, { @@ -384432,7 +385041,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getLayerIndex", "scope": "instance", - "___id": "T000002R043504", + "___id": "T000002R043474", "___s": true }, { @@ -384480,7 +385089,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getLayerIndexByName", "scope": "instance", - "___id": "T000002R043506", + "___id": "T000002R043476", "___s": true }, { @@ -384587,7 +385196,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getTileAt", "scope": "instance", - "___id": "T000002R043508", + "___id": "T000002R043478", "___s": true }, { @@ -384708,7 +385317,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getTileAtWorldXY", "scope": "instance", - "___id": "T000002R043511", + "___id": "T000002R043481", "___s": true }, { @@ -384750,7 +385359,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getTileLayerNames", "scope": "instance", - "___id": "T000002R043514", + "___id": "T000002R043484", "___s": true }, { @@ -384895,7 +385504,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getTilesWithin", "scope": "instance", - "___id": "T000002R043516", + "___id": "T000002R043486", "___s": true }, { @@ -385031,7 +385640,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getTilesWithinShape", "scope": "instance", - "___id": "T000002R043519", + "___id": "T000002R043489", "___s": true }, { @@ -385186,7 +385795,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getTilesWithinWorldXY", "scope": "instance", - "___id": "T000002R043522", + "___id": "T000002R043492", "___s": true }, { @@ -385236,7 +385845,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getTileset", "scope": "instance", - "___id": "T000002R043525", + "___id": "T000002R043495", "___s": true }, { @@ -385284,7 +385893,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getTilesetIndex", "scope": "instance", - "___id": "T000002R043528", + "___id": "T000002R043498", "___s": true }, { @@ -385376,7 +385985,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#hasTileAt", "scope": "instance", - "___id": "T000002R043530", + "___id": "T000002R043500", "___s": true }, { @@ -385482,7 +386091,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#hasTileAtWorldXY", "scope": "instance", - "___id": "T000002R043533", + "___id": "T000002R043503", "___s": true }, { @@ -385510,7 +386119,7 @@ "longname": "Phaser.Tilemaps.Tilemap#layer", "scope": "instance", "kind": "member", - "___id": "T000002R043536", + "___id": "T000002R043506", "___s": true }, { @@ -385639,7 +386248,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#putTileAt", "scope": "instance", - "___id": "T000002R043540", + "___id": "T000002R043510", "___s": true }, { @@ -385782,7 +386391,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#putTileAtWorldXY", "scope": "instance", - "___id": "T000002R043544", + "___id": "T000002R043514", "___s": true }, { @@ -385975,7 +386584,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#putTilesAt", "scope": "instance", - "___id": "T000002R043548", + "___id": "T000002R043518", "___s": true }, { @@ -386120,7 +386729,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#randomize", "scope": "instance", - "___id": "T000002R043552", + "___id": "T000002R043522", "___s": true }, { @@ -386212,7 +386821,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#calculateFacesAt", "scope": "instance", - "___id": "T000002R043555", + "___id": "T000002R043525", "___s": true }, { @@ -386334,7 +386943,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#calculateFacesWithin", "scope": "instance", - "___id": "T000002R043558", + "___id": "T000002R043528", "___s": true }, { @@ -386400,7 +387009,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#removeLayer", "scope": "instance", - "___id": "T000002R043561", + "___id": "T000002R043531", "___s": true }, { @@ -386466,7 +387075,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#destroyLayer", "scope": "instance", - "___id": "T000002R043566", + "___id": "T000002R043536", "___s": true }, { @@ -386500,7 +387109,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#removeAllLayers", "scope": "instance", - "___id": "T000002R043571", + "___id": "T000002R043541", "___s": true }, { @@ -386606,7 +387215,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#removeTile", "scope": "instance", - "___id": "T000002R043577", + "___id": "T000002R043547", "___s": true }, { @@ -386726,7 +387335,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#removeTileAt", "scope": "instance", - "___id": "T000002R043585", + "___id": "T000002R043555", "___s": true }, { @@ -386860,7 +387469,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#removeTileAtWorldXY", "scope": "instance", - "___id": "T000002R043590", + "___id": "T000002R043560", "___s": true }, { @@ -386953,7 +387562,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#renderDebug", "scope": "instance", - "___id": "T000002R043595", + "___id": "T000002R043565", "___s": true }, { @@ -387016,7 +387625,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#renderDebugFull", "scope": "instance", - "___id": "T000002R043598", + "___id": "T000002R043568", "___s": true }, { @@ -387164,7 +387773,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#replaceByIndex", "scope": "instance", - "___id": "T000002R043602", + "___id": "T000002R043572", "___s": true }, { @@ -387296,7 +387905,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#setCollision", "scope": "instance", - "___id": "T000002R043605", + "___id": "T000002R043575", "___s": true }, { @@ -387416,7 +388025,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#setCollisionBetween", "scope": "instance", - "___id": "T000002R043611", + "___id": "T000002R043581", "___s": true }, { @@ -387523,7 +388132,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#setCollisionByProperty", "scope": "instance", - "___id": "T000002R043616", + "___id": "T000002R043586", "___s": true }, { @@ -387639,7 +388248,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#setCollisionByExclusion", "scope": "instance", - "___id": "T000002R043621", + "___id": "T000002R043591", "___s": true }, { @@ -387733,7 +388342,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#setCollisionFromCollisionGroup", "scope": "instance", - "___id": "T000002R043626", + "___id": "T000002R043596", "___s": true }, { @@ -387857,7 +388466,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#setTileIndexCallback", "scope": "instance", - "___id": "T000002R043631", + "___id": "T000002R043601", "___s": true }, { @@ -388002,7 +388611,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#setTileLocationCallback", "scope": "instance", - "___id": "T000002R043634", + "___id": "T000002R043604", "___s": true }, { @@ -388067,7 +388676,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#setLayer", "scope": "instance", - "___id": "T000002R043637", + "___id": "T000002R043607", "___s": true }, { @@ -388129,7 +388738,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#setBaseTileSize", "scope": "instance", - "___id": "T000002R043641", + "___id": "T000002R043611", "___s": true }, { @@ -388220,7 +388829,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#setLayerTileSize", "scope": "instance", - "___id": "T000002R043656", + "___id": "T000002R043626", "___s": true }, { @@ -388342,7 +388951,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#shuffle", "scope": "instance", - "___id": "T000002R043667", + "___id": "T000002R043637", "___s": true }, { @@ -388490,7 +389099,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#swapByIndex", "scope": "instance", - "___id": "T000002R043670", + "___id": "T000002R043640", "___s": true }, { @@ -388583,7 +389192,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#tileToWorldX", "scope": "instance", - "___id": "T000002R043673", + "___id": "T000002R043643", "___s": true }, { @@ -388676,7 +389285,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#tileToWorldY", "scope": "instance", - "___id": "T000002R043676", + "___id": "T000002R043646", "___s": true }, { @@ -388796,7 +389405,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#tileToWorldXY", "scope": "instance", - "___id": "T000002R043679", + "___id": "T000002R043649", "___s": true }, { @@ -388911,7 +389520,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#getTileCorners", "scope": "instance", - "___id": "T000002R043682", + "___id": "T000002R043652", "___s": true }, { @@ -389055,7 +389664,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#weightedRandomize", "scope": "instance", - "___id": "T000002R043685", + "___id": "T000002R043655", "___s": true }, { @@ -389162,7 +389771,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#worldToTileX", "scope": "instance", - "___id": "T000002R043688", + "___id": "T000002R043658", "___s": true }, { @@ -389269,7 +389878,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#worldToTileY", "scope": "instance", - "___id": "T000002R043691", + "___id": "T000002R043661", "___s": true }, { @@ -389403,7 +390012,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#worldToTileXY", "scope": "instance", - "___id": "T000002R043694", + "___id": "T000002R043664", "___s": true }, { @@ -389422,7 +390031,7 @@ "memberof": "Phaser.Tilemaps.Tilemap", "longname": "Phaser.Tilemaps.Tilemap#destroy", "scope": "instance", - "___id": "T000002R043697", + "___id": "T000002R043667", "___s": true }, { @@ -389470,7 +390079,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#tilemap", "scope": "instance", - "___id": "T000002R043706", + "___id": "T000002R043676", "___s": true }, { @@ -389625,7 +390234,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#tilemap", "scope": "instance", - "___id": "T000002R043710", + "___id": "T000002R043680", "___s": true }, { @@ -389783,7 +390392,7 @@ ], "scope": "static", "longname": "Phaser.Tilemaps.TilemapLayer", - "___id": "T000002R043723", + "___id": "T000002R043693", "___s": true }, { @@ -389812,7 +390421,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#isTilemap", "scope": "instance", "kind": "member", - "___id": "T000002R043728", + "___id": "T000002R043698", "___s": true }, { @@ -389840,7 +390449,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#tilemap", "scope": "instance", "kind": "member", - "___id": "T000002R043730", + "___id": "T000002R043700", "___s": true }, { @@ -389868,7 +390477,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#layerIndex", "scope": "instance", "kind": "member", - "___id": "T000002R043732", + "___id": "T000002R043702", "___s": true }, { @@ -389896,7 +390505,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#layer", "scope": "instance", "kind": "member", - "___id": "T000002R043734", + "___id": "T000002R043704", "___s": true }, { @@ -389933,7 +390542,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#tileset", "scope": "instance", "kind": "member", - "___id": "T000002R043737", + "___id": "T000002R043707", "___s": true }, { @@ -389962,7 +390571,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#tilesDrawn", "scope": "instance", "kind": "member", - "___id": "T000002R043739", + "___id": "T000002R043709", "___s": true }, { @@ -389991,7 +390600,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#tilesTotal", "scope": "instance", "kind": "member", - "___id": "T000002R043741", + "___id": "T000002R043711", "___s": true }, { @@ -390028,7 +390637,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#culledTiles", "scope": "instance", "kind": "member", - "___id": "T000002R043743", + "___id": "T000002R043713", "___s": true }, { @@ -390056,7 +390665,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#skipCull", "scope": "instance", "kind": "member", - "___id": "T000002R043745", + "___id": "T000002R043715", "___s": true }, { @@ -390085,7 +390694,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#cullPaddingX", "scope": "instance", "kind": "member", - "___id": "T000002R043747", + "___id": "T000002R043717", "___s": true }, { @@ -390114,7 +390723,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#cullPaddingY", "scope": "instance", "kind": "member", - "___id": "T000002R043749", + "___id": "T000002R043719", "___s": true }, { @@ -390142,7 +390751,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#cullCallback", "scope": "instance", "kind": "member", - "___id": "T000002R043751", + "___id": "T000002R043721", "___s": true }, { @@ -390179,7 +390788,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#gidMap", "scope": "instance", "kind": "member", - "___id": "T000002R043755", + "___id": "T000002R043725", "___s": true }, { @@ -390207,7 +390816,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#collisionCategory", "scope": "instance", "kind": "member", - "___id": "T000002R043759", + "___id": "T000002R043729", "___s": true }, { @@ -390235,7 +390844,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#collisionMask", "scope": "instance", "kind": "member", - "___id": "T000002R043761", + "___id": "T000002R043731", "___s": true }, { @@ -390266,7 +390875,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.Origin#originX", - "___id": "T000002R043763", + "___id": "T000002R043733", "___s": true }, { @@ -390297,7 +390906,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.Origin#originY", - "___id": "T000002R043764", + "___id": "T000002R043734", "___s": true }, { @@ -390328,7 +390937,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.Origin#displayOriginX", - "___id": "T000002R043765", + "___id": "T000002R043735", "___s": true }, { @@ -390359,7 +390968,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.GameObjects.Components.Origin#displayOriginY", - "___id": "T000002R043766", + "___id": "T000002R043736", "___s": true }, { @@ -390418,7 +391027,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#setRenderOrder", "scope": "instance", - "___id": "T000002R043781", + "___id": "T000002R043751", "___s": true }, { @@ -390480,7 +391089,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#calculateFacesAt", "scope": "instance", - "___id": "T000002R043786", + "___id": "T000002R043756", "___s": true }, { @@ -390572,7 +391181,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#calculateFacesWithin", "scope": "instance", - "___id": "T000002R043788", + "___id": "T000002R043758", "___s": true }, { @@ -390706,7 +391315,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#createFromTiles", "scope": "instance", - "___id": "T000002R043790", + "___id": "T000002R043760", "___s": true }, { @@ -390764,7 +391373,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#cull", "scope": "instance", - "___id": "T000002R043792", + "___id": "T000002R043762", "___s": true }, { @@ -390893,7 +391502,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#copy", "scope": "instance", - "___id": "T000002R043794", + "___id": "T000002R043764", "___s": true }, { @@ -391013,7 +391622,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#fill", "scope": "instance", - "___id": "T000002R043796", + "___id": "T000002R043766", "___s": true }, { @@ -391154,7 +391763,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#filterTiles", "scope": "instance", - "___id": "T000002R043798", + "___id": "T000002R043768", "___s": true }, { @@ -391232,7 +391841,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#findByIndex", "scope": "instance", - "___id": "T000002R043800", + "___id": "T000002R043770", "___s": true }, { @@ -391366,7 +391975,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#findTile", "scope": "instance", - "___id": "T000002R043802", + "___id": "T000002R043772", "___s": true }, { @@ -391499,7 +392108,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#forEachTile", "scope": "instance", - "___id": "T000002R043804", + "___id": "T000002R043774", "___s": true }, { @@ -391627,7 +392236,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#setTint", "scope": "instance", - "___id": "T000002R043806", + "___id": "T000002R043776", "___s": true }, { @@ -391755,7 +392364,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#setTintFill", "scope": "instance", - "___id": "T000002R043812", + "___id": "T000002R043782", "___s": true }, { @@ -391831,7 +392440,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#getTileAt", "scope": "instance", - "___id": "T000002R043818", + "___id": "T000002R043788", "___s": true }, { @@ -391921,7 +392530,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#getTileAtWorldXY", "scope": "instance", - "___id": "T000002R043820", + "___id": "T000002R043790", "___s": true }, { @@ -392026,7 +392635,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#getIsoTileAtWorldXY", "scope": "instance", - "___id": "T000002R043822", + "___id": "T000002R043792", "___s": true }, { @@ -392140,7 +392749,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#getTilesWithin", "scope": "instance", - "___id": "T000002R043826", + "___id": "T000002R043796", "___s": true }, { @@ -392245,7 +392854,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#getTilesWithinShape", "scope": "instance", - "___id": "T000002R043828", + "___id": "T000002R043798", "___s": true }, { @@ -392369,7 +392978,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#getTilesWithinWorldXY", "scope": "instance", - "___id": "T000002R043830", + "___id": "T000002R043800", "___s": true }, { @@ -392430,7 +393039,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#hasTileAt", "scope": "instance", - "___id": "T000002R043832", + "___id": "T000002R043802", "___s": true }, { @@ -392505,7 +393114,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#hasTileAtWorldXY", "scope": "instance", - "___id": "T000002R043834", + "___id": "T000002R043804", "___s": true }, { @@ -392604,7 +393213,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#putTileAt", "scope": "instance", - "___id": "T000002R043836", + "___id": "T000002R043806", "___s": true }, { @@ -392716,7 +393325,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#putTileAtWorldXY", "scope": "instance", - "___id": "T000002R043838", + "___id": "T000002R043808", "___s": true }, { @@ -392880,7 +393489,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#putTilesAt", "scope": "instance", - "___id": "T000002R043840", + "___id": "T000002R043810", "___s": true }, { @@ -392995,7 +393604,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#randomize", "scope": "instance", - "___id": "T000002R043842", + "___id": "T000002R043812", "___s": true }, { @@ -393086,7 +393695,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#removeTileAt", "scope": "instance", - "___id": "T000002R043844", + "___id": "T000002R043814", "___s": true }, { @@ -393191,7 +393800,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#removeTileAtWorldXY", "scope": "instance", - "___id": "T000002R043846", + "___id": "T000002R043816", "___s": true }, { @@ -393254,7 +393863,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#renderDebug", "scope": "instance", - "___id": "T000002R043848", + "___id": "T000002R043818", "___s": true }, { @@ -393372,7 +393981,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#replaceByIndex", "scope": "instance", - "___id": "T000002R043850", + "___id": "T000002R043820", "___s": true }, { @@ -393423,7 +394032,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#setSkipCull", "scope": "instance", - "___id": "T000002R043852", + "___id": "T000002R043822", "___s": true }, { @@ -393489,7 +394098,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#setCullPadding", "scope": "instance", - "___id": "T000002R043856", + "___id": "T000002R043826", "___s": true }, { @@ -393593,7 +394202,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#setCollision", "scope": "instance", - "___id": "T000002R043862", + "___id": "T000002R043832", "___s": true }, { @@ -393685,7 +394294,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#setCollisionBetween", "scope": "instance", - "___id": "T000002R043864", + "___id": "T000002R043834", "___s": true }, { @@ -393764,7 +394373,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#setCollisionByProperty", "scope": "instance", - "___id": "T000002R043866", + "___id": "T000002R043836", "___s": true }, { @@ -393852,7 +394461,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#setCollisionByExclusion", "scope": "instance", - "___id": "T000002R043868", + "___id": "T000002R043838", "___s": true }, { @@ -393918,7 +394527,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#setCollisionFromCollisionGroup", "scope": "instance", - "___id": "T000002R043870", + "___id": "T000002R043840", "___s": true }, { @@ -394012,7 +394621,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#setTileIndexCallback", "scope": "instance", - "___id": "T000002R043872", + "___id": "T000002R043842", "___s": true }, { @@ -394132,7 +394741,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#setTileLocationCallback", "scope": "instance", - "___id": "T000002R043874", + "___id": "T000002R043844", "___s": true }, { @@ -394224,7 +394833,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#shuffle", "scope": "instance", - "___id": "T000002R043876", + "___id": "T000002R043846", "___s": true }, { @@ -394342,7 +394951,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#swapByIndex", "scope": "instance", - "___id": "T000002R043878", + "___id": "T000002R043848", "___s": true }, { @@ -394404,7 +395013,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#tileToWorldX", "scope": "instance", - "___id": "T000002R043880", + "___id": "T000002R043850", "___s": true }, { @@ -394466,7 +395075,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#tileToWorldY", "scope": "instance", - "___id": "T000002R043882", + "___id": "T000002R043852", "___s": true }, { @@ -394555,7 +395164,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#tileToWorldXY", "scope": "instance", - "___id": "T000002R043884", + "___id": "T000002R043854", "___s": true }, { @@ -394641,7 +395250,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#getTileCorners", "scope": "instance", - "___id": "T000002R043886", + "___id": "T000002R043856", "___s": true }, { @@ -394755,7 +395364,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#weightedRandomize", "scope": "instance", - "___id": "T000002R043888", + "___id": "T000002R043858", "___s": true }, { @@ -394831,7 +395440,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#worldToTileX", "scope": "instance", - "___id": "T000002R043890", + "___id": "T000002R043860", "___s": true }, { @@ -394907,7 +395516,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#worldToTileY", "scope": "instance", - "___id": "T000002R043892", + "___id": "T000002R043862", "___s": true }, { @@ -395010,7 +395619,7 @@ "memberof": "Phaser.Tilemaps.TilemapLayer", "longname": "Phaser.Tilemaps.TilemapLayer#worldToTileXY", "scope": "instance", - "___id": "T000002R043894", + "___id": "T000002R043864", "___s": true }, { @@ -395047,7 +395656,7 @@ "longname": "Phaser.Tilemaps.TilemapLayer#destroy", "scope": "instance", "overrides": "Phaser.GameObjects.GameObject#destroy", - "___id": "T000002R043896", + "___id": "T000002R043866", "___s": true }, { @@ -395199,7 +395808,7 @@ ], "scope": "static", "longname": "Phaser.Tilemaps.Tileset", - "___id": "T000002R043982", + "___id": "T000002R043952", "___s": true }, { @@ -395227,7 +395836,7 @@ "longname": "Phaser.Tilemaps.Tileset#name", "scope": "instance", "kind": "member", - "___id": "T000002R043991", + "___id": "T000002R043961", "___s": true }, { @@ -395255,7 +395864,7 @@ "longname": "Phaser.Tilemaps.Tileset#firstgid", "scope": "instance", "kind": "member", - "___id": "T000002R043993", + "___id": "T000002R043963", "___s": true }, { @@ -395284,7 +395893,7 @@ "longname": "Phaser.Tilemaps.Tileset#tileWidth", "scope": "instance", "kind": "member", - "___id": "T000002R043995", + "___id": "T000002R043965", "___s": true }, { @@ -395313,7 +395922,7 @@ "longname": "Phaser.Tilemaps.Tileset#tileHeight", "scope": "instance", "kind": "member", - "___id": "T000002R043997", + "___id": "T000002R043967", "___s": true }, { @@ -395342,7 +395951,7 @@ "longname": "Phaser.Tilemaps.Tileset#tileMargin", "scope": "instance", "kind": "member", - "___id": "T000002R043999", + "___id": "T000002R043969", "___s": true }, { @@ -395371,7 +395980,7 @@ "longname": "Phaser.Tilemaps.Tileset#tileSpacing", "scope": "instance", "kind": "member", - "___id": "T000002R044001", + "___id": "T000002R043971", "___s": true }, { @@ -395399,7 +396008,7 @@ "longname": "Phaser.Tilemaps.Tileset#tileProperties", "scope": "instance", "kind": "member", - "___id": "T000002R044003", + "___id": "T000002R043973", "___s": true }, { @@ -395427,7 +396036,7 @@ "longname": "Phaser.Tilemaps.Tileset#tileData", "scope": "instance", "kind": "member", - "___id": "T000002R044005", + "___id": "T000002R043975", "___s": true }, { @@ -395455,7 +396064,7 @@ "longname": "Phaser.Tilemaps.Tileset#tileOffset", "scope": "instance", "kind": "member", - "___id": "T000002R044007", + "___id": "T000002R043977", "___s": true }, { @@ -395486,7 +396095,7 @@ "longname": "Phaser.Tilemaps.Tileset#image", "scope": "instance", "kind": "member", - "___id": "T000002R044009", + "___id": "T000002R043979", "___s": true }, { @@ -395517,7 +396126,7 @@ "longname": "Phaser.Tilemaps.Tileset#glTexture", "scope": "instance", "kind": "member", - "___id": "T000002R044011", + "___id": "T000002R043981", "___s": true }, { @@ -395546,7 +396155,7 @@ "longname": "Phaser.Tilemaps.Tileset#rows", "scope": "instance", "kind": "member", - "___id": "T000002R044013", + "___id": "T000002R043983", "___s": true }, { @@ -395575,7 +396184,7 @@ "longname": "Phaser.Tilemaps.Tileset#columns", "scope": "instance", "kind": "member", - "___id": "T000002R044015", + "___id": "T000002R043985", "___s": true }, { @@ -395604,7 +396213,7 @@ "longname": "Phaser.Tilemaps.Tileset#total", "scope": "instance", "kind": "member", - "___id": "T000002R044017", + "___id": "T000002R043987", "___s": true }, { @@ -395642,7 +396251,7 @@ "longname": "Phaser.Tilemaps.Tileset#texCoordinates", "scope": "instance", "kind": "member", - "___id": "T000002R044019", + "___id": "T000002R043989", "___s": true }, { @@ -395700,7 +396309,7 @@ "memberof": "Phaser.Tilemaps.Tileset", "longname": "Phaser.Tilemaps.Tileset#getTileProperties", "scope": "instance", - "___id": "T000002R044021", + "___id": "T000002R043991", "___s": true }, { @@ -395757,7 +396366,7 @@ "memberof": "Phaser.Tilemaps.Tileset", "longname": "Phaser.Tilemaps.Tileset#getTileData", "scope": "instance", - "___id": "T000002R044023", + "___id": "T000002R043993", "___s": true }, { @@ -395806,7 +396415,7 @@ "memberof": "Phaser.Tilemaps.Tileset", "longname": "Phaser.Tilemaps.Tileset#getTileCollisionGroup", "scope": "instance", - "___id": "T000002R044025", + "___id": "T000002R043995", "___s": true }, { @@ -395853,7 +396462,7 @@ "memberof": "Phaser.Tilemaps.Tileset", "longname": "Phaser.Tilemaps.Tileset#containsTileIndex", "scope": "instance", - "___id": "T000002R044028", + "___id": "T000002R043998", "___s": true }, { @@ -395903,7 +396512,7 @@ "memberof": "Phaser.Tilemaps.Tileset", "longname": "Phaser.Tilemaps.Tileset#getTileTextureCoordinates", "scope": "instance", - "___id": "T000002R044030", + "___id": "T000002R044000", "___s": true }, { @@ -395951,7 +396560,7 @@ "memberof": "Phaser.Tilemaps.Tileset", "longname": "Phaser.Tilemaps.Tileset#setImage", "scope": "instance", - "___id": "T000002R044032", + "___id": "T000002R044002", "___s": true }, { @@ -396014,7 +396623,7 @@ "memberof": "Phaser.Tilemaps.Tileset", "longname": "Phaser.Tilemaps.Tileset#setTileSize", "scope": "instance", - "___id": "T000002R044038", + "___id": "T000002R044008", "___s": true }, { @@ -396077,7 +396686,7 @@ "memberof": "Phaser.Tilemaps.Tileset", "longname": "Phaser.Tilemaps.Tileset#setSpacing", "scope": "instance", - "___id": "T000002R044042", + "___id": "T000002R044012", "___s": true }, { @@ -396168,7 +396777,7 @@ "memberof": "Phaser.Tilemaps.Tileset", "longname": "Phaser.Tilemaps.Tileset#updateTileData", "scope": "instance", - "___id": "T000002R044046", + "___id": "T000002R044016", "___s": true }, { @@ -396357,7 +396966,7 @@ "memberof": "Phaser.Types.Tilemaps", "longname": "Phaser.Types.Tilemaps.CreateFromObjectLayerConfig", "scope": "static", - "___id": "T000002R044068", + "___id": "T000002R044038", "___s": true }, { @@ -396395,7 +397004,7 @@ "memberof": "Phaser.Types.Tilemaps", "longname": "Phaser.Types.Tilemaps.CreateFromObjectsClassTypeConstructor", "scope": "static", - "___id": "T000002R044069", + "___id": "T000002R044039", "___s": true }, { @@ -396475,7 +397084,7 @@ "memberof": "Phaser.Types.Tilemaps", "longname": "Phaser.Types.Tilemaps.DebugStyleOptions", "scope": "static", - "___id": "T000002R044070", + "___id": "T000002R044040", "___s": true }, { @@ -396549,7 +397158,7 @@ "memberof": "Phaser.Types.Tilemaps", "longname": "Phaser.Types.Tilemaps.FilteringOptions", "scope": "static", - "___id": "T000002R044071", + "___id": "T000002R044041", "___s": true }, { @@ -396656,7 +397265,7 @@ "memberof": "Phaser.Types.Tilemaps", "longname": "Phaser.Types.Tilemaps.GIDData", "scope": "static", - "___id": "T000002R044072", + "___id": "T000002R044042", "___s": true }, { @@ -396673,7 +397282,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Tilemaps", "scope": "static", - "___id": "T000002R044073", + "___id": "T000002R044043", "___s": true }, { @@ -397003,7 +397612,7 @@ "memberof": "Phaser.Types.Tilemaps", "longname": "Phaser.Types.Tilemaps.LayerDataConfig", "scope": "static", - "___id": "T000002R044074", + "___id": "T000002R044044", "___s": true }, { @@ -397330,7 +397939,7 @@ "memberof": "Phaser.Types.Tilemaps", "longname": "Phaser.Types.Tilemaps.MapDataConfig", "scope": "static", - "___id": "T000002R044075", + "___id": "T000002R044045", "___s": true }, { @@ -397470,7 +398079,7 @@ "memberof": "Phaser.Types.Tilemaps", "longname": "Phaser.Types.Tilemaps.ObjectLayerConfig", "scope": "static", - "___id": "T000002R044076", + "___id": "T000002R044046", "___s": true }, { @@ -397592,7 +398201,7 @@ "memberof": "Phaser.Types.Tilemaps", "longname": "Phaser.Types.Tilemaps.StyleConfig", "scope": "static", - "___id": "T000002R044077", + "___id": "T000002R044047", "___s": true }, { @@ -397916,7 +398525,7 @@ "memberof": "Phaser.Types.Tilemaps", "longname": "Phaser.Types.Tilemaps.TiledObject", "scope": "static", - "___id": "T000002R044078", + "___id": "T000002R044048", "___s": true }, { @@ -398066,7 +398675,7 @@ "memberof": "Phaser.Types.Tilemaps", "longname": "Phaser.Types.Tilemaps.TilemapConfig", "scope": "static", - "___id": "T000002R044079", + "___id": "T000002R044049", "___s": true }, { @@ -398100,7 +398709,7 @@ ], "scope": "static", "longname": "Phaser.Time.Clock", - "___id": "T000002R044085", + "___id": "T000002R044055", "___s": true }, { @@ -398128,7 +398737,7 @@ "longname": "Phaser.Time.Clock#scene", "scope": "instance", "kind": "member", - "___id": "T000002R044088", + "___id": "T000002R044058", "___s": true }, { @@ -398156,7 +398765,7 @@ "longname": "Phaser.Time.Clock#systems", "scope": "instance", "kind": "member", - "___id": "T000002R044090", + "___id": "T000002R044060", "___s": true }, { @@ -398184,7 +398793,7 @@ "longname": "Phaser.Time.Clock#now", "scope": "instance", "kind": "member", - "___id": "T000002R044092", + "___id": "T000002R044062", "___s": true }, { @@ -398212,7 +398821,7 @@ "longname": "Phaser.Time.Clock#startTime", "scope": "instance", "kind": "member", - "___id": "T000002R044094", + "___id": "T000002R044064", "___s": true }, { @@ -398241,7 +398850,7 @@ "longname": "Phaser.Time.Clock#timeScale", "scope": "instance", "kind": "member", - "___id": "T000002R044096", + "___id": "T000002R044066", "___s": true }, { @@ -398270,7 +398879,7 @@ "longname": "Phaser.Time.Clock#paused", "scope": "instance", "kind": "member", - "___id": "T000002R044098", + "___id": "T000002R044068", "___s": true }, { @@ -398328,7 +398937,7 @@ "memberof": "Phaser.Time.Clock", "longname": "Phaser.Time.Clock#addEvent", "scope": "instance", - "___id": "T000002R044113", + "___id": "T000002R044083", "___s": true }, { @@ -398424,7 +399033,7 @@ "memberof": "Phaser.Time.Clock", "longname": "Phaser.Time.Clock#delayedCall", "scope": "instance", - "___id": "T000002R044121", + "___id": "T000002R044091", "___s": true }, { @@ -398458,7 +399067,7 @@ "memberof": "Phaser.Time.Clock", "longname": "Phaser.Time.Clock#clearPendingEvents", "scope": "instance", - "___id": "T000002R044127", + "___id": "T000002R044097", "___s": true }, { @@ -398526,7 +399135,7 @@ "memberof": "Phaser.Time.Clock", "longname": "Phaser.Time.Clock#removeEvent", "scope": "instance", - "___id": "T000002R044130", + "___id": "T000002R044100", "___s": true }, { @@ -398560,7 +399169,7 @@ "memberof": "Phaser.Time.Clock", "longname": "Phaser.Time.Clock#removeAllEvents", "scope": "instance", - "___id": "T000002R044135", + "___id": "T000002R044105", "___s": true }, { @@ -398607,7 +399216,7 @@ "memberof": "Phaser.Time.Clock", "longname": "Phaser.Time.Clock#preUpdate", "scope": "instance", - "___id": "T000002R044138", + "___id": "T000002R044108", "___s": true }, { @@ -398654,7 +399263,7 @@ "memberof": "Phaser.Time.Clock", "longname": "Phaser.Time.Clock#update", "scope": "instance", - "___id": "T000002R044151", + "___id": "T000002R044121", "___s": true }, { @@ -398697,7 +399306,7 @@ "memberof": "Phaser.Time.Events", "longname": "Phaser.Time.Events#event:COMPLETE", "scope": "instance", - "___id": "T000002R044179", + "___id": "T000002R044149", "___s": true }, { @@ -398714,7 +399323,7 @@ "memberof": "Phaser.Time", "longname": "Phaser.Time.Events", "scope": "static", - "___id": "T000002R044181", + "___id": "T000002R044151", "___s": true }, { @@ -398731,7 +399340,7 @@ "memberof": "Phaser", "longname": "Phaser.Time", "scope": "static", - "___id": "T000002R044184", + "___id": "T000002R044154", "___s": true }, { @@ -398801,7 +399410,7 @@ ], "scope": "static", "longname": "Phaser.Time.Timeline", - "___id": "T000002R044196", + "___id": "T000002R044166", "___s": true }, { @@ -398829,7 +399438,7 @@ "longname": "Phaser.Time.Timeline#scene", "scope": "instance", "kind": "member", - "___id": "T000002R044200", + "___id": "T000002R044170", "___s": true }, { @@ -398857,7 +399466,7 @@ "longname": "Phaser.Time.Timeline#systems", "scope": "instance", "kind": "member", - "___id": "T000002R044202", + "___id": "T000002R044172", "___s": true }, { @@ -398885,7 +399494,7 @@ "longname": "Phaser.Time.Timeline#elapsed", "scope": "instance", "kind": "member", - "___id": "T000002R044204", + "___id": "T000002R044174", "___s": true }, { @@ -398913,7 +399522,7 @@ "longname": "Phaser.Time.Timeline#timeScale", "scope": "instance", "kind": "member", - "___id": "T000002R044206", + "___id": "T000002R044176", "___s": true }, { @@ -398942,7 +399551,7 @@ "longname": "Phaser.Time.Timeline#paused", "scope": "instance", "kind": "member", - "___id": "T000002R044208", + "___id": "T000002R044178", "___s": true }, { @@ -398971,7 +399580,7 @@ "longname": "Phaser.Time.Timeline#complete", "scope": "instance", "kind": "member", - "___id": "T000002R044210", + "___id": "T000002R044180", "___s": true }, { @@ -398999,7 +399608,7 @@ "longname": "Phaser.Time.Timeline#totalComplete", "scope": "instance", "kind": "member", - "___id": "T000002R044212", + "___id": "T000002R044182", "___s": true }, { @@ -399027,7 +399636,7 @@ "longname": "Phaser.Time.Timeline#loop", "scope": "instance", "kind": "member", - "___id": "T000002R044214", + "___id": "T000002R044184", "___s": true }, { @@ -399055,7 +399664,7 @@ "longname": "Phaser.Time.Timeline#iteration", "scope": "instance", "kind": "member", - "___id": "T000002R044216", + "___id": "T000002R044186", "___s": true }, { @@ -399092,7 +399701,7 @@ "longname": "Phaser.Time.Timeline#events", "scope": "instance", "kind": "member", - "___id": "T000002R044218", + "___id": "T000002R044188", "___s": true }, { @@ -399139,7 +399748,7 @@ "memberof": "Phaser.Time.Timeline", "longname": "Phaser.Time.Timeline#preUpdate", "scope": "instance", - "___id": "T000002R044221", + "___id": "T000002R044191", "___s": true }, { @@ -399189,7 +399798,7 @@ "memberof": "Phaser.Time.Timeline", "longname": "Phaser.Time.Timeline#update", "scope": "instance", - "___id": "T000002R044224", + "___id": "T000002R044194", "___s": true }, { @@ -399240,7 +399849,7 @@ "memberof": "Phaser.Time.Timeline", "longname": "Phaser.Time.Timeline#play", "scope": "instance", - "___id": "T000002R044241", + "___id": "T000002R044211", "___s": true }, { @@ -399274,7 +399883,7 @@ "memberof": "Phaser.Time.Timeline", "longname": "Phaser.Time.Timeline#pause", "scope": "instance", - "___id": "T000002R044247", + "___id": "T000002R044217", "___s": true }, { @@ -399335,7 +399944,7 @@ "memberof": "Phaser.Time.Timeline", "longname": "Phaser.Time.Timeline#repeat", "scope": "instance", - "___id": "T000002R044254", + "___id": "T000002R044224", "___s": true }, { @@ -399369,7 +399978,7 @@ "memberof": "Phaser.Time.Timeline", "longname": "Phaser.Time.Timeline#resume", "scope": "instance", - "___id": "T000002R044259", + "___id": "T000002R044229", "___s": true }, { @@ -399403,7 +400012,7 @@ "memberof": "Phaser.Time.Timeline", "longname": "Phaser.Time.Timeline#stop", "scope": "instance", - "___id": "T000002R044266", + "___id": "T000002R044236", "___s": true }, { @@ -399454,7 +400063,7 @@ "memberof": "Phaser.Time.Timeline", "longname": "Phaser.Time.Timeline#reset", "scope": "instance", - "___id": "T000002R044270", + "___id": "T000002R044240", "___s": true }, { @@ -399522,7 +400131,7 @@ "memberof": "Phaser.Time.Timeline", "longname": "Phaser.Time.Timeline#add", "scope": "instance", - "___id": "T000002R044280", + "___id": "T000002R044250", "___s": true }, { @@ -399556,7 +400165,7 @@ "memberof": "Phaser.Time.Timeline", "longname": "Phaser.Time.Timeline#clear", "scope": "instance", - "___id": "T000002R044308", + "___id": "T000002R044278", "___s": true }, { @@ -399589,7 +400198,7 @@ "memberof": "Phaser.Time.Timeline", "longname": "Phaser.Time.Timeline#isPlaying", "scope": "instance", - "___id": "T000002R044316", + "___id": "T000002R044286", "___s": true }, { @@ -399622,7 +400231,7 @@ "memberof": "Phaser.Time.Timeline", "longname": "Phaser.Time.Timeline#getProgress", "scope": "instance", - "___id": "T000002R044318", + "___id": "T000002R044288", "___s": true }, { @@ -399642,7 +400251,7 @@ "longname": "Phaser.Time.Timeline#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R044321", + "___id": "T000002R044291", "___s": true }, { @@ -399709,7 +400318,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#timeline", "scope": "instance", - "___id": "T000002R044326", + "___id": "T000002R044296", "___s": true }, { @@ -399743,7 +400352,7 @@ ], "scope": "static", "longname": "Phaser.Time.TimerEvent", - "___id": "T000002R044330", + "___id": "T000002R044300", "___s": true }, { @@ -399773,7 +400382,7 @@ "longname": "Phaser.Time.TimerEvent#delay", "scope": "instance", "kind": "member", - "___id": "T000002R044333", + "___id": "T000002R044303", "___s": true }, { @@ -399803,7 +400412,7 @@ "longname": "Phaser.Time.TimerEvent#repeat", "scope": "instance", "kind": "member", - "___id": "T000002R044335", + "___id": "T000002R044305", "___s": true }, { @@ -399832,7 +400441,7 @@ "longname": "Phaser.Time.TimerEvent#repeatCount", "scope": "instance", "kind": "member", - "___id": "T000002R044337", + "___id": "T000002R044307", "___s": true }, { @@ -399862,7 +400471,7 @@ "longname": "Phaser.Time.TimerEvent#loop", "scope": "instance", "kind": "member", - "___id": "T000002R044339", + "___id": "T000002R044309", "___s": true }, { @@ -399890,7 +400499,7 @@ "longname": "Phaser.Time.TimerEvent#callback", "scope": "instance", "kind": "member", - "___id": "T000002R044341", + "___id": "T000002R044311", "___s": true }, { @@ -399918,7 +400527,7 @@ "longname": "Phaser.Time.TimerEvent#callbackScope", "scope": "instance", "kind": "member", - "___id": "T000002R044343", + "___id": "T000002R044313", "___s": true }, { @@ -399946,7 +400555,7 @@ "longname": "Phaser.Time.TimerEvent#args", "scope": "instance", "kind": "member", - "___id": "T000002R044345", + "___id": "T000002R044315", "___s": true }, { @@ -399975,7 +400584,7 @@ "longname": "Phaser.Time.TimerEvent#timeScale", "scope": "instance", "kind": "member", - "___id": "T000002R044347", + "___id": "T000002R044317", "___s": true }, { @@ -400004,7 +400613,7 @@ "longname": "Phaser.Time.TimerEvent#startAt", "scope": "instance", "kind": "member", - "___id": "T000002R044349", + "___id": "T000002R044319", "___s": true }, { @@ -400033,7 +400642,7 @@ "longname": "Phaser.Time.TimerEvent#elapsed", "scope": "instance", "kind": "member", - "___id": "T000002R044351", + "___id": "T000002R044321", "___s": true }, { @@ -400062,7 +400671,7 @@ "longname": "Phaser.Time.TimerEvent#paused", "scope": "instance", "kind": "member", - "___id": "T000002R044353", + "___id": "T000002R044323", "___s": true }, { @@ -400091,7 +400700,7 @@ "longname": "Phaser.Time.TimerEvent#hasDispatched", "scope": "instance", "kind": "member", - "___id": "T000002R044355", + "___id": "T000002R044325", "___s": true }, { @@ -400139,7 +400748,7 @@ "memberof": "Phaser.Time.TimerEvent", "longname": "Phaser.Time.TimerEvent#reset", "scope": "instance", - "___id": "T000002R044357", + "___id": "T000002R044327", "___s": true }, { @@ -400172,7 +400781,7 @@ "memberof": "Phaser.Time.TimerEvent", "longname": "Phaser.Time.TimerEvent#getProgress", "scope": "instance", - "___id": "T000002R044371", + "___id": "T000002R044341", "___s": true }, { @@ -400205,7 +400814,7 @@ "memberof": "Phaser.Time.TimerEvent", "longname": "Phaser.Time.TimerEvent#getOverallProgress", "scope": "instance", - "___id": "T000002R044373", + "___id": "T000002R044343", "___s": true }, { @@ -400238,7 +400847,7 @@ "memberof": "Phaser.Time.TimerEvent", "longname": "Phaser.Time.TimerEvent#getRepeatCount", "scope": "instance", - "___id": "T000002R044377", + "___id": "T000002R044347", "___s": true }, { @@ -400271,7 +400880,7 @@ "memberof": "Phaser.Time.TimerEvent", "longname": "Phaser.Time.TimerEvent#getElapsed", "scope": "instance", - "___id": "T000002R044379", + "___id": "T000002R044349", "___s": true }, { @@ -400304,7 +400913,7 @@ "memberof": "Phaser.Time.TimerEvent", "longname": "Phaser.Time.TimerEvent#getElapsedSeconds", "scope": "instance", - "___id": "T000002R044381", + "___id": "T000002R044351", "___s": true }, { @@ -400337,7 +400946,7 @@ "memberof": "Phaser.Time.TimerEvent", "longname": "Phaser.Time.TimerEvent#getRemaining", "scope": "instance", - "___id": "T000002R044383", + "___id": "T000002R044353", "___s": true }, { @@ -400370,7 +400979,7 @@ "memberof": "Phaser.Time.TimerEvent", "longname": "Phaser.Time.TimerEvent#getRemainingSeconds", "scope": "instance", - "___id": "T000002R044385", + "___id": "T000002R044355", "___s": true }, { @@ -400403,7 +401012,7 @@ "memberof": "Phaser.Time.TimerEvent", "longname": "Phaser.Time.TimerEvent#getOverallRemaining", "scope": "instance", - "___id": "T000002R044387", + "___id": "T000002R044357", "___s": true }, { @@ -400436,7 +401045,7 @@ "memberof": "Phaser.Time.TimerEvent", "longname": "Phaser.Time.TimerEvent#getOverallRemainingSeconds", "scope": "instance", - "___id": "T000002R044389", + "___id": "T000002R044359", "___s": true }, { @@ -400472,7 +401081,7 @@ "memberof": "Phaser.Time.TimerEvent", "longname": "Phaser.Time.TimerEvent#remove", "scope": "instance", - "___id": "T000002R044391", + "___id": "T000002R044361", "___s": true }, { @@ -400491,7 +401100,7 @@ "memberof": "Phaser.Time.TimerEvent", "longname": "Phaser.Time.TimerEvent#destroy", "scope": "instance", - "___id": "T000002R044397", + "___id": "T000002R044367", "___s": true }, { @@ -400508,7 +401117,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Time", "scope": "static", - "___id": "T000002R044403", + "___id": "T000002R044373", "___s": true }, { @@ -400763,7 +401372,7 @@ "memberof": "Phaser.Types.Time", "longname": "Phaser.Types.Time.TimelineEvent", "scope": "static", - "___id": "T000002R044404", + "___id": "T000002R044374", "___s": true }, { @@ -400992,7 +401601,7 @@ "memberof": "Phaser.Types.Time", "longname": "Phaser.Types.Time.TimelineEventConfig", "scope": "static", - "___id": "T000002R044405", + "___id": "T000002R044375", "___s": true }, { @@ -401160,7 +401769,7 @@ "memberof": "Phaser.Types.Time", "longname": "Phaser.Types.Time.TimerEventConfig", "scope": "static", - "___id": "T000002R044406", + "___id": "T000002R044376", "___s": true }, { @@ -401234,7 +401843,7 @@ "memberof": "Phaser.Tweens.Builders", "longname": "Phaser.Tweens.Builders.GetBoolean", "scope": "static", - "___id": "T000002R044407", + "___id": "T000002R044377", "___s": true }, { @@ -401315,7 +401924,7 @@ "memberof": "Phaser.Tweens.Builders", "longname": "Phaser.Tweens.Builders.GetEaseFunction", "scope": "static", - "___id": "T000002R044412", + "___id": "T000002R044382", "___s": true }, { @@ -401379,7 +401988,7 @@ "memberof": "Phaser.Tweens.Builders", "longname": "Phaser.Tweens.Builders.GetInterpolationFunction", "scope": "static", - "___id": "T000002R044436", + "___id": "T000002R044406", "___s": true }, { @@ -401453,7 +402062,7 @@ "memberof": "Phaser.Tweens.Builders", "longname": "Phaser.Tweens.Builders.GetNewValue", "scope": "static", - "___id": "T000002R044442", + "___id": "T000002R044412", "___s": true }, { @@ -401510,7 +402119,7 @@ "memberof": "Phaser.Tweens.Builders", "longname": "Phaser.Tweens.Builders.GetProps", "scope": "static", - "___id": "T000002R044452", + "___id": "T000002R044422", "___s": true }, { @@ -401558,7 +402167,7 @@ "memberof": "Phaser.Tweens.Builders", "longname": "Phaser.Tweens.Builders.GetTargets", "scope": "static", - "___id": "T000002R044462", + "___id": "T000002R044432", "___s": true }, { @@ -401618,7 +402227,7 @@ "memberof": "Phaser.Tweens.Builders", "longname": "Phaser.Tweens.Builders.GetValueOp", "scope": "static", - "___id": "T000002R044474", + "___id": "T000002R044444", "___s": true }, { @@ -401635,7 +402244,7 @@ "memberof": "Phaser.Tweens", "longname": "Phaser.Tweens.Builders", "scope": "static", - "___id": "T000002R044519", + "___id": "T000002R044489", "___s": true }, { @@ -401709,7 +402318,7 @@ "memberof": "Phaser.Tweens.Builders", "longname": "Phaser.Tweens.Builders.NumberTweenBuilder", "scope": "static", - "___id": "T000002R044541", + "___id": "T000002R044511", "___s": true }, { @@ -401790,7 +402399,7 @@ "memberof": "Phaser.Tweens.Builders", "longname": "Phaser.Tweens.Builders.StaggerBuilder", "scope": "static", - "___id": "T000002R044573", + "___id": "T000002R044543", "___s": true }, { @@ -401874,7 +402483,7 @@ "memberof": "Phaser.Tweens.Builders", "longname": "Phaser.Tweens.Builders.TweenBuilder", "scope": "static", - "___id": "T000002R044652", + "___id": "T000002R044622", "___s": true }, { @@ -401945,7 +402554,7 @@ "memberof": "Phaser.Tweens.Builders", "longname": "Phaser.Tweens.Builders.TweenChainBuilder", "scope": "static", - "___id": "T000002R044707", + "___id": "T000002R044677", "___s": true }, { @@ -401962,7 +402571,7 @@ "memberof": "Phaser.Tweens", "longname": "Phaser.Tweens.Events", "scope": "static", - "___id": "T000002R044732", + "___id": "T000002R044702", "___s": true }, { @@ -402037,7 +402646,7 @@ "memberof": "Phaser.Tweens.Events", "longname": "Phaser.Tweens.Events#event:TWEEN_ACTIVE", "scope": "instance", - "___id": "T000002R044744", + "___id": "T000002R044714", "___s": true }, { @@ -402112,7 +402721,7 @@ "memberof": "Phaser.Tweens.Events", "longname": "Phaser.Tweens.Events#event:TWEEN_COMPLETE", "scope": "instance", - "___id": "T000002R044746", + "___id": "T000002R044716", "___s": true }, { @@ -402187,7 +402796,7 @@ "memberof": "Phaser.Tweens.Events", "longname": "Phaser.Tweens.Events#event:TWEEN_LOOP", "scope": "instance", - "___id": "T000002R044748", + "___id": "T000002R044718", "___s": true }, { @@ -402230,7 +402839,7 @@ "memberof": "Phaser.Tweens.Events", "longname": "Phaser.Tweens.Events#event:TWEEN_PAUSE", "scope": "instance", - "___id": "T000002R044750", + "___id": "T000002R044720", "___s": true }, { @@ -402325,7 +402934,7 @@ "memberof": "Phaser.Tweens.Events", "longname": "Phaser.Tweens.Events#event:TWEEN_REPEAT", "scope": "instance", - "___id": "T000002R044752", + "___id": "T000002R044722", "___s": true }, { @@ -402368,7 +402977,7 @@ "memberof": "Phaser.Tweens.Events", "longname": "Phaser.Tweens.Events#event:TWEEN_RESUME", "scope": "instance", - "___id": "T000002R044754", + "___id": "T000002R044724", "___s": true }, { @@ -402443,7 +403052,7 @@ "memberof": "Phaser.Tweens.Events", "longname": "Phaser.Tweens.Events#event:TWEEN_START", "scope": "instance", - "___id": "T000002R044756", + "___id": "T000002R044726", "___s": true }, { @@ -402518,7 +403127,7 @@ "memberof": "Phaser.Tweens.Events", "longname": "Phaser.Tweens.Events#event:TWEEN_STOP", "scope": "instance", - "___id": "T000002R044758", + "___id": "T000002R044728", "___s": true }, { @@ -402613,7 +403222,7 @@ "memberof": "Phaser.Tweens.Events", "longname": "Phaser.Tweens.Events#event:TWEEN_UPDATE", "scope": "instance", - "___id": "T000002R044760", + "___id": "T000002R044730", "___s": true }, { @@ -402708,7 +403317,7 @@ "memberof": "Phaser.Tweens.Events", "longname": "Phaser.Tweens.Events#event:TWEEN_YOYO", "scope": "instance", - "___id": "T000002R044762", + "___id": "T000002R044732", "___s": true }, { @@ -402725,7 +403334,7 @@ "memberof": "Phaser", "longname": "Phaser.Tweens", "scope": "static", - "___id": "T000002R044764", + "___id": "T000002R044734", "___s": true }, { @@ -402772,7 +403381,7 @@ ], "scope": "static", "longname": "Phaser.Tweens.BaseTween", - "___id": "T000002R044780", + "___id": "T000002R044750", "___s": true }, { @@ -402810,7 +403419,7 @@ "longname": "Phaser.Tweens.BaseTween#parent", "scope": "instance", "kind": "member", - "___id": "T000002R044784", + "___id": "T000002R044754", "___s": true }, { @@ -402866,7 +403475,7 @@ "longname": "Phaser.Tweens.BaseTween#data", "scope": "instance", "kind": "member", - "___id": "T000002R044786", + "___id": "T000002R044756", "___s": true }, { @@ -402894,7 +403503,7 @@ "longname": "Phaser.Tweens.BaseTween#totalData", "scope": "instance", "kind": "member", - "___id": "T000002R044788", + "___id": "T000002R044758", "___s": true }, { @@ -402923,7 +403532,7 @@ "longname": "Phaser.Tweens.BaseTween#startDelay", "scope": "instance", "kind": "member", - "___id": "T000002R044790", + "___id": "T000002R044760", "___s": true }, { @@ -402952,7 +403561,7 @@ "longname": "Phaser.Tweens.BaseTween#hasStarted", "scope": "instance", "kind": "member", - "___id": "T000002R044792", + "___id": "T000002R044762", "___s": true }, { @@ -402981,7 +403590,7 @@ "longname": "Phaser.Tweens.BaseTween#timeScale", "scope": "instance", "kind": "member", - "___id": "T000002R044794", + "___id": "T000002R044764", "___s": true }, { @@ -403010,7 +403619,7 @@ "longname": "Phaser.Tweens.BaseTween#loop", "scope": "instance", "kind": "member", - "___id": "T000002R044796", + "___id": "T000002R044766", "___s": true }, { @@ -403039,7 +403648,7 @@ "longname": "Phaser.Tweens.BaseTween#loopDelay", "scope": "instance", "kind": "member", - "___id": "T000002R044798", + "___id": "T000002R044768", "___s": true }, { @@ -403068,7 +403677,7 @@ "longname": "Phaser.Tweens.BaseTween#loopCounter", "scope": "instance", "kind": "member", - "___id": "T000002R044800", + "___id": "T000002R044770", "___s": true }, { @@ -403097,7 +403706,7 @@ "longname": "Phaser.Tweens.BaseTween#completeDelay", "scope": "instance", "kind": "member", - "___id": "T000002R044802", + "___id": "T000002R044772", "___s": true }, { @@ -403126,7 +403735,7 @@ "longname": "Phaser.Tweens.BaseTween#countdown", "scope": "instance", "kind": "member", - "___id": "T000002R044804", + "___id": "T000002R044774", "___s": true }, { @@ -403154,7 +403763,7 @@ "longname": "Phaser.Tweens.BaseTween#state", "scope": "instance", "kind": "member", - "___id": "T000002R044806", + "___id": "T000002R044776", "___s": true }, { @@ -403183,7 +403792,7 @@ "longname": "Phaser.Tweens.BaseTween#paused", "scope": "instance", "kind": "member", - "___id": "T000002R044808", + "___id": "T000002R044778", "___s": true }, { @@ -403211,7 +403820,7 @@ "longname": "Phaser.Tweens.BaseTween#callbacks", "scope": "instance", "kind": "member", - "___id": "T000002R044810", + "___id": "T000002R044780", "___s": true }, { @@ -403239,11 +403848,11 @@ "longname": "Phaser.Tweens.BaseTween#callbackScope", "scope": "instance", "kind": "member", - "___id": "T000002R044822", + "___id": "T000002R044792", "___s": true }, { - "comment": "/**\r\n * Will this Tween persist after playback? A Tween that persists will _not_ be destroyed by the\r\n * Tween Manager, or when calling `Tween.stop`, and can be re-played as required. You can either\r\n * set this property when creating the tween in the tween config, or set it _prior_ to playback.\r\n *\r\n * However, it's up to you to ensure you destroy persistent tweens when you are finished with them,\r\n * or they will retain references you may no longer require and waste memory.\r\n *\r\n * By default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by\r\n * the Tween Manager. But `TweenChains` _do_ persist by default, unless overridden in their\r\n * config. This is because the type of situations you use a chain for is far more likely to\r\n * need to be replayed again in the future, rather than disposed of.\r\n *\r\n * @name Phaser.Tweens.BaseTween#persist\r\n * @type {boolean}\r\n * @since 3.60.0\r\n */", + "comment": "/**\r\n * Will this Tween persist after playback? A Tween that persists will _not_ be destroyed by the\r\n * Tween Manager, or when calling `Tween.stop`, and can be re-played as required. You can either\r\n * set this property when creating the tween in the tween config, or set it _prior_ to playback.\r\n *\r\n * However, it's up to you to ensure you destroy persistent tweens when you are finished with them,\r\n * or they will retain references you may no longer require and waste memory.\r\n *\r\n * By default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by\r\n * the Tween Manager.\r\n *\r\n * @name Phaser.Tweens.BaseTween#persist\r\n * @type {boolean}\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", "lineno": 245, @@ -403251,7 +403860,7 @@ "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} }, - "description": "Will this Tween persist after playback? A Tween that persists will _not_ be destroyed by the\rTween Manager, or when calling `Tween.stop`, and can be re-played as required. You can either\rset this property when creating the tween in the tween config, or set it _prior_ to playback.\r\rHowever, it's up to you to ensure you destroy persistent tweens when you are finished with them,\ror they will retain references you may no longer require and waste memory.\r\rBy default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by\rthe Tween Manager. But `TweenChains` _do_ persist by default, unless overridden in their\rconfig. This is because the type of situations you use a chain for is far more likely to\rneed to be replayed again in the future, rather than disposed of.", + "description": "Will this Tween persist after playback? A Tween that persists will _not_ be destroyed by the\rTween Manager, or when calling `Tween.stop`, and can be re-played as required. You can either\rset this property when creating the tween in the tween config, or set it _prior_ to playback.\r\rHowever, it's up to you to ensure you destroy persistent tweens when you are finished with them,\ror they will retain references you may no longer require and waste memory.\r\rBy default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by\rthe Tween Manager.", "name": "persist", "type": { "names": [ @@ -403267,14 +403876,14 @@ "longname": "Phaser.Tweens.BaseTween#persist", "scope": "instance", "kind": "member", - "___id": "T000002R044824", + "___id": "T000002R044794", "___s": true }, { "comment": "/**\r\n * Sets the value of the time scale applied to this Tween. A value of 1 runs in real-time.\r\n * A value of 0.5 runs 50% slower, and so on.\r\n *\r\n * The value isn't used when calculating total duration of the tween, it's a run-time delta adjustment only.\r\n *\r\n * This value is multiplied by the `TweenManager.timeScale`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setTimeScale\r\n * @since 3.60.0\r\n *\r\n * @param {number} value - The time scale value to set.\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 265, + "lineno": 263, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403316,14 +403925,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#setTimeScale", "scope": "instance", - "___id": "T000002R044826", + "___id": "T000002R044796", "___s": true }, { "comment": "/**\r\n * Gets the value of the time scale applied to this Tween. A value of 1 runs in real-time.\r\n * A value of 0.5 runs 50% slower, and so on.\r\n *\r\n * @method Phaser.Tweens.BaseTween#getTimeScale\r\n * @since 3.60.0\r\n *\r\n * @return {number} The value of the time scale applied to this Tween.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 287, + "lineno": 285, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403349,14 +403958,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#getTimeScale", "scope": "instance", - "___id": "T000002R044829", + "___id": "T000002R044799", "___s": true }, { "comment": "/**\r\n * Checks if this Tween is currently playing.\r\n *\r\n * If this Tween is paused, or not active, this method will return false.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isPlaying\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if the Tween is playing, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 301, + "lineno": 299, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403382,14 +403991,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#isPlaying", "scope": "instance", - "___id": "T000002R044831", + "___id": "T000002R044801", "___s": true }, { "comment": "/**\r\n * Checks if the Tween is currently paused.\r\n *\r\n * This is the same as inspecting the `BaseTween.paused` property directly.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isPaused\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if the Tween is paused, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 316, + "lineno": 314, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403415,14 +404024,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#isPaused", "scope": "instance", - "___id": "T000002R044833", + "___id": "T000002R044803", "___s": true }, { "comment": "/**\r\n * Pauses the Tween immediately. Use `resume` to continue playback.\r\n *\r\n * You can also toggle the `Tween.paused` boolean property, but doing so will not trigger the PAUSE event.\r\n *\r\n * @method Phaser.Tweens.BaseTween#pause\r\n * @fires Phaser.Tweens.Events#TWEEN_PAUSE\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 331, + "lineno": 329, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403452,14 +404061,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#pause", "scope": "instance", - "___id": "T000002R044835", + "___id": "T000002R044805", "___s": true }, { "comment": "/**\r\n * Resumes the playback of a previously paused Tween.\r\n *\r\n * You can also toggle the `Tween.paused` boolean property, but doing so will not trigger the RESUME event.\r\n *\r\n * @method Phaser.Tweens.BaseTween#resume\r\n * @fires Phaser.Tweens.Events#TWEEN_RESUME\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 354, + "lineno": 352, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403489,14 +404098,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#resume", "scope": "instance", - "___id": "T000002R044838", + "___id": "T000002R044808", "___s": true }, { "comment": "/**\r\n * Internal method that makes this Tween active within the TweenManager\r\n * and emits the onActive event and callback.\r\n *\r\n * @method Phaser.Tweens.BaseTween#makeActive\r\n * @fires Phaser.Tweens.Events#TWEEN_ACTIVE\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 377, + "lineno": 375, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403511,14 +404120,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#makeActive", "scope": "instance", - "___id": "T000002R044841", + "___id": "T000002R044811", "___s": true }, { "comment": "/**\r\n * Internal method that handles this tween completing and emitting the onComplete event\r\n * and callback.\r\n *\r\n * @method Phaser.Tweens.BaseTween#onCompleteHandler\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 392, + "lineno": 390, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403530,14 +404139,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#onCompleteHandler", "scope": "instance", - "___id": "T000002R044843", + "___id": "T000002R044813", "___s": true }, { "comment": "/**\r\n * Flags the Tween as being complete, whatever stage of progress it is at.\r\n *\r\n * If an `onComplete` callback has been defined it will automatically invoke it, unless a `delay`\r\n * argument is provided, in which case the Tween will delay for that period of time before calling the callback.\r\n *\r\n * If you don't need a delay or don't have an `onComplete` callback then call `Tween.stop` instead.\r\n *\r\n * @method Phaser.Tweens.BaseTween#complete\r\n * @fires Phaser.Tweens.Events#TWEEN_COMPLETE\r\n * @since 3.2.0\r\n *\r\n * @param {number} [delay=0] - The time to wait before invoking the complete callback. If zero it will fire immediately.\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 406, + "lineno": 404, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403584,14 +404193,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#complete", "scope": "instance", - "___id": "T000002R044845", + "___id": "T000002R044815", "___s": true }, { "comment": "/**\r\n * Flags the Tween as being complete only once the current loop has finished.\r\n *\r\n * This is a useful way to stop an infinitely looping tween once a complete cycle is over,\r\n * rather than abruptly.\r\n *\r\n * If you don't have a loop then call `Tween.stop` instead.\r\n *\r\n * @method Phaser.Tweens.BaseTween#completeAfterLoop\r\n * @fires Phaser.Tweens.Events#TWEEN_COMPLETE\r\n * @since 3.60.0\r\n *\r\n * @param {number} [loops=0] - The number of loops that should finish before this tween completes. Zero means complete just the current loop.\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 440, + "lineno": 438, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403638,14 +404247,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#completeAfterLoop", "scope": "instance", - "___id": "T000002R044849", + "___id": "T000002R044819", "___s": true }, { "comment": "/**\r\n * Immediately removes this Tween from the TweenManager and all of its internal arrays,\r\n * no matter what stage it is at. Then sets the tween state to `REMOVED`.\r\n *\r\n * You should dispose of your reference to this tween after calling this method, to\r\n * free it from memory. If you no longer require it, call `Tween.destroy()` on it.\r\n *\r\n * @method Phaser.Tweens.BaseTween#remove\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 468, + "lineno": 466, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403672,14 +404281,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#remove", "scope": "instance", - "___id": "T000002R044853", + "___id": "T000002R044823", "___s": true }, { "comment": "/**\r\n * Stops the Tween immediately, whatever stage of progress it is at.\r\n *\r\n * If not a part of a Tween Chain it is also flagged for removal by the Tween Manager.\r\n *\r\n * If an `onStop` callback has been defined it will automatically invoke it.\r\n *\r\n * The Tween will be removed during the next game frame, but should be considered 'destroyed' from this point on.\r\n *\r\n * Typically, you cannot play a Tween that has been stopped. If you just wish to pause the tween, not destroy it,\r\n * then call the `pause` method instead and use `resume` to continue playback. If you wish to restart the Tween,\r\n * use the `restart` or `seek` methods.\r\n *\r\n * @method Phaser.Tweens.BaseTween#stop\r\n * @fires Phaser.Tweens.Events#TWEEN_STOP\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 490, + "lineno": 488, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403709,14 +404318,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#stop", "scope": "instance", - "___id": "T000002R044855", + "___id": "T000002R044825", "___s": true }, { "comment": "/**\r\n * Internal method that handles the processing of the loop delay countdown timer and\r\n * the dispatch of related events. Called automatically by `Tween.update`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#updateLoopCountdown\r\n * @since 3.60.0\r\n *\r\n * @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 521, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403743,14 +404352,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#updateLoopCountdown", "scope": "instance", - "___id": "T000002R044857", + "___id": "T000002R044827", "___s": true }, { "comment": "/**\r\n * Internal method that handles the processing of the start delay countdown timer and\r\n * the dispatch of related events. Called automatically by `Tween.update`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#updateStartCountdown\r\n * @since 3.60.0\r\n *\r\n * @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 542, + "lineno": 540, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403777,14 +404386,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#updateStartCountdown", "scope": "instance", - "___id": "T000002R044860", + "___id": "T000002R044830", "___s": true }, { "comment": "/**\r\n * Internal method that handles the processing of the complete delay countdown timer and\r\n * the dispatch of related events. Called automatically by `Tween.update`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#updateCompleteDelay\r\n * @since 3.60.0\r\n *\r\n * @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 570, + "lineno": 568, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403811,14 +404420,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#updateCompleteDelay", "scope": "instance", - "___id": "T000002R044865", + "___id": "T000002R044835", "___s": true }, { "comment": "/**\r\n * Sets an event based callback to be invoked during playback.\r\n *\r\n * Calling this method will replace a previously set callback for the given type, if any exists.\r\n *\r\n * The types available are:\r\n *\r\n * `onActive` - When the Tween is first created it moves to an 'active' state when added to the Tween Manager. 'Active' does not mean 'playing'.\r\n * `onStart` - When the Tween starts playing after a delayed or paused state. This will happen at the same time as `onActive` if the tween has no delay and isn't paused.\r\n * `onLoop` - When a Tween loops, if it has been set to do so. This happens _after_ the `loopDelay` expires, if set.\r\n * `onComplete` - When the Tween finishes playback fully. Never invoked if the Tween is set to repeat infinitely.\r\n * `onStop` - Invoked only if the `Tween.stop` method is called.\r\n * `onPause` - Invoked only if the `Tween.pause` method is called. Not invoked if the Tween Manager is paused.\r\n * `onResume` - Invoked only if the `Tween.resume` method is called. Not invoked if the Tween Manager is resumed.\r\n *\r\n * The following types are also available and are invoked on a `TweenData` level - that is per-object, per-property, being tweened.\r\n *\r\n * `onYoyo` - When a TweenData starts a yoyo. This happens _after_ the `hold` delay expires, if set.\r\n * `onRepeat` - When a TweenData repeats playback. This happens _after_ the `repeatDelay` expires, if set.\r\n * `onUpdate` - When a TweenData updates a property on a source target during playback.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setCallback\r\n * @since 3.60.0\r\n *\r\n * @param {Phaser.Types.Tweens.TweenCallbackTypes} type - The type of callback to set. One of: `onActive`, `onComplete`, `onLoop`, `onPause`, `onRepeat`, `onResume`, `onStart`, `onStop`, `onUpdate` or `onYoyo`.\r\n * @param {function} callback - Your callback that will be invoked.\r\n * @param {array} [params] - The parameters to pass to the callback. Pass an empty array if you don't want to define any, but do wish to set the scope.\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 589, + "lineno": 587, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403887,14 +404496,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#setCallback", "scope": "instance", - "___id": "T000002R044868", + "___id": "T000002R044838", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to PENDING.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setPendingState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 631, + "lineno": 629, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403906,14 +404515,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#setPendingState", "scope": "instance", - "___id": "T000002R044874", + "___id": "T000002R044844", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to ACTIVE.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setActiveState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 642, + "lineno": 640, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403925,14 +404534,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#setActiveState", "scope": "instance", - "___id": "T000002R044877", + "___id": "T000002R044847", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to LOOP_DELAY.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setLoopDelayState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 655, + "lineno": 653, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403944,14 +404553,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#setLoopDelayState", "scope": "instance", - "___id": "T000002R044881", + "___id": "T000002R044851", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to COMPLETE_DELAY.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setCompleteDelayState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 666, + "lineno": 664, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403963,14 +404572,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#setCompleteDelayState", "scope": "instance", - "___id": "T000002R044884", + "___id": "T000002R044854", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to START_DELAY.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setStartDelayState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 677, + "lineno": 675, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -403982,14 +404591,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#setStartDelayState", "scope": "instance", - "___id": "T000002R044887", + "___id": "T000002R044857", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to PENDING_REMOVE.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setPendingRemoveState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 692, + "lineno": 690, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404001,14 +404610,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#setPendingRemoveState", "scope": "instance", - "___id": "T000002R044892", + "___id": "T000002R044862", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to REMOVED.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setRemovedState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 703, + "lineno": 701, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404020,14 +404629,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#setRemovedState", "scope": "instance", - "___id": "T000002R044895", + "___id": "T000002R044865", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to FINISHED.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setFinishedState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 714, + "lineno": 712, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404039,14 +404648,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#setFinishedState", "scope": "instance", - "___id": "T000002R044898", + "___id": "T000002R044868", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to DESTROYED.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setDestroyedState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 725, + "lineno": 723, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404058,14 +404667,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#setDestroyedState", "scope": "instance", - "___id": "T000002R044901", + "___id": "T000002R044871", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of PENDING, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isPending\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of PENDING, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 736, + "lineno": 734, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404091,14 +404700,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#isPending", "scope": "instance", - "___id": "T000002R044904", + "___id": "T000002R044874", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of ACTIVE, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isActive\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of ACTIVE, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 749, + "lineno": 747, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404124,14 +404733,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#isActive", "scope": "instance", - "___id": "T000002R044906", + "___id": "T000002R044876", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of LOOP_DELAY, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isLoopDelayed\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of LOOP_DELAY, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 762, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404157,14 +404766,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#isLoopDelayed", "scope": "instance", - "___id": "T000002R044908", + "___id": "T000002R044878", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of COMPLETE_DELAY, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isCompleteDelayed\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of COMPLETE_DELAY, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 775, + "lineno": 773, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404190,14 +404799,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#isCompleteDelayed", "scope": "instance", - "___id": "T000002R044910", + "___id": "T000002R044880", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of START_DELAY, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isStartDelayed\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of START_DELAY, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 788, + "lineno": 786, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404223,14 +404832,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#isStartDelayed", "scope": "instance", - "___id": "T000002R044912", + "___id": "T000002R044882", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of PENDING_REMOVE, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isPendingRemove\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of PENDING_REMOVE, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 801, + "lineno": 799, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404256,14 +404865,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#isPendingRemove", "scope": "instance", - "___id": "T000002R044914", + "___id": "T000002R044884", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of REMOVED, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isRemoved\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of REMOVED, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 814, + "lineno": 812, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404289,14 +404898,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#isRemoved", "scope": "instance", - "___id": "T000002R044916", + "___id": "T000002R044886", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of FINISHED, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isFinished\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of FINISHED, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 827, + "lineno": 825, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404322,14 +404931,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#isFinished", "scope": "instance", - "___id": "T000002R044918", + "___id": "T000002R044888", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of DESTROYED, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isDestroyed\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of DESTROYED, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 840, + "lineno": 838, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404355,14 +404964,14 @@ "memberof": "Phaser.Tweens.BaseTween", "longname": "Phaser.Tweens.BaseTween#isDestroyed", "scope": "instance", - "___id": "T000002R044920", + "___id": "T000002R044890", "___s": true }, { "comment": "/**\r\n * Handles the destroy process of this Tween, clearing out the\r\n * Tween Data and resetting the targets. A Tween that has been\r\n * destroyed cannot ever be played or used again.\r\n *\r\n * @method Phaser.Tweens.BaseTween#destroy\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 853, + "lineno": 851, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -404375,7 +404984,7 @@ "longname": "Phaser.Tweens.BaseTween#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R044922", + "___id": "T000002R044892", "___s": true }, { @@ -404632,7 +405241,7 @@ ], "scope": "static", "longname": "Phaser.Tweens.BaseTweenData", - "___id": "T000002R044932", + "___id": "T000002R044902", "___s": true }, { @@ -404660,7 +405269,7 @@ "longname": "Phaser.Tweens.BaseTweenData#tween", "scope": "instance", "kind": "member", - "___id": "T000002R044935", + "___id": "T000002R044905", "___s": true }, { @@ -404688,7 +405297,7 @@ "longname": "Phaser.Tweens.BaseTweenData#targetIndex", "scope": "instance", "kind": "member", - "___id": "T000002R044937", + "___id": "T000002R044907", "___s": true }, { @@ -404716,7 +405325,7 @@ "longname": "Phaser.Tweens.BaseTweenData#duration", "scope": "instance", "kind": "member", - "___id": "T000002R044939", + "___id": "T000002R044909", "___s": true }, { @@ -404744,7 +405353,7 @@ "longname": "Phaser.Tweens.BaseTweenData#totalDuration", "scope": "instance", "kind": "member", - "___id": "T000002R044941", + "___id": "T000002R044911", "___s": true }, { @@ -404772,7 +405381,7 @@ "longname": "Phaser.Tweens.BaseTweenData#delay", "scope": "instance", "kind": "member", - "___id": "T000002R044943", + "___id": "T000002R044913", "___s": true }, { @@ -404800,7 +405409,7 @@ "longname": "Phaser.Tweens.BaseTweenData#getDelay", "scope": "instance", "kind": "member", - "___id": "T000002R044945", + "___id": "T000002R044915", "___s": true }, { @@ -404828,7 +405437,7 @@ "longname": "Phaser.Tweens.BaseTweenData#yoyo", "scope": "instance", "kind": "member", - "___id": "T000002R044947", + "___id": "T000002R044917", "___s": true }, { @@ -404856,7 +405465,7 @@ "longname": "Phaser.Tweens.BaseTweenData#hold", "scope": "instance", "kind": "member", - "___id": "T000002R044949", + "___id": "T000002R044919", "___s": true }, { @@ -404884,7 +405493,7 @@ "longname": "Phaser.Tweens.BaseTweenData#repeat", "scope": "instance", "kind": "member", - "___id": "T000002R044951", + "___id": "T000002R044921", "___s": true }, { @@ -404912,7 +405521,7 @@ "longname": "Phaser.Tweens.BaseTweenData#repeatDelay", "scope": "instance", "kind": "member", - "___id": "T000002R044953", + "___id": "T000002R044923", "___s": true }, { @@ -404940,7 +405549,7 @@ "longname": "Phaser.Tweens.BaseTweenData#repeatCounter", "scope": "instance", "kind": "member", - "___id": "T000002R044955", + "___id": "T000002R044925", "___s": true }, { @@ -404968,7 +405577,7 @@ "longname": "Phaser.Tweens.BaseTweenData#flipX", "scope": "instance", "kind": "member", - "___id": "T000002R044957", + "___id": "T000002R044927", "___s": true }, { @@ -404996,7 +405605,7 @@ "longname": "Phaser.Tweens.BaseTweenData#flipY", "scope": "instance", "kind": "member", - "___id": "T000002R044959", + "___id": "T000002R044929", "___s": true }, { @@ -405024,7 +405633,7 @@ "longname": "Phaser.Tweens.BaseTweenData#progress", "scope": "instance", "kind": "member", - "___id": "T000002R044961", + "___id": "T000002R044931", "___s": true }, { @@ -405052,7 +405661,7 @@ "longname": "Phaser.Tweens.BaseTweenData#elapsed", "scope": "instance", "kind": "member", - "___id": "T000002R044963", + "___id": "T000002R044933", "___s": true }, { @@ -405080,7 +405689,7 @@ "longname": "Phaser.Tweens.BaseTweenData#state", "scope": "instance", "kind": "member", - "___id": "T000002R044965", + "___id": "T000002R044935", "___s": true }, { @@ -405108,7 +405717,7 @@ "longname": "Phaser.Tweens.BaseTweenData#isCountdown", "scope": "instance", "kind": "member", - "___id": "T000002R044967", + "___id": "T000002R044937", "___s": true }, { @@ -405141,7 +405750,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#getTarget", "scope": "instance", - "___id": "T000002R044969", + "___id": "T000002R044939", "___s": true }, { @@ -405176,7 +405785,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#setTargetValue", "scope": "instance", - "___id": "T000002R044971", + "___id": "T000002R044941", "___s": true }, { @@ -405195,7 +405804,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#setCreatedState", "scope": "instance", - "___id": "T000002R044975", + "___id": "T000002R044945", "___s": true }, { @@ -405214,7 +405823,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#setDelayState", "scope": "instance", - "___id": "T000002R044979", + "___id": "T000002R044949", "___s": true }, { @@ -405233,7 +405842,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#setPendingRenderState", "scope": "instance", - "___id": "T000002R044983", + "___id": "T000002R044953", "___s": true }, { @@ -405252,7 +405861,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#setPlayingForwardState", "scope": "instance", - "___id": "T000002R044987", + "___id": "T000002R044957", "___s": true }, { @@ -405271,7 +405880,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#setPlayingBackwardState", "scope": "instance", - "___id": "T000002R044991", + "___id": "T000002R044961", "___s": true }, { @@ -405290,7 +405899,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#setHoldState", "scope": "instance", - "___id": "T000002R044995", + "___id": "T000002R044965", "___s": true }, { @@ -405309,7 +405918,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#setRepeatState", "scope": "instance", - "___id": "T000002R044999", + "___id": "T000002R044969", "___s": true }, { @@ -405328,7 +405937,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#setCompleteState", "scope": "instance", - "___id": "T000002R045003", + "___id": "T000002R044973", "___s": true }, { @@ -405361,7 +405970,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#isCreated", "scope": "instance", - "___id": "T000002R045007", + "___id": "T000002R044977", "___s": true }, { @@ -405394,7 +406003,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#isDelayed", "scope": "instance", - "___id": "T000002R045009", + "___id": "T000002R044979", "___s": true }, { @@ -405427,7 +406036,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#isPendingRender", "scope": "instance", - "___id": "T000002R045011", + "___id": "T000002R044981", "___s": true }, { @@ -405460,7 +406069,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#isPlayingForward", "scope": "instance", - "___id": "T000002R045013", + "___id": "T000002R044983", "___s": true }, { @@ -405493,7 +406102,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#isPlayingBackward", "scope": "instance", - "___id": "T000002R045015", + "___id": "T000002R044985", "___s": true }, { @@ -405526,7 +406135,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#isHolding", "scope": "instance", - "___id": "T000002R045017", + "___id": "T000002R044987", "___s": true }, { @@ -405559,7 +406168,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#isRepeating", "scope": "instance", - "___id": "T000002R045019", + "___id": "T000002R044989", "___s": true }, { @@ -405592,7 +406201,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#isComplete", "scope": "instance", - "___id": "T000002R045021", + "___id": "T000002R044991", "___s": true }, { @@ -405630,7 +406239,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#setStateFromEnd", "scope": "instance", - "___id": "T000002R045023", + "___id": "T000002R044993", "___s": true }, { @@ -405667,7 +406276,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#setStateFromStart", "scope": "instance", - "___id": "T000002R045025", + "___id": "T000002R044995", "___s": true }, { @@ -405686,7 +406295,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#reset", "scope": "instance", - "___id": "T000002R045027", + "___id": "T000002R044997", "___s": true }, { @@ -405750,7 +406359,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#onRepeat", "scope": "instance", - "___id": "T000002R045048", + "___id": "T000002R045018", "___s": true }, { @@ -405769,7 +406378,7 @@ "memberof": "Phaser.Tweens.BaseTweenData", "longname": "Phaser.Tweens.BaseTweenData#destroy", "scope": "instance", - "___id": "T000002R045063", + "___id": "T000002R045033", "___s": true }, { @@ -405788,7 +406397,7 @@ "since": "3.60.0", "longname": "Phaser.Tweens.States", "scope": "static", - "___id": "T000002R045068", + "___id": "T000002R045038", "___s": true }, { @@ -405816,7 +406425,7 @@ "since": "3.60.0", "longname": "Phaser.Tweens.StateType", "scope": "static", - "___id": "T000002R045069", + "___id": "T000002R045039", "___s": true }, { @@ -405844,7 +406453,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.CREATED", "scope": "static", - "___id": "T000002R045071", + "___id": "T000002R045041", "___s": true }, { @@ -405872,7 +406481,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.DELAY", "scope": "static", - "___id": "T000002R045073", + "___id": "T000002R045043", "___s": true }, { @@ -405900,7 +406509,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.PENDING_RENDER", "scope": "static", - "___id": "T000002R045075", + "___id": "T000002R045045", "___s": true }, { @@ -405928,7 +406537,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.PLAYING_FORWARD", "scope": "static", - "___id": "T000002R045077", + "___id": "T000002R045047", "___s": true }, { @@ -405956,7 +406565,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.PLAYING_BACKWARD", "scope": "static", - "___id": "T000002R045079", + "___id": "T000002R045049", "___s": true }, { @@ -405984,7 +406593,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.HOLD_DELAY", "scope": "static", - "___id": "T000002R045081", + "___id": "T000002R045051", "___s": true }, { @@ -406012,7 +406621,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.REPEAT_DELAY", "scope": "static", - "___id": "T000002R045083", + "___id": "T000002R045053", "___s": true }, { @@ -406040,7 +406649,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.COMPLETE", "scope": "static", - "___id": "T000002R045085", + "___id": "T000002R045055", "___s": true }, { @@ -406068,7 +406677,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.PENDING", "scope": "static", - "___id": "T000002R045087", + "___id": "T000002R045057", "___s": true }, { @@ -406096,7 +406705,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.ACTIVE", "scope": "static", - "___id": "T000002R045089", + "___id": "T000002R045059", "___s": true }, { @@ -406124,7 +406733,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.LOOP_DELAY", "scope": "static", - "___id": "T000002R045091", + "___id": "T000002R045061", "___s": true }, { @@ -406152,7 +406761,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.COMPLETE_DELAY", "scope": "static", - "___id": "T000002R045093", + "___id": "T000002R045063", "___s": true }, { @@ -406180,7 +406789,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.START_DELAY", "scope": "static", - "___id": "T000002R045095", + "___id": "T000002R045065", "___s": true }, { @@ -406208,7 +406817,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.PENDING_REMOVE", "scope": "static", - "___id": "T000002R045097", + "___id": "T000002R045067", "___s": true }, { @@ -406236,7 +406845,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.REMOVED", "scope": "static", - "___id": "T000002R045099", + "___id": "T000002R045069", "___s": true }, { @@ -406264,7 +406873,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.FINISHED", "scope": "static", - "___id": "T000002R045101", + "___id": "T000002R045071", "___s": true }, { @@ -406292,7 +406901,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.DESTROYED", "scope": "static", - "___id": "T000002R045103", + "___id": "T000002R045073", "___s": true }, { @@ -406320,7 +406929,7 @@ "memberof": "Phaser.Tweens.States", "longname": "Phaser.Tweens.States.MAX", "scope": "static", - "___id": "T000002R045105", + "___id": "T000002R045075", "___s": true }, { @@ -406560,7 +407169,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenConfigDefaults", "scope": "static", - "___id": "T000002R045108", + "___id": "T000002R045078", "___s": true }, { @@ -406619,7 +407228,7 @@ ], "scope": "static", "longname": "Phaser.Tweens.Tween", - "___id": "T000002R045134", + "___id": "T000002R045104", "___s": true }, { @@ -406656,7 +407265,7 @@ "longname": "Phaser.Tweens.Tween#targets", "scope": "instance", "kind": "member", - "___id": "T000002R045138", + "___id": "T000002R045108", "___s": true }, { @@ -406684,7 +407293,7 @@ "longname": "Phaser.Tweens.Tween#totalTargets", "scope": "instance", "kind": "member", - "___id": "T000002R045140", + "___id": "T000002R045110", "___s": true }, { @@ -406713,7 +407322,7 @@ "longname": "Phaser.Tweens.Tween#isSeeking", "scope": "instance", "kind": "member", - "___id": "T000002R045142", + "___id": "T000002R045112", "___s": true }, { @@ -406742,7 +407351,7 @@ "longname": "Phaser.Tweens.Tween#isInfinite", "scope": "instance", "kind": "member", - "___id": "T000002R045144", + "___id": "T000002R045114", "___s": true }, { @@ -406771,7 +407380,7 @@ "longname": "Phaser.Tweens.Tween#elapsed", "scope": "instance", "kind": "member", - "___id": "T000002R045146", + "___id": "T000002R045116", "___s": true }, { @@ -406800,7 +407409,7 @@ "longname": "Phaser.Tweens.Tween#totalElapsed", "scope": "instance", "kind": "member", - "___id": "T000002R045148", + "___id": "T000002R045118", "___s": true }, { @@ -406829,7 +407438,7 @@ "longname": "Phaser.Tweens.Tween#duration", "scope": "instance", "kind": "member", - "___id": "T000002R045150", + "___id": "T000002R045120", "___s": true }, { @@ -406858,7 +407467,7 @@ "longname": "Phaser.Tweens.Tween#progress", "scope": "instance", "kind": "member", - "___id": "T000002R045152", + "___id": "T000002R045122", "___s": true }, { @@ -406887,7 +407496,7 @@ "longname": "Phaser.Tweens.Tween#totalDuration", "scope": "instance", "kind": "member", - "___id": "T000002R045154", + "___id": "T000002R045124", "___s": true }, { @@ -406916,7 +407525,7 @@ "longname": "Phaser.Tweens.Tween#totalProgress", "scope": "instance", "kind": "member", - "___id": "T000002R045156", + "___id": "T000002R045126", "___s": true }, { @@ -407174,7 +407783,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#add", "scope": "instance", - "___id": "T000002R045158", + "___id": "T000002R045128", "___s": true }, { @@ -407349,7 +407958,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#addFrame", "scope": "instance", - "___id": "T000002R045162", + "___id": "T000002R045132", "___s": true }, { @@ -407399,7 +408008,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#getValue", "scope": "instance", - "___id": "T000002R045166", + "___id": "T000002R045136", "___s": true }, { @@ -407447,7 +408056,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#hasTarget", "scope": "instance", - "___id": "T000002R045171", + "___id": "T000002R045141", "___s": true }, { @@ -407524,7 +408133,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#updateTo", "scope": "instance", - "___id": "T000002R045173", + "___id": "T000002R045143", "___s": true }, { @@ -407558,7 +408167,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#restart", "scope": "instance", - "___id": "T000002R045180", + "___id": "T000002R045150", "___s": true }, { @@ -407595,7 +408204,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#nextState", "scope": "instance", - "___id": "T000002R045184", + "___id": "T000002R045154", "___s": true }, { @@ -407615,7 +408224,7 @@ "longname": "Phaser.Tweens.Tween#onCompleteHandler", "scope": "instance", "overrides": "Phaser.Tweens.BaseTween#onCompleteHandler", - "___id": "T000002R045190", + "___id": "T000002R045160", "___s": true }, { @@ -407649,7 +408258,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#play", "scope": "instance", - "___id": "T000002R045194", + "___id": "T000002R045164", "___s": true }, { @@ -407730,7 +408339,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#seek", "scope": "instance", - "___id": "T000002R045197", + "___id": "T000002R045167", "___s": true }, { @@ -407766,7 +408375,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#initTweenData", "scope": "instance", - "___id": "T000002R045210", + "___id": "T000002R045180", "___s": true }, { @@ -407820,7 +408429,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#reset", "scope": "instance", - "___id": "T000002R045224", + "___id": "T000002R045194", "___s": true }, { @@ -407873,7 +408482,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#update", "scope": "instance", - "___id": "T000002R045234", + "___id": "T000002R045204", "___s": true }, { @@ -407922,7 +408531,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#forward", "scope": "instance", - "___id": "T000002R045250", + "___id": "T000002R045220", "___s": true }, { @@ -407971,7 +408580,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#rewind", "scope": "instance", - "___id": "T000002R045252", + "___id": "T000002R045222", "___s": true }, { @@ -408019,7 +408628,7 @@ "memberof": "Phaser.Tweens.Tween", "longname": "Phaser.Tweens.Tween#dispatchEvent", "scope": "instance", - "___id": "T000002R045254", + "___id": "T000002R045224", "___s": true }, { @@ -408039,7 +408648,7 @@ "longname": "Phaser.Tweens.Tween#destroy", "scope": "instance", "overrides": "Phaser.Tweens.BaseTween#destroy", - "___id": "T000002R045257", + "___id": "T000002R045227", "___s": true }, { @@ -408107,7 +408716,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#tween", "scope": "instance", - "___id": "T000002R045260", + "___id": "T000002R045230", "___s": true }, { @@ -408175,7 +408784,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#tween", "scope": "instance", - "___id": "T000002R045261", + "___id": "T000002R045231", "___s": true }, { @@ -408222,7 +408831,7 @@ ], "scope": "static", "longname": "Phaser.Tweens.TweenChain", - "___id": "T000002R045270", + "___id": "T000002R045240", "___s": true }, { @@ -408250,7 +408859,7 @@ "longname": "Phaser.Tweens.TweenChain#currentTween", "scope": "instance", "kind": "member", - "___id": "T000002R045274", + "___id": "T000002R045244", "___s": true }, { @@ -408278,7 +408887,7 @@ "longname": "Phaser.Tweens.TweenChain#currentIndex", "scope": "instance", "kind": "member", - "___id": "T000002R045276", + "___id": "T000002R045246", "___s": true }, { @@ -408315,7 +408924,7 @@ "memberof": "Phaser.Tweens.TweenChain", "longname": "Phaser.Tweens.TweenChain#init", "scope": "instance", - "___id": "T000002R045278", + "___id": "T000002R045248", "___s": true }, { @@ -408392,7 +409001,7 @@ "memberof": "Phaser.Tweens.TweenChain", "longname": "Phaser.Tweens.TweenChain#add", "scope": "instance", - "___id": "T000002R045281", + "___id": "T000002R045251", "___s": true }, { @@ -408440,7 +409049,7 @@ "memberof": "Phaser.Tweens.TweenChain", "longname": "Phaser.Tweens.TweenChain#hasTarget", "scope": "instance", - "___id": "T000002R045293", + "___id": "T000002R045263", "___s": true }, { @@ -408474,7 +409083,7 @@ "memberof": "Phaser.Tweens.TweenChain", "longname": "Phaser.Tweens.TweenChain#restart", "scope": "instance", - "___id": "T000002R045297", + "___id": "T000002R045267", "___s": true }, { @@ -408523,7 +409132,7 @@ "memberof": "Phaser.Tweens.TweenChain", "longname": "Phaser.Tweens.TweenChain#reset", "scope": "instance", - "___id": "T000002R045300", + "___id": "T000002R045270", "___s": true }, { @@ -408560,7 +409169,7 @@ "memberof": "Phaser.Tweens.TweenChain", "longname": "Phaser.Tweens.TweenChain#nextState", "scope": "instance", - "___id": "T000002R045304", + "___id": "T000002R045274", "___s": true }, { @@ -408594,7 +409203,7 @@ "memberof": "Phaser.Tweens.TweenChain", "longname": "Phaser.Tweens.TweenChain#play", "scope": "instance", - "___id": "T000002R045308", + "___id": "T000002R045278", "___s": true }, { @@ -408613,7 +409222,7 @@ "memberof": "Phaser.Tweens.TweenChain", "longname": "Phaser.Tweens.TweenChain#resetTweens", "scope": "instance", - "___id": "T000002R045311", + "___id": "T000002R045281", "___s": true }, { @@ -408666,7 +409275,7 @@ "memberof": "Phaser.Tweens.TweenChain", "longname": "Phaser.Tweens.TweenChain#update", "scope": "instance", - "___id": "T000002R045316", + "___id": "T000002R045286", "___s": true }, { @@ -408699,7 +409308,7 @@ "memberof": "Phaser.Tweens.TweenChain", "longname": "Phaser.Tweens.TweenChain#nextTween", "scope": "instance", - "___id": "T000002R045323", + "___id": "T000002R045293", "___s": true }, { @@ -408733,7 +409342,7 @@ "memberof": "Phaser.Tweens.TweenChain", "longname": "Phaser.Tweens.TweenChain#setCurrentTween", "scope": "instance", - "___id": "T000002R045325", + "___id": "T000002R045295", "___s": true }, { @@ -408781,7 +409390,7 @@ "memberof": "Phaser.Tweens.TweenChain", "longname": "Phaser.Tweens.TweenChain#dispatchEvent", "scope": "instance", - "___id": "T000002R045329", + "___id": "T000002R045299", "___s": true }, { @@ -408801,7 +409410,7 @@ "longname": "Phaser.Tweens.TweenChain#destroy", "scope": "instance", "overrides": "Phaser.Tweens.BaseTween#destroy", - "___id": "T000002R045332", + "___id": "T000002R045302", "___s": true }, { @@ -408859,7 +409468,7 @@ "memberof": "Phaser.GameObjects.GameObjectFactory", "longname": "Phaser.GameObjects.GameObjectFactory#tweenchain", "scope": "instance", - "___id": "T000002R045335", + "___id": "T000002R045305", "___s": true }, { @@ -408917,7 +409526,7 @@ "memberof": "Phaser.GameObjects.GameObjectCreator", "longname": "Phaser.GameObjects.GameObjectCreator#tweenchain", "scope": "instance", - "___id": "T000002R045336", + "___id": "T000002R045306", "___s": true }, { @@ -409177,7 +409786,7 @@ ], "scope": "static", "longname": "Phaser.Tweens.TweenData", - "___id": "T000002R045342", + "___id": "T000002R045312", "___s": true }, { @@ -409206,7 +409815,7 @@ "longname": "Phaser.Tweens.TweenData#key", "scope": "instance", "kind": "member", - "___id": "T000002R045346", + "___id": "T000002R045316", "___s": true }, { @@ -409236,7 +409845,7 @@ "longname": "Phaser.Tweens.TweenData#getActiveValue", "scope": "instance", "kind": "member", - "___id": "T000002R045348", + "___id": "T000002R045318", "___s": true }, { @@ -409264,7 +409873,7 @@ "longname": "Phaser.Tweens.TweenData#getEndValue", "scope": "instance", "kind": "member", - "___id": "T000002R045350", + "___id": "T000002R045320", "___s": true }, { @@ -409292,7 +409901,7 @@ "longname": "Phaser.Tweens.TweenData#getStartValue", "scope": "instance", "kind": "member", - "___id": "T000002R045352", + "___id": "T000002R045322", "___s": true }, { @@ -409320,7 +409929,7 @@ "longname": "Phaser.Tweens.TweenData#ease", "scope": "instance", "kind": "member", - "___id": "T000002R045354", + "___id": "T000002R045324", "___s": true }, { @@ -409348,7 +409957,7 @@ "longname": "Phaser.Tweens.TweenData#start", "scope": "instance", "kind": "member", - "___id": "T000002R045356", + "___id": "T000002R045326", "___s": true }, { @@ -409376,7 +409985,7 @@ "longname": "Phaser.Tweens.TweenData#previous", "scope": "instance", "kind": "member", - "___id": "T000002R045358", + "___id": "T000002R045328", "___s": true }, { @@ -409404,7 +410013,7 @@ "longname": "Phaser.Tweens.TweenData#current", "scope": "instance", "kind": "member", - "___id": "T000002R045360", + "___id": "T000002R045330", "___s": true }, { @@ -409432,7 +410041,7 @@ "longname": "Phaser.Tweens.TweenData#end", "scope": "instance", "kind": "member", - "___id": "T000002R045362", + "___id": "T000002R045332", "___s": true }, { @@ -409463,7 +410072,7 @@ "longname": "Phaser.Tweens.TweenData#interpolation", "scope": "instance", "kind": "member", - "___id": "T000002R045364", + "___id": "T000002R045334", "___s": true }, { @@ -409502,7 +410111,7 @@ "longname": "Phaser.Tweens.TweenData#interpolationData", "scope": "instance", "kind": "member", - "___id": "T000002R045366", + "___id": "T000002R045336", "___s": true }, { @@ -409539,7 +410148,7 @@ "longname": "Phaser.Tweens.TweenData#reset", "scope": "instance", "overrides": "Phaser.Tweens.BaseTweenData#reset", - "___id": "T000002R045368", + "___id": "T000002R045338", "___s": true }, { @@ -409591,7 +410200,7 @@ "memberof": "Phaser.Tweens.TweenData", "longname": "Phaser.Tweens.TweenData#update", "scope": "instance", - "___id": "T000002R045378", + "___id": "T000002R045348", "___s": true }, { @@ -409639,7 +410248,7 @@ "memberof": "Phaser.Tweens.TweenData", "longname": "Phaser.Tweens.TweenData#dispatchEvent", "scope": "instance", - "___id": "T000002R045417", + "___id": "T000002R045387", "___s": true }, { @@ -409659,7 +410268,7 @@ "longname": "Phaser.Tweens.TweenData#destroy", "scope": "instance", "overrides": "Phaser.Tweens.BaseTweenData#destroy", - "___id": "T000002R045425", + "___id": "T000002R045395", "___s": true }, { @@ -409836,7 +410445,7 @@ ], "scope": "static", "longname": "Phaser.Tweens.TweenFrameData", - "___id": "T000002R045436", + "___id": "T000002R045406", "___s": true }, { @@ -409865,7 +410474,7 @@ "longname": "Phaser.Tweens.TweenFrameData#key", "scope": "instance", "kind": "member", - "___id": "T000002R045440", + "___id": "T000002R045410", "___s": true }, { @@ -409893,7 +410502,7 @@ "longname": "Phaser.Tweens.TweenFrameData#startTexture", "scope": "instance", "kind": "member", - "___id": "T000002R045442", + "___id": "T000002R045412", "___s": true }, { @@ -409921,7 +410530,7 @@ "longname": "Phaser.Tweens.TweenFrameData#endTexture", "scope": "instance", "kind": "member", - "___id": "T000002R045444", + "___id": "T000002R045414", "___s": true }, { @@ -409959,7 +410568,7 @@ "longname": "Phaser.Tweens.TweenFrameData#startFrame", "scope": "instance", "kind": "member", - "___id": "T000002R045446", + "___id": "T000002R045416", "___s": true }, { @@ -409997,7 +410606,7 @@ "longname": "Phaser.Tweens.TweenFrameData#endFrame", "scope": "instance", "kind": "member", - "___id": "T000002R045448", + "___id": "T000002R045418", "___s": true }, { @@ -410026,7 +410635,7 @@ "scope": "instance", "kind": "member", "overrides": "Phaser.Tweens.BaseTweenData#yoyo", - "___id": "T000002R045450", + "___id": "T000002R045420", "___s": true }, { @@ -410063,7 +410672,7 @@ "longname": "Phaser.Tweens.TweenFrameData#reset", "scope": "instance", "overrides": "Phaser.Tweens.BaseTweenData#reset", - "___id": "T000002R045452", + "___id": "T000002R045422", "___s": true }, { @@ -410115,7 +410724,7 @@ "memberof": "Phaser.Tweens.TweenFrameData", "longname": "Phaser.Tweens.TweenFrameData#update", "scope": "instance", - "___id": "T000002R045457", + "___id": "T000002R045427", "___s": true }, { @@ -410163,7 +410772,7 @@ "memberof": "Phaser.Tweens.TweenFrameData", "longname": "Phaser.Tweens.TweenFrameData#dispatchEvent", "scope": "instance", - "___id": "T000002R045480", + "___id": "T000002R045450", "___s": true }, { @@ -410183,7 +410792,7 @@ "longname": "Phaser.Tweens.TweenFrameData#destroy", "scope": "instance", "overrides": "Phaser.Tweens.BaseTweenData#destroy", - "___id": "T000002R045486", + "___id": "T000002R045456", "___s": true }, { @@ -410217,7 +410826,7 @@ ], "scope": "static", "longname": "Phaser.Tweens.TweenManager", - "___id": "T000002R045504", + "___id": "T000002R045474", "___s": true }, { @@ -410245,7 +410854,7 @@ "longname": "Phaser.Tweens.TweenManager#scene", "scope": "instance", "kind": "member", - "___id": "T000002R045507", + "___id": "T000002R045477", "___s": true }, { @@ -410273,7 +410882,7 @@ "longname": "Phaser.Tweens.TweenManager#events", "scope": "instance", "kind": "member", - "___id": "T000002R045509", + "___id": "T000002R045479", "___s": true }, { @@ -410302,7 +410911,7 @@ "longname": "Phaser.Tweens.TweenManager#timeScale", "scope": "instance", "kind": "member", - "___id": "T000002R045511", + "___id": "T000002R045481", "___s": true }, { @@ -410331,7 +410940,7 @@ "longname": "Phaser.Tweens.TweenManager#paused", "scope": "instance", "kind": "member", - "___id": "T000002R045513", + "___id": "T000002R045483", "___s": true }, { @@ -410360,7 +410969,7 @@ "longname": "Phaser.Tweens.TweenManager#processing", "scope": "instance", "kind": "member", - "___id": "T000002R045515", + "___id": "T000002R045485", "___s": true }, { @@ -410397,7 +411006,7 @@ "longname": "Phaser.Tweens.TweenManager#tweens", "scope": "instance", "kind": "member", - "___id": "T000002R045517", + "___id": "T000002R045487", "___s": true }, { @@ -410425,7 +411034,7 @@ "longname": "Phaser.Tweens.TweenManager#time", "scope": "instance", "kind": "member", - "___id": "T000002R045519", + "___id": "T000002R045489", "___s": true }, { @@ -410453,7 +411062,7 @@ "longname": "Phaser.Tweens.TweenManager#startTime", "scope": "instance", "kind": "member", - "___id": "T000002R045521", + "___id": "T000002R045491", "___s": true }, { @@ -410481,7 +411090,7 @@ "longname": "Phaser.Tweens.TweenManager#nextTime", "scope": "instance", "kind": "member", - "___id": "T000002R045523", + "___id": "T000002R045493", "___s": true }, { @@ -410509,7 +411118,7 @@ "longname": "Phaser.Tweens.TweenManager#prevTime", "scope": "instance", "kind": "member", - "___id": "T000002R045525", + "___id": "T000002R045495", "___s": true }, { @@ -410538,7 +411147,7 @@ "longname": "Phaser.Tweens.TweenManager#maxLag", "scope": "instance", "kind": "member", - "___id": "T000002R045527", + "___id": "T000002R045497", "___s": true }, { @@ -410567,7 +411176,7 @@ "longname": "Phaser.Tweens.TweenManager#lagSkip", "scope": "instance", "kind": "member", - "___id": "T000002R045529", + "___id": "T000002R045499", "___s": true }, { @@ -410595,7 +411204,7 @@ "longname": "Phaser.Tweens.TweenManager#gap", "scope": "instance", "kind": "member", - "___id": "T000002R045531", + "___id": "T000002R045501", "___s": true }, { @@ -410700,7 +411309,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#create", "scope": "instance", - "___id": "T000002R045542", + "___id": "T000002R045512", "___s": true }, { @@ -410768,7 +411377,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#add", "scope": "instance", - "___id": "T000002R045548", + "___id": "T000002R045518", "___s": true }, { @@ -410853,7 +411462,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#addMultiple", "scope": "instance", - "___id": "T000002R045554", + "___id": "T000002R045524", "___s": true }, { @@ -410911,7 +411520,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#chain", "scope": "instance", - "___id": "T000002R045563", + "___id": "T000002R045533", "___s": true }, { @@ -410968,7 +411577,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#getChainedTweens", "scope": "instance", - "___id": "T000002R045566", + "___id": "T000002R045536", "___s": true }, { @@ -411016,7 +411625,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#has", "scope": "instance", - "___id": "T000002R045568", + "___id": "T000002R045538", "___s": true }, { @@ -411065,7 +411674,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#existing", "scope": "instance", - "___id": "T000002R045570", + "___id": "T000002R045540", "___s": true }, { @@ -411113,7 +411722,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#addCounter", "scope": "instance", - "___id": "T000002R045572", + "___id": "T000002R045542", "___s": true }, { @@ -411193,7 +411802,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#stagger", "scope": "instance", - "___id": "T000002R045575", + "___id": "T000002R045545", "___s": true }, { @@ -411259,7 +411868,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#setLagSmooth", "scope": "instance", - "___id": "T000002R045577", + "___id": "T000002R045547", "___s": true }, { @@ -411310,7 +411919,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#setFps", "scope": "instance", - "___id": "T000002R045583", + "___id": "T000002R045553", "___s": true }, { @@ -411360,7 +411969,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#getDelta", "scope": "instance", - "___id": "T000002R045588", + "___id": "T000002R045558", "___s": true }, { @@ -411394,7 +412003,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#tick", "scope": "instance", - "___id": "T000002R045600", + "___id": "T000002R045570", "___s": true }, { @@ -411413,7 +412022,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#update", "scope": "instance", - "___id": "T000002R045602", + "___id": "T000002R045572", "___s": true }, { @@ -411449,7 +412058,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#step", "scope": "instance", - "___id": "T000002R045604", + "___id": "T000002R045574", "___s": true }, { @@ -411498,7 +412107,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#remove", "scope": "instance", - "___id": "T000002R045621", + "___id": "T000002R045591", "___s": true }, { @@ -411547,7 +412156,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#reset", "scope": "instance", - "___id": "T000002R045623", + "___id": "T000002R045593", "___s": true }, { @@ -411596,7 +412205,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#makeActive", "scope": "instance", - "___id": "T000002R045625", + "___id": "T000002R045595", "___s": true }, { @@ -411674,7 +412283,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#each", "scope": "instance", - "___id": "T000002R045627", + "___id": "T000002R045597", "___s": true }, { @@ -411716,7 +412325,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#getTweens", "scope": "instance", - "___id": "T000002R045633", + "___id": "T000002R045603", "___s": true }, { @@ -411792,7 +412401,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#getTweensOf", "scope": "instance", - "___id": "T000002R045635", + "___id": "T000002R045605", "___s": true }, { @@ -411825,7 +412434,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#getGlobalTimeScale", "scope": "instance", - "___id": "T000002R045645", + "___id": "T000002R045615", "___s": true }, { @@ -411874,7 +412483,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#setGlobalTimeScale", "scope": "instance", - "___id": "T000002R045647", + "___id": "T000002R045617", "___s": true }, { @@ -411922,7 +412531,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#isTweening", "scope": "instance", - "___id": "T000002R045650", + "___id": "T000002R045620", "___s": true }, { @@ -411956,7 +412565,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#killAll", "scope": "instance", - "___id": "T000002R045656", + "___id": "T000002R045626", "___s": true }, { @@ -412018,7 +412627,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#killTweensOf", "scope": "instance", - "___id": "T000002R045661", + "___id": "T000002R045631", "___s": true }, { @@ -412052,7 +412661,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#pauseAll", "scope": "instance", - "___id": "T000002R045665", + "___id": "T000002R045635", "___s": true }, { @@ -412086,7 +412695,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#resumeAll", "scope": "instance", - "___id": "T000002R045668", + "___id": "T000002R045638", "___s": true }, { @@ -412105,7 +412714,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#shutdown", "scope": "instance", - "___id": "T000002R045671", + "___id": "T000002R045641", "___s": true }, { @@ -412124,7 +412733,7 @@ "memberof": "Phaser.Tweens.TweenManager", "longname": "Phaser.Tweens.TweenManager#destroy", "scope": "instance", - "___id": "T000002R045674", + "___id": "T000002R045644", "___s": true }, { @@ -412152,7 +412761,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.Event", "scope": "static", - "___id": "T000002R045679", + "___id": "T000002R045649", "___s": true }, { @@ -412269,7 +412878,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.GetActiveCallback", "scope": "static", - "___id": "T000002R045680", + "___id": "T000002R045650", "___s": true }, { @@ -412386,7 +412995,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.GetEndCallback", "scope": "static", - "___id": "T000002R045681", + "___id": "T000002R045651", "___s": true }, { @@ -412503,7 +413112,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.GetStartCallback", "scope": "static", - "___id": "T000002R045682", + "___id": "T000002R045652", "___s": true }, { @@ -412520,7 +413129,7 @@ "memberof": "Phaser.Types", "longname": "Phaser.Types.Tweens", "scope": "static", - "___id": "T000002R045683", + "___id": "T000002R045653", "___s": true }, { @@ -413147,7 +413756,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.NumberTweenBuilderConfig", "scope": "static", - "___id": "T000002R045684", + "___id": "T000002R045654", "___s": true }, { @@ -413267,7 +413876,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.StaggerConfig", "scope": "static", - "___id": "T000002R045685", + "___id": "T000002R045655", "___s": true }, { @@ -413995,7 +414604,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenBuilderConfig", "scope": "static", - "___id": "T000002R045686", + "___id": "T000002R045656", "___s": true }, { @@ -414164,7 +414773,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenCallbacks", "scope": "static", - "___id": "T000002R045687", + "___id": "T000002R045657", "___s": true }, { @@ -414241,7 +414850,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenCallbackTypes", "scope": "static", - "___id": "T000002R045688", + "___id": "T000002R045658", "___s": true }, { @@ -414693,7 +415302,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenChainBuilderConfig", "scope": "static", - "___id": "T000002R045689", + "___id": "T000002R045659", "___s": true }, { @@ -415084,7 +415693,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenDataConfig", "scope": "static", - "___id": "T000002R045690", + "___id": "T000002R045660", "___s": true }, { @@ -415178,7 +415787,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenDataGenConfig", "scope": "static", - "___id": "T000002R045691", + "___id": "T000002R045661", "___s": true }, { @@ -415440,7 +416049,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenFrameDataConfig", "scope": "static", - "___id": "T000002R045692", + "___id": "T000002R045662", "___s": true }, { @@ -415525,7 +416134,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenOnActiveCallback", "scope": "static", - "___id": "T000002R045693", + "___id": "T000002R045663", "___s": true }, { @@ -415610,7 +416219,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenOnCompleteCallback", "scope": "static", - "___id": "T000002R045694", + "___id": "T000002R045664", "___s": true }, { @@ -415695,7 +416304,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenOnLoopCallback", "scope": "static", - "___id": "T000002R045695", + "___id": "T000002R045665", "___s": true }, { @@ -415780,7 +416389,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenOnPauseCallback", "scope": "static", - "___id": "T000002R045696", + "___id": "T000002R045666", "___s": true }, { @@ -415885,7 +416494,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenOnRepeatCallback", "scope": "static", - "___id": "T000002R045697", + "___id": "T000002R045667", "___s": true }, { @@ -415970,7 +416579,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenOnResumeCallback", "scope": "static", - "___id": "T000002R045698", + "___id": "T000002R045668", "___s": true }, { @@ -416055,7 +416664,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenOnStartCallback", "scope": "static", - "___id": "T000002R045699", + "___id": "T000002R045669", "___s": true }, { @@ -416140,7 +416749,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenOnStopCallback", "scope": "static", - "___id": "T000002R045700", + "___id": "T000002R045670", "___s": true }, { @@ -416245,7 +416854,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenOnUpdateCallback", "scope": "static", - "___id": "T000002R045701", + "___id": "T000002R045671", "___s": true }, { @@ -416350,7 +416959,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenOnYoyoCallback", "scope": "static", - "___id": "T000002R045702", + "___id": "T000002R045672", "___s": true }, { @@ -416629,7 +417238,7 @@ "memberof": "Phaser.Types.Tweens", "longname": "Phaser.Types.Tweens.TweenPropConfig", "scope": "static", - "___id": "T000002R045703", + "___id": "T000002R045673", "___s": true }, { @@ -416751,7 +417360,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.Add", "scope": "static", - "___id": "T000002R045704", + "___id": "T000002R045674", "___s": true }, { @@ -416888,7 +417497,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.AddAt", "scope": "static", - "___id": "T000002R045714", + "___id": "T000002R045684", "___s": true }, { @@ -416947,7 +417556,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.BringToTop", "scope": "static", - "___id": "T000002R045725", + "___id": "T000002R045695", "___s": true }, { @@ -417048,7 +417657,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.CountAllMatching", "scope": "static", - "___id": "T000002R045730", + "___id": "T000002R045700", "___s": true }, { @@ -417137,7 +417746,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.Each", "scope": "static", - "___id": "T000002R045738", + "___id": "T000002R045708", "___s": true }, { @@ -417252,7 +417861,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.EachInRange", "scope": "static", - "___id": "T000002R045747", + "___id": "T000002R045717", "___s": true }, { @@ -417337,7 +417946,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.FindClosestInSorted", "scope": "static", - "___id": "T000002R045757", + "___id": "T000002R045727", "___s": true }, { @@ -417399,7 +418008,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.Flatten", "scope": "static", - "___id": "T000002R045768", + "___id": "T000002R045738", "___s": true }, { @@ -417502,7 +418111,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.GetAll", "scope": "static", - "___id": "T000002R045774", + "___id": "T000002R045744", "___s": true }, { @@ -417609,7 +418218,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.GetFirst", "scope": "static", - "___id": "T000002R045783", + "___id": "T000002R045753", "___s": true }, { @@ -417716,7 +418325,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.GetRandom", "scope": "static", - "___id": "T000002R045790", + "___id": "T000002R045760", "___s": true }, { @@ -417733,7 +418342,7 @@ "memberof": "Phaser.Utils", "longname": "Phaser.Utils.Array", "scope": "static", - "___id": "T000002R045796", + "___id": "T000002R045766", "___s": true }, { @@ -417814,7 +418423,7 @@ "memberof": "Phaser.Utils.Array.Matrix", "longname": "Phaser.Utils.Array.Matrix.CheckMatrix", "scope": "static", - "___id": "T000002R045834", + "___id": "T000002R045804", "___s": true }, { @@ -417831,7 +418440,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.Matrix", "scope": "static", - "___id": "T000002R045839", + "___id": "T000002R045809", "___s": true }, { @@ -417912,7 +418521,7 @@ "memberof": "Phaser.Utils.Array.Matrix", "longname": "Phaser.Utils.Array.Matrix.MatrixToString", "scope": "static", - "___id": "T000002R045853", + "___id": "T000002R045823", "___s": true }, { @@ -418011,7 +418620,7 @@ "memberof": "Phaser.Utils.Array.Matrix", "longname": "Phaser.Utils.Array.Matrix.ReverseColumns", "scope": "static", - "___id": "T000002R045868", + "___id": "T000002R045838", "___s": true }, { @@ -418110,7 +418719,7 @@ "memberof": "Phaser.Utils.Array.Matrix", "longname": "Phaser.Utils.Array.Matrix.ReverseRows", "scope": "static", - "___id": "T000002R045871", + "___id": "T000002R045841", "___s": true }, { @@ -418209,7 +418818,7 @@ "memberof": "Phaser.Utils.Array.Matrix", "longname": "Phaser.Utils.Array.Matrix.Rotate180", "scope": "static", - "___id": "T000002R045876", + "___id": "T000002R045846", "___s": true }, { @@ -418323,7 +418932,7 @@ "memberof": "Phaser.Utils.Array.Matrix", "longname": "Phaser.Utils.Array.Matrix.RotateLeft", "scope": "static", - "___id": "T000002R045880", + "___id": "T000002R045850", "___s": true }, { @@ -418447,7 +419056,7 @@ "memberof": "Phaser.Utils.Array.Matrix", "longname": "Phaser.Utils.Array.Matrix.RotateMatrix", "scope": "static", - "___id": "T000002R045888", + "___id": "T000002R045858", "___s": true }, { @@ -418561,7 +419170,7 @@ "memberof": "Phaser.Utils.Array.Matrix", "longname": "Phaser.Utils.Array.Matrix.RotateRight", "scope": "static", - "___id": "T000002R045897", + "___id": "T000002R045867", "___s": true }, { @@ -418690,7 +419299,7 @@ "memberof": "Phaser.Utils.Array.Matrix", "longname": "Phaser.Utils.Array.Matrix.Translate", "scope": "static", - "___id": "T000002R045905", + "___id": "T000002R045875", "___s": true }, { @@ -418789,11 +419398,11 @@ "memberof": "Phaser.Utils.Array.Matrix", "longname": "Phaser.Utils.Array.Matrix.TransposeMatrix", "scope": "static", - "___id": "T000002R045912", + "___id": "T000002R045882", "___s": true }, { - "comment": "/**\r\n * Moves the given array element above another one in the array.\r\n * The array is modified in-place.\r\n *\r\n * @function Phaser.Utils.Array.MoveAbove\r\n * @since 3.55.0\r\n *\r\n * @param {array} array - The input array.\r\n * @param {*} item1 - The element to move above base element.\r\n * @param {*} item2 - The base element.\r\n *\r\n *\r\n * @return {array} The input array.\r\n */", + "comment": "/**\r\n * Moves the given array element above another one in the array.\r\n * If the given element is already above the other, it isn't moved.\r\n * Above means toward the end of the array.\r\n * The array is modified in-place.\r\n *\r\n * @function Phaser.Utils.Array.MoveAbove\r\n * @since 3.55.0\r\n *\r\n * @param {array} array - The input array.\r\n * @param {*} item1 - The element to move above base element.\r\n * @param {*} item2 - The base element.\r\n *\r\n *\r\n * @return {array} The input array.\r\n */", "meta": { "filename": "MoveAbove.js", "lineno": 7, @@ -418801,7 +419410,7 @@ "path": "D:\\wamp\\www\\phaser\\src\\utils\\array", "code": {} }, - "description": "Moves the given array element above another one in the array.\rThe array is modified in-place.", + "description": "Moves the given array element above another one in the array.\rIf the given element is already above the other, it isn't moved.\rAbove means toward the end of the array.\rThe array is modified in-place.", "kind": "function", "name": "MoveAbove", "since": "3.55.0", @@ -418861,11 +419470,11 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.MoveAbove", "scope": "static", - "___id": "T000002R045922", + "___id": "T000002R045892", "___s": true }, { - "comment": "/**\r\n * Moves the given array element below another one in the array.\r\n * The array is modified in-place.\r\n *\r\n * @function Phaser.Utils.Array.MoveBelow\r\n * @since 3.55.0\r\n *\r\n * @param {array} array - The input array.\r\n * @param {*} item1 - The element to move below base element.\r\n * @param {*} item2 - The base element.\r\n *\r\n *\r\n * @return {array} The input array.\r\n */", + "comment": "/**\r\n * Moves the given array element below another one in the array.\r\n * If the given element is already below the other, it isn't moved.\r\n * Below means toward the start of the array.\r\n * The array is modified in-place.\r\n *\r\n * @function Phaser.Utils.Array.MoveBelow\r\n * @since 3.55.0\r\n *\r\n * @param {array} array - The input array.\r\n * @param {*} item1 - The element to move below base element.\r\n * @param {*} item2 - The base element.\r\n *\r\n *\r\n * @return {array} The input array.\r\n */", "meta": { "filename": "MoveBelow.js", "lineno": 7, @@ -418873,7 +419482,7 @@ "path": "D:\\wamp\\www\\phaser\\src\\utils\\array", "code": {} }, - "description": "Moves the given array element below another one in the array.\rThe array is modified in-place.", + "description": "Moves the given array element below another one in the array.\rIf the given element is already below the other, it isn't moved.\rBelow means toward the start of the array.\rThe array is modified in-place.", "kind": "function", "name": "MoveBelow", "since": "3.55.0", @@ -418933,7 +419542,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.MoveBelow", "scope": "static", - "___id": "T000002R045927", + "___id": "T000002R045897", "___s": true }, { @@ -418993,7 +419602,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.MoveDown", "scope": "static", - "___id": "T000002R045932", + "___id": "T000002R045902", "___s": true }, { @@ -419065,7 +419674,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.MoveTo", "scope": "static", - "___id": "T000002R045940", + "___id": "T000002R045910", "___s": true }, { @@ -419125,7 +419734,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.MoveUp", "scope": "static", - "___id": "T000002R045944", + "___id": "T000002R045914", "___s": true }, { @@ -419242,7 +419851,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.NumberArray", "scope": "static", - "___id": "T000002R045952", + "___id": "T000002R045922", "___s": true }, { @@ -419334,7 +419943,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.NumberArrayStep", "scope": "static", - "___id": "T000002R045964", + "___id": "T000002R045934", "___s": true }, { @@ -419424,7 +420033,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.QuickSelect", "scope": "static", - "___id": "T000002R045981", + "___id": "T000002R045951", "___s": true }, { @@ -419499,7 +420108,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.Range", "scope": "static", - "___id": "T000002R046008", + "___id": "T000002R045978", "___s": true }, { @@ -419622,7 +420231,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.Remove", "scope": "static", - "___id": "T000002R046027", + "___id": "T000002R045997", "___s": true }, { @@ -419710,7 +420319,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.RemoveAt", "scope": "static", - "___id": "T000002R046038", + "___id": "T000002R046008", "___s": true }, { @@ -419820,7 +420429,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.RemoveBetween", "scope": "static", - "___id": "T000002R046044", + "___id": "T000002R046014", "___s": true }, { @@ -419898,7 +420507,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.RemoveRandomElement", "scope": "static", - "___id": "T000002R046055", + "___id": "T000002R046025", "___s": true }, { @@ -419970,7 +420579,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.Replace", "scope": "static", - "___id": "T000002R046061", + "___id": "T000002R046031", "___s": true }, { @@ -420032,7 +420641,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.RotateLeft", "scope": "static", - "___id": "T000002R046067", + "___id": "T000002R046037", "___s": true }, { @@ -420094,7 +420703,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.RotateRight", "scope": "static", - "___id": "T000002R046074", + "___id": "T000002R046044", "___s": true }, { @@ -420183,7 +420792,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.SafeRange", "scope": "static", - "___id": "T000002R046081", + "___id": "T000002R046051", "___s": true }, { @@ -420242,7 +420851,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.SendToBack", "scope": "static", - "___id": "T000002R046085", + "___id": "T000002R046055", "___s": true }, { @@ -420343,7 +420952,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.SetAll", "scope": "static", - "___id": "T000002R046090", + "___id": "T000002R046060", "___s": true }, { @@ -420423,7 +421032,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.Shuffle", "scope": "static", - "___id": "T000002R046098", + "___id": "T000002R046068", "___s": true }, { @@ -420489,7 +421098,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.SortByDigits", "scope": "static", - "___id": "T000002R046106", + "___id": "T000002R046076", "___s": true }, { @@ -420549,7 +421158,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.SpliceOne", "scope": "static", - "___id": "T000002R046110", + "___id": "T000002R046080", "___s": true }, { @@ -420611,7 +421220,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.StableSort", "scope": "static", - "___id": "T000002R046149", + "___id": "T000002R046119", "___s": true }, { @@ -420683,7 +421292,7 @@ "memberof": "Phaser.Utils.Array", "longname": "Phaser.Utils.Array.Swap", "scope": "static", - "___id": "T000002R046154", + "___id": "T000002R046124", "___s": true }, { @@ -420745,7 +421354,7 @@ "memberof": "Phaser.Utils.Base64", "longname": "Phaser.Utils.Base64.ArrayBufferToBase64", "scope": "static", - "___id": "T000002R046162", + "___id": "T000002R046132", "___s": true }, { @@ -420793,7 +421402,7 @@ "memberof": "Phaser.Utils.Base64", "longname": "Phaser.Utils.Base64.Base64ToArrayBuffer", "scope": "static", - "___id": "T000002R046180", + "___id": "T000002R046150", "___s": true }, { @@ -420810,7 +421419,7 @@ "memberof": "Phaser.Utils", "longname": "Phaser.Utils.Base64", "scope": "static", - "___id": "T000002R046202", + "___id": "T000002R046172", "___s": true }, { @@ -420825,7 +421434,7 @@ "columnno": 0, "path": "D:\\wamp\\www\\phaser\\src\\utils", "code": { - "id": "astnode100390384", + "id": "astnode100390727", "name": "Class", "type": "FunctionDeclaration", "paramnames": [ @@ -420867,7 +421476,7 @@ "name": "Class", "longname": "Class", "scope": "global", - "___id": "T000002R046225", + "___id": "T000002R046195", "___s": true }, { @@ -420884,7 +421493,7 @@ "memberof": "Phaser", "longname": "Phaser.Utils", "scope": "static", - "___id": "T000002R046243", + "___id": "T000002R046213", "___s": true }, { @@ -420903,7 +421512,7 @@ "memberof": "Phaser.Utils", "longname": "Phaser.Utils.NOOP", "scope": "static", - "___id": "T000002R046251", + "___id": "T000002R046221", "___s": true }, { @@ -420922,7 +421531,7 @@ "memberof": "Phaser.Utils", "longname": "Phaser.Utils.NULL", "scope": "static", - "___id": "T000002R046254", + "___id": "T000002R046224", "___s": true }, { @@ -420970,7 +421579,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.Clone", "scope": "static", - "___id": "T000002R046257", + "___id": "T000002R046227", "___s": true }, { @@ -421018,7 +421627,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.DeepCopy", "scope": "static", - "___id": "T000002R046264", + "___id": "T000002R046234", "___s": true }, { @@ -421068,7 +421677,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.Extend", "scope": "static", - "___id": "T000002R046274", + "___id": "T000002R046244", "___s": true }, { @@ -421140,7 +421749,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.GetAdvancedValue", "scope": "static", - "___id": "T000002R046302", + "___id": "T000002R046272", "___s": true }, { @@ -421213,7 +421822,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.GetFastValue", "scope": "static", - "___id": "T000002R046306", + "___id": "T000002R046276", "___s": true }, { @@ -421313,7 +421922,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.GetMinMaxValue", "scope": "static", - "___id": "T000002R046312", + "___id": "T000002R046282", "___s": true }, { @@ -421399,7 +422008,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.GetValue", "scope": "static", - "___id": "T000002R046317", + "___id": "T000002R046287", "___s": true }, { @@ -421469,7 +422078,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.HasAll", "scope": "static", - "___id": "T000002R046334", + "___id": "T000002R046304", "___s": true }, { @@ -421539,7 +422148,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.HasAny", "scope": "static", - "___id": "T000002R046338", + "___id": "T000002R046308", "___s": true }, { @@ -421600,7 +422209,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.HasValue", "scope": "static", - "___id": "T000002R046342", + "___id": "T000002R046312", "___s": true }, { @@ -421617,7 +422226,7 @@ "memberof": "Phaser.Utils", "longname": "Phaser.Utils.Objects", "scope": "static", - "___id": "T000002R046345", + "___id": "T000002R046315", "___s": true }, { @@ -421665,7 +422274,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.IsPlainObject", "scope": "static", - "___id": "T000002R046362", + "___id": "T000002R046332", "___s": true }, { @@ -421726,7 +422335,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.Merge", "scope": "static", - "___id": "T000002R046366", + "___id": "T000002R046336", "___s": true }, { @@ -421787,7 +422396,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.MergeRight", "scope": "static", - "___id": "T000002R046373", + "___id": "T000002R046343", "___s": true }, { @@ -421848,7 +422457,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.Pick", "scope": "static", - "___id": "T000002R046380", + "___id": "T000002R046350", "___s": true }, { @@ -421922,7 +422531,7 @@ "memberof": "Phaser.Utils.Objects", "longname": "Phaser.Utils.Objects.SetValue", "scope": "static", - "___id": "T000002R046387", + "___id": "T000002R046357", "___s": true }, { @@ -421983,7 +422592,7 @@ "memberof": "Phaser.Utils.String", "longname": "Phaser.Utils.String.Format", "scope": "static", - "___id": "T000002R046398", + "___id": "T000002R046368", "___s": true }, { @@ -422000,7 +422609,7 @@ "memberof": "Phaser.Utils", "longname": "Phaser.Utils.String", "scope": "static", - "___id": "T000002R046401", + "___id": "T000002R046371", "___s": true }, { @@ -422108,7 +422717,7 @@ "memberof": "Phaser.Utils.String", "longname": "Phaser.Utils.String.Pad", "scope": "static", - "___id": "T000002R046409", + "___id": "T000002R046379", "___s": true }, { @@ -422169,7 +422778,7 @@ "memberof": "Phaser.Utils.String", "longname": "Phaser.Utils.String.RemoveAt", "scope": "static", - "___id": "T000002R046423", + "___id": "T000002R046393", "___s": true }, { @@ -422217,7 +422826,7 @@ "memberof": "Phaser.Utils.String", "longname": "Phaser.Utils.String.Reverse", "scope": "static", - "___id": "T000002R046426", + "___id": "T000002R046396", "___s": true }, { @@ -422270,7 +422879,7 @@ "memberof": "Phaser.Utils.String", "longname": "Phaser.Utils.String.UppercaseFirst", "scope": "static", - "___id": "T000002R046429", + "___id": "T000002R046399", "___s": true }, { @@ -422303,7 +422912,7 @@ "memberof": "Phaser.Utils.String", "longname": "Phaser.Utils.String.UUID", "scope": "static", - "___id": "T000002R046432", + "___id": "T000002R046402", "___s": true }, { @@ -422382,7 +422991,7 @@ ], "longname": "AdInstance", "scope": "global", - "___id": "T000002R046437", + "___id": "T000002R046407", "___s": true }, { @@ -422419,7 +423028,7 @@ ], "scope": "static", "longname": "Phaser.FacebookInstantGamesPlugin", - "___id": "T000002R046451", + "___id": "T000002R046421", "___s": true }, { @@ -422448,7 +423057,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#game", "scope": "instance", "kind": "member", - "___id": "T000002R046455", + "___id": "T000002R046425", "___s": true }, { @@ -422476,7 +423085,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#data", "scope": "instance", "kind": "member", - "___id": "T000002R046457", + "___id": "T000002R046427", "___s": true }, { @@ -422504,7 +423113,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#hasLoaded", "scope": "instance", "kind": "member", - "___id": "T000002R046459", + "___id": "T000002R046429", "___s": true }, { @@ -422532,7 +423141,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#dataLocked", "scope": "instance", "kind": "member", - "___id": "T000002R046461", + "___id": "T000002R046431", "___s": true }, { @@ -422569,7 +423178,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#supportedAPIs", "scope": "instance", "kind": "member", - "___id": "T000002R046463", + "___id": "T000002R046433", "___s": true }, { @@ -422597,7 +423206,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#entryPoint", "scope": "instance", "kind": "member", - "___id": "T000002R046465", + "___id": "T000002R046435", "___s": true }, { @@ -422625,7 +423234,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#entryPointData", "scope": "instance", "kind": "member", - "___id": "T000002R046467", + "___id": "T000002R046437", "___s": true }, { @@ -422653,7 +423262,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#contextID", "scope": "instance", "kind": "member", - "___id": "T000002R046469", + "___id": "T000002R046439", "___s": true }, { @@ -422683,7 +423292,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#contextType", "scope": "instance", "kind": "member", - "___id": "T000002R046471", + "___id": "T000002R046441", "___s": true }, { @@ -422713,7 +423322,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#locale", "scope": "instance", "kind": "member", - "___id": "T000002R046473", + "___id": "T000002R046443", "___s": true }, { @@ -422743,7 +423352,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#platform", "scope": "instance", "kind": "member", - "___id": "T000002R046475", + "___id": "T000002R046445", "___s": true }, { @@ -422773,7 +423382,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#version", "scope": "instance", "kind": "member", - "___id": "T000002R046477", + "___id": "T000002R046447", "___s": true }, { @@ -422803,7 +423412,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#playerID", "scope": "instance", "kind": "member", - "___id": "T000002R046479", + "___id": "T000002R046449", "___s": true }, { @@ -422833,7 +423442,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#playerName", "scope": "instance", "kind": "member", - "___id": "T000002R046481", + "___id": "T000002R046451", "___s": true }, { @@ -422863,7 +423472,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#playerPhotoURL", "scope": "instance", "kind": "member", - "___id": "T000002R046483", + "___id": "T000002R046453", "___s": true }, { @@ -422891,7 +423500,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#playerCanSubscribeBot", "scope": "instance", "kind": "member", - "___id": "T000002R046485", + "___id": "T000002R046455", "___s": true }, { @@ -422919,7 +423528,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#paymentsReady", "scope": "instance", "kind": "member", - "___id": "T000002R046487", + "___id": "T000002R046457", "___s": true }, { @@ -422956,7 +423565,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#catalog", "scope": "instance", "kind": "member", - "___id": "T000002R046489", + "___id": "T000002R046459", "___s": true }, { @@ -422993,7 +423602,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#purchases", "scope": "instance", "kind": "member", - "___id": "T000002R046491", + "___id": "T000002R046461", "___s": true }, { @@ -423030,7 +423639,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#leaderboards", "scope": "instance", "kind": "member", - "___id": "T000002R046493", + "___id": "T000002R046463", "___s": true }, { @@ -423067,7 +423676,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#ads", "scope": "instance", "kind": "member", - "___id": "T000002R046495", + "___id": "T000002R046465", "___s": true }, { @@ -423116,7 +423725,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#showLoadProgress", "scope": "instance", - "___id": "T000002R046507", + "___id": "T000002R046477", "___s": true }, { @@ -423135,7 +423744,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#gameStarted", "scope": "instance", - "___id": "T000002R046510", + "___id": "T000002R046480", "___s": true }, { @@ -423183,7 +423792,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#checkAPI", "scope": "instance", - "___id": "T000002R046525", + "___id": "T000002R046495", "___s": true }, { @@ -423216,7 +423825,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getID", "scope": "instance", - "___id": "T000002R046527", + "___id": "T000002R046497", "___s": true }, { @@ -423251,7 +423860,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getType", "scope": "instance", - "___id": "T000002R046530", + "___id": "T000002R046500", "___s": true }, { @@ -423286,7 +423895,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getLocale", "scope": "instance", - "___id": "T000002R046533", + "___id": "T000002R046503", "___s": true }, { @@ -423321,7 +423930,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getPlatform", "scope": "instance", - "___id": "T000002R046536", + "___id": "T000002R046506", "___s": true }, { @@ -423356,7 +423965,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getSDKVersion", "scope": "instance", - "___id": "T000002R046539", + "___id": "T000002R046509", "___s": true }, { @@ -423391,7 +424000,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getPlayerID", "scope": "instance", - "___id": "T000002R046542", + "___id": "T000002R046512", "___s": true }, { @@ -423426,7 +424035,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getPlayerName", "scope": "instance", - "___id": "T000002R046545", + "___id": "T000002R046515", "___s": true }, { @@ -423461,7 +424070,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getPlayerPhotoURL", "scope": "instance", - "___id": "T000002R046548", + "___id": "T000002R046518", "___s": true }, { @@ -423523,7 +424132,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#loadPlayerPhoto", "scope": "instance", - "___id": "T000002R046551", + "___id": "T000002R046521", "___s": true }, { @@ -423557,7 +424166,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#canSubscribeBot", "scope": "instance", - "___id": "T000002R046553", + "___id": "T000002R046523", "___s": true }, { @@ -423591,7 +424200,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#subscribeBot", "scope": "instance", - "___id": "T000002R046557", + "___id": "T000002R046527", "___s": true }, { @@ -423659,7 +424268,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getData", "scope": "instance", - "___id": "T000002R046560", + "___id": "T000002R046530", "___s": true }, { @@ -423708,7 +424317,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#saveData", "scope": "instance", - "___id": "T000002R046567", + "___id": "T000002R046537", "___s": true }, { @@ -423742,7 +424351,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#flushData", "scope": "instance", - "___id": "T000002R046570", + "___id": "T000002R046540", "___s": true }, { @@ -423801,7 +424410,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getStats", "scope": "instance", - "___id": "T000002R046573", + "___id": "T000002R046543", "___s": true }, { @@ -423850,7 +424459,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#saveStats", "scope": "instance", - "___id": "T000002R046576", + "___id": "T000002R046546", "___s": true }, { @@ -423899,7 +424508,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#incStats", "scope": "instance", - "___id": "T000002R046582", + "___id": "T000002R046552", "___s": true }, { @@ -423948,7 +424557,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#saveSession", "scope": "instance", - "___id": "T000002R046588", + "___id": "T000002R046558", "___s": true }, { @@ -424038,7 +424647,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#openShare", "scope": "instance", - "___id": "T000002R046591", + "___id": "T000002R046561", "___s": true }, { @@ -424128,7 +424737,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#openInvite", "scope": "instance", - "___id": "T000002R046593", + "___id": "T000002R046563", "___s": true }, { @@ -424218,7 +424827,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#openRequest", "scope": "instance", - "___id": "T000002R046595", + "___id": "T000002R046565", "___s": true }, { @@ -424308,7 +424917,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#openChallenge", "scope": "instance", - "___id": "T000002R046597", + "___id": "T000002R046567", "___s": true }, { @@ -424371,7 +424980,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#isSizeBetween", "scope": "instance", - "___id": "T000002R046609", + "___id": "T000002R046579", "___s": true }, { @@ -424420,7 +425029,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#switchContext", "scope": "instance", - "___id": "T000002R046611", + "___id": "T000002R046581", "___s": true }, { @@ -424446,7 +425055,7 @@ }, "longname": "ContextFilter", "scope": "global", - "___id": "T000002R046615", + "___id": "T000002R046585", "___s": true }, { @@ -424525,7 +425134,7 @@ ], "longname": "ChooseContextConfig", "scope": "global", - "___id": "T000002R046616", + "___id": "T000002R046586", "___s": true }, { @@ -424575,7 +425184,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#chooseContext", "scope": "instance", - "___id": "T000002R046617", + "___id": "T000002R046587", "___s": true }, { @@ -424624,7 +425233,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#createContext", "scope": "instance", - "___id": "T000002R046621", + "___id": "T000002R046591", "___s": true }, { @@ -424658,7 +425267,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getPlayers", "scope": "instance", - "___id": "T000002R046625", + "___id": "T000002R046595", "___s": true }, { @@ -424692,7 +425301,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getCatalog", "scope": "instance", - "___id": "T000002R046628", + "___id": "T000002R046598", "___s": true }, { @@ -424742,7 +425351,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getProduct", "scope": "instance", - "___id": "T000002R046633", + "___id": "T000002R046603", "___s": true }, { @@ -424805,7 +425414,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#purchase", "scope": "instance", - "___id": "T000002R046636", + "___id": "T000002R046606", "___s": true }, { @@ -424839,7 +425448,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getPurchases", "scope": "instance", - "___id": "T000002R046643", + "___id": "T000002R046613", "___s": true }, { @@ -424888,7 +425497,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#consumePurchase", "scope": "instance", - "___id": "T000002R046648", + "___id": "T000002R046618", "___s": true }, { @@ -425014,7 +425623,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#update", "scope": "instance", - "___id": "T000002R046651", + "___id": "T000002R046621", "___s": true }, { @@ -425140,7 +425749,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#updateLeaderboard", "scope": "instance", - "___id": "T000002R046653", + "___id": "T000002R046623", "___s": true }, { @@ -425203,7 +425812,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#switchGame", "scope": "instance", - "___id": "T000002R046672", + "___id": "T000002R046642", "___s": true }, { @@ -425237,7 +425846,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#createShortcut", "scope": "instance", - "___id": "T000002R046676", + "___id": "T000002R046646", "___s": true }, { @@ -425256,7 +425865,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#quit", "scope": "instance", - "___id": "T000002R046679", + "___id": "T000002R046649", "___s": true }, { @@ -425333,7 +425942,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#log", "scope": "instance", - "___id": "T000002R046681", + "___id": "T000002R046651", "___s": true }, { @@ -425401,7 +426010,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#preloadAds", "scope": "instance", - "___id": "T000002R046684", + "___id": "T000002R046654", "___s": true }, { @@ -425469,7 +426078,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#preloadVideoAds", "scope": "instance", - "___id": "T000002R046696", + "___id": "T000002R046666", "___s": true }, { @@ -425518,7 +426127,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#showAd", "scope": "instance", - "___id": "T000002R046708", + "___id": "T000002R046678", "___s": true }, { @@ -425567,7 +426176,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#showVideo", "scope": "instance", - "___id": "T000002R046714", + "___id": "T000002R046684", "___s": true }, { @@ -425632,7 +426241,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#matchPlayer", "scope": "instance", - "___id": "T000002R046720", + "___id": "T000002R046690", "___s": true }, { @@ -425681,7 +426290,7 @@ "memberof": "Phaser.FacebookInstantGamesPlugin", "longname": "Phaser.FacebookInstantGamesPlugin#getLeaderboard", "scope": "instance", - "___id": "T000002R046725", + "___id": "T000002R046695", "___s": true }, { @@ -425701,7 +426310,7 @@ "longname": "Phaser.FacebookInstantGamesPlugin#destroy", "scope": "instance", "overrides": "Phaser.Events.EventEmitter#destroy", - "___id": "T000002R046730", + "___id": "T000002R046700", "___s": true }, { @@ -425751,7 +426360,7 @@ ], "scope": "static", "longname": "Phaser.FacebookInstantGamesLeaderboard", - "___id": "T000002R046741", + "___id": "T000002R046711", "___s": true }, { @@ -425779,7 +426388,7 @@ "longname": "Phaser.FacebookInstantGamesLeaderboard#plugin", "scope": "instance", "kind": "member", - "___id": "T000002R046745", + "___id": "T000002R046715", "___s": true }, { @@ -425807,7 +426416,7 @@ "longname": "Phaser.FacebookInstantGamesLeaderboard#ref", "scope": "instance", "kind": "member", - "___id": "T000002R046747", + "___id": "T000002R046717", "___s": true }, { @@ -425835,7 +426444,7 @@ "longname": "Phaser.FacebookInstantGamesLeaderboard#name", "scope": "instance", "kind": "member", - "___id": "T000002R046749", + "___id": "T000002R046719", "___s": true }, { @@ -425863,7 +426472,7 @@ "longname": "Phaser.FacebookInstantGamesLeaderboard#contextID", "scope": "instance", "kind": "member", - "___id": "T000002R046751", + "___id": "T000002R046721", "___s": true }, { @@ -425891,7 +426500,7 @@ "longname": "Phaser.FacebookInstantGamesLeaderboard#entryCount", "scope": "instance", "kind": "member", - "___id": "T000002R046753", + "___id": "T000002R046723", "___s": true }, { @@ -425919,7 +426528,7 @@ "longname": "Phaser.FacebookInstantGamesLeaderboard#playerScore", "scope": "instance", "kind": "member", - "___id": "T000002R046755", + "___id": "T000002R046725", "___s": true }, { @@ -425956,7 +426565,7 @@ "longname": "Phaser.FacebookInstantGamesLeaderboard#scores", "scope": "instance", "kind": "member", - "___id": "T000002R046757", + "___id": "T000002R046727", "___s": true }, { @@ -425990,7 +426599,7 @@ "memberof": "Phaser.FacebookInstantGamesLeaderboard", "longname": "Phaser.FacebookInstantGamesLeaderboard#getEntryCount", "scope": "instance", - "___id": "T000002R046759", + "___id": "T000002R046729", "___s": true }, { @@ -426063,7 +426672,7 @@ "memberof": "Phaser.FacebookInstantGamesLeaderboard", "longname": "Phaser.FacebookInstantGamesLeaderboard#setScore", "scope": "instance", - "___id": "T000002R046763", + "___id": "T000002R046733", "___s": true }, { @@ -426097,7 +426706,7 @@ "memberof": "Phaser.FacebookInstantGamesLeaderboard", "longname": "Phaser.FacebookInstantGamesLeaderboard#getPlayerScore", "scope": "instance", - "___id": "T000002R046770", + "___id": "T000002R046740", "___s": true }, { @@ -426163,7 +426772,7 @@ "memberof": "Phaser.FacebookInstantGamesLeaderboard", "longname": "Phaser.FacebookInstantGamesLeaderboard#getScores", "scope": "instance", - "___id": "T000002R046775", + "___id": "T000002R046745", "___s": true }, { @@ -426197,7 +426806,7 @@ "memberof": "Phaser.FacebookInstantGamesLeaderboard", "longname": "Phaser.FacebookInstantGamesLeaderboard#getConnectedScores", "scope": "instance", - "___id": "T000002R046781", + "___id": "T000002R046751", "___s": true }, { @@ -426328,7 +426937,7 @@ ], "longname": "LeaderboardScore", "scope": "global", - "___id": "T000002R046786", + "___id": "T000002R046756", "___s": true }, { @@ -426439,7 +427048,7 @@ ], "longname": "Product", "scope": "global", - "___id": "T000002R046798", + "___id": "T000002R046768", "___s": true }, { @@ -426550,7 +427159,7 @@ ], "longname": "Purchase", "scope": "global", - "___id": "T000002R046808", + "___id": "T000002R046778", "___s": true }, { @@ -426571,7 +427180,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R046818", + "___id": "T000002R046788", "___s": true }, { @@ -426623,7 +427232,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R046819", + "___id": "T000002R046789", "___s": true }, { @@ -426692,7 +427301,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R046820", + "___id": "T000002R046790", "___s": true }, { @@ -426752,7 +427361,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R046821", + "___id": "T000002R046791", "___s": true }, { @@ -426827,7 +427436,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R046822", + "___id": "T000002R046792", "___s": true }, { @@ -426915,7 +427524,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R046823", + "___id": "T000002R046793", "___s": true }, { @@ -427003,7 +427612,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R046824", + "___id": "T000002R046794", "___s": true }, { @@ -427091,7 +427700,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R046825", + "___id": "T000002R046795", "___s": true }, { @@ -427193,7 +427802,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R046826", + "___id": "T000002R046796", "___s": true }, { @@ -427295,7 +427904,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R046827", + "___id": "T000002R046797", "___s": true }, { @@ -427357,7 +427966,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R046828", + "___id": "T000002R046798", "___s": true }, { @@ -427378,7 +427987,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R046829", + "___id": "T000002R046799", "___s": true }, { @@ -427430,7 +428039,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R046830", + "___id": "T000002R046800", "___s": true }, { @@ -427499,7 +428108,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R046831", + "___id": "T000002R046801", "___s": true }, { @@ -427559,7 +428168,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R046832", + "___id": "T000002R046802", "___s": true }, { @@ -427634,7 +428243,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R046833", + "___id": "T000002R046803", "___s": true }, { @@ -427722,7 +428331,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R046834", + "___id": "T000002R046804", "___s": true }, { @@ -427810,7 +428419,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R046835", + "___id": "T000002R046805", "___s": true }, { @@ -427898,7 +428507,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R046836", + "___id": "T000002R046806", "___s": true }, { @@ -428000,7 +428609,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R046837", + "___id": "T000002R046807", "___s": true }, { @@ -428102,7 +428711,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R046838", + "___id": "T000002R046808", "___s": true }, { @@ -428164,7 +428773,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R046839", + "___id": "T000002R046809", "___s": true }, { @@ -428200,7 +428809,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R046845", + "___id": "T000002R046815", "___s": true }, { @@ -428237,7 +428846,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R046846", + "___id": "T000002R046816", "___s": true }, { @@ -428274,7 +428883,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R046847", + "___id": "T000002R046817", "___s": true }, { @@ -428311,7 +428920,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R046848", + "___id": "T000002R046818", "___s": true }, { @@ -428348,7 +428957,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R046849", + "___id": "T000002R046819", "___s": true }, { @@ -428378,7 +428987,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#scene", "inherited": true, - "___id": "T000002R046851", + "___id": "T000002R046821", "___s": true }, { @@ -428408,7 +429017,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#sceneManager", "inherited": true, - "___id": "T000002R046852", + "___id": "T000002R046822", "___s": true }, { @@ -428438,7 +429047,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#scaleManager", "inherited": true, - "___id": "T000002R046853", + "___id": "T000002R046823", "___s": true }, { @@ -428468,7 +429077,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#cameraManager", "inherited": true, - "___id": "T000002R046854", + "___id": "T000002R046824", "___s": true }, { @@ -428499,7 +429108,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#id", "inherited": true, - "___id": "T000002R046855", + "___id": "T000002R046825", "___s": true }, { @@ -428530,7 +429139,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#name", "inherited": true, - "___id": "T000002R046856", + "___id": "T000002R046826", "___s": true }, { @@ -428561,7 +429170,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#roundPixels", "inherited": true, - "___id": "T000002R046857", + "___id": "T000002R046827", "___s": true }, { @@ -428592,7 +429201,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#visible", "inherited": true, - "___id": "T000002R046858", + "___id": "T000002R046828", "___s": true }, { @@ -428623,7 +429232,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#useBounds", "inherited": true, - "___id": "T000002R046859", + "___id": "T000002R046829", "___s": true }, { @@ -428654,7 +429263,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#worldView", "inherited": true, - "___id": "T000002R046860", + "___id": "T000002R046830", "___s": true }, { @@ -428685,7 +429294,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#dirty", "inherited": true, - "___id": "T000002R046861", + "___id": "T000002R046831", "___s": true }, { @@ -428716,7 +429325,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#transparent", "inherited": true, - "___id": "T000002R046873", + "___id": "T000002R046843", "___s": true }, { @@ -428746,7 +429355,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#backgroundColor", "inherited": true, - "___id": "T000002R046874", + "___id": "T000002R046844", "___s": true }, { @@ -428777,7 +429386,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#alpha", "inherited": true, - "___id": "T000002R046875", + "___id": "T000002R046845", "___s": true }, { @@ -428808,7 +429417,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#disableCull", "inherited": true, - "___id": "T000002R046876", + "___id": "T000002R046846", "___s": true }, { @@ -428839,7 +429448,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#midPoint", "inherited": true, - "___id": "T000002R046878", + "___id": "T000002R046848", "___s": true }, { @@ -428870,7 +429479,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#originX", "inherited": true, - "___id": "T000002R046879", + "___id": "T000002R046849", "___s": true }, { @@ -428901,7 +429510,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#originY", "inherited": true, - "___id": "T000002R046880", + "___id": "T000002R046850", "___s": true }, { @@ -428943,7 +429552,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#mask", "inherited": true, - "___id": "T000002R046882", + "___id": "T000002R046852", "___s": true }, { @@ -428982,7 +429591,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#renderList", "inherited": true, - "___id": "T000002R046884", + "___id": "T000002R046854", "___s": true }, { @@ -429013,7 +429622,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#isSceneCamera", "inherited": true, - "___id": "T000002R046885", + "___id": "T000002R046855", "___s": true }, { @@ -429049,7 +429658,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#addToRenderList", "inherited": true, - "___id": "T000002R046886", + "___id": "T000002R046856", "___s": true }, { @@ -429102,7 +429711,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setAlpha", "inherited": true, - "___id": "T000002R046887", + "___id": "T000002R046857", "___s": true }, { @@ -429170,7 +429779,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setOrigin", "inherited": true, - "___id": "T000002R046888", + "___id": "T000002R046858", "___s": true }, { @@ -429247,7 +429856,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#getScroll", "inherited": true, - "___id": "T000002R046889", + "___id": "T000002R046859", "___s": true }, { @@ -429298,7 +429907,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#centerOnX", "inherited": true, - "___id": "T000002R046890", + "___id": "T000002R046860", "___s": true }, { @@ -429349,7 +429958,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#centerOnY", "inherited": true, - "___id": "T000002R046891", + "___id": "T000002R046861", "___s": true }, { @@ -429413,7 +430022,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#centerOn", "inherited": true, - "___id": "T000002R046892", + "___id": "T000002R046862", "___s": true }, { @@ -429449,7 +430058,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#centerToBounds", "inherited": true, - "___id": "T000002R046893", + "___id": "T000002R046863", "___s": true }, { @@ -429485,7 +430094,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#centerToSize", "inherited": true, - "___id": "T000002R046894", + "___id": "T000002R046864", "___s": true }, { @@ -429561,7 +430170,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#cull", "inherited": true, - "___id": "T000002R046895", + "___id": "T000002R046865", "___s": true }, { @@ -429656,7 +430265,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#getWorldPoint", "inherited": true, - "___id": "T000002R046896", + "___id": "T000002R046866", "___s": true }, { @@ -429750,7 +430359,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#ignore", "inherited": true, - "___id": "T000002R046897", + "___id": "T000002R046867", "___s": true }, { @@ -429800,7 +430409,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#clampX", "inherited": true, - "___id": "T000002R046898", + "___id": "T000002R046868", "___s": true }, { @@ -429850,7 +430459,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#clampY", "inherited": true, - "___id": "T000002R046899", + "___id": "T000002R046869", "___s": true }, { @@ -429886,7 +430495,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#removeBounds", "inherited": true, - "___id": "T000002R046900", + "___id": "T000002R046870", "___s": true }, { @@ -429939,7 +430548,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setAngle", "inherited": true, - "___id": "T000002R046901", + "___id": "T000002R046871", "___s": true }, { @@ -430007,7 +430616,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setBackgroundColor", "inherited": true, - "___id": "T000002R046902", + "___id": "T000002R046872", "___s": true }, { @@ -430112,7 +430721,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setBounds", "inherited": true, - "___id": "T000002R046903", + "___id": "T000002R046873", "___s": true }, { @@ -430163,7 +430772,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#getBounds", "inherited": true, - "___id": "T000002R046904", + "___id": "T000002R046874", "___s": true }, { @@ -430216,7 +430825,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setName", "inherited": true, - "___id": "T000002R046905", + "___id": "T000002R046875", "___s": true }, { @@ -430282,7 +430891,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setPosition", "inherited": true, - "___id": "T000002R046906", + "___id": "T000002R046876", "___s": true }, { @@ -430335,7 +430944,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setRotation", "inherited": true, - "___id": "T000002R046907", + "___id": "T000002R046877", "___s": true }, { @@ -430386,7 +430995,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setRoundPixels", "inherited": true, - "___id": "T000002R046908", + "___id": "T000002R046878", "___s": true }, { @@ -430452,7 +431061,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setScene", "inherited": true, - "___id": "T000002R046909", + "___id": "T000002R046879", "___s": true }, { @@ -430518,7 +431127,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setScroll", "inherited": true, - "___id": "T000002R046910", + "___id": "T000002R046880", "___s": true }, { @@ -430584,7 +431193,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setSize", "inherited": true, - "___id": "T000002R046911", + "___id": "T000002R046881", "___s": true }, { @@ -430676,7 +431285,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setViewport", "inherited": true, - "___id": "T000002R046912", + "___id": "T000002R046882", "___s": true }, { @@ -430744,7 +431353,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setZoom", "inherited": true, - "___id": "T000002R046913", + "___id": "T000002R046883", "___s": true }, { @@ -430820,7 +431429,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setMask", "inherited": true, - "___id": "T000002R046914", + "___id": "T000002R046884", "___s": true }, { @@ -430873,7 +431482,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#clearMask", "inherited": true, - "___id": "T000002R046915", + "___id": "T000002R046885", "___s": true }, { @@ -430924,7 +431533,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setVisible", "inherited": true, - "___id": "T000002R046916", + "___id": "T000002R046886", "___s": true }, { @@ -430959,7 +431568,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#toJSON", "inherited": true, - "___id": "T000002R046917", + "___id": "T000002R046887", "___s": true }, { @@ -430995,7 +431604,7 @@ ], "inherits": "Phaser.Cameras.Scene2D.BaseCamera#setIsSceneCamera", "inherited": true, - "___id": "T000002R046918", + "___id": "T000002R046888", "___s": true }, { @@ -431025,7 +431634,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#x", "inherited": true, - "___id": "T000002R046920", + "___id": "T000002R046890", "___s": true }, { @@ -431055,7 +431664,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#y", "inherited": true, - "___id": "T000002R046921", + "___id": "T000002R046891", "___s": true }, { @@ -431085,7 +431694,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#width", "inherited": true, - "___id": "T000002R046922", + "___id": "T000002R046892", "___s": true }, { @@ -431115,7 +431724,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#height", "inherited": true, - "___id": "T000002R046923", + "___id": "T000002R046893", "___s": true }, { @@ -431146,7 +431755,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#scrollX", "inherited": true, - "___id": "T000002R046924", + "___id": "T000002R046894", "___s": true }, { @@ -431177,7 +431786,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#scrollY", "inherited": true, - "___id": "T000002R046925", + "___id": "T000002R046895", "___s": true }, { @@ -431208,7 +431817,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#zoom", "inherited": true, - "___id": "T000002R046926", + "___id": "T000002R046896", "___s": true }, { @@ -431239,7 +431848,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#zoomX", "inherited": true, - "___id": "T000002R046927", + "___id": "T000002R046897", "___s": true }, { @@ -431270,7 +431879,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#zoomY", "inherited": true, - "___id": "T000002R046928", + "___id": "T000002R046898", "___s": true }, { @@ -431301,7 +431910,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#centerX", "inherited": true, - "___id": "T000002R046930", + "___id": "T000002R046900", "___s": true }, { @@ -431332,7 +431941,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#centerY", "inherited": true, - "___id": "T000002R046931", + "___id": "T000002R046901", "___s": true }, { @@ -431363,7 +431972,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#displayWidth", "inherited": true, - "___id": "T000002R046932", + "___id": "T000002R046902", "___s": true }, { @@ -431394,7 +432003,7 @@ "scope": "instance", "inherits": "Phaser.Cameras.Scene2D.BaseCamera#displayHeight", "inherited": true, - "___id": "T000002R046933", + "___id": "T000002R046903", "___s": true }, { @@ -431415,7 +432024,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R046934", + "___id": "T000002R046904", "___s": true }, { @@ -431467,7 +432076,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R046935", + "___id": "T000002R046905", "___s": true }, { @@ -431536,7 +432145,7 @@ "name": "event" } ], - "___id": "T000002R046936", + "___id": "T000002R046906", "___s": true }, { @@ -431596,7 +432205,7 @@ "name": "event" } ], - "___id": "T000002R046937", + "___id": "T000002R046907", "___s": true }, { @@ -431671,7 +432280,7 @@ "name": "args" } ], - "___id": "T000002R046938", + "___id": "T000002R046908", "___s": true }, { @@ -431759,7 +432368,7 @@ "name": "context" } ], - "___id": "T000002R046939", + "___id": "T000002R046909", "___s": true }, { @@ -431847,7 +432456,7 @@ "name": "context" } ], - "___id": "T000002R046940", + "___id": "T000002R046910", "___s": true }, { @@ -431935,7 +432544,7 @@ "name": "context" } ], - "___id": "T000002R046941", + "___id": "T000002R046911", "___s": true }, { @@ -432037,7 +432646,7 @@ "name": "once" } ], - "___id": "T000002R046942", + "___id": "T000002R046912", "___s": true }, { @@ -432139,7 +432748,7 @@ "name": "once" } ], - "___id": "T000002R046943", + "___id": "T000002R046913", "___s": true }, { @@ -432201,7 +432810,7 @@ "name": "event" } ], - "___id": "T000002R046944", + "___id": "T000002R046914", "___s": true }, { @@ -432237,7 +432846,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R046950", + "___id": "T000002R046920", "___s": true }, { @@ -432274,7 +432883,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R046951", + "___id": "T000002R046921", "___s": true }, { @@ -432311,7 +432920,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R046952", + "___id": "T000002R046922", "___s": true }, { @@ -432348,7 +432957,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R046953", + "___id": "T000002R046923", "___s": true }, { @@ -432385,7 +432994,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R046954", + "___id": "T000002R046924", "___s": true }, { @@ -432422,7 +433031,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R046956", + "___id": "T000002R046926", "___s": true }, { @@ -432468,7 +433077,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R046957", + "___id": "T000002R046927", "___s": true }, { @@ -432505,7 +433114,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R046958", + "___id": "T000002R046928", "___s": true }, { @@ -432544,7 +433153,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R046959", + "___id": "T000002R046929", "___s": true }, { @@ -432581,7 +433190,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R046960", + "___id": "T000002R046930", "___s": true }, { @@ -432626,7 +433235,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R046961", + "___id": "T000002R046931", "___s": true }, { @@ -432770,7 +433379,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R046962", + "___id": "T000002R046932", "___s": true }, { @@ -432842,7 +433451,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R046963", + "___id": "T000002R046933", "___s": true }, { @@ -432933,7 +433542,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R046964", + "___id": "T000002R046934", "___s": true }, { @@ -432978,7 +433587,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R046965", + "___id": "T000002R046935", "___s": true }, { @@ -433046,7 +433655,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R046966", + "___id": "T000002R046936", "___s": true }, { @@ -433089,7 +433698,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R046967", + "___id": "T000002R046937", "___s": true }, { @@ -433119,7 +433728,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#type", "inherited": true, - "___id": "T000002R046968", + "___id": "T000002R046938", "___s": true }, { @@ -433150,7 +433759,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#defaultDivisions", "inherited": true, - "___id": "T000002R046969", + "___id": "T000002R046939", "___s": true }, { @@ -433181,7 +433790,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#arcLengthDivisions", "inherited": true, - "___id": "T000002R046970", + "___id": "T000002R046940", "___s": true }, { @@ -433221,7 +433830,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#cacheArcLengths", "inherited": true, - "___id": "T000002R046971", + "___id": "T000002R046941", "___s": true }, { @@ -433252,7 +433861,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#needsUpdate", "inherited": true, - "___id": "T000002R046972", + "___id": "T000002R046942", "___s": true }, { @@ -433283,7 +433892,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#active", "inherited": true, - "___id": "T000002R046973", + "___id": "T000002R046943", "___s": true }, { @@ -433349,7 +433958,7 @@ ], "inherits": "Phaser.Curves.Curve#getBounds", "inherited": true, - "___id": "T000002R046976", + "___id": "T000002R046946", "___s": true }, { @@ -433408,7 +434017,7 @@ ], "inherits": "Phaser.Curves.Curve#getDistancePoints", "inherited": true, - "___id": "T000002R046977", + "___id": "T000002R046947", "___s": true }, { @@ -433459,7 +434068,7 @@ ], "inherits": "Phaser.Curves.Curve#getEndPoint", "inherited": true, - "___id": "T000002R046978", + "___id": "T000002R046948", "___s": true }, { @@ -433494,7 +434103,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#getLength", "inherited": true, - "___id": "T000002R046979", + "___id": "T000002R046949", "___s": true }, { @@ -433554,7 +434163,7 @@ ], "inherits": "Phaser.Curves.Curve#getLengths", "inherited": true, - "___id": "T000002R046980", + "___id": "T000002R046950", "___s": true }, { @@ -433626,7 +434235,7 @@ ], "inherits": "Phaser.Curves.Curve#getPointAt", "inherited": true, - "___id": "T000002R046981", + "___id": "T000002R046951", "___s": true }, { @@ -433751,7 +434360,7 @@ ], "inherits": "Phaser.Curves.Curve#getPoints", "inherited": true, - "___id": "T000002R046982", + "___id": "T000002R046952", "___s": true }, { @@ -433810,7 +434419,7 @@ ], "inherits": "Phaser.Curves.Curve#getRandomPoint", "inherited": true, - "___id": "T000002R046983", + "___id": "T000002R046953", "___s": true }, { @@ -433918,7 +434527,7 @@ ], "inherits": "Phaser.Curves.Curve#getSpacedPoints", "inherited": true, - "___id": "T000002R046984", + "___id": "T000002R046954", "___s": true }, { @@ -433990,7 +434599,7 @@ ], "inherits": "Phaser.Curves.Curve#getTangent", "inherited": true, - "___id": "T000002R046985", + "___id": "T000002R046955", "___s": true }, { @@ -434062,7 +434671,7 @@ ], "inherits": "Phaser.Curves.Curve#getTangentAt", "inherited": true, - "___id": "T000002R046986", + "___id": "T000002R046956", "___s": true }, { @@ -434126,7 +434735,7 @@ ], "inherits": "Phaser.Curves.Curve#getTFromDistance", "inherited": true, - "___id": "T000002R046987", + "___id": "T000002R046957", "___s": true }, { @@ -434203,7 +434812,7 @@ ], "inherits": "Phaser.Curves.Curve#getUtoTmapping", "inherited": true, - "___id": "T000002R046988", + "___id": "T000002R046958", "___s": true }, { @@ -434227,7 +434836,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#updateArcLengths", "inherited": true, - "___id": "T000002R046989", + "___id": "T000002R046959", "___s": true }, { @@ -434257,7 +434866,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#type", "inherited": true, - "___id": "T000002R046990", + "___id": "T000002R046960", "___s": true }, { @@ -434288,7 +434897,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#defaultDivisions", "inherited": true, - "___id": "T000002R046991", + "___id": "T000002R046961", "___s": true }, { @@ -434319,7 +434928,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#arcLengthDivisions", "inherited": true, - "___id": "T000002R046992", + "___id": "T000002R046962", "___s": true }, { @@ -434359,7 +434968,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#cacheArcLengths", "inherited": true, - "___id": "T000002R046993", + "___id": "T000002R046963", "___s": true }, { @@ -434390,7 +434999,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#needsUpdate", "inherited": true, - "___id": "T000002R046994", + "___id": "T000002R046964", "___s": true }, { @@ -434421,7 +435030,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#active", "inherited": true, - "___id": "T000002R046995", + "___id": "T000002R046965", "___s": true }, { @@ -434494,7 +435103,7 @@ ], "inherits": "Phaser.Curves.Curve#draw", "inherited": true, - "___id": "T000002R046998", + "___id": "T000002R046968", "___s": true }, { @@ -434560,7 +435169,7 @@ ], "inherits": "Phaser.Curves.Curve#getBounds", "inherited": true, - "___id": "T000002R046999", + "___id": "T000002R046969", "___s": true }, { @@ -434619,7 +435228,7 @@ ], "inherits": "Phaser.Curves.Curve#getDistancePoints", "inherited": true, - "___id": "T000002R047000", + "___id": "T000002R046970", "___s": true }, { @@ -434670,7 +435279,7 @@ ], "inherits": "Phaser.Curves.Curve#getEndPoint", "inherited": true, - "___id": "T000002R047001", + "___id": "T000002R046971", "___s": true }, { @@ -434705,7 +435314,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#getLength", "inherited": true, - "___id": "T000002R047002", + "___id": "T000002R046972", "___s": true }, { @@ -434765,7 +435374,7 @@ ], "inherits": "Phaser.Curves.Curve#getLengths", "inherited": true, - "___id": "T000002R047003", + "___id": "T000002R046973", "___s": true }, { @@ -434837,7 +435446,7 @@ ], "inherits": "Phaser.Curves.Curve#getPointAt", "inherited": true, - "___id": "T000002R047004", + "___id": "T000002R046974", "___s": true }, { @@ -434962,7 +435571,7 @@ ], "inherits": "Phaser.Curves.Curve#getPoints", "inherited": true, - "___id": "T000002R047005", + "___id": "T000002R046975", "___s": true }, { @@ -435021,7 +435630,7 @@ ], "inherits": "Phaser.Curves.Curve#getRandomPoint", "inherited": true, - "___id": "T000002R047006", + "___id": "T000002R046976", "___s": true }, { @@ -435129,7 +435738,7 @@ ], "inherits": "Phaser.Curves.Curve#getSpacedPoints", "inherited": true, - "___id": "T000002R047007", + "___id": "T000002R046977", "___s": true }, { @@ -435201,7 +435810,7 @@ ], "inherits": "Phaser.Curves.Curve#getTangent", "inherited": true, - "___id": "T000002R047008", + "___id": "T000002R046978", "___s": true }, { @@ -435273,7 +435882,7 @@ ], "inherits": "Phaser.Curves.Curve#getTangentAt", "inherited": true, - "___id": "T000002R047009", + "___id": "T000002R046979", "___s": true }, { @@ -435337,7 +435946,7 @@ ], "inherits": "Phaser.Curves.Curve#getTFromDistance", "inherited": true, - "___id": "T000002R047010", + "___id": "T000002R046980", "___s": true }, { @@ -435414,7 +436023,7 @@ ], "inherits": "Phaser.Curves.Curve#getUtoTmapping", "inherited": true, - "___id": "T000002R047011", + "___id": "T000002R046981", "___s": true }, { @@ -435438,7 +436047,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#updateArcLengths", "inherited": true, - "___id": "T000002R047012", + "___id": "T000002R046982", "___s": true }, { @@ -435468,7 +436077,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#type", "inherited": true, - "___id": "T000002R047013", + "___id": "T000002R046983", "___s": true }, { @@ -435499,7 +436108,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#defaultDivisions", "inherited": true, - "___id": "T000002R047014", + "___id": "T000002R046984", "___s": true }, { @@ -435539,7 +436148,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#cacheArcLengths", "inherited": true, - "___id": "T000002R047015", + "___id": "T000002R046985", "___s": true }, { @@ -435570,7 +436179,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#needsUpdate", "inherited": true, - "___id": "T000002R047016", + "___id": "T000002R046986", "___s": true }, { @@ -435601,7 +436210,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#active", "inherited": true, - "___id": "T000002R047017", + "___id": "T000002R046987", "___s": true }, { @@ -435660,7 +436269,7 @@ ], "inherits": "Phaser.Curves.Curve#getDistancePoints", "inherited": true, - "___id": "T000002R047020", + "___id": "T000002R046990", "___s": true }, { @@ -435711,7 +436320,7 @@ ], "inherits": "Phaser.Curves.Curve#getEndPoint", "inherited": true, - "___id": "T000002R047021", + "___id": "T000002R046991", "___s": true }, { @@ -435746,7 +436355,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#getLength", "inherited": true, - "___id": "T000002R047022", + "___id": "T000002R046992", "___s": true }, { @@ -435806,7 +436415,7 @@ ], "inherits": "Phaser.Curves.Curve#getLengths", "inherited": true, - "___id": "T000002R047023", + "___id": "T000002R046993", "___s": true }, { @@ -435931,7 +436540,7 @@ ], "inherits": "Phaser.Curves.Curve#getPoints", "inherited": true, - "___id": "T000002R047024", + "___id": "T000002R046994", "___s": true }, { @@ -435990,7 +436599,7 @@ ], "inherits": "Phaser.Curves.Curve#getRandomPoint", "inherited": true, - "___id": "T000002R047025", + "___id": "T000002R046995", "___s": true }, { @@ -436098,7 +436707,7 @@ ], "inherits": "Phaser.Curves.Curve#getSpacedPoints", "inherited": true, - "___id": "T000002R047026", + "___id": "T000002R046996", "___s": true }, { @@ -436170,7 +436779,7 @@ ], "inherits": "Phaser.Curves.Curve#getTangentAt", "inherited": true, - "___id": "T000002R047027", + "___id": "T000002R046997", "___s": true }, { @@ -436234,7 +436843,7 @@ ], "inherits": "Phaser.Curves.Curve#getTFromDistance", "inherited": true, - "___id": "T000002R047028", + "___id": "T000002R046998", "___s": true }, { @@ -436258,7 +436867,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#updateArcLengths", "inherited": true, - "___id": "T000002R047029", + "___id": "T000002R046999", "___s": true }, { @@ -436288,7 +436897,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#type", "inherited": true, - "___id": "T000002R047030", + "___id": "T000002R047000", "___s": true }, { @@ -436319,7 +436928,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#defaultDivisions", "inherited": true, - "___id": "T000002R047031", + "___id": "T000002R047001", "___s": true }, { @@ -436350,7 +436959,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#arcLengthDivisions", "inherited": true, - "___id": "T000002R047032", + "___id": "T000002R047002", "___s": true }, { @@ -436390,7 +436999,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#cacheArcLengths", "inherited": true, - "___id": "T000002R047033", + "___id": "T000002R047003", "___s": true }, { @@ -436421,7 +437030,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#needsUpdate", "inherited": true, - "___id": "T000002R047034", + "___id": "T000002R047004", "___s": true }, { @@ -436452,7 +437061,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#active", "inherited": true, - "___id": "T000002R047035", + "___id": "T000002R047005", "___s": true }, { @@ -436518,7 +437127,7 @@ ], "inherits": "Phaser.Curves.Curve#getBounds", "inherited": true, - "___id": "T000002R047038", + "___id": "T000002R047008", "___s": true }, { @@ -436577,7 +437186,7 @@ ], "inherits": "Phaser.Curves.Curve#getDistancePoints", "inherited": true, - "___id": "T000002R047039", + "___id": "T000002R047009", "___s": true }, { @@ -436628,7 +437237,7 @@ ], "inherits": "Phaser.Curves.Curve#getEndPoint", "inherited": true, - "___id": "T000002R047040", + "___id": "T000002R047010", "___s": true }, { @@ -436663,7 +437272,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#getLength", "inherited": true, - "___id": "T000002R047041", + "___id": "T000002R047011", "___s": true }, { @@ -436723,7 +437332,7 @@ ], "inherits": "Phaser.Curves.Curve#getLengths", "inherited": true, - "___id": "T000002R047042", + "___id": "T000002R047012", "___s": true }, { @@ -436795,7 +437404,7 @@ ], "inherits": "Phaser.Curves.Curve#getPointAt", "inherited": true, - "___id": "T000002R047043", + "___id": "T000002R047013", "___s": true }, { @@ -436920,7 +437529,7 @@ ], "inherits": "Phaser.Curves.Curve#getPoints", "inherited": true, - "___id": "T000002R047044", + "___id": "T000002R047014", "___s": true }, { @@ -436979,7 +437588,7 @@ ], "inherits": "Phaser.Curves.Curve#getRandomPoint", "inherited": true, - "___id": "T000002R047045", + "___id": "T000002R047015", "___s": true }, { @@ -437087,7 +437696,7 @@ ], "inherits": "Phaser.Curves.Curve#getSpacedPoints", "inherited": true, - "___id": "T000002R047046", + "___id": "T000002R047016", "___s": true }, { @@ -437159,7 +437768,7 @@ ], "inherits": "Phaser.Curves.Curve#getTangent", "inherited": true, - "___id": "T000002R047047", + "___id": "T000002R047017", "___s": true }, { @@ -437231,7 +437840,7 @@ ], "inherits": "Phaser.Curves.Curve#getTangentAt", "inherited": true, - "___id": "T000002R047048", + "___id": "T000002R047018", "___s": true }, { @@ -437295,7 +437904,7 @@ ], "inherits": "Phaser.Curves.Curve#getTFromDistance", "inherited": true, - "___id": "T000002R047049", + "___id": "T000002R047019", "___s": true }, { @@ -437372,7 +437981,7 @@ ], "inherits": "Phaser.Curves.Curve#getUtoTmapping", "inherited": true, - "___id": "T000002R047050", + "___id": "T000002R047020", "___s": true }, { @@ -437396,7 +438005,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#updateArcLengths", "inherited": true, - "___id": "T000002R047051", + "___id": "T000002R047021", "___s": true }, { @@ -437426,7 +438035,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#type", "inherited": true, - "___id": "T000002R047052", + "___id": "T000002R047022", "___s": true }, { @@ -437457,7 +438066,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#defaultDivisions", "inherited": true, - "___id": "T000002R047053", + "___id": "T000002R047023", "___s": true }, { @@ -437488,7 +438097,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#arcLengthDivisions", "inherited": true, - "___id": "T000002R047054", + "___id": "T000002R047024", "___s": true }, { @@ -437528,7 +438137,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#cacheArcLengths", "inherited": true, - "___id": "T000002R047055", + "___id": "T000002R047025", "___s": true }, { @@ -437559,7 +438168,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#needsUpdate", "inherited": true, - "___id": "T000002R047056", + "___id": "T000002R047026", "___s": true }, { @@ -437590,7 +438199,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#active", "inherited": true, - "___id": "T000002R047057", + "___id": "T000002R047027", "___s": true }, { @@ -437663,7 +438272,7 @@ ], "inherits": "Phaser.Curves.Curve#draw", "inherited": true, - "___id": "T000002R047060", + "___id": "T000002R047030", "___s": true }, { @@ -437729,7 +438338,7 @@ ], "inherits": "Phaser.Curves.Curve#getBounds", "inherited": true, - "___id": "T000002R047061", + "___id": "T000002R047031", "___s": true }, { @@ -437788,7 +438397,7 @@ ], "inherits": "Phaser.Curves.Curve#getDistancePoints", "inherited": true, - "___id": "T000002R047062", + "___id": "T000002R047032", "___s": true }, { @@ -437839,7 +438448,7 @@ ], "inherits": "Phaser.Curves.Curve#getEndPoint", "inherited": true, - "___id": "T000002R047063", + "___id": "T000002R047033", "___s": true }, { @@ -437874,7 +438483,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#getLength", "inherited": true, - "___id": "T000002R047064", + "___id": "T000002R047034", "___s": true }, { @@ -437934,7 +438543,7 @@ ], "inherits": "Phaser.Curves.Curve#getLengths", "inherited": true, - "___id": "T000002R047065", + "___id": "T000002R047035", "___s": true }, { @@ -438006,7 +438615,7 @@ ], "inherits": "Phaser.Curves.Curve#getPointAt", "inherited": true, - "___id": "T000002R047066", + "___id": "T000002R047036", "___s": true }, { @@ -438131,7 +438740,7 @@ ], "inherits": "Phaser.Curves.Curve#getPoints", "inherited": true, - "___id": "T000002R047067", + "___id": "T000002R047037", "___s": true }, { @@ -438190,7 +438799,7 @@ ], "inherits": "Phaser.Curves.Curve#getRandomPoint", "inherited": true, - "___id": "T000002R047068", + "___id": "T000002R047038", "___s": true }, { @@ -438298,7 +438907,7 @@ ], "inherits": "Phaser.Curves.Curve#getSpacedPoints", "inherited": true, - "___id": "T000002R047069", + "___id": "T000002R047039", "___s": true }, { @@ -438370,7 +438979,7 @@ ], "inherits": "Phaser.Curves.Curve#getTangent", "inherited": true, - "___id": "T000002R047070", + "___id": "T000002R047040", "___s": true }, { @@ -438442,7 +439051,7 @@ ], "inherits": "Phaser.Curves.Curve#getTangentAt", "inherited": true, - "___id": "T000002R047071", + "___id": "T000002R047041", "___s": true }, { @@ -438506,7 +439115,7 @@ ], "inherits": "Phaser.Curves.Curve#getTFromDistance", "inherited": true, - "___id": "T000002R047072", + "___id": "T000002R047042", "___s": true }, { @@ -438583,7 +439192,7 @@ ], "inherits": "Phaser.Curves.Curve#getUtoTmapping", "inherited": true, - "___id": "T000002R047073", + "___id": "T000002R047043", "___s": true }, { @@ -438607,7 +439216,7 @@ "scope": "instance", "inherits": "Phaser.Curves.Curve#updateArcLengths", "inherited": true, - "___id": "T000002R047074", + "___id": "T000002R047044", "___s": true }, { @@ -438636,7 +439245,7 @@ "scope": "instance", "inherits": "Phaser.Data.DataManager#parent", "inherited": true, - "___id": "T000002R047075", + "___id": "T000002R047045", "___s": true }, { @@ -438666,7 +439275,7 @@ "scope": "instance", "inherits": "Phaser.Data.DataManager#events", "inherited": true, - "___id": "T000002R047076", + "___id": "T000002R047046", "___s": true }, { @@ -438709,7 +439318,7 @@ "scope": "instance", "inherits": "Phaser.Data.DataManager#list", "inherited": true, - "___id": "T000002R047077", + "___id": "T000002R047047", "___s": true }, { @@ -438752,7 +439361,7 @@ "scope": "instance", "inherits": "Phaser.Data.DataManager#values", "inherited": true, - "___id": "T000002R047078", + "___id": "T000002R047048", "___s": true }, { @@ -438820,7 +439429,7 @@ ], "inherits": "Phaser.Data.DataManager#get", "inherited": true, - "___id": "T000002R047080", + "___id": "T000002R047050", "___s": true }, { @@ -438867,7 +439476,7 @@ "scope": "instance", "inherits": "Phaser.Data.DataManager#getAll", "inherited": true, - "___id": "T000002R047081", + "___id": "T000002R047051", "___s": true }, { @@ -438929,7 +439538,7 @@ ], "inherits": "Phaser.Data.DataManager#query", "inherited": true, - "___id": "T000002R047082", + "___id": "T000002R047052", "___s": true }, { @@ -439022,7 +439631,7 @@ ], "inherits": "Phaser.Data.DataManager#set", "inherited": true, - "___id": "T000002R047083", + "___id": "T000002R047053", "___s": true }, { @@ -439093,7 +439702,7 @@ ], "inherits": "Phaser.Data.DataManager#inc", "inherited": true, - "___id": "T000002R047084", + "___id": "T000002R047054", "___s": true }, { @@ -439149,7 +439758,7 @@ ], "inherits": "Phaser.Data.DataManager#toggle", "inherited": true, - "___id": "T000002R047085", + "___id": "T000002R047055", "___s": true }, { @@ -439228,7 +439837,7 @@ ], "inherits": "Phaser.Data.DataManager#each", "inherited": true, - "___id": "T000002R047087", + "___id": "T000002R047057", "___s": true }, { @@ -439311,7 +439920,7 @@ ], "inherits": "Phaser.Data.DataManager#merge", "inherited": true, - "___id": "T000002R047088", + "___id": "T000002R047058", "___s": true }, { @@ -439384,7 +439993,7 @@ ], "inherits": "Phaser.Data.DataManager#remove", "inherited": true, - "___id": "T000002R047089", + "___id": "T000002R047059", "___s": true }, { @@ -439436,7 +440045,7 @@ ], "inherits": "Phaser.Data.DataManager#pop", "inherited": true, - "___id": "T000002R047091", + "___id": "T000002R047061", "___s": true }, { @@ -439486,7 +440095,7 @@ ], "inherits": "Phaser.Data.DataManager#has", "inherited": true, - "___id": "T000002R047092", + "___id": "T000002R047062", "___s": true }, { @@ -439537,7 +440146,7 @@ ], "inherits": "Phaser.Data.DataManager#setFreeze", "inherited": true, - "___id": "T000002R047093", + "___id": "T000002R047063", "___s": true }, { @@ -439573,7 +440182,7 @@ "scope": "instance", "inherits": "Phaser.Data.DataManager#reset", "inherited": true, - "___id": "T000002R047094", + "___id": "T000002R047064", "___s": true }, { @@ -439603,7 +440212,7 @@ "scope": "instance", "inherits": "Phaser.Data.DataManager#freeze", "inherited": true, - "___id": "T000002R047095", + "___id": "T000002R047065", "___s": true }, { @@ -439633,7 +440242,7 @@ "scope": "instance", "inherits": "Phaser.Data.DataManager#count", "inherited": true, - "___id": "T000002R047096", + "___id": "T000002R047066", "___s": true }, { @@ -439663,7 +440272,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047097", + "___id": "T000002R047067", "___s": true }, { @@ -439693,7 +440302,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047098", + "___id": "T000002R047068", "___s": true }, { @@ -439723,7 +440332,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047099", + "___id": "T000002R047069", "___s": true }, { @@ -439774,7 +440383,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047100", + "___id": "T000002R047070", "___s": true }, { @@ -439795,7 +440404,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047101", + "___id": "T000002R047071", "___s": true }, { @@ -439825,7 +440434,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047102", + "___id": "T000002R047072", "___s": true }, { @@ -439855,7 +440464,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047103", + "___id": "T000002R047073", "___s": true }, { @@ -439885,7 +440494,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047104", + "___id": "T000002R047074", "___s": true }, { @@ -439936,7 +440545,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047105", + "___id": "T000002R047075", "___s": true }, { @@ -439957,7 +440566,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047106", + "___id": "T000002R047076", "___s": true }, { @@ -439987,7 +440596,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047107", + "___id": "T000002R047077", "___s": true }, { @@ -440017,7 +440626,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047108", + "___id": "T000002R047078", "___s": true }, { @@ -440047,7 +440656,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047109", + "___id": "T000002R047079", "___s": true }, { @@ -440098,7 +440707,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047110", + "___id": "T000002R047080", "___s": true }, { @@ -440119,7 +440728,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047111", + "___id": "T000002R047081", "___s": true }, { @@ -440149,7 +440758,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047112", + "___id": "T000002R047082", "___s": true }, { @@ -440179,7 +440788,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047113", + "___id": "T000002R047083", "___s": true }, { @@ -440209,7 +440818,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047114", + "___id": "T000002R047084", "___s": true }, { @@ -440260,7 +440869,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047115", + "___id": "T000002R047085", "___s": true }, { @@ -440281,7 +440890,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047116", + "___id": "T000002R047086", "___s": true }, { @@ -440311,7 +440920,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047117", + "___id": "T000002R047087", "___s": true }, { @@ -440341,7 +440950,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047118", + "___id": "T000002R047088", "___s": true }, { @@ -440371,7 +440980,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047119", + "___id": "T000002R047089", "___s": true }, { @@ -440422,7 +441031,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047120", + "___id": "T000002R047090", "___s": true }, { @@ -440443,7 +441052,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047121", + "___id": "T000002R047091", "___s": true }, { @@ -440473,7 +441082,7 @@ "scope": "instance", "inherits": "Phaser.Display.ColorMatrix#alpha", "inherited": true, - "___id": "T000002R047123", + "___id": "T000002R047093", "___s": true }, { @@ -440543,7 +441152,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#set", "inherited": true, - "___id": "T000002R047126", + "___id": "T000002R047096", "___s": true }, { @@ -440579,7 +441188,7 @@ "scope": "instance", "inherits": "Phaser.Display.ColorMatrix#reset", "inherited": true, - "___id": "T000002R047127", + "___id": "T000002R047097", "___s": true }, { @@ -440614,7 +441223,7 @@ "scope": "instance", "inherits": "Phaser.Display.ColorMatrix#getData", "inherited": true, - "___id": "T000002R047128", + "___id": "T000002R047098", "___s": true }, { @@ -440682,7 +441291,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#brightness", "inherited": true, - "___id": "T000002R047129", + "___id": "T000002R047099", "___s": true }, { @@ -440750,7 +441359,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#saturate", "inherited": true, - "___id": "T000002R047130", + "___id": "T000002R047100", "___s": true }, { @@ -440803,7 +441412,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#saturation", "inherited": true, - "___id": "T000002R047131", + "___id": "T000002R047101", "___s": true }, { @@ -440871,7 +441480,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#hue", "inherited": true, - "___id": "T000002R047132", + "___id": "T000002R047102", "___s": true }, { @@ -440939,7 +441548,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#grayscale", "inherited": true, - "___id": "T000002R047133", + "___id": "T000002R047103", "___s": true }, { @@ -440992,7 +441601,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#blackWhite", "inherited": true, - "___id": "T000002R047134", + "___id": "T000002R047104", "___s": true }, { @@ -441060,7 +441669,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#contrast", "inherited": true, - "___id": "T000002R047135", + "___id": "T000002R047105", "___s": true }, { @@ -441113,7 +441722,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#negative", "inherited": true, - "___id": "T000002R047136", + "___id": "T000002R047106", "___s": true }, { @@ -441166,7 +441775,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#desaturateLuminance", "inherited": true, - "___id": "T000002R047137", + "___id": "T000002R047107", "___s": true }, { @@ -441219,7 +441828,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#sepia", "inherited": true, - "___id": "T000002R047138", + "___id": "T000002R047108", "___s": true }, { @@ -441287,7 +441896,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#night", "inherited": true, - "___id": "T000002R047139", + "___id": "T000002R047109", "___s": true }, { @@ -441340,7 +441949,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#lsd", "inherited": true, - "___id": "T000002R047140", + "___id": "T000002R047110", "___s": true }, { @@ -441393,7 +442002,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#brown", "inherited": true, - "___id": "T000002R047141", + "___id": "T000002R047111", "___s": true }, { @@ -441446,7 +442055,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#vintagePinhole", "inherited": true, - "___id": "T000002R047142", + "___id": "T000002R047112", "___s": true }, { @@ -441499,7 +442108,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#kodachrome", "inherited": true, - "___id": "T000002R047143", + "___id": "T000002R047113", "___s": true }, { @@ -441552,7 +442161,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#technicolor", "inherited": true, - "___id": "T000002R047144", + "___id": "T000002R047114", "___s": true }, { @@ -441605,7 +442214,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#polaroid", "inherited": true, - "___id": "T000002R047145", + "___id": "T000002R047115", "___s": true }, { @@ -441658,7 +442267,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#shiftToBGR", "inherited": true, - "___id": "T000002R047146", + "___id": "T000002R047116", "___s": true }, { @@ -441733,7 +442342,7 @@ ], "inherits": "Phaser.Display.ColorMatrix#multiply", "inherited": true, - "___id": "T000002R047147", + "___id": "T000002R047117", "___s": true }, { @@ -441763,7 +442372,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047148", + "___id": "T000002R047118", "___s": true }, { @@ -441793,7 +442402,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047149", + "___id": "T000002R047119", "___s": true }, { @@ -441823,7 +442432,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047150", + "___id": "T000002R047120", "___s": true }, { @@ -441874,7 +442483,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047151", + "___id": "T000002R047121", "___s": true }, { @@ -441895,7 +442504,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047152", + "___id": "T000002R047122", "___s": true }, { @@ -441925,7 +442534,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047153", + "___id": "T000002R047123", "___s": true }, { @@ -441955,7 +442564,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047154", + "___id": "T000002R047124", "___s": true }, { @@ -441985,7 +442594,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047155", + "___id": "T000002R047125", "___s": true }, { @@ -442036,7 +442645,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047156", + "___id": "T000002R047126", "___s": true }, { @@ -442057,7 +442666,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047157", + "___id": "T000002R047127", "___s": true }, { @@ -442087,7 +442696,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047158", + "___id": "T000002R047128", "___s": true }, { @@ -442117,7 +442726,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047159", + "___id": "T000002R047129", "___s": true }, { @@ -442147,7 +442756,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047160", + "___id": "T000002R047130", "___s": true }, { @@ -442198,7 +442807,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047161", + "___id": "T000002R047131", "___s": true }, { @@ -442219,7 +442828,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047162", + "___id": "T000002R047132", "___s": true }, { @@ -442249,7 +442858,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047163", + "___id": "T000002R047133", "___s": true }, { @@ -442279,7 +442888,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047164", + "___id": "T000002R047134", "___s": true }, { @@ -442309,7 +442918,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047165", + "___id": "T000002R047135", "___s": true }, { @@ -442360,7 +442969,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047166", + "___id": "T000002R047136", "___s": true }, { @@ -442381,7 +442990,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047167", + "___id": "T000002R047137", "___s": true }, { @@ -442411,7 +443020,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047168", + "___id": "T000002R047138", "___s": true }, { @@ -442441,7 +443050,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047169", + "___id": "T000002R047139", "___s": true }, { @@ -442471,7 +443080,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047170", + "___id": "T000002R047140", "___s": true }, { @@ -442522,7 +443131,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047171", + "___id": "T000002R047141", "___s": true }, { @@ -442543,7 +443152,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047172", + "___id": "T000002R047142", "___s": true }, { @@ -442573,7 +443182,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047173", + "___id": "T000002R047143", "___s": true }, { @@ -442603,7 +443212,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047174", + "___id": "T000002R047144", "___s": true }, { @@ -442633,7 +443242,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047175", + "___id": "T000002R047145", "___s": true }, { @@ -442684,7 +443293,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047176", + "___id": "T000002R047146", "___s": true }, { @@ -442705,7 +443314,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047177", + "___id": "T000002R047147", "___s": true }, { @@ -442735,7 +443344,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047178", + "___id": "T000002R047148", "___s": true }, { @@ -442765,7 +443374,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047179", + "___id": "T000002R047149", "___s": true }, { @@ -442795,7 +443404,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047180", + "___id": "T000002R047150", "___s": true }, { @@ -442846,7 +443455,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047181", + "___id": "T000002R047151", "___s": true }, { @@ -442867,7 +443476,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047182", + "___id": "T000002R047152", "___s": true }, { @@ -442897,7 +443506,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#type", "inherited": true, - "___id": "T000002R047183", + "___id": "T000002R047153", "___s": true }, { @@ -442927,7 +443536,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#gameObject", "inherited": true, - "___id": "T000002R047184", + "___id": "T000002R047154", "___s": true }, { @@ -442957,7 +443566,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#active", "inherited": true, - "___id": "T000002R047185", + "___id": "T000002R047155", "___s": true }, { @@ -443008,7 +443617,7 @@ ], "inherits": "Phaser.FX.Controller#setActive", "inherited": true, - "___id": "T000002R047186", + "___id": "T000002R047156", "___s": true }, { @@ -443029,7 +443638,7 @@ "scope": "instance", "inherits": "Phaser.FX.Controller#destroy", "inherited": true, - "___id": "T000002R047187", + "___id": "T000002R047157", "___s": true }, { @@ -443050,7 +443659,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R047188", + "___id": "T000002R047158", "___s": true }, { @@ -443102,7 +443711,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R047189", + "___id": "T000002R047159", "___s": true }, { @@ -443171,7 +443780,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R047190", + "___id": "T000002R047160", "___s": true }, { @@ -443231,7 +443840,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R047191", + "___id": "T000002R047161", "___s": true }, { @@ -443306,7 +443915,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R047192", + "___id": "T000002R047162", "___s": true }, { @@ -443394,7 +444003,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R047193", + "___id": "T000002R047163", "___s": true }, { @@ -443482,7 +444091,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R047194", + "___id": "T000002R047164", "___s": true }, { @@ -443570,7 +444179,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R047195", + "___id": "T000002R047165", "___s": true }, { @@ -443672,7 +444281,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R047196", + "___id": "T000002R047166", "___s": true }, { @@ -443774,7 +444383,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R047197", + "___id": "T000002R047167", "___s": true }, { @@ -443836,7 +444445,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R047198", + "___id": "T000002R047168", "___s": true }, { @@ -443866,7 +444475,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R047199", + "___id": "T000002R047169", "___s": true }, { @@ -443907,7 +444516,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R047200", + "___id": "T000002R047170", "___s": true }, { @@ -443937,7 +444546,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R047201", + "___id": "T000002R047171", "___s": true }, { @@ -443977,7 +444586,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R047202", + "___id": "T000002R047172", "___s": true }, { @@ -444007,7 +444616,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R047203", + "___id": "T000002R047173", "___s": true }, { @@ -444038,7 +444647,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R047204", + "___id": "T000002R047174", "___s": true }, { @@ -444069,7 +444678,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R047205", + "___id": "T000002R047175", "___s": true }, { @@ -444100,7 +444709,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R047206", + "___id": "T000002R047176", "___s": true }, { @@ -444131,7 +444740,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R047207", + "___id": "T000002R047177", "___s": true }, { @@ -444162,7 +444771,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R047208", + "___id": "T000002R047178", "___s": true }, { @@ -444196,7 +444805,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R047209", + "___id": "T000002R047179", "___s": true }, { @@ -444229,7 +444838,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R047210", + "___id": "T000002R047180", "___s": true }, { @@ -444277,7 +444886,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R047211", + "___id": "T000002R047181", "___s": true }, { @@ -444308,7 +444917,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R047212", + "___id": "T000002R047182", "___s": true }, { @@ -444359,7 +444968,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R047213", + "___id": "T000002R047183", "___s": true }, { @@ -444410,7 +445019,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R047214", + "___id": "T000002R047184", "___s": true }, { @@ -444471,7 +445080,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R047215", + "___id": "T000002R047185", "___s": true }, { @@ -444510,7 +445119,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R047216", + "___id": "T000002R047186", "___s": true }, { @@ -444598,7 +445207,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R047217", + "___id": "T000002R047187", "___s": true }, { @@ -444664,7 +445273,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R047218", + "___id": "T000002R047188", "___s": true }, { @@ -444715,7 +445324,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R047219", + "___id": "T000002R047189", "___s": true }, { @@ -444783,7 +445392,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R047220", + "___id": "T000002R047190", "___s": true }, { @@ -444879,11 +445488,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R047221", + "___id": "T000002R047191", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -444913,16 +445522,33 @@ ], "memberof": "Phaser.GameObjects.BitmapText", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R047222", + "___id": "T000002R047192", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -444949,16 +445575,33 @@ ], "memberof": "Phaser.GameObjects.BitmapText", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R047223", + "___id": "T000002R047193", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -444972,14 +445615,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R047224", + "___id": "T000002R047194", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -444993,14 +445636,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R047225", + "___id": "T000002R047195", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -445031,14 +445674,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R047226", + "___id": "T000002R047196", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -445081,14 +445724,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R047227", + "___id": "T000002R047197", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -445125,14 +445768,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R047228", + "___id": "T000002R047198", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -445191,14 +445834,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R047229", + "___id": "T000002R047199", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -445227,14 +445870,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R047230", + "___id": "T000002R047200", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -445267,14 +445910,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R047231", + "___id": "T000002R047201", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -445303,14 +445946,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R047232", + "___id": "T000002R047202", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -445344,7 +445987,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R047233", + "___id": "T000002R047203", "___s": true }, { @@ -445365,7 +446008,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R047234", + "___id": "T000002R047204", "___s": true }, { @@ -445417,7 +446060,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R047235", + "___id": "T000002R047205", "___s": true }, { @@ -445486,7 +446129,7 @@ "name": "event" } ], - "___id": "T000002R047236", + "___id": "T000002R047206", "___s": true }, { @@ -445546,7 +446189,7 @@ "name": "event" } ], - "___id": "T000002R047237", + "___id": "T000002R047207", "___s": true }, { @@ -445621,7 +446264,7 @@ "name": "args" } ], - "___id": "T000002R047238", + "___id": "T000002R047208", "___s": true }, { @@ -445709,7 +446352,7 @@ "name": "context" } ], - "___id": "T000002R047239", + "___id": "T000002R047209", "___s": true }, { @@ -445797,7 +446440,7 @@ "name": "context" } ], - "___id": "T000002R047240", + "___id": "T000002R047210", "___s": true }, { @@ -445885,7 +446528,7 @@ "name": "context" } ], - "___id": "T000002R047241", + "___id": "T000002R047211", "___s": true }, { @@ -445987,7 +446630,7 @@ "name": "once" } ], - "___id": "T000002R047242", + "___id": "T000002R047212", "___s": true }, { @@ -446089,7 +446732,7 @@ "name": "once" } ], - "___id": "T000002R047243", + "___id": "T000002R047213", "___s": true }, { @@ -446151,7 +446794,7 @@ "name": "event" } ], - "___id": "T000002R047244", + "___id": "T000002R047214", "___s": true }, { @@ -446187,7 +446830,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R047250", + "___id": "T000002R047220", "___s": true }, { @@ -446282,7 +446925,7 @@ ], "inherits": "Phaser.GameObjects.Components.Alpha#setAlpha", "inherited": true, - "___id": "T000002R047251", + "___id": "T000002R047221", "___s": true }, { @@ -446312,7 +446955,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, - "___id": "T000002R047252", + "___id": "T000002R047222", "___s": true }, { @@ -446349,7 +446992,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R047253", + "___id": "T000002R047223", "___s": true }, { @@ -446386,7 +447029,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R047254", + "___id": "T000002R047224", "___s": true }, { @@ -446423,7 +447066,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R047255", + "___id": "T000002R047225", "___s": true }, { @@ -446460,7 +447103,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R047256", + "___id": "T000002R047226", "___s": true }, { @@ -446505,7 +447148,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R047258", + "___id": "T000002R047228", "___s": true }, { @@ -446571,7 +447214,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R047259", + "___id": "T000002R047229", "___s": true }, { @@ -446601,7 +447244,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R047261", + "___id": "T000002R047231", "___s": true }, { @@ -446652,7 +447295,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R047262", + "___id": "T000002R047232", "___s": true }, { @@ -446688,7 +447331,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R047263", + "___id": "T000002R047233", "___s": true }, { @@ -446724,7 +447367,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R047264", + "___id": "T000002R047234", "___s": true }, { @@ -446775,7 +447418,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R047265", + "___id": "T000002R047235", "___s": true }, { @@ -446826,7 +447469,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R047266", + "___id": "T000002R047236", "___s": true }, { @@ -446900,7 +447543,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getCenter", "inherited": true, - "___id": "T000002R047268", + "___id": "T000002R047238", "___s": true }, { @@ -446974,7 +447617,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "inherited": true, - "___id": "T000002R047269", + "___id": "T000002R047239", "___s": true }, { @@ -447048,7 +447691,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "inherited": true, - "___id": "T000002R047270", + "___id": "T000002R047240", "___s": true }, { @@ -447122,7 +447765,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopRight", "inherited": true, - "___id": "T000002R047271", + "___id": "T000002R047241", "___s": true }, { @@ -447196,7 +447839,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "inherited": true, - "___id": "T000002R047272", + "___id": "T000002R047242", "___s": true }, { @@ -447270,7 +447913,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "inherited": true, - "___id": "T000002R047273", + "___id": "T000002R047243", "___s": true }, { @@ -447344,7 +447987,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "inherited": true, - "___id": "T000002R047274", + "___id": "T000002R047244", "___s": true }, { @@ -447418,7 +448061,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "inherited": true, - "___id": "T000002R047275", + "___id": "T000002R047245", "___s": true }, { @@ -447492,7 +448135,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "inherited": true, - "___id": "T000002R047276", + "___id": "T000002R047246", "___s": true }, { @@ -447571,7 +448214,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBounds", "inherited": true, - "___id": "T000002R047277", + "___id": "T000002R047247", "___s": true }, { @@ -447611,7 +448254,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R047278", + "___id": "T000002R047248", "___s": true }, { @@ -447672,7 +448315,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R047279", + "___id": "T000002R047249", "___s": true }, { @@ -447725,7 +448368,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R047280", + "___id": "T000002R047250", "___s": true }, { @@ -447887,7 +448530,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R047281", + "___id": "T000002R047251", "___s": true }, { @@ -447968,7 +448611,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R047282", + "___id": "T000002R047252", "___s": true }, { @@ -448000,7 +448643,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R047284", + "___id": "T000002R047254", "___s": true }, { @@ -448032,7 +448675,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R047285", + "___id": "T000002R047255", "___s": true }, { @@ -448062,7 +448705,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R047286", + "___id": "T000002R047256", "___s": true }, { @@ -448092,7 +448735,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R047287", + "___id": "T000002R047257", "___s": true }, { @@ -448160,7 +448803,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R047288", + "___id": "T000002R047258", "___s": true }, { @@ -448196,7 +448839,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R047289", + "___id": "T000002R047259", "___s": true }, { @@ -448264,7 +448907,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R047290", + "___id": "T000002R047260", "___s": true }, { @@ -448302,7 +448945,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R047291", + "___id": "T000002R047261", "___s": true }, { @@ -448340,7 +448983,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R047292", + "___id": "T000002R047262", "___s": true }, { @@ -448377,7 +449020,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R047293", + "___id": "T000002R047263", "___s": true }, { @@ -448445,7 +449088,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R047294", + "___id": "T000002R047264", "___s": true }, { @@ -448542,7 +449185,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R047295", + "___id": "T000002R047265", "___s": true }, { @@ -448614,7 +449257,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R047296", + "___id": "T000002R047266", "___s": true }, { @@ -448673,7 +449316,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R047297", + "___id": "T000002R047267", "___s": true }, { @@ -448717,7 +449360,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R047298", + "___id": "T000002R047268", "___s": true }, { @@ -448754,7 +449397,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R047299", + "___id": "T000002R047269", "___s": true }, { @@ -448800,7 +449443,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R047300", + "___id": "T000002R047270", "___s": true }, { @@ -448837,7 +449480,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R047301", + "___id": "T000002R047271", "___s": true }, { @@ -448876,7 +449519,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R047302", + "___id": "T000002R047272", "___s": true }, { @@ -448913,7 +449556,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R047303", + "___id": "T000002R047273", "___s": true }, { @@ -448958,7 +449601,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R047304", + "___id": "T000002R047274", "___s": true }, { @@ -449102,7 +449745,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R047305", + "___id": "T000002R047275", "___s": true }, { @@ -449174,7 +449817,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R047306", + "___id": "T000002R047276", "___s": true }, { @@ -449265,7 +449908,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R047307", + "___id": "T000002R047277", "___s": true }, { @@ -449310,7 +449953,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R047308", + "___id": "T000002R047278", "___s": true }, { @@ -449378,7 +450021,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R047309", + "___id": "T000002R047279", "___s": true }, { @@ -449421,7 +450064,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R047310", + "___id": "T000002R047280", "___s": true }, { @@ -449452,7 +450095,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R047311", + "___id": "T000002R047281", "___s": true }, { @@ -449483,7 +450126,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R047312", + "___id": "T000002R047282", "___s": true }, { @@ -449549,7 +450192,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R047313", + "___id": "T000002R047283", "___s": true }, { @@ -449589,7 +450232,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#texture", "inherited": true, - "___id": "T000002R047314", + "___id": "T000002R047284", "___s": true }, { @@ -449619,7 +450262,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#frame", "inherited": true, - "___id": "T000002R047315", + "___id": "T000002R047285", "___s": true }, { @@ -449734,7 +450377,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setTexture", "inherited": true, - "___id": "T000002R047317", + "___id": "T000002R047287", "___s": true }, { @@ -449830,7 +450473,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setFrame", "inherited": true, - "___id": "T000002R047318", + "___id": "T000002R047288", "___s": true }, { @@ -449861,7 +450504,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, - "___id": "T000002R047319", + "___id": "T000002R047289", "___s": true }, { @@ -449892,7 +450535,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, - "___id": "T000002R047320", + "___id": "T000002R047290", "___s": true }, { @@ -449923,7 +450566,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, - "___id": "T000002R047321", + "___id": "T000002R047291", "___s": true }, { @@ -449954,7 +450597,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, - "___id": "T000002R047322", + "___id": "T000002R047292", "___s": true }, { @@ -449985,7 +450628,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, - "___id": "T000002R047323", + "___id": "T000002R047293", "___s": true }, { @@ -450028,7 +450671,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, - "___id": "T000002R047324", + "___id": "T000002R047294", "___s": true }, { @@ -450130,7 +450773,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTint", "inherited": true, - "___id": "T000002R047325", + "___id": "T000002R047295", "___s": true }, { @@ -450232,7 +450875,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTintFill", "inherited": true, - "___id": "T000002R047326", + "___id": "T000002R047296", "___s": true }, { @@ -450269,7 +450912,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, - "___id": "T000002R047327", + "___id": "T000002R047297", "___s": true }, { @@ -450307,7 +450950,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, - "___id": "T000002R047328", + "___id": "T000002R047298", "___s": true }, { @@ -450339,7 +450982,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R047329", + "___id": "T000002R047299", "___s": true }, { @@ -450370,7 +451013,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R047333", + "___id": "T000002R047303", "___s": true }, { @@ -450401,7 +451044,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R047334", + "___id": "T000002R047304", "___s": true }, { @@ -450432,7 +451075,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R047335", + "___id": "T000002R047305", "___s": true }, { @@ -450463,7 +451106,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R047336", + "___id": "T000002R047306", "___s": true }, { @@ -450494,7 +451137,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R047337", + "___id": "T000002R047307", "___s": true }, { @@ -450525,7 +451168,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R047338", + "___id": "T000002R047308", "___s": true }, { @@ -450556,7 +451199,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R047339", + "___id": "T000002R047309", "___s": true }, { @@ -450587,7 +451230,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R047340", + "___id": "T000002R047310", "___s": true }, { @@ -450618,7 +451261,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R047341", + "___id": "T000002R047311", "___s": true }, { @@ -450716,7 +451359,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R047342", + "___id": "T000002R047312", "___s": true }, { @@ -450782,7 +451425,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R047343", + "___id": "T000002R047313", "___s": true }, { @@ -450878,7 +451521,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R047344", + "___id": "T000002R047314", "___s": true }, { @@ -450931,7 +451574,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R047345", + "___id": "T000002R047315", "___s": true }, { @@ -450984,7 +451627,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R047346", + "___id": "T000002R047316", "___s": true }, { @@ -451052,7 +451695,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R047347", + "___id": "T000002R047317", "___s": true }, { @@ -451105,7 +451748,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R047348", + "___id": "T000002R047318", "___s": true }, { @@ -451158,7 +451801,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R047349", + "___id": "T000002R047319", "___s": true }, { @@ -451211,7 +451854,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R047350", + "___id": "T000002R047320", "___s": true }, { @@ -451264,7 +451907,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R047351", + "___id": "T000002R047321", "___s": true }, { @@ -451315,7 +451958,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R047352", + "___id": "T000002R047322", "___s": true }, { @@ -451380,7 +452023,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R047353", + "___id": "T000002R047323", "___s": true }, { @@ -451471,7 +452114,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R047354", + "___id": "T000002R047324", "___s": true }, { @@ -451506,7 +452149,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R047355", + "___id": "T000002R047325", "___s": true }, { @@ -451536,7 +452179,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R047357", + "___id": "T000002R047327", "___s": true }, { @@ -451587,7 +452230,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R047358", + "___id": "T000002R047328", "___s": true }, { @@ -451618,7 +452261,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#font", "inherited": true, - "___id": "T000002R047359", + "___id": "T000002R047329", "___s": true }, { @@ -451649,7 +452292,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#fontData", "inherited": true, - "___id": "T000002R047360", + "___id": "T000002R047330", "___s": true }, { @@ -451679,7 +452322,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#wordWrapCharCode", "inherited": true, - "___id": "T000002R047369", + "___id": "T000002R047339", "___s": true }, { @@ -451709,7 +452352,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#dropShadowX", "inherited": true, - "___id": "T000002R047371", + "___id": "T000002R047341", "___s": true }, { @@ -451739,7 +452382,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#dropShadowY", "inherited": true, - "___id": "T000002R047372", + "___id": "T000002R047342", "___s": true }, { @@ -451769,7 +452412,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#dropShadowColor", "inherited": true, - "___id": "T000002R047373", + "___id": "T000002R047343", "___s": true }, { @@ -451799,7 +452442,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#dropShadowAlpha", "inherited": true, - "___id": "T000002R047374", + "___id": "T000002R047344", "___s": true }, { @@ -451830,7 +452473,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#fromAtlas", "inherited": true, - "___id": "T000002R047375", + "___id": "T000002R047345", "___s": true }, { @@ -451866,7 +452509,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#setLeftAlign", "inherited": true, - "___id": "T000002R047376", + "___id": "T000002R047346", "___s": true }, { @@ -451902,7 +452545,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#setCenterAlign", "inherited": true, - "___id": "T000002R047377", + "___id": "T000002R047347", "___s": true }, { @@ -451938,7 +452581,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#setRightAlign", "inherited": true, - "___id": "T000002R047378", + "___id": "T000002R047348", "___s": true }, { @@ -451989,7 +452632,7 @@ ], "inherits": "Phaser.GameObjects.BitmapText#setFontSize", "inherited": true, - "___id": "T000002R047379", + "___id": "T000002R047349", "___s": true }, { @@ -452042,7 +452685,7 @@ ], "inherits": "Phaser.GameObjects.BitmapText#setLetterSpacing", "inherited": true, - "___id": "T000002R047380", + "___id": "T000002R047350", "___s": true }, { @@ -452095,7 +452738,7 @@ ], "inherits": "Phaser.GameObjects.BitmapText#setLineSpacing", "inherited": true, - "___id": "T000002R047381", + "___id": "T000002R047351", "___s": true }, { @@ -452165,7 +452808,7 @@ ], "inherits": "Phaser.GameObjects.BitmapText#setText", "inherited": true, - "___id": "T000002R047382", + "___id": "T000002R047352", "___s": true }, { @@ -452270,7 +452913,7 @@ ], "inherits": "Phaser.GameObjects.BitmapText#setDropShadow", "inherited": true, - "___id": "T000002R047383", + "___id": "T000002R047353", "___s": true }, { @@ -452417,7 +453060,7 @@ ], "inherits": "Phaser.GameObjects.BitmapText#setCharacterTint", "inherited": true, - "___id": "T000002R047384", + "___id": "T000002R047354", "___s": true }, { @@ -452572,7 +453215,7 @@ ], "inherits": "Phaser.GameObjects.BitmapText#setWordTint", "inherited": true, - "___id": "T000002R047385", + "___id": "T000002R047355", "___s": true }, { @@ -452624,7 +453267,7 @@ ], "inherits": "Phaser.GameObjects.BitmapText#getTextBounds", "inherited": true, - "___id": "T000002R047386", + "___id": "T000002R047356", "___s": true }, { @@ -452701,7 +453344,7 @@ ], "inherits": "Phaser.GameObjects.BitmapText#getCharacterAt", "inherited": true, - "___id": "T000002R047387", + "___id": "T000002R047357", "___s": true }, { @@ -452737,7 +453380,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#updateDisplayOrigin", "inherited": true, - "___id": "T000002R047388", + "___id": "T000002R047358", "___s": true }, { @@ -452817,7 +453460,7 @@ ], "inherits": "Phaser.GameObjects.BitmapText#setFont", "inherited": true, - "___id": "T000002R047389", + "___id": "T000002R047359", "___s": true }, { @@ -452882,7 +453525,7 @@ ], "inherits": "Phaser.GameObjects.BitmapText#setMaxWidth", "inherited": true, - "___id": "T000002R047390", + "___id": "T000002R047360", "___s": true }, { @@ -452912,7 +453555,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#align", "inherited": true, - "___id": "T000002R047391", + "___id": "T000002R047361", "___s": true }, { @@ -452942,7 +453585,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#text", "inherited": true, - "___id": "T000002R047392", + "___id": "T000002R047362", "___s": true }, { @@ -452972,7 +453615,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#fontSize", "inherited": true, - "___id": "T000002R047393", + "___id": "T000002R047363", "___s": true }, { @@ -453002,7 +453645,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#letterSpacing", "inherited": true, - "___id": "T000002R047394", + "___id": "T000002R047364", "___s": true }, { @@ -453032,7 +453675,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#lineSpacing", "inherited": true, - "___id": "T000002R047395", + "___id": "T000002R047365", "___s": true }, { @@ -453062,7 +453705,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#maxWidth", "inherited": true, - "___id": "T000002R047396", + "___id": "T000002R047366", "___s": true }, { @@ -453093,7 +453736,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#width", "inherited": true, - "___id": "T000002R047397", + "___id": "T000002R047367", "___s": true }, { @@ -453124,7 +453767,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#height", "inherited": true, - "___id": "T000002R047398", + "___id": "T000002R047368", "___s": true }, { @@ -453155,7 +453798,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#displayWidth", "inherited": true, - "___id": "T000002R047399", + "___id": "T000002R047369", "___s": true }, { @@ -453186,7 +453829,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#displayHeight", "inherited": true, - "___id": "T000002R047400", + "___id": "T000002R047370", "___s": true }, { @@ -453221,7 +453864,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#toJSON", "inherited": true, - "___id": "T000002R047401", + "___id": "T000002R047371", "___s": true }, { @@ -453243,7 +453886,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.BitmapText#preDestroy", "inherited": true, - "___id": "T000002R047402", + "___id": "T000002R047372", "___s": true }, { @@ -453273,7 +453916,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R047403", + "___id": "T000002R047373", "___s": true }, { @@ -453314,7 +453957,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R047404", + "___id": "T000002R047374", "___s": true }, { @@ -453344,7 +453987,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R047405", + "___id": "T000002R047375", "___s": true }, { @@ -453384,7 +454027,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R047406", + "___id": "T000002R047376", "___s": true }, { @@ -453414,7 +454057,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R047407", + "___id": "T000002R047377", "___s": true }, { @@ -453445,7 +454088,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R047408", + "___id": "T000002R047378", "___s": true }, { @@ -453476,7 +454119,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R047409", + "___id": "T000002R047379", "___s": true }, { @@ -453507,7 +454150,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R047410", + "___id": "T000002R047380", "___s": true }, { @@ -453538,7 +454181,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R047411", + "___id": "T000002R047381", "___s": true }, { @@ -453569,7 +454212,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R047412", + "___id": "T000002R047382", "___s": true }, { @@ -453603,7 +454246,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R047413", + "___id": "T000002R047383", "___s": true }, { @@ -453636,7 +454279,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R047414", + "___id": "T000002R047384", "___s": true }, { @@ -453684,7 +454327,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R047415", + "___id": "T000002R047385", "___s": true }, { @@ -453715,7 +454358,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R047416", + "___id": "T000002R047386", "___s": true }, { @@ -453766,7 +454409,7 @@ "name": "value" } ], - "___id": "T000002R047417", + "___id": "T000002R047387", "___s": true }, { @@ -453817,7 +454460,7 @@ "name": "value" } ], - "___id": "T000002R047418", + "___id": "T000002R047388", "___s": true }, { @@ -453878,7 +454521,7 @@ "name": "value" } ], - "___id": "T000002R047419", + "___id": "T000002R047389", "___s": true }, { @@ -453917,7 +454560,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R047420", + "___id": "T000002R047390", "___s": true }, { @@ -454005,7 +454648,7 @@ "name": "data" } ], - "___id": "T000002R047421", + "___id": "T000002R047391", "___s": true }, { @@ -454071,7 +454714,7 @@ "name": "amount" } ], - "___id": "T000002R047422", + "___id": "T000002R047392", "___s": true }, { @@ -454122,7 +454765,7 @@ "name": "key" } ], - "___id": "T000002R047423", + "___id": "T000002R047393", "___s": true }, { @@ -454190,7 +454833,7 @@ "name": "key" } ], - "___id": "T000002R047424", + "___id": "T000002R047394", "___s": true }, { @@ -454286,11 +454929,11 @@ "name": "dropZone" } ], - "___id": "T000002R047425", + "___id": "T000002R047395", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -454322,14 +454965,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R047426", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R047396", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -454358,14 +455018,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R047427", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R047397", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -454379,14 +455056,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R047428", + "___id": "T000002R047398", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -454400,14 +455077,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R047429", + "___id": "T000002R047399", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -454438,14 +455115,14 @@ "name": "args" } ], - "___id": "T000002R047430", + "___id": "T000002R047400", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -454488,14 +455165,14 @@ "name": "camera" } ], - "___id": "T000002R047431", + "___id": "T000002R047401", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -454532,14 +455209,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R047432", + "___id": "T000002R047402", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -454598,14 +455275,14 @@ "name": "displayList" } ], - "___id": "T000002R047433", + "___id": "T000002R047403", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -454634,14 +455311,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R047434", + "___id": "T000002R047404", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -454674,14 +455351,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R047435", + "___id": "T000002R047405", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -454710,14 +455387,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R047436", + "___id": "T000002R047406", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -454751,7 +455428,7 @@ "name": "fromScene" } ], - "___id": "T000002R047437", + "___id": "T000002R047407", "___s": true }, { @@ -454772,7 +455449,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R047438", + "___id": "T000002R047408", "___s": true }, { @@ -454824,7 +455501,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R047439", + "___id": "T000002R047409", "___s": true }, { @@ -454893,7 +455570,7 @@ "name": "event" } ], - "___id": "T000002R047440", + "___id": "T000002R047410", "___s": true }, { @@ -454953,7 +455630,7 @@ "name": "event" } ], - "___id": "T000002R047441", + "___id": "T000002R047411", "___s": true }, { @@ -455028,7 +455705,7 @@ "name": "args" } ], - "___id": "T000002R047442", + "___id": "T000002R047412", "___s": true }, { @@ -455116,7 +455793,7 @@ "name": "context" } ], - "___id": "T000002R047443", + "___id": "T000002R047413", "___s": true }, { @@ -455204,7 +455881,7 @@ "name": "context" } ], - "___id": "T000002R047444", + "___id": "T000002R047414", "___s": true }, { @@ -455292,7 +455969,7 @@ "name": "context" } ], - "___id": "T000002R047445", + "___id": "T000002R047415", "___s": true }, { @@ -455394,7 +456071,7 @@ "name": "once" } ], - "___id": "T000002R047446", + "___id": "T000002R047416", "___s": true }, { @@ -455496,7 +456173,7 @@ "name": "once" } ], - "___id": "T000002R047447", + "___id": "T000002R047417", "___s": true }, { @@ -455558,7 +456235,7 @@ "name": "event" } ], - "___id": "T000002R047448", + "___id": "T000002R047418", "___s": true }, { @@ -455594,7 +456271,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R047454", + "___id": "T000002R047424", "___s": true }, { @@ -455689,7 +456366,7 @@ "name": "bottomRight" } ], - "___id": "T000002R047455", + "___id": "T000002R047425", "___s": true }, { @@ -455719,7 +456396,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, - "___id": "T000002R047456", + "___id": "T000002R047426", "___s": true }, { @@ -455756,7 +456433,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R047457", + "___id": "T000002R047427", "___s": true }, { @@ -455793,7 +456470,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R047458", + "___id": "T000002R047428", "___s": true }, { @@ -455830,7 +456507,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R047459", + "___id": "T000002R047429", "___s": true }, { @@ -455867,7 +456544,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R047460", + "___id": "T000002R047430", "___s": true }, { @@ -455912,7 +456589,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R047462", + "___id": "T000002R047432", "___s": true }, { @@ -455978,7 +456655,7 @@ "name": "value" } ], - "___id": "T000002R047463", + "___id": "T000002R047433", "___s": true }, { @@ -456008,7 +456685,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R047465", + "___id": "T000002R047435", "___s": true }, { @@ -456059,7 +456736,7 @@ "name": "value" } ], - "___id": "T000002R047466", + "___id": "T000002R047436", "___s": true }, { @@ -456095,7 +456772,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R047467", + "___id": "T000002R047437", "___s": true }, { @@ -456131,7 +456808,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R047468", + "___id": "T000002R047438", "___s": true }, { @@ -456182,7 +456859,7 @@ "name": "gameObject" } ], - "___id": "T000002R047469", + "___id": "T000002R047439", "___s": true }, { @@ -456233,7 +456910,7 @@ "name": "gameObject" } ], - "___id": "T000002R047470", + "___id": "T000002R047440", "___s": true }, { @@ -456307,7 +456984,7 @@ "name": "includeParent" } ], - "___id": "T000002R047472", + "___id": "T000002R047442", "___s": true }, { @@ -456381,7 +457058,7 @@ "name": "includeParent" } ], - "___id": "T000002R047473", + "___id": "T000002R047443", "___s": true }, { @@ -456455,7 +457132,7 @@ "name": "includeParent" } ], - "___id": "T000002R047474", + "___id": "T000002R047444", "___s": true }, { @@ -456529,7 +457206,7 @@ "name": "includeParent" } ], - "___id": "T000002R047475", + "___id": "T000002R047445", "___s": true }, { @@ -456603,7 +457280,7 @@ "name": "includeParent" } ], - "___id": "T000002R047476", + "___id": "T000002R047446", "___s": true }, { @@ -456677,7 +457354,7 @@ "name": "includeParent" } ], - "___id": "T000002R047477", + "___id": "T000002R047447", "___s": true }, { @@ -456751,7 +457428,7 @@ "name": "includeParent" } ], - "___id": "T000002R047478", + "___id": "T000002R047448", "___s": true }, { @@ -456825,7 +457502,7 @@ "name": "includeParent" } ], - "___id": "T000002R047479", + "___id": "T000002R047449", "___s": true }, { @@ -456899,7 +457576,7 @@ "name": "includeParent" } ], - "___id": "T000002R047480", + "___id": "T000002R047450", "___s": true }, { @@ -456978,7 +457655,7 @@ "name": "output" } ], - "___id": "T000002R047481", + "___id": "T000002R047451", "___s": true }, { @@ -457018,7 +457695,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R047482", + "___id": "T000002R047452", "___s": true }, { @@ -457079,7 +457756,7 @@ "name": "mask" } ], - "___id": "T000002R047483", + "___id": "T000002R047453", "___s": true }, { @@ -457132,7 +457809,7 @@ "name": "destroyMask" } ], - "___id": "T000002R047484", + "___id": "T000002R047454", "___s": true }, { @@ -457294,7 +457971,7 @@ "name": "frame" } ], - "___id": "T000002R047485", + "___id": "T000002R047455", "___s": true }, { @@ -457375,7 +458052,7 @@ "name": "graphics" } ], - "___id": "T000002R047486", + "___id": "T000002R047456", "___s": true }, { @@ -457407,7 +458084,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R047488", + "___id": "T000002R047458", "___s": true }, { @@ -457439,7 +458116,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R047489", + "___id": "T000002R047459", "___s": true }, { @@ -457469,7 +458146,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R047490", + "___id": "T000002R047460", "___s": true }, { @@ -457499,7 +458176,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R047491", + "___id": "T000002R047461", "___s": true }, { @@ -457567,7 +458244,7 @@ "name": "y" } ], - "___id": "T000002R047492", + "___id": "T000002R047462", "___s": true }, { @@ -457603,7 +458280,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R047493", + "___id": "T000002R047463", "___s": true }, { @@ -457671,7 +458348,7 @@ "name": "y" } ], - "___id": "T000002R047494", + "___id": "T000002R047464", "___s": true }, { @@ -457709,7 +458386,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R047495", + "___id": "T000002R047465", "___s": true }, { @@ -457747,7 +458424,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R047496", + "___id": "T000002R047466", "___s": true }, { @@ -457784,7 +458461,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R047497", + "___id": "T000002R047467", "___s": true }, { @@ -457852,7 +458529,7 @@ "name": "pipeline" } ], - "___id": "T000002R047498", + "___id": "T000002R047468", "___s": true }, { @@ -457949,7 +458626,7 @@ "name": "copyData" } ], - "___id": "T000002R047499", + "___id": "T000002R047469", "___s": true }, { @@ -458021,7 +458698,7 @@ "name": "value" } ], - "___id": "T000002R047500", + "___id": "T000002R047470", "___s": true }, { @@ -458080,7 +458757,7 @@ "name": "resetData" } ], - "___id": "T000002R047501", + "___id": "T000002R047471", "___s": true }, { @@ -458124,7 +458801,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R047502", + "___id": "T000002R047472", "___s": true }, { @@ -458161,7 +458838,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R047503", + "___id": "T000002R047473", "___s": true }, { @@ -458207,7 +458884,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R047504", + "___id": "T000002R047474", "___s": true }, { @@ -458244,7 +458921,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R047505", + "___id": "T000002R047475", "___s": true }, { @@ -458283,7 +458960,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R047506", + "___id": "T000002R047476", "___s": true }, { @@ -458320,7 +458997,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R047507", + "___id": "T000002R047477", "___s": true }, { @@ -458365,7 +459042,7 @@ "name": "preFX" } ], - "___id": "T000002R047508", + "___id": "T000002R047478", "___s": true }, { @@ -458509,7 +459186,7 @@ "name": "copyData" } ], - "___id": "T000002R047509", + "___id": "T000002R047479", "___s": true }, { @@ -458581,7 +459258,7 @@ "name": "value" } ], - "___id": "T000002R047510", + "___id": "T000002R047480", "___s": true }, { @@ -458672,7 +459349,7 @@ "name": "pipeline" } ], - "___id": "T000002R047511", + "___id": "T000002R047481", "___s": true }, { @@ -458717,7 +459394,7 @@ "name": "resetData" } ], - "___id": "T000002R047512", + "___id": "T000002R047482", "___s": true }, { @@ -458785,7 +459462,7 @@ "name": "pipeline" } ], - "___id": "T000002R047513", + "___id": "T000002R047483", "___s": true }, { @@ -458828,7 +459505,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R047514", + "___id": "T000002R047484", "___s": true }, { @@ -458859,7 +459536,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R047515", + "___id": "T000002R047485", "___s": true }, { @@ -458890,7 +459567,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R047516", + "___id": "T000002R047486", "___s": true }, { @@ -458956,7 +459633,7 @@ "name": "y" } ], - "___id": "T000002R047517", + "___id": "T000002R047487", "___s": true }, { @@ -458996,7 +459673,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#texture", "inherited": true, - "___id": "T000002R047518", + "___id": "T000002R047488", "___s": true }, { @@ -459026,7 +459703,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#frame", "inherited": true, - "___id": "T000002R047519", + "___id": "T000002R047489", "___s": true }, { @@ -459141,7 +459818,7 @@ "name": "updateOrigin" } ], - "___id": "T000002R047521", + "___id": "T000002R047491", "___s": true }, { @@ -459237,7 +459914,7 @@ "name": "updateOrigin" } ], - "___id": "T000002R047522", + "___id": "T000002R047492", "___s": true }, { @@ -459268,7 +459945,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, - "___id": "T000002R047523", + "___id": "T000002R047493", "___s": true }, { @@ -459299,7 +459976,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, - "___id": "T000002R047524", + "___id": "T000002R047494", "___s": true }, { @@ -459330,7 +460007,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, - "___id": "T000002R047525", + "___id": "T000002R047495", "___s": true }, { @@ -459361,7 +460038,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, - "___id": "T000002R047526", + "___id": "T000002R047496", "___s": true }, { @@ -459392,7 +460069,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, - "___id": "T000002R047527", + "___id": "T000002R047497", "___s": true }, { @@ -459435,7 +460112,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, - "___id": "T000002R047528", + "___id": "T000002R047498", "___s": true }, { @@ -459537,7 +460214,7 @@ "name": "bottomRight" } ], - "___id": "T000002R047529", + "___id": "T000002R047499", "___s": true }, { @@ -459639,7 +460316,7 @@ "name": "bottomRight" } ], - "___id": "T000002R047530", + "___id": "T000002R047500", "___s": true }, { @@ -459676,7 +460353,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, - "___id": "T000002R047531", + "___id": "T000002R047501", "___s": true }, { @@ -459714,7 +460391,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, - "___id": "T000002R047532", + "___id": "T000002R047502", "___s": true }, { @@ -459746,7 +460423,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R047533", + "___id": "T000002R047503", "___s": true }, { @@ -459777,7 +460454,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R047537", + "___id": "T000002R047507", "___s": true }, { @@ -459808,7 +460485,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R047538", + "___id": "T000002R047508", "___s": true }, { @@ -459839,7 +460516,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R047539", + "___id": "T000002R047509", "___s": true }, { @@ -459870,7 +460547,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R047540", + "___id": "T000002R047510", "___s": true }, { @@ -459901,7 +460578,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R047541", + "___id": "T000002R047511", "___s": true }, { @@ -459932,7 +460609,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R047542", + "___id": "T000002R047512", "___s": true }, { @@ -459963,7 +460640,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R047543", + "___id": "T000002R047513", "___s": true }, { @@ -459994,7 +460671,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R047544", + "___id": "T000002R047514", "___s": true }, { @@ -460025,7 +460702,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R047545", + "___id": "T000002R047515", "___s": true }, { @@ -460123,7 +460800,7 @@ "name": "w" } ], - "___id": "T000002R047546", + "___id": "T000002R047516", "___s": true }, { @@ -460189,7 +460866,7 @@ "name": "source" } ], - "___id": "T000002R047547", + "___id": "T000002R047517", "___s": true }, { @@ -460285,7 +460962,7 @@ "name": "height" } ], - "___id": "T000002R047548", + "___id": "T000002R047518", "___s": true }, { @@ -460338,7 +461015,7 @@ "name": "radians" } ], - "___id": "T000002R047549", + "___id": "T000002R047519", "___s": true }, { @@ -460391,7 +461068,7 @@ "name": "degrees" } ], - "___id": "T000002R047550", + "___id": "T000002R047520", "___s": true }, { @@ -460459,7 +461136,7 @@ "name": "y" } ], - "___id": "T000002R047551", + "___id": "T000002R047521", "___s": true }, { @@ -460512,7 +461189,7 @@ "name": "value" } ], - "___id": "T000002R047552", + "___id": "T000002R047522", "___s": true }, { @@ -460565,7 +461242,7 @@ "name": "value" } ], - "___id": "T000002R047553", + "___id": "T000002R047523", "___s": true }, { @@ -460618,7 +461295,7 @@ "name": "value" } ], - "___id": "T000002R047554", + "___id": "T000002R047524", "___s": true }, { @@ -460671,7 +461348,7 @@ "name": "value" } ], - "___id": "T000002R047555", + "___id": "T000002R047525", "___s": true }, { @@ -460722,7 +461399,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R047556", + "___id": "T000002R047526", "___s": true }, { @@ -460787,7 +461464,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R047557", + "___id": "T000002R047527", "___s": true }, { @@ -460878,7 +461555,7 @@ "name": "camera" } ], - "___id": "T000002R047558", + "___id": "T000002R047528", "___s": true }, { @@ -460913,7 +461590,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R047559", + "___id": "T000002R047529", "___s": true }, { @@ -460943,7 +461620,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R047561", + "___id": "T000002R047531", "___s": true }, { @@ -460994,7 +461671,7 @@ "name": "value" } ], - "___id": "T000002R047562", + "___id": "T000002R047532", "___s": true }, { @@ -461024,7 +461701,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R047563", + "___id": "T000002R047533", "___s": true }, { @@ -461065,7 +461742,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R047564", + "___id": "T000002R047534", "___s": true }, { @@ -461095,7 +461772,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R047565", + "___id": "T000002R047535", "___s": true }, { @@ -461135,7 +461812,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R047566", + "___id": "T000002R047536", "___s": true }, { @@ -461165,7 +461842,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R047567", + "___id": "T000002R047537", "___s": true }, { @@ -461196,7 +461873,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R047568", + "___id": "T000002R047538", "___s": true }, { @@ -461227,7 +461904,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R047569", + "___id": "T000002R047539", "___s": true }, { @@ -461258,7 +461935,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R047570", + "___id": "T000002R047540", "___s": true }, { @@ -461289,7 +461966,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R047571", + "___id": "T000002R047541", "___s": true }, { @@ -461320,7 +461997,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R047572", + "___id": "T000002R047542", "___s": true }, { @@ -461354,7 +462031,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R047573", + "___id": "T000002R047543", "___s": true }, { @@ -461387,7 +462064,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R047574", + "___id": "T000002R047544", "___s": true }, { @@ -461435,7 +462112,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R047575", + "___id": "T000002R047545", "___s": true }, { @@ -461466,7 +462143,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R047576", + "___id": "T000002R047546", "___s": true }, { @@ -461517,7 +462194,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R047577", + "___id": "T000002R047547", "___s": true }, { @@ -461568,7 +462245,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R047578", + "___id": "T000002R047548", "___s": true }, { @@ -461629,7 +462306,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R047579", + "___id": "T000002R047549", "___s": true }, { @@ -461668,7 +462345,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R047580", + "___id": "T000002R047550", "___s": true }, { @@ -461756,7 +462433,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R047581", + "___id": "T000002R047551", "___s": true }, { @@ -461822,7 +462499,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R047582", + "___id": "T000002R047552", "___s": true }, { @@ -461873,7 +462550,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R047583", + "___id": "T000002R047553", "___s": true }, { @@ -461941,7 +462618,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R047584", + "___id": "T000002R047554", "___s": true }, { @@ -462037,11 +462714,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R047585", + "___id": "T000002R047555", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -462071,16 +462748,33 @@ ], "memberof": "Phaser.GameObjects.Blitter", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R047586", + "___id": "T000002R047556", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -462107,16 +462801,33 @@ ], "memberof": "Phaser.GameObjects.Blitter", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R047587", + "___id": "T000002R047557", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -462130,14 +462841,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R047588", + "___id": "T000002R047558", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -462151,14 +462862,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R047589", + "___id": "T000002R047559", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -462189,14 +462900,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R047590", + "___id": "T000002R047560", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -462224,14 +462935,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R047591", + "___id": "T000002R047561", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -462274,14 +462985,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R047592", + "___id": "T000002R047562", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -462318,14 +463029,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R047593", + "___id": "T000002R047563", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -462384,14 +463095,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R047594", + "___id": "T000002R047564", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -462420,14 +463131,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R047595", + "___id": "T000002R047565", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -462460,14 +463171,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R047596", + "___id": "T000002R047566", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -462496,14 +463207,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R047597", + "___id": "T000002R047567", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -462537,7 +463248,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R047598", + "___id": "T000002R047568", "___s": true }, { @@ -462558,7 +463269,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R047599", + "___id": "T000002R047569", "___s": true }, { @@ -462610,7 +463321,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R047600", + "___id": "T000002R047570", "___s": true }, { @@ -462679,7 +463390,7 @@ "name": "event" } ], - "___id": "T000002R047601", + "___id": "T000002R047571", "___s": true }, { @@ -462739,7 +463450,7 @@ "name": "event" } ], - "___id": "T000002R047602", + "___id": "T000002R047572", "___s": true }, { @@ -462814,7 +463525,7 @@ "name": "args" } ], - "___id": "T000002R047603", + "___id": "T000002R047573", "___s": true }, { @@ -462902,7 +463613,7 @@ "name": "context" } ], - "___id": "T000002R047604", + "___id": "T000002R047574", "___s": true }, { @@ -462990,7 +463701,7 @@ "name": "context" } ], - "___id": "T000002R047605", + "___id": "T000002R047575", "___s": true }, { @@ -463078,7 +463789,7 @@ "name": "context" } ], - "___id": "T000002R047606", + "___id": "T000002R047576", "___s": true }, { @@ -463180,7 +463891,7 @@ "name": "once" } ], - "___id": "T000002R047607", + "___id": "T000002R047577", "___s": true }, { @@ -463282,7 +463993,7 @@ "name": "once" } ], - "___id": "T000002R047608", + "___id": "T000002R047578", "___s": true }, { @@ -463344,7 +464055,7 @@ "name": "event" } ], - "___id": "T000002R047609", + "___id": "T000002R047579", "___s": true }, { @@ -463380,7 +464091,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R047615", + "___id": "T000002R047585", "___s": true }, { @@ -463475,7 +464186,7 @@ ], "inherits": "Phaser.GameObjects.Components.Alpha#setAlpha", "inherited": true, - "___id": "T000002R047616", + "___id": "T000002R047586", "___s": true }, { @@ -463505,7 +464216,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, - "___id": "T000002R047617", + "___id": "T000002R047587", "___s": true }, { @@ -463542,7 +464253,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R047618", + "___id": "T000002R047588", "___s": true }, { @@ -463579,7 +464290,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R047619", + "___id": "T000002R047589", "___s": true }, { @@ -463616,7 +464327,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R047620", + "___id": "T000002R047590", "___s": true }, { @@ -463653,7 +464364,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R047621", + "___id": "T000002R047591", "___s": true }, { @@ -463698,7 +464409,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R047623", + "___id": "T000002R047593", "___s": true }, { @@ -463764,7 +464475,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R047624", + "___id": "T000002R047594", "___s": true }, { @@ -463794,7 +464505,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R047626", + "___id": "T000002R047596", "___s": true }, { @@ -463845,7 +464556,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R047627", + "___id": "T000002R047597", "___s": true }, { @@ -463881,7 +464592,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R047628", + "___id": "T000002R047598", "___s": true }, { @@ -463917,7 +464628,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R047629", + "___id": "T000002R047599", "___s": true }, { @@ -463968,7 +464679,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R047630", + "___id": "T000002R047600", "___s": true }, { @@ -464019,7 +464730,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R047631", + "___id": "T000002R047601", "___s": true }, { @@ -464059,7 +464770,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R047632", + "___id": "T000002R047602", "___s": true }, { @@ -464120,7 +464831,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R047633", + "___id": "T000002R047603", "___s": true }, { @@ -464173,7 +464884,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R047634", + "___id": "T000002R047604", "___s": true }, { @@ -464335,7 +465046,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R047635", + "___id": "T000002R047605", "___s": true }, { @@ -464416,7 +465127,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R047636", + "___id": "T000002R047606", "___s": true }, { @@ -464454,7 +465165,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R047637", + "___id": "T000002R047607", "___s": true }, { @@ -464492,7 +465203,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R047638", + "___id": "T000002R047608", "___s": true }, { @@ -464529,7 +465240,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R047639", + "___id": "T000002R047609", "___s": true }, { @@ -464597,7 +465308,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R047640", + "___id": "T000002R047610", "___s": true }, { @@ -464694,7 +465405,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R047641", + "___id": "T000002R047611", "___s": true }, { @@ -464766,7 +465477,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R047642", + "___id": "T000002R047612", "___s": true }, { @@ -464825,7 +465536,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R047643", + "___id": "T000002R047613", "___s": true }, { @@ -464869,7 +465580,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R047644", + "___id": "T000002R047614", "___s": true }, { @@ -464906,7 +465617,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R047645", + "___id": "T000002R047615", "___s": true }, { @@ -464952,7 +465663,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R047646", + "___id": "T000002R047616", "___s": true }, { @@ -464989,7 +465700,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R047647", + "___id": "T000002R047617", "___s": true }, { @@ -465028,7 +465739,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R047648", + "___id": "T000002R047618", "___s": true }, { @@ -465065,7 +465776,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R047649", + "___id": "T000002R047619", "___s": true }, { @@ -465110,7 +465821,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R047650", + "___id": "T000002R047620", "___s": true }, { @@ -465254,7 +465965,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R047651", + "___id": "T000002R047621", "___s": true }, { @@ -465326,7 +466037,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R047652", + "___id": "T000002R047622", "___s": true }, { @@ -465417,7 +466128,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R047653", + "___id": "T000002R047623", "___s": true }, { @@ -465462,7 +466173,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R047654", + "___id": "T000002R047624", "___s": true }, { @@ -465530,7 +466241,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R047655", + "___id": "T000002R047625", "___s": true }, { @@ -465573,7 +466284,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R047656", + "___id": "T000002R047626", "___s": true }, { @@ -465604,7 +466315,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R047657", + "___id": "T000002R047627", "___s": true }, { @@ -465635,7 +466346,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R047658", + "___id": "T000002R047628", "___s": true }, { @@ -465701,7 +466412,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R047659", + "___id": "T000002R047629", "___s": true }, { @@ -465731,7 +466442,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, - "___id": "T000002R047661", + "___id": "T000002R047631", "___s": true }, { @@ -465761,7 +466472,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, - "___id": "T000002R047662", + "___id": "T000002R047632", "___s": true }, { @@ -465791,7 +466502,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, - "___id": "T000002R047663", + "___id": "T000002R047633", "___s": true }, { @@ -465821,7 +466532,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, - "___id": "T000002R047664", + "___id": "T000002R047634", "___s": true }, { @@ -465883,7 +466594,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setSizeToFrame", "inherited": true, - "___id": "T000002R047665", + "___id": "T000002R047635", "___s": true }, { @@ -465947,7 +466658,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setSize", "inherited": true, - "___id": "T000002R047666", + "___id": "T000002R047636", "___s": true }, { @@ -466011,7 +466722,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setDisplaySize", "inherited": true, - "___id": "T000002R047667", + "___id": "T000002R047637", "___s": true }, { @@ -466051,7 +466762,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#texture", "inherited": true, - "___id": "T000002R047668", + "___id": "T000002R047638", "___s": true }, { @@ -466081,7 +466792,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#frame", "inherited": true, - "___id": "T000002R047669", + "___id": "T000002R047639", "___s": true }, { @@ -466196,7 +466907,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setTexture", "inherited": true, - "___id": "T000002R047671", + "___id": "T000002R047641", "___s": true }, { @@ -466292,7 +467003,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setFrame", "inherited": true, - "___id": "T000002R047672", + "___id": "T000002R047642", "___s": true }, { @@ -466324,7 +467035,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R047673", + "___id": "T000002R047643", "___s": true }, { @@ -466355,7 +467066,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R047677", + "___id": "T000002R047647", "___s": true }, { @@ -466386,7 +467097,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R047678", + "___id": "T000002R047648", "___s": true }, { @@ -466417,7 +467128,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R047679", + "___id": "T000002R047649", "___s": true }, { @@ -466448,7 +467159,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R047680", + "___id": "T000002R047650", "___s": true }, { @@ -466479,7 +467190,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R047681", + "___id": "T000002R047651", "___s": true }, { @@ -466510,7 +467221,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R047682", + "___id": "T000002R047652", "___s": true }, { @@ -466541,7 +467252,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R047683", + "___id": "T000002R047653", "___s": true }, { @@ -466572,7 +467283,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R047684", + "___id": "T000002R047654", "___s": true }, { @@ -466603,7 +467314,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R047685", + "___id": "T000002R047655", "___s": true }, { @@ -466701,7 +467412,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R047686", + "___id": "T000002R047656", "___s": true }, { @@ -466767,7 +467478,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R047687", + "___id": "T000002R047657", "___s": true }, { @@ -466863,7 +467574,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R047688", + "___id": "T000002R047658", "___s": true }, { @@ -466916,7 +467627,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R047689", + "___id": "T000002R047659", "___s": true }, { @@ -466969,7 +467680,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R047690", + "___id": "T000002R047660", "___s": true }, { @@ -467037,7 +467748,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R047691", + "___id": "T000002R047661", "___s": true }, { @@ -467090,7 +467801,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R047692", + "___id": "T000002R047662", "___s": true }, { @@ -467143,7 +467854,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R047693", + "___id": "T000002R047663", "___s": true }, { @@ -467196,7 +467907,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R047694", + "___id": "T000002R047664", "___s": true }, { @@ -467249,7 +467960,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R047695", + "___id": "T000002R047665", "___s": true }, { @@ -467300,7 +468011,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R047696", + "___id": "T000002R047666", "___s": true }, { @@ -467365,7 +468076,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R047697", + "___id": "T000002R047667", "___s": true }, { @@ -467456,7 +468167,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R047698", + "___id": "T000002R047668", "___s": true }, { @@ -467491,7 +468202,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R047699", + "___id": "T000002R047669", "___s": true }, { @@ -467521,7 +468232,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R047701", + "___id": "T000002R047671", "___s": true }, { @@ -467572,7 +468283,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R047702", + "___id": "T000002R047672", "___s": true }, { @@ -467602,7 +468313,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R047703", + "___id": "T000002R047673", "___s": true }, { @@ -467643,7 +468354,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R047704", + "___id": "T000002R047674", "___s": true }, { @@ -467673,7 +468384,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R047705", + "___id": "T000002R047675", "___s": true }, { @@ -467713,7 +468424,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R047706", + "___id": "T000002R047676", "___s": true }, { @@ -467743,7 +468454,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R047707", + "___id": "T000002R047677", "___s": true }, { @@ -467774,7 +468485,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R047708", + "___id": "T000002R047678", "___s": true }, { @@ -467805,7 +468516,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R047709", + "___id": "T000002R047679", "___s": true }, { @@ -467836,7 +468547,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R047710", + "___id": "T000002R047680", "___s": true }, { @@ -467867,7 +468578,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R047711", + "___id": "T000002R047681", "___s": true }, { @@ -467898,7 +468609,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R047712", + "___id": "T000002R047682", "___s": true }, { @@ -467932,7 +468643,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R047713", + "___id": "T000002R047683", "___s": true }, { @@ -467965,7 +468676,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R047714", + "___id": "T000002R047684", "___s": true }, { @@ -468013,7 +468724,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R047715", + "___id": "T000002R047685", "___s": true }, { @@ -468044,7 +468755,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R047716", + "___id": "T000002R047686", "___s": true }, { @@ -468095,7 +468806,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R047717", + "___id": "T000002R047687", "___s": true }, { @@ -468146,7 +468857,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R047718", + "___id": "T000002R047688", "___s": true }, { @@ -468207,7 +468918,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R047719", + "___id": "T000002R047689", "___s": true }, { @@ -468246,7 +468957,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R047720", + "___id": "T000002R047690", "___s": true }, { @@ -468334,7 +469045,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R047721", + "___id": "T000002R047691", "___s": true }, { @@ -468400,7 +469111,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R047722", + "___id": "T000002R047692", "___s": true }, { @@ -468451,7 +469162,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R047723", + "___id": "T000002R047693", "___s": true }, { @@ -468519,7 +469230,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R047724", + "___id": "T000002R047694", "___s": true }, { @@ -468615,11 +469326,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R047725", + "___id": "T000002R047695", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -468649,16 +469360,33 @@ ], "memberof": "Phaser.GameObjects.Container", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R047726", + "___id": "T000002R047696", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -468685,16 +469413,33 @@ ], "memberof": "Phaser.GameObjects.Container", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R047727", + "___id": "T000002R047697", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -468708,14 +469453,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R047728", + "___id": "T000002R047698", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -468729,14 +469474,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R047729", + "___id": "T000002R047699", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -468767,14 +469512,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R047730", + "___id": "T000002R047700", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -468802,14 +469547,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R047731", + "___id": "T000002R047701", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -468852,14 +469597,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R047732", + "___id": "T000002R047702", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -468896,14 +469641,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R047733", + "___id": "T000002R047703", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -468962,14 +469707,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R047734", + "___id": "T000002R047704", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -468998,14 +469743,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R047735", + "___id": "T000002R047705", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -469038,14 +469783,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R047736", + "___id": "T000002R047706", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -469074,14 +469819,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R047737", + "___id": "T000002R047707", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -469115,7 +469860,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R047738", + "___id": "T000002R047708", "___s": true }, { @@ -469136,7 +469881,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R047739", + "___id": "T000002R047709", "___s": true }, { @@ -469188,7 +469933,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R047740", + "___id": "T000002R047710", "___s": true }, { @@ -469257,7 +470002,7 @@ "name": "event" } ], - "___id": "T000002R047741", + "___id": "T000002R047711", "___s": true }, { @@ -469317,7 +470062,7 @@ "name": "event" } ], - "___id": "T000002R047742", + "___id": "T000002R047712", "___s": true }, { @@ -469392,7 +470137,7 @@ "name": "args" } ], - "___id": "T000002R047743", + "___id": "T000002R047713", "___s": true }, { @@ -469480,7 +470225,7 @@ "name": "context" } ], - "___id": "T000002R047744", + "___id": "T000002R047714", "___s": true }, { @@ -469568,7 +470313,7 @@ "name": "context" } ], - "___id": "T000002R047745", + "___id": "T000002R047715", "___s": true }, { @@ -469656,7 +470401,7 @@ "name": "context" } ], - "___id": "T000002R047746", + "___id": "T000002R047716", "___s": true }, { @@ -469758,7 +470503,7 @@ "name": "once" } ], - "___id": "T000002R047747", + "___id": "T000002R047717", "___s": true }, { @@ -469860,7 +470605,7 @@ "name": "once" } ], - "___id": "T000002R047748", + "___id": "T000002R047718", "___s": true }, { @@ -469922,7 +470667,7 @@ "name": "event" } ], - "___id": "T000002R047749", + "___id": "T000002R047719", "___s": true }, { @@ -469958,7 +470703,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R047751", + "___id": "T000002R047721", "___s": true }, { @@ -470011,7 +470756,7 @@ ], "inherits": "Phaser.GameObjects.Components.AlphaSingle#setAlpha", "inherited": true, - "___id": "T000002R047752", + "___id": "T000002R047722", "___s": true }, { @@ -470041,7 +470786,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R047753", + "___id": "T000002R047723", "___s": true }, { @@ -470086,7 +470831,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R047755", + "___id": "T000002R047725", "___s": true }, { @@ -470152,7 +470897,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R047756", + "___id": "T000002R047726", "___s": true }, { @@ -470182,7 +470927,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#width", "inherited": true, - "___id": "T000002R047757", + "___id": "T000002R047727", "___s": true }, { @@ -470212,7 +470957,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#height", "inherited": true, - "___id": "T000002R047758", + "___id": "T000002R047728", "___s": true }, { @@ -470242,7 +470987,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#displayWidth", "inherited": true, - "___id": "T000002R047759", + "___id": "T000002R047729", "___s": true }, { @@ -470272,7 +471017,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#displayHeight", "inherited": true, - "___id": "T000002R047760", + "___id": "T000002R047730", "___s": true }, { @@ -470336,7 +471081,7 @@ ], "inherits": "Phaser.GameObjects.Components.ComputedSize#setSize", "inherited": true, - "___id": "T000002R047761", + "___id": "T000002R047731", "___s": true }, { @@ -470400,7 +471145,7 @@ ], "inherits": "Phaser.GameObjects.Components.ComputedSize#setDisplaySize", "inherited": true, - "___id": "T000002R047762", + "___id": "T000002R047732", "___s": true }, { @@ -470430,7 +471175,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R047764", + "___id": "T000002R047734", "___s": true }, { @@ -470481,7 +471226,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R047765", + "___id": "T000002R047735", "___s": true }, { @@ -470517,7 +471262,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R047766", + "___id": "T000002R047736", "___s": true }, { @@ -470553,7 +471298,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R047767", + "___id": "T000002R047737", "___s": true }, { @@ -470604,7 +471349,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R047768", + "___id": "T000002R047738", "___s": true }, { @@ -470655,7 +471400,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R047769", + "___id": "T000002R047739", "___s": true }, { @@ -470695,7 +471440,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R047770", + "___id": "T000002R047740", "___s": true }, { @@ -470756,7 +471501,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R047771", + "___id": "T000002R047741", "___s": true }, { @@ -470809,7 +471554,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R047772", + "___id": "T000002R047742", "___s": true }, { @@ -470971,7 +471716,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R047773", + "___id": "T000002R047743", "___s": true }, { @@ -471052,7 +471797,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R047774", + "___id": "T000002R047744", "___s": true }, { @@ -471089,7 +471834,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R047775", + "___id": "T000002R047745", "___s": true }, { @@ -471135,7 +471880,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R047776", + "___id": "T000002R047746", "___s": true }, { @@ -471172,7 +471917,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R047777", + "___id": "T000002R047747", "___s": true }, { @@ -471211,7 +471956,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R047778", + "___id": "T000002R047748", "___s": true }, { @@ -471248,7 +471993,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R047779", + "___id": "T000002R047749", "___s": true }, { @@ -471293,7 +472038,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R047780", + "___id": "T000002R047750", "___s": true }, { @@ -471437,7 +472182,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R047781", + "___id": "T000002R047751", "___s": true }, { @@ -471509,7 +472254,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R047782", + "___id": "T000002R047752", "___s": true }, { @@ -471600,7 +472345,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R047783", + "___id": "T000002R047753", "___s": true }, { @@ -471645,7 +472390,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R047784", + "___id": "T000002R047754", "___s": true }, { @@ -471713,7 +472458,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R047785", + "___id": "T000002R047755", "___s": true }, { @@ -471756,7 +472501,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R047786", + "___id": "T000002R047756", "___s": true }, { @@ -471788,7 +472533,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R047787", + "___id": "T000002R047757", "___s": true }, { @@ -471819,7 +472564,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R047791", + "___id": "T000002R047761", "___s": true }, { @@ -471850,7 +472595,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R047792", + "___id": "T000002R047762", "___s": true }, { @@ -471881,7 +472626,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R047793", + "___id": "T000002R047763", "___s": true }, { @@ -471912,7 +472657,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R047794", + "___id": "T000002R047764", "___s": true }, { @@ -471943,7 +472688,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R047795", + "___id": "T000002R047765", "___s": true }, { @@ -471974,7 +472719,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R047796", + "___id": "T000002R047766", "___s": true }, { @@ -472005,7 +472750,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R047797", + "___id": "T000002R047767", "___s": true }, { @@ -472036,7 +472781,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R047798", + "___id": "T000002R047768", "___s": true }, { @@ -472067,7 +472812,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R047799", + "___id": "T000002R047769", "___s": true }, { @@ -472165,7 +472910,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R047800", + "___id": "T000002R047770", "___s": true }, { @@ -472231,7 +472976,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R047801", + "___id": "T000002R047771", "___s": true }, { @@ -472327,7 +473072,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R047802", + "___id": "T000002R047772", "___s": true }, { @@ -472380,7 +473125,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R047803", + "___id": "T000002R047773", "___s": true }, { @@ -472433,7 +473178,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R047804", + "___id": "T000002R047774", "___s": true }, { @@ -472501,7 +473246,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R047805", + "___id": "T000002R047775", "___s": true }, { @@ -472554,7 +473299,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R047806", + "___id": "T000002R047776", "___s": true }, { @@ -472607,7 +473352,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R047807", + "___id": "T000002R047777", "___s": true }, { @@ -472660,7 +473405,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R047808", + "___id": "T000002R047778", "___s": true }, { @@ -472713,7 +473458,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R047809", + "___id": "T000002R047779", "___s": true }, { @@ -472764,7 +473509,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R047810", + "___id": "T000002R047780", "___s": true }, { @@ -472829,7 +473574,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R047811", + "___id": "T000002R047781", "___s": true }, { @@ -472920,7 +473665,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R047812", + "___id": "T000002R047782", "___s": true }, { @@ -472955,7 +473700,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R047813", + "___id": "T000002R047783", "___s": true }, { @@ -472985,7 +473730,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R047815", + "___id": "T000002R047785", "___s": true }, { @@ -473036,7 +473781,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R047816", + "___id": "T000002R047786", "___s": true }, { @@ -473066,7 +473811,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R047817", + "___id": "T000002R047787", "___s": true }, { @@ -473107,7 +473852,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R047818", + "___id": "T000002R047788", "___s": true }, { @@ -473137,7 +473882,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R047819", + "___id": "T000002R047789", "___s": true }, { @@ -473177,7 +473922,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R047820", + "___id": "T000002R047790", "___s": true }, { @@ -473207,7 +473952,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R047821", + "___id": "T000002R047791", "___s": true }, { @@ -473238,7 +473983,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R047822", + "___id": "T000002R047792", "___s": true }, { @@ -473269,7 +474014,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R047823", + "___id": "T000002R047793", "___s": true }, { @@ -473300,7 +474045,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R047824", + "___id": "T000002R047794", "___s": true }, { @@ -473331,7 +474076,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R047825", + "___id": "T000002R047795", "___s": true }, { @@ -473362,7 +474107,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R047826", + "___id": "T000002R047796", "___s": true }, { @@ -473396,7 +474141,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R047827", + "___id": "T000002R047797", "___s": true }, { @@ -473429,7 +474174,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R047828", + "___id": "T000002R047798", "___s": true }, { @@ -473477,7 +474222,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R047829", + "___id": "T000002R047799", "___s": true }, { @@ -473508,7 +474253,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R047830", + "___id": "T000002R047800", "___s": true }, { @@ -473559,7 +474304,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R047831", + "___id": "T000002R047801", "___s": true }, { @@ -473610,7 +474355,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R047832", + "___id": "T000002R047802", "___s": true }, { @@ -473671,7 +474416,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R047833", + "___id": "T000002R047803", "___s": true }, { @@ -473710,7 +474455,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R047834", + "___id": "T000002R047804", "___s": true }, { @@ -473798,7 +474543,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R047835", + "___id": "T000002R047805", "___s": true }, { @@ -473864,7 +474609,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R047836", + "___id": "T000002R047806", "___s": true }, { @@ -473915,7 +474660,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R047837", + "___id": "T000002R047807", "___s": true }, { @@ -473983,7 +474728,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R047838", + "___id": "T000002R047808", "___s": true }, { @@ -474079,11 +474824,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R047839", + "___id": "T000002R047809", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -474113,16 +474858,33 @@ ], "memberof": "Phaser.GameObjects.DOMElement", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R047840", + "___id": "T000002R047810", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -474149,16 +474911,33 @@ ], "memberof": "Phaser.GameObjects.DOMElement", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R047841", + "___id": "T000002R047811", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -474172,14 +474951,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R047842", + "___id": "T000002R047812", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -474193,14 +474972,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R047843", + "___id": "T000002R047813", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -474231,14 +475010,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R047844", + "___id": "T000002R047814", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -474266,14 +475045,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R047845", + "___id": "T000002R047815", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -474310,14 +475089,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R047846", + "___id": "T000002R047816", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -474376,14 +475155,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R047847", + "___id": "T000002R047817", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -474412,14 +475191,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R047848", + "___id": "T000002R047818", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -474452,14 +475231,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R047849", + "___id": "T000002R047819", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -474488,14 +475267,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R047850", + "___id": "T000002R047820", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -474529,7 +475308,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R047851", + "___id": "T000002R047821", "___s": true }, { @@ -474550,7 +475329,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R047852", + "___id": "T000002R047822", "___s": true }, { @@ -474602,7 +475381,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R047853", + "___id": "T000002R047823", "___s": true }, { @@ -474671,7 +475450,7 @@ "name": "event" } ], - "___id": "T000002R047854", + "___id": "T000002R047824", "___s": true }, { @@ -474731,7 +475510,7 @@ "name": "event" } ], - "___id": "T000002R047855", + "___id": "T000002R047825", "___s": true }, { @@ -474806,7 +475585,7 @@ "name": "args" } ], - "___id": "T000002R047856", + "___id": "T000002R047826", "___s": true }, { @@ -474894,7 +475673,7 @@ "name": "context" } ], - "___id": "T000002R047857", + "___id": "T000002R047827", "___s": true }, { @@ -474982,7 +475761,7 @@ "name": "context" } ], - "___id": "T000002R047858", + "___id": "T000002R047828", "___s": true }, { @@ -475084,7 +475863,7 @@ "name": "once" } ], - "___id": "T000002R047859", + "___id": "T000002R047829", "___s": true }, { @@ -475146,7 +475925,7 @@ "name": "event" } ], - "___id": "T000002R047860", + "___id": "T000002R047830", "___s": true }, { @@ -475182,7 +475961,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R047862", + "___id": "T000002R047832", "___s": true }, { @@ -475235,7 +476014,7 @@ ], "inherits": "Phaser.GameObjects.Components.AlphaSingle#setAlpha", "inherited": true, - "___id": "T000002R047863", + "___id": "T000002R047833", "___s": true }, { @@ -475265,7 +476044,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R047864", + "___id": "T000002R047834", "___s": true }, { @@ -475310,7 +476089,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R047866", + "___id": "T000002R047836", "___s": true }, { @@ -475376,7 +476155,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R047867", + "___id": "T000002R047837", "___s": true }, { @@ -475406,7 +476185,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R047869", + "___id": "T000002R047839", "___s": true }, { @@ -475457,7 +476236,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R047870", + "___id": "T000002R047840", "___s": true }, { @@ -475493,7 +476272,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R047871", + "___id": "T000002R047841", "___s": true }, { @@ -475529,7 +476308,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R047872", + "___id": "T000002R047842", "___s": true }, { @@ -475580,7 +476359,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R047873", + "___id": "T000002R047843", "___s": true }, { @@ -475631,7 +476410,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R047874", + "___id": "T000002R047844", "___s": true }, { @@ -475663,7 +476442,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R047876", + "___id": "T000002R047846", "___s": true }, { @@ -475695,7 +476474,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R047877", + "___id": "T000002R047847", "___s": true }, { @@ -475725,7 +476504,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R047878", + "___id": "T000002R047848", "___s": true }, { @@ -475755,7 +476534,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R047879", + "___id": "T000002R047849", "___s": true }, { @@ -475823,7 +476602,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R047880", + "___id": "T000002R047850", "___s": true }, { @@ -475859,7 +476638,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R047881", + "___id": "T000002R047851", "___s": true }, { @@ -475927,7 +476706,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R047882", + "___id": "T000002R047852", "___s": true }, { @@ -475963,7 +476742,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R047883", + "___id": "T000002R047853", "___s": true }, { @@ -475994,7 +476773,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R047884", + "___id": "T000002R047854", "___s": true }, { @@ -476025,7 +476804,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R047885", + "___id": "T000002R047855", "___s": true }, { @@ -476091,7 +476870,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R047886", + "___id": "T000002R047856", "___s": true }, { @@ -476123,7 +476902,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R047887", + "___id": "T000002R047857", "___s": true }, { @@ -476154,7 +476933,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R047891", + "___id": "T000002R047861", "___s": true }, { @@ -476185,7 +476964,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R047892", + "___id": "T000002R047862", "___s": true }, { @@ -476216,7 +476995,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R047893", + "___id": "T000002R047863", "___s": true }, { @@ -476247,7 +477026,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R047894", + "___id": "T000002R047864", "___s": true }, { @@ -476278,7 +477057,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R047895", + "___id": "T000002R047865", "___s": true }, { @@ -476309,7 +477088,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R047896", + "___id": "T000002R047866", "___s": true }, { @@ -476340,7 +477119,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R047897", + "___id": "T000002R047867", "___s": true }, { @@ -476371,7 +477150,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R047898", + "___id": "T000002R047868", "___s": true }, { @@ -476402,7 +477181,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R047899", + "___id": "T000002R047869", "___s": true }, { @@ -476500,7 +477279,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R047900", + "___id": "T000002R047870", "___s": true }, { @@ -476566,7 +477345,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R047901", + "___id": "T000002R047871", "___s": true }, { @@ -476662,7 +477441,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R047902", + "___id": "T000002R047872", "___s": true }, { @@ -476715,7 +477494,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R047903", + "___id": "T000002R047873", "___s": true }, { @@ -476768,7 +477547,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R047904", + "___id": "T000002R047874", "___s": true }, { @@ -476836,7 +477615,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R047905", + "___id": "T000002R047875", "___s": true }, { @@ -476889,7 +477668,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R047906", + "___id": "T000002R047876", "___s": true }, { @@ -476942,7 +477721,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R047907", + "___id": "T000002R047877", "___s": true }, { @@ -476995,7 +477774,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R047908", + "___id": "T000002R047878", "___s": true }, { @@ -477048,7 +477827,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R047909", + "___id": "T000002R047879", "___s": true }, { @@ -477099,7 +477878,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R047910", + "___id": "T000002R047880", "___s": true }, { @@ -477164,7 +477943,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R047911", + "___id": "T000002R047881", "___s": true }, { @@ -477255,7 +478034,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R047912", + "___id": "T000002R047882", "___s": true }, { @@ -477290,7 +478069,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R047913", + "___id": "T000002R047883", "___s": true }, { @@ -477320,7 +478099,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R047915", + "___id": "T000002R047885", "___s": true }, { @@ -477371,7 +478150,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R047916", + "___id": "T000002R047886", "___s": true }, { @@ -477401,7 +478180,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R047917", + "___id": "T000002R047887", "___s": true }, { @@ -477442,7 +478221,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R047918", + "___id": "T000002R047888", "___s": true }, { @@ -477472,7 +478251,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R047919", + "___id": "T000002R047889", "___s": true }, { @@ -477512,7 +478291,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R047920", + "___id": "T000002R047890", "___s": true }, { @@ -477542,7 +478321,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R047921", + "___id": "T000002R047891", "___s": true }, { @@ -477573,7 +478352,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R047922", + "___id": "T000002R047892", "___s": true }, { @@ -477604,7 +478383,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R047923", + "___id": "T000002R047893", "___s": true }, { @@ -477635,7 +478414,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R047924", + "___id": "T000002R047894", "___s": true }, { @@ -477666,7 +478445,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R047925", + "___id": "T000002R047895", "___s": true }, { @@ -477697,7 +478476,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R047926", + "___id": "T000002R047896", "___s": true }, { @@ -477731,7 +478510,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R047927", + "___id": "T000002R047897", "___s": true }, { @@ -477764,7 +478543,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R047928", + "___id": "T000002R047898", "___s": true }, { @@ -477812,7 +478591,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R047929", + "___id": "T000002R047899", "___s": true }, { @@ -477843,7 +478622,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R047930", + "___id": "T000002R047900", "___s": true }, { @@ -477894,7 +478673,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R047931", + "___id": "T000002R047901", "___s": true }, { @@ -477945,7 +478724,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R047932", + "___id": "T000002R047902", "___s": true }, { @@ -478006,7 +478785,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R047933", + "___id": "T000002R047903", "___s": true }, { @@ -478045,7 +478824,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R047934", + "___id": "T000002R047904", "___s": true }, { @@ -478133,7 +478912,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R047935", + "___id": "T000002R047905", "___s": true }, { @@ -478199,7 +478978,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R047936", + "___id": "T000002R047906", "___s": true }, { @@ -478250,7 +479029,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R047937", + "___id": "T000002R047907", "___s": true }, { @@ -478318,7 +479097,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R047938", + "___id": "T000002R047908", "___s": true }, { @@ -478414,11 +479193,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R047939", + "___id": "T000002R047909", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -478448,16 +479227,33 @@ ], "memberof": "Phaser.GameObjects.Extern", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R047940", + "___id": "T000002R047910", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -478484,16 +479280,33 @@ ], "memberof": "Phaser.GameObjects.Extern", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R047941", + "___id": "T000002R047911", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -478507,14 +479320,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R047942", + "___id": "T000002R047912", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -478528,14 +479341,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R047943", + "___id": "T000002R047913", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -478566,14 +479379,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R047944", + "___id": "T000002R047914", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -478601,14 +479414,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R047945", + "___id": "T000002R047915", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -478651,14 +479464,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R047946", + "___id": "T000002R047916", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -478695,14 +479508,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R047947", + "___id": "T000002R047917", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -478761,14 +479574,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R047948", + "___id": "T000002R047918", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -478797,14 +479610,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R047949", + "___id": "T000002R047919", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -478837,14 +479650,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R047950", + "___id": "T000002R047920", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -478873,14 +479686,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R047951", + "___id": "T000002R047921", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -478914,7 +479727,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R047952", + "___id": "T000002R047922", "___s": true }, { @@ -478935,7 +479748,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R047953", + "___id": "T000002R047923", "___s": true }, { @@ -478987,7 +479800,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R047954", + "___id": "T000002R047924", "___s": true }, { @@ -479056,7 +479869,7 @@ "name": "event" } ], - "___id": "T000002R047955", + "___id": "T000002R047925", "___s": true }, { @@ -479116,7 +479929,7 @@ "name": "event" } ], - "___id": "T000002R047956", + "___id": "T000002R047926", "___s": true }, { @@ -479191,7 +480004,7 @@ "name": "args" } ], - "___id": "T000002R047957", + "___id": "T000002R047927", "___s": true }, { @@ -479279,7 +480092,7 @@ "name": "context" } ], - "___id": "T000002R047958", + "___id": "T000002R047928", "___s": true }, { @@ -479367,7 +480180,7 @@ "name": "context" } ], - "___id": "T000002R047959", + "___id": "T000002R047929", "___s": true }, { @@ -479455,7 +480268,7 @@ "name": "context" } ], - "___id": "T000002R047960", + "___id": "T000002R047930", "___s": true }, { @@ -479557,7 +480370,7 @@ "name": "once" } ], - "___id": "T000002R047961", + "___id": "T000002R047931", "___s": true }, { @@ -479659,7 +480472,7 @@ "name": "once" } ], - "___id": "T000002R047962", + "___id": "T000002R047932", "___s": true }, { @@ -479721,7 +480534,7 @@ "name": "event" } ], - "___id": "T000002R047963", + "___id": "T000002R047933", "___s": true }, { @@ -479757,7 +480570,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R047969", + "___id": "T000002R047939", "___s": true }, { @@ -479852,7 +480665,7 @@ ], "inherits": "Phaser.GameObjects.Components.Alpha#setAlpha", "inherited": true, - "___id": "T000002R047970", + "___id": "T000002R047940", "___s": true }, { @@ -479882,7 +480695,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, - "___id": "T000002R047971", + "___id": "T000002R047941", "___s": true }, { @@ -479919,7 +480732,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R047972", + "___id": "T000002R047942", "___s": true }, { @@ -479956,7 +480769,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R047973", + "___id": "T000002R047943", "___s": true }, { @@ -479993,7 +480806,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R047974", + "___id": "T000002R047944", "___s": true }, { @@ -480030,7 +480843,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R047975", + "___id": "T000002R047945", "___s": true }, { @@ -480075,7 +480888,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R047977", + "___id": "T000002R047947", "___s": true }, { @@ -480141,7 +480954,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R047978", + "___id": "T000002R047948", "___s": true }, { @@ -480171,7 +480984,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R047980", + "___id": "T000002R047950", "___s": true }, { @@ -480222,7 +481035,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R047981", + "___id": "T000002R047951", "___s": true }, { @@ -480258,7 +481071,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R047982", + "___id": "T000002R047952", "___s": true }, { @@ -480294,7 +481107,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R047983", + "___id": "T000002R047953", "___s": true }, { @@ -480345,7 +481158,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R047984", + "___id": "T000002R047954", "___s": true }, { @@ -480396,7 +481209,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R047985", + "___id": "T000002R047955", "___s": true }, { @@ -480427,7 +481240,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, - "___id": "T000002R047986", + "___id": "T000002R047956", "___s": true }, { @@ -480458,7 +481271,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, - "___id": "T000002R047987", + "___id": "T000002R047957", "___s": true }, { @@ -480494,7 +481307,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, - "___id": "T000002R047988", + "___id": "T000002R047958", "___s": true }, { @@ -480530,7 +481343,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, - "___id": "T000002R047989", + "___id": "T000002R047959", "___s": true }, { @@ -480581,7 +481394,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipX", "inherited": true, - "___id": "T000002R047990", + "___id": "T000002R047960", "___s": true }, { @@ -480632,7 +481445,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipY", "inherited": true, - "___id": "T000002R047991", + "___id": "T000002R047961", "___s": true }, { @@ -480696,7 +481509,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlip", "inherited": true, - "___id": "T000002R047992", + "___id": "T000002R047962", "___s": true }, { @@ -480732,7 +481545,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, - "___id": "T000002R047993", + "___id": "T000002R047963", "___s": true }, { @@ -480764,7 +481577,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R047995", + "___id": "T000002R047965", "___s": true }, { @@ -480796,7 +481609,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R047996", + "___id": "T000002R047966", "___s": true }, { @@ -480826,7 +481639,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R047997", + "___id": "T000002R047967", "___s": true }, { @@ -480856,7 +481669,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R047998", + "___id": "T000002R047968", "___s": true }, { @@ -480924,7 +481737,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R047999", + "___id": "T000002R047969", "___s": true }, { @@ -480960,7 +481773,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R048000", + "___id": "T000002R047970", "___s": true }, { @@ -481028,7 +481841,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R048001", + "___id": "T000002R047971", "___s": true }, { @@ -481064,7 +481877,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R048002", + "___id": "T000002R047972", "___s": true }, { @@ -481095,7 +481908,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R048003", + "___id": "T000002R047973", "___s": true }, { @@ -481126,7 +481939,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R048004", + "___id": "T000002R047974", "___s": true }, { @@ -481192,7 +482005,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R048005", + "___id": "T000002R047975", "___s": true }, { @@ -481222,7 +482035,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, - "___id": "T000002R048007", + "___id": "T000002R047977", "___s": true }, { @@ -481252,7 +482065,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, - "___id": "T000002R048008", + "___id": "T000002R047978", "___s": true }, { @@ -481282,7 +482095,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, - "___id": "T000002R048009", + "___id": "T000002R047979", "___s": true }, { @@ -481312,7 +482125,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, - "___id": "T000002R048010", + "___id": "T000002R047980", "___s": true }, { @@ -481374,7 +482187,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setSizeToFrame", "inherited": true, - "___id": "T000002R048011", + "___id": "T000002R047981", "___s": true }, { @@ -481438,7 +482251,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setSize", "inherited": true, - "___id": "T000002R048012", + "___id": "T000002R047982", "___s": true }, { @@ -481502,7 +482315,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setDisplaySize", "inherited": true, - "___id": "T000002R048013", + "___id": "T000002R047983", "___s": true }, { @@ -481542,7 +482355,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#texture", "inherited": true, - "___id": "T000002R048014", + "___id": "T000002R047984", "___s": true }, { @@ -481572,7 +482385,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#frame", "inherited": true, - "___id": "T000002R048015", + "___id": "T000002R047985", "___s": true }, { @@ -481687,7 +482500,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setTexture", "inherited": true, - "___id": "T000002R048017", + "___id": "T000002R047987", "___s": true }, { @@ -481783,7 +482596,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setFrame", "inherited": true, - "___id": "T000002R048018", + "___id": "T000002R047988", "___s": true }, { @@ -481814,7 +482627,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, - "___id": "T000002R048019", + "___id": "T000002R047989", "___s": true }, { @@ -481845,7 +482658,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, - "___id": "T000002R048020", + "___id": "T000002R047990", "___s": true }, { @@ -481876,7 +482689,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, - "___id": "T000002R048021", + "___id": "T000002R047991", "___s": true }, { @@ -481907,7 +482720,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, - "___id": "T000002R048022", + "___id": "T000002R047992", "___s": true }, { @@ -481938,7 +482751,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, - "___id": "T000002R048023", + "___id": "T000002R047993", "___s": true }, { @@ -481981,7 +482794,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, - "___id": "T000002R048024", + "___id": "T000002R047994", "___s": true }, { @@ -482083,7 +482896,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTint", "inherited": true, - "___id": "T000002R048025", + "___id": "T000002R047995", "___s": true }, { @@ -482185,7 +482998,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTintFill", "inherited": true, - "___id": "T000002R048026", + "___id": "T000002R047996", "___s": true }, { @@ -482222,7 +483035,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, - "___id": "T000002R048027", + "___id": "T000002R047997", "___s": true }, { @@ -482260,7 +483073,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, - "___id": "T000002R048028", + "___id": "T000002R047998", "___s": true }, { @@ -482292,7 +483105,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R048029", + "___id": "T000002R047999", "___s": true }, { @@ -482323,7 +483136,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R048033", + "___id": "T000002R048003", "___s": true }, { @@ -482354,7 +483167,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R048034", + "___id": "T000002R048004", "___s": true }, { @@ -482385,7 +483198,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R048035", + "___id": "T000002R048005", "___s": true }, { @@ -482416,7 +483229,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R048036", + "___id": "T000002R048006", "___s": true }, { @@ -482447,7 +483260,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R048037", + "___id": "T000002R048007", "___s": true }, { @@ -482478,7 +483291,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R048038", + "___id": "T000002R048008", "___s": true }, { @@ -482509,7 +483322,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R048039", + "___id": "T000002R048009", "___s": true }, { @@ -482540,7 +483353,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R048040", + "___id": "T000002R048010", "___s": true }, { @@ -482571,7 +483384,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R048041", + "___id": "T000002R048011", "___s": true }, { @@ -482669,7 +483482,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R048042", + "___id": "T000002R048012", "___s": true }, { @@ -482735,7 +483548,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R048043", + "___id": "T000002R048013", "___s": true }, { @@ -482831,7 +483644,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R048044", + "___id": "T000002R048014", "___s": true }, { @@ -482884,7 +483697,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R048045", + "___id": "T000002R048015", "___s": true }, { @@ -482937,7 +483750,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R048046", + "___id": "T000002R048016", "___s": true }, { @@ -483005,7 +483818,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R048047", + "___id": "T000002R048017", "___s": true }, { @@ -483058,7 +483871,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R048048", + "___id": "T000002R048018", "___s": true }, { @@ -483111,7 +483924,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R048049", + "___id": "T000002R048019", "___s": true }, { @@ -483164,7 +483977,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R048050", + "___id": "T000002R048020", "___s": true }, { @@ -483217,7 +484030,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R048051", + "___id": "T000002R048021", "___s": true }, { @@ -483268,7 +484081,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R048052", + "___id": "T000002R048022", "___s": true }, { @@ -483333,7 +484146,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R048053", + "___id": "T000002R048023", "___s": true }, { @@ -483424,7 +484237,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R048054", + "___id": "T000002R048024", "___s": true }, { @@ -483459,7 +484272,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R048055", + "___id": "T000002R048025", "___s": true }, { @@ -483489,7 +484302,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R048057", + "___id": "T000002R048027", "___s": true }, { @@ -483540,7 +484353,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R048058", + "___id": "T000002R048028", "___s": true }, { @@ -483570,7 +484383,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R048059", + "___id": "T000002R048029", "___s": true }, { @@ -483611,7 +484424,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R048060", + "___id": "T000002R048030", "___s": true }, { @@ -483641,7 +484454,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R048061", + "___id": "T000002R048031", "___s": true }, { @@ -483681,7 +484494,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R048062", + "___id": "T000002R048032", "___s": true }, { @@ -483711,7 +484524,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R048063", + "___id": "T000002R048033", "___s": true }, { @@ -483742,7 +484555,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R048064", + "___id": "T000002R048034", "___s": true }, { @@ -483773,7 +484586,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R048065", + "___id": "T000002R048035", "___s": true }, { @@ -483804,7 +484617,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R048066", + "___id": "T000002R048036", "___s": true }, { @@ -483835,7 +484648,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R048067", + "___id": "T000002R048037", "___s": true }, { @@ -483866,7 +484679,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R048068", + "___id": "T000002R048038", "___s": true }, { @@ -483900,7 +484713,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R048069", + "___id": "T000002R048039", "___s": true }, { @@ -483933,7 +484746,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R048070", + "___id": "T000002R048040", "___s": true }, { @@ -483981,7 +484794,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R048071", + "___id": "T000002R048041", "___s": true }, { @@ -484012,7 +484825,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R048072", + "___id": "T000002R048042", "___s": true }, { @@ -484063,7 +484876,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R048073", + "___id": "T000002R048043", "___s": true }, { @@ -484114,7 +484927,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R048074", + "___id": "T000002R048044", "___s": true }, { @@ -484175,7 +484988,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R048075", + "___id": "T000002R048045", "___s": true }, { @@ -484214,7 +485027,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R048076", + "___id": "T000002R048046", "___s": true }, { @@ -484302,7 +485115,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R048077", + "___id": "T000002R048047", "___s": true }, { @@ -484368,7 +485181,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R048078", + "___id": "T000002R048048", "___s": true }, { @@ -484419,7 +485232,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R048079", + "___id": "T000002R048049", "___s": true }, { @@ -484487,7 +485300,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R048080", + "___id": "T000002R048050", "___s": true }, { @@ -484583,11 +485396,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R048081", + "___id": "T000002R048051", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -484617,16 +485430,33 @@ ], "memberof": "Phaser.GameObjects.Graphics", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R048082", + "___id": "T000002R048052", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -484653,16 +485483,33 @@ ], "memberof": "Phaser.GameObjects.Graphics", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R048083", + "___id": "T000002R048053", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -484676,14 +485523,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R048084", + "___id": "T000002R048054", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -484697,14 +485544,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R048085", + "___id": "T000002R048055", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -484735,14 +485582,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R048086", + "___id": "T000002R048056", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -484770,14 +485617,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R048087", + "___id": "T000002R048057", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -484820,14 +485667,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R048088", + "___id": "T000002R048058", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -484864,14 +485711,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R048089", + "___id": "T000002R048059", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -484930,14 +485777,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R048090", + "___id": "T000002R048060", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -484966,14 +485813,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R048091", + "___id": "T000002R048061", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -485006,14 +485853,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R048092", + "___id": "T000002R048062", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -485042,14 +485889,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R048093", + "___id": "T000002R048063", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -485083,7 +485930,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R048094", + "___id": "T000002R048064", "___s": true }, { @@ -485104,7 +485951,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R048095", + "___id": "T000002R048065", "___s": true }, { @@ -485156,7 +486003,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R048096", + "___id": "T000002R048066", "___s": true }, { @@ -485225,7 +486072,7 @@ "name": "event" } ], - "___id": "T000002R048097", + "___id": "T000002R048067", "___s": true }, { @@ -485285,7 +486132,7 @@ "name": "event" } ], - "___id": "T000002R048098", + "___id": "T000002R048068", "___s": true }, { @@ -485360,7 +486207,7 @@ "name": "args" } ], - "___id": "T000002R048099", + "___id": "T000002R048069", "___s": true }, { @@ -485448,7 +486295,7 @@ "name": "context" } ], - "___id": "T000002R048100", + "___id": "T000002R048070", "___s": true }, { @@ -485536,7 +486383,7 @@ "name": "context" } ], - "___id": "T000002R048101", + "___id": "T000002R048071", "___s": true }, { @@ -485624,7 +486471,7 @@ "name": "context" } ], - "___id": "T000002R048102", + "___id": "T000002R048072", "___s": true }, { @@ -485726,7 +486573,7 @@ "name": "once" } ], - "___id": "T000002R048103", + "___id": "T000002R048073", "___s": true }, { @@ -485828,7 +486675,7 @@ "name": "once" } ], - "___id": "T000002R048104", + "___id": "T000002R048074", "___s": true }, { @@ -485890,7 +486737,7 @@ "name": "event" } ], - "___id": "T000002R048105", + "___id": "T000002R048075", "___s": true }, { @@ -485926,7 +486773,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R048107", + "___id": "T000002R048077", "___s": true }, { @@ -485979,7 +486826,7 @@ ], "inherits": "Phaser.GameObjects.Components.AlphaSingle#setAlpha", "inherited": true, - "___id": "T000002R048108", + "___id": "T000002R048078", "___s": true }, { @@ -486009,7 +486856,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R048109", + "___id": "T000002R048079", "___s": true }, { @@ -486054,7 +486901,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R048111", + "___id": "T000002R048081", "___s": true }, { @@ -486120,7 +486967,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R048112", + "___id": "T000002R048082", "___s": true }, { @@ -486150,7 +486997,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R048114", + "___id": "T000002R048084", "___s": true }, { @@ -486201,7 +487048,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R048115", + "___id": "T000002R048085", "___s": true }, { @@ -486237,7 +487084,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R048116", + "___id": "T000002R048086", "___s": true }, { @@ -486273,7 +487120,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R048117", + "___id": "T000002R048087", "___s": true }, { @@ -486324,7 +487171,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R048118", + "___id": "T000002R048088", "___s": true }, { @@ -486375,7 +487222,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R048119", + "___id": "T000002R048089", "___s": true }, { @@ -486415,7 +487262,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R048120", + "___id": "T000002R048090", "___s": true }, { @@ -486476,7 +487323,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R048121", + "___id": "T000002R048091", "___s": true }, { @@ -486529,7 +487376,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R048122", + "___id": "T000002R048092", "___s": true }, { @@ -486691,7 +487538,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R048123", + "___id": "T000002R048093", "___s": true }, { @@ -486772,7 +487619,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R048124", + "___id": "T000002R048094", "___s": true }, { @@ -486810,7 +487657,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R048125", + "___id": "T000002R048095", "___s": true }, { @@ -486848,7 +487695,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R048126", + "___id": "T000002R048096", "___s": true }, { @@ -486885,7 +487732,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R048127", + "___id": "T000002R048097", "___s": true }, { @@ -486953,7 +487800,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R048128", + "___id": "T000002R048098", "___s": true }, { @@ -487050,7 +487897,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R048129", + "___id": "T000002R048099", "___s": true }, { @@ -487122,7 +487969,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R048130", + "___id": "T000002R048100", "___s": true }, { @@ -487181,7 +488028,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R048131", + "___id": "T000002R048101", "___s": true }, { @@ -487225,7 +488072,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R048132", + "___id": "T000002R048102", "___s": true }, { @@ -487262,7 +488109,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R048133", + "___id": "T000002R048103", "___s": true }, { @@ -487308,7 +488155,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R048134", + "___id": "T000002R048104", "___s": true }, { @@ -487345,7 +488192,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R048135", + "___id": "T000002R048105", "___s": true }, { @@ -487384,7 +488231,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R048136", + "___id": "T000002R048106", "___s": true }, { @@ -487421,7 +488268,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R048137", + "___id": "T000002R048107", "___s": true }, { @@ -487466,7 +488313,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R048138", + "___id": "T000002R048108", "___s": true }, { @@ -487610,7 +488457,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R048139", + "___id": "T000002R048109", "___s": true }, { @@ -487682,7 +488529,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R048140", + "___id": "T000002R048110", "___s": true }, { @@ -487773,7 +488620,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R048141", + "___id": "T000002R048111", "___s": true }, { @@ -487818,7 +488665,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R048142", + "___id": "T000002R048112", "___s": true }, { @@ -487886,7 +488733,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R048143", + "___id": "T000002R048113", "___s": true }, { @@ -487929,7 +488776,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R048144", + "___id": "T000002R048114", "___s": true }, { @@ -487961,7 +488808,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R048145", + "___id": "T000002R048115", "___s": true }, { @@ -487992,7 +488839,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R048149", + "___id": "T000002R048119", "___s": true }, { @@ -488023,7 +488870,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R048150", + "___id": "T000002R048120", "___s": true }, { @@ -488054,7 +488901,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R048151", + "___id": "T000002R048121", "___s": true }, { @@ -488085,7 +488932,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R048152", + "___id": "T000002R048122", "___s": true }, { @@ -488116,7 +488963,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R048153", + "___id": "T000002R048123", "___s": true }, { @@ -488147,7 +488994,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R048154", + "___id": "T000002R048124", "___s": true }, { @@ -488178,7 +489025,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R048155", + "___id": "T000002R048125", "___s": true }, { @@ -488209,7 +489056,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R048156", + "___id": "T000002R048126", "___s": true }, { @@ -488240,7 +489087,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R048157", + "___id": "T000002R048127", "___s": true }, { @@ -488338,7 +489185,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R048158", + "___id": "T000002R048128", "___s": true }, { @@ -488404,7 +489251,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R048159", + "___id": "T000002R048129", "___s": true }, { @@ -488500,7 +489347,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R048160", + "___id": "T000002R048130", "___s": true }, { @@ -488553,7 +489400,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R048161", + "___id": "T000002R048131", "___s": true }, { @@ -488606,7 +489453,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R048162", + "___id": "T000002R048132", "___s": true }, { @@ -488674,7 +489521,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R048163", + "___id": "T000002R048133", "___s": true }, { @@ -488727,7 +489574,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R048164", + "___id": "T000002R048134", "___s": true }, { @@ -488780,7 +489627,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R048165", + "___id": "T000002R048135", "___s": true }, { @@ -488833,7 +489680,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R048166", + "___id": "T000002R048136", "___s": true }, { @@ -488886,7 +489733,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R048167", + "___id": "T000002R048137", "___s": true }, { @@ -488937,7 +489784,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R048168", + "___id": "T000002R048138", "___s": true }, { @@ -489002,7 +489849,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R048169", + "___id": "T000002R048139", "___s": true }, { @@ -489093,7 +489940,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R048170", + "___id": "T000002R048140", "___s": true }, { @@ -489128,7 +489975,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R048171", + "___id": "T000002R048141", "___s": true }, { @@ -489158,7 +490005,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R048173", + "___id": "T000002R048143", "___s": true }, { @@ -489209,7 +490056,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R048174", + "___id": "T000002R048144", "___s": true }, { @@ -489240,7 +490087,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R048175", + "___id": "T000002R048145", "___s": true }, { @@ -489271,7 +490118,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R048176", + "___id": "T000002R048146", "___s": true }, { @@ -489337,7 +490184,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R048177", + "___id": "T000002R048147", "___s": true }, { @@ -489358,7 +490205,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R048178", + "___id": "T000002R048148", "___s": true }, { @@ -489410,7 +490257,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R048179", + "___id": "T000002R048149", "___s": true }, { @@ -489479,7 +490326,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R048180", + "___id": "T000002R048150", "___s": true }, { @@ -489539,7 +490386,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R048181", + "___id": "T000002R048151", "___s": true }, { @@ -489614,7 +490461,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R048182", + "___id": "T000002R048152", "___s": true }, { @@ -489702,7 +490549,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R048183", + "___id": "T000002R048153", "___s": true }, { @@ -489790,7 +490637,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R048184", + "___id": "T000002R048154", "___s": true }, { @@ -489878,7 +490725,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R048185", + "___id": "T000002R048155", "___s": true }, { @@ -489980,7 +490827,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R048186", + "___id": "T000002R048156", "___s": true }, { @@ -490082,7 +490929,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R048187", + "___id": "T000002R048157", "___s": true }, { @@ -490144,7 +490991,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R048188", + "___id": "T000002R048158", "___s": true }, { @@ -490174,7 +491021,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R048189", + "___id": "T000002R048159", "___s": true }, { @@ -490215,7 +491062,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R048190", + "___id": "T000002R048160", "___s": true }, { @@ -490245,7 +491092,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R048191", + "___id": "T000002R048161", "___s": true }, { @@ -490285,7 +491132,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R048192", + "___id": "T000002R048162", "___s": true }, { @@ -490315,7 +491162,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R048193", + "___id": "T000002R048163", "___s": true }, { @@ -490346,7 +491193,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R048194", + "___id": "T000002R048164", "___s": true }, { @@ -490377,7 +491224,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R048195", + "___id": "T000002R048165", "___s": true }, { @@ -490408,7 +491255,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R048196", + "___id": "T000002R048166", "___s": true }, { @@ -490439,7 +491286,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R048197", + "___id": "T000002R048167", "___s": true }, { @@ -490470,7 +491317,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R048198", + "___id": "T000002R048168", "___s": true }, { @@ -490504,7 +491351,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R048199", + "___id": "T000002R048169", "___s": true }, { @@ -490537,7 +491384,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R048200", + "___id": "T000002R048170", "___s": true }, { @@ -490585,7 +491432,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R048201", + "___id": "T000002R048171", "___s": true }, { @@ -490616,7 +491463,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R048202", + "___id": "T000002R048172", "___s": true }, { @@ -490667,7 +491514,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R048203", + "___id": "T000002R048173", "___s": true }, { @@ -490718,7 +491565,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R048204", + "___id": "T000002R048174", "___s": true }, { @@ -490779,7 +491626,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R048205", + "___id": "T000002R048175", "___s": true }, { @@ -490818,7 +491665,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R048206", + "___id": "T000002R048176", "___s": true }, { @@ -490906,7 +491753,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R048207", + "___id": "T000002R048177", "___s": true }, { @@ -490972,7 +491819,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R048208", + "___id": "T000002R048178", "___s": true }, { @@ -491023,7 +491870,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R048209", + "___id": "T000002R048179", "___s": true }, { @@ -491091,7 +491938,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R048210", + "___id": "T000002R048180", "___s": true }, { @@ -491187,11 +492034,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R048211", + "___id": "T000002R048181", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -491221,16 +492068,33 @@ ], "memberof": "Phaser.GameObjects.Image", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R048212", + "___id": "T000002R048182", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -491257,16 +492121,33 @@ ], "memberof": "Phaser.GameObjects.Image", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R048213", + "___id": "T000002R048183", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -491280,14 +492161,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R048214", + "___id": "T000002R048184", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -491301,14 +492182,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R048215", + "___id": "T000002R048185", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -491339,14 +492220,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R048216", + "___id": "T000002R048186", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -491374,14 +492255,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R048217", + "___id": "T000002R048187", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -491424,14 +492305,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R048218", + "___id": "T000002R048188", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -491468,14 +492349,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R048219", + "___id": "T000002R048189", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -491534,14 +492415,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R048220", + "___id": "T000002R048190", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -491570,14 +492451,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R048221", + "___id": "T000002R048191", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -491610,14 +492491,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R048222", + "___id": "T000002R048192", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -491646,14 +492527,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R048223", + "___id": "T000002R048193", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -491687,7 +492568,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R048224", + "___id": "T000002R048194", "___s": true }, { @@ -491708,7 +492589,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R048225", + "___id": "T000002R048195", "___s": true }, { @@ -491760,7 +492641,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R048226", + "___id": "T000002R048196", "___s": true }, { @@ -491829,7 +492710,7 @@ "name": "event" } ], - "___id": "T000002R048227", + "___id": "T000002R048197", "___s": true }, { @@ -491889,7 +492770,7 @@ "name": "event" } ], - "___id": "T000002R048228", + "___id": "T000002R048198", "___s": true }, { @@ -491964,7 +492845,7 @@ "name": "args" } ], - "___id": "T000002R048229", + "___id": "T000002R048199", "___s": true }, { @@ -492052,7 +492933,7 @@ "name": "context" } ], - "___id": "T000002R048230", + "___id": "T000002R048200", "___s": true }, { @@ -492140,7 +493021,7 @@ "name": "context" } ], - "___id": "T000002R048231", + "___id": "T000002R048201", "___s": true }, { @@ -492228,7 +493109,7 @@ "name": "context" } ], - "___id": "T000002R048232", + "___id": "T000002R048202", "___s": true }, { @@ -492330,7 +493211,7 @@ "name": "once" } ], - "___id": "T000002R048233", + "___id": "T000002R048203", "___s": true }, { @@ -492432,7 +493313,7 @@ "name": "once" } ], - "___id": "T000002R048234", + "___id": "T000002R048204", "___s": true }, { @@ -492494,7 +493375,7 @@ "name": "event" } ], - "___id": "T000002R048235", + "___id": "T000002R048205", "___s": true }, { @@ -492530,7 +493411,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R048241", + "___id": "T000002R048211", "___s": true }, { @@ -492625,7 +493506,7 @@ ], "inherits": "Phaser.GameObjects.Components.Alpha#setAlpha", "inherited": true, - "___id": "T000002R048242", + "___id": "T000002R048212", "___s": true }, { @@ -492655,7 +493536,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, - "___id": "T000002R048243", + "___id": "T000002R048213", "___s": true }, { @@ -492692,7 +493573,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R048244", + "___id": "T000002R048214", "___s": true }, { @@ -492729,7 +493610,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R048245", + "___id": "T000002R048215", "___s": true }, { @@ -492766,7 +493647,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R048246", + "___id": "T000002R048216", "___s": true }, { @@ -492803,7 +493684,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R048247", + "___id": "T000002R048217", "___s": true }, { @@ -492848,7 +493729,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R048249", + "___id": "T000002R048219", "___s": true }, { @@ -492914,7 +493795,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R048250", + "___id": "T000002R048220", "___s": true }, { @@ -492944,7 +493825,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R048252", + "___id": "T000002R048222", "___s": true }, { @@ -492995,7 +493876,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R048253", + "___id": "T000002R048223", "___s": true }, { @@ -493031,7 +493912,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R048254", + "___id": "T000002R048224", "___s": true }, { @@ -493067,7 +493948,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R048255", + "___id": "T000002R048225", "___s": true }, { @@ -493118,7 +493999,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R048256", + "___id": "T000002R048226", "___s": true }, { @@ -493169,7 +494050,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R048257", + "___id": "T000002R048227", "___s": true }, { @@ -493200,7 +494081,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, - "___id": "T000002R048258", + "___id": "T000002R048228", "___s": true }, { @@ -493231,7 +494112,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, - "___id": "T000002R048259", + "___id": "T000002R048229", "___s": true }, { @@ -493267,7 +494148,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, - "___id": "T000002R048260", + "___id": "T000002R048230", "___s": true }, { @@ -493303,7 +494184,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, - "___id": "T000002R048261", + "___id": "T000002R048231", "___s": true }, { @@ -493354,7 +494235,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipX", "inherited": true, - "___id": "T000002R048262", + "___id": "T000002R048232", "___s": true }, { @@ -493405,7 +494286,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipY", "inherited": true, - "___id": "T000002R048263", + "___id": "T000002R048233", "___s": true }, { @@ -493469,7 +494350,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlip", "inherited": true, - "___id": "T000002R048264", + "___id": "T000002R048234", "___s": true }, { @@ -493505,7 +494386,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, - "___id": "T000002R048265", + "___id": "T000002R048235", "___s": true }, { @@ -493579,7 +494460,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getCenter", "inherited": true, - "___id": "T000002R048267", + "___id": "T000002R048237", "___s": true }, { @@ -493653,7 +494534,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "inherited": true, - "___id": "T000002R048268", + "___id": "T000002R048238", "___s": true }, { @@ -493727,7 +494608,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "inherited": true, - "___id": "T000002R048269", + "___id": "T000002R048239", "___s": true }, { @@ -493801,7 +494682,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopRight", "inherited": true, - "___id": "T000002R048270", + "___id": "T000002R048240", "___s": true }, { @@ -493875,7 +494756,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "inherited": true, - "___id": "T000002R048271", + "___id": "T000002R048241", "___s": true }, { @@ -493949,7 +494830,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "inherited": true, - "___id": "T000002R048272", + "___id": "T000002R048242", "___s": true }, { @@ -494023,7 +494904,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "inherited": true, - "___id": "T000002R048273", + "___id": "T000002R048243", "___s": true }, { @@ -494097,7 +494978,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "inherited": true, - "___id": "T000002R048274", + "___id": "T000002R048244", "___s": true }, { @@ -494171,7 +495052,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "inherited": true, - "___id": "T000002R048275", + "___id": "T000002R048245", "___s": true }, { @@ -494250,7 +495131,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBounds", "inherited": true, - "___id": "T000002R048276", + "___id": "T000002R048246", "___s": true }, { @@ -494290,7 +495171,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R048277", + "___id": "T000002R048247", "___s": true }, { @@ -494351,7 +495232,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R048278", + "___id": "T000002R048248", "___s": true }, { @@ -494404,7 +495285,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R048279", + "___id": "T000002R048249", "___s": true }, { @@ -494566,7 +495447,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R048280", + "___id": "T000002R048250", "___s": true }, { @@ -494647,7 +495528,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R048281", + "___id": "T000002R048251", "___s": true }, { @@ -494679,7 +495560,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R048283", + "___id": "T000002R048253", "___s": true }, { @@ -494711,7 +495592,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R048284", + "___id": "T000002R048254", "___s": true }, { @@ -494741,7 +495622,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R048285", + "___id": "T000002R048255", "___s": true }, { @@ -494771,7 +495652,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R048286", + "___id": "T000002R048256", "___s": true }, { @@ -494839,7 +495720,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R048287", + "___id": "T000002R048257", "___s": true }, { @@ -494875,7 +495756,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R048288", + "___id": "T000002R048258", "___s": true }, { @@ -494943,7 +495824,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R048289", + "___id": "T000002R048259", "___s": true }, { @@ -494979,7 +495860,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R048290", + "___id": "T000002R048260", "___s": true }, { @@ -495017,7 +495898,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R048291", + "___id": "T000002R048261", "___s": true }, { @@ -495055,7 +495936,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R048292", + "___id": "T000002R048262", "___s": true }, { @@ -495092,7 +495973,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R048293", + "___id": "T000002R048263", "___s": true }, { @@ -495160,7 +496041,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R048294", + "___id": "T000002R048264", "___s": true }, { @@ -495257,7 +496138,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R048295", + "___id": "T000002R048265", "___s": true }, { @@ -495329,7 +496210,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R048296", + "___id": "T000002R048266", "___s": true }, { @@ -495388,7 +496269,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R048297", + "___id": "T000002R048267", "___s": true }, { @@ -495432,7 +496313,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R048298", + "___id": "T000002R048268", "___s": true }, { @@ -495469,7 +496350,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R048299", + "___id": "T000002R048269", "___s": true }, { @@ -495515,7 +496396,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R048300", + "___id": "T000002R048270", "___s": true }, { @@ -495552,7 +496433,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R048301", + "___id": "T000002R048271", "___s": true }, { @@ -495591,7 +496472,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R048302", + "___id": "T000002R048272", "___s": true }, { @@ -495628,7 +496509,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R048303", + "___id": "T000002R048273", "___s": true }, { @@ -495673,7 +496554,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R048304", + "___id": "T000002R048274", "___s": true }, { @@ -495817,7 +496698,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R048305", + "___id": "T000002R048275", "___s": true }, { @@ -495889,7 +496770,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R048306", + "___id": "T000002R048276", "___s": true }, { @@ -495980,7 +496861,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R048307", + "___id": "T000002R048277", "___s": true }, { @@ -496025,7 +496906,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R048308", + "___id": "T000002R048278", "___s": true }, { @@ -496093,7 +496974,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R048309", + "___id": "T000002R048279", "___s": true }, { @@ -496136,7 +497017,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R048310", + "___id": "T000002R048280", "___s": true }, { @@ -496167,7 +497048,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R048311", + "___id": "T000002R048281", "___s": true }, { @@ -496198,7 +497079,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R048312", + "___id": "T000002R048282", "___s": true }, { @@ -496264,7 +497145,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R048313", + "___id": "T000002R048283", "___s": true }, { @@ -496294,7 +497175,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, - "___id": "T000002R048315", + "___id": "T000002R048285", "___s": true }, { @@ -496324,7 +497205,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, - "___id": "T000002R048316", + "___id": "T000002R048286", "___s": true }, { @@ -496354,7 +497235,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, - "___id": "T000002R048317", + "___id": "T000002R048287", "___s": true }, { @@ -496384,7 +497265,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, - "___id": "T000002R048318", + "___id": "T000002R048288", "___s": true }, { @@ -496446,7 +497327,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setSizeToFrame", "inherited": true, - "___id": "T000002R048319", + "___id": "T000002R048289", "___s": true }, { @@ -496510,7 +497391,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setSize", "inherited": true, - "___id": "T000002R048320", + "___id": "T000002R048290", "___s": true }, { @@ -496574,7 +497455,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setDisplaySize", "inherited": true, - "___id": "T000002R048321", + "___id": "T000002R048291", "___s": true }, { @@ -496614,7 +497495,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#texture", "inherited": true, - "___id": "T000002R048322", + "___id": "T000002R048292", "___s": true }, { @@ -496644,7 +497525,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#frame", "inherited": true, - "___id": "T000002R048323", + "___id": "T000002R048293", "___s": true }, { @@ -496674,7 +497555,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#isCropped", "inherited": true, - "___id": "T000002R048324", + "___id": "T000002R048294", "___s": true }, { @@ -496778,7 +497659,7 @@ ], "inherits": "Phaser.GameObjects.Components.TextureCrop#setCrop", "inherited": true, - "___id": "T000002R048325", + "___id": "T000002R048295", "___s": true }, { @@ -496853,7 +497734,7 @@ ], "inherits": "Phaser.GameObjects.Components.TextureCrop#setTexture", "inherited": true, - "___id": "T000002R048326", + "___id": "T000002R048296", "___s": true }, { @@ -496949,7 +497830,7 @@ ], "inherits": "Phaser.GameObjects.Components.TextureCrop#setFrame", "inherited": true, - "___id": "T000002R048327", + "___id": "T000002R048297", "___s": true }, { @@ -496980,7 +497861,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, - "___id": "T000002R048329", + "___id": "T000002R048299", "___s": true }, { @@ -497011,7 +497892,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, - "___id": "T000002R048330", + "___id": "T000002R048300", "___s": true }, { @@ -497042,7 +497923,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, - "___id": "T000002R048331", + "___id": "T000002R048301", "___s": true }, { @@ -497073,7 +497954,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, - "___id": "T000002R048332", + "___id": "T000002R048302", "___s": true }, { @@ -497104,7 +497985,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, - "___id": "T000002R048333", + "___id": "T000002R048303", "___s": true }, { @@ -497147,7 +498028,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, - "___id": "T000002R048334", + "___id": "T000002R048304", "___s": true }, { @@ -497249,7 +498130,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTint", "inherited": true, - "___id": "T000002R048335", + "___id": "T000002R048305", "___s": true }, { @@ -497351,7 +498232,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTintFill", "inherited": true, - "___id": "T000002R048336", + "___id": "T000002R048306", "___s": true }, { @@ -497388,7 +498269,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, - "___id": "T000002R048337", + "___id": "T000002R048307", "___s": true }, { @@ -497426,7 +498307,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, - "___id": "T000002R048338", + "___id": "T000002R048308", "___s": true }, { @@ -497458,7 +498339,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R048339", + "___id": "T000002R048309", "___s": true }, { @@ -497489,7 +498370,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R048343", + "___id": "T000002R048313", "___s": true }, { @@ -497520,7 +498401,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R048344", + "___id": "T000002R048314", "___s": true }, { @@ -497551,7 +498432,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R048345", + "___id": "T000002R048315", "___s": true }, { @@ -497582,7 +498463,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R048346", + "___id": "T000002R048316", "___s": true }, { @@ -497613,7 +498494,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R048347", + "___id": "T000002R048317", "___s": true }, { @@ -497644,7 +498525,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R048348", + "___id": "T000002R048318", "___s": true }, { @@ -497675,7 +498556,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R048349", + "___id": "T000002R048319", "___s": true }, { @@ -497706,7 +498587,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R048350", + "___id": "T000002R048320", "___s": true }, { @@ -497737,7 +498618,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R048351", + "___id": "T000002R048321", "___s": true }, { @@ -497835,7 +498716,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R048352", + "___id": "T000002R048322", "___s": true }, { @@ -497901,7 +498782,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R048353", + "___id": "T000002R048323", "___s": true }, { @@ -497997,7 +498878,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R048354", + "___id": "T000002R048324", "___s": true }, { @@ -498050,7 +498931,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R048355", + "___id": "T000002R048325", "___s": true }, { @@ -498103,7 +498984,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R048356", + "___id": "T000002R048326", "___s": true }, { @@ -498171,7 +499052,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R048357", + "___id": "T000002R048327", "___s": true }, { @@ -498224,7 +499105,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R048358", + "___id": "T000002R048328", "___s": true }, { @@ -498277,7 +499158,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R048359", + "___id": "T000002R048329", "___s": true }, { @@ -498330,7 +499211,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R048360", + "___id": "T000002R048330", "___s": true }, { @@ -498383,7 +499264,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R048361", + "___id": "T000002R048331", "___s": true }, { @@ -498434,7 +499315,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R048362", + "___id": "T000002R048332", "___s": true }, { @@ -498499,7 +499380,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R048363", + "___id": "T000002R048333", "___s": true }, { @@ -498590,7 +499471,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R048364", + "___id": "T000002R048334", "___s": true }, { @@ -498625,7 +499506,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R048365", + "___id": "T000002R048335", "___s": true }, { @@ -498655,7 +499536,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R048367", + "___id": "T000002R048337", "___s": true }, { @@ -498706,7 +499587,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R048368", + "___id": "T000002R048338", "___s": true }, { @@ -498742,7 +499623,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R048370", + "___id": "T000002R048340", "___s": true }, { @@ -498795,7 +499676,7 @@ ], "inherits": "Phaser.GameObjects.Components.AlphaSingle#setAlpha", "inherited": true, - "___id": "T000002R048371", + "___id": "T000002R048341", "___s": true }, { @@ -498825,7 +499706,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R048372", + "___id": "T000002R048342", "___s": true }, { @@ -498870,7 +499751,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R048374", + "___id": "T000002R048344", "___s": true }, { @@ -498936,7 +499817,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R048375", + "___id": "T000002R048345", "___s": true }, { @@ -498966,7 +499847,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R048377", + "___id": "T000002R048347", "___s": true }, { @@ -499017,7 +499898,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R048378", + "___id": "T000002R048348", "___s": true }, { @@ -499053,7 +499934,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R048379", + "___id": "T000002R048349", "___s": true }, { @@ -499089,7 +499970,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R048380", + "___id": "T000002R048350", "___s": true }, { @@ -499140,7 +500021,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R048381", + "___id": "T000002R048351", "___s": true }, { @@ -499191,7 +500072,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R048382", + "___id": "T000002R048352", "___s": true }, { @@ -499231,7 +500112,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R048383", + "___id": "T000002R048353", "___s": true }, { @@ -499292,7 +500173,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R048384", + "___id": "T000002R048354", "___s": true }, { @@ -499345,7 +500226,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R048385", + "___id": "T000002R048355", "___s": true }, { @@ -499507,7 +500388,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R048386", + "___id": "T000002R048356", "___s": true }, { @@ -499588,7 +500469,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R048387", + "___id": "T000002R048357", "___s": true }, { @@ -499625,7 +500506,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R048388", + "___id": "T000002R048358", "___s": true }, { @@ -499671,7 +500552,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R048389", + "___id": "T000002R048359", "___s": true }, { @@ -499708,7 +500589,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R048390", + "___id": "T000002R048360", "___s": true }, { @@ -499747,7 +500628,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R048391", + "___id": "T000002R048361", "___s": true }, { @@ -499784,7 +500665,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R048392", + "___id": "T000002R048362", "___s": true }, { @@ -499829,7 +500710,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R048393", + "___id": "T000002R048363", "___s": true }, { @@ -499973,7 +500854,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R048394", + "___id": "T000002R048364", "___s": true }, { @@ -500045,7 +500926,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R048395", + "___id": "T000002R048365", "___s": true }, { @@ -500136,7 +501017,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R048396", + "___id": "T000002R048366", "___s": true }, { @@ -500181,7 +501062,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R048397", + "___id": "T000002R048367", "___s": true }, { @@ -500249,7 +501130,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R048398", + "___id": "T000002R048368", "___s": true }, { @@ -500292,7 +501173,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R048399", + "___id": "T000002R048369", "___s": true }, { @@ -500322,7 +501203,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R048401", + "___id": "T000002R048371", "___s": true }, { @@ -500373,7 +501254,814 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R048402", + "___id": "T000002R048372", + "___s": true + }, + { + "comment": "/**\r\n * Removes all listeners.\r\n *\r\n * @method Phaser.Events.EventEmitter#shutdown\r\n * @since 3.0.0\r\n */", + "meta": { + "filename": "EventEmitter.js", + "lineno": 31, + "columnno": 4, + "path": "D:\\wamp\\www\\phaser\\src\\events", + "code": {} + }, + "name": "shutdown", + "longname": "Phaser.GameObjects.Layer#shutdown", + "kind": "function", + "description": "Removes all listeners.", + "since": "3.0.0", + "memberof": "Phaser.GameObjects.Layer", + "scope": "instance", + "inherits": "Phaser.Events.EventEmitter#shutdown", + "inherited": true, + "___id": "T000002R048373", + "___s": true + }, + { + "comment": "/**\r\n * Return an array listing the events for which the emitter has registered listeners.\r\n *\r\n * @method Phaser.Events.EventEmitter#eventNames\r\n * @since 3.0.0\r\n *\r\n * @return {Array.}\r\n */", + "meta": { + "filename": "EventEmitter.js", + "lineno": 55, + "columnno": 0, + "path": "D:\\wamp\\www\\phaser\\src\\events", + "code": {} + }, + "name": "eventNames", + "longname": "Phaser.GameObjects.Layer#eventNames", + "kind": "function", + "description": "Return an array listing the events for which the emitter has registered listeners.", + "since": "3.0.0", + "returns": [ + { + "type": { + "names": [ + "Array.<(string|symbol)>" + ], + "parsedType": { + "type": "TypeApplication", + "expression": { + "type": "NameExpression", + "name": "Array" + }, + "applications": [ + { + "type": "TypeUnion", + "elements": [ + { + "type": "NameExpression", + "name": "string" + }, + { + "type": "NameExpression", + "name": "symbol" + } + ] + } + ] + } + } + } + ], + "memberof": "Phaser.GameObjects.Layer", + "scope": "instance", + "inherits": "Phaser.Events.EventEmitter#eventNames", + "inherited": true, + "___id": "T000002R048374", + "___s": true + }, + { + "comment": "/**\r\n * Return the listeners registered for a given event.\r\n *\r\n * @method Phaser.Events.EventEmitter#listeners\r\n * @since 3.0.0\r\n *\r\n * @param {(string|symbol)} event - The event name.\r\n *\r\n * @return {Function[]} The registered listeners.\r\n */", + "meta": { + "filename": "EventEmitter.js", + "lineno": 64, + "columnno": 0, + "path": "D:\\wamp\\www\\phaser\\src\\events", + "code": {} + }, + "name": "listeners", + "longname": "Phaser.GameObjects.Layer#listeners", + "kind": "function", + "description": "Return the listeners registered for a given event.", + "since": "3.0.0", + "returns": [ + { + "type": { + "names": [ + "Array." + ], + "parsedType": { + "type": "TypeApplication", + "expression": { + "type": "NameExpression", + "name": "Array" + }, + "applications": [ + { + "type": "FunctionType", + "params": [] + } + ] + } + }, + "description": "The registered listeners." + } + ], + "memberof": "Phaser.GameObjects.Layer", + "scope": "instance", + "params": [ + { + "type": { + "names": [ + "string", + "symbol" + ], + "parsedType": { + "type": "TypeUnion", + "elements": [ + { + "type": "NameExpression", + "name": "string" + }, + { + "type": "NameExpression", + "name": "symbol" + } + ] + } + }, + "description": "The event name.", + "name": "event" + } + ], + "inherits": "Phaser.Events.EventEmitter#listeners", + "inherited": true, + "___id": "T000002R048375", + "___s": true + }, + { + "comment": "/**\r\n * Return the number of listeners listening to a given event.\r\n *\r\n * @method Phaser.Events.EventEmitter#listenerCount\r\n * @since 3.0.0\r\n *\r\n * @param {(string|symbol)} event - The event name.\r\n *\r\n * @return {number} The number of listeners.\r\n */", + "meta": { + "filename": "EventEmitter.js", + "lineno": 75, + "columnno": 0, + "path": "D:\\wamp\\www\\phaser\\src\\events", + "code": {} + }, + "name": "listenerCount", + "longname": "Phaser.GameObjects.Layer#listenerCount", + "kind": "function", + "description": "Return the number of listeners listening to a given event.", + "since": "3.0.0", + "returns": [ + { + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "description": "The number of listeners." + } + ], + "memberof": "Phaser.GameObjects.Layer", + "scope": "instance", + "params": [ + { + "type": { + "names": [ + "string", + "symbol" + ], + "parsedType": { + "type": "TypeUnion", + "elements": [ + { + "type": "NameExpression", + "name": "string" + }, + { + "type": "NameExpression", + "name": "symbol" + } + ] + } + }, + "description": "The event name.", + "name": "event" + } + ], + "inherits": "Phaser.Events.EventEmitter#listenerCount", + "inherited": true, + "___id": "T000002R048376", + "___s": true + }, + { + "comment": "/**\r\n * Calls each of the listeners registered for a given event.\r\n *\r\n * @method Phaser.Events.EventEmitter#emit\r\n * @since 3.0.0\r\n *\r\n * @param {(string|symbol)} event - The event name.\r\n * @param {...*} [args] - Additional arguments that will be passed to the event handler.\r\n *\r\n * @return {boolean} `true` if the event had listeners, else `false`.\r\n */", + "meta": { + "filename": "EventEmitter.js", + "lineno": 86, + "columnno": 0, + "path": "D:\\wamp\\www\\phaser\\src\\events", + "code": {} + }, + "name": "emit", + "longname": "Phaser.GameObjects.Layer#emit", + "kind": "function", + "description": "Calls each of the listeners registered for a given event.", + "since": "3.0.0", + "returns": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "description": "`true` if the event had listeners, else `false`." + } + ], + "memberof": "Phaser.GameObjects.Layer", + "scope": "instance", + "params": [ + { + "type": { + "names": [ + "string", + "symbol" + ], + "parsedType": { + "type": "TypeUnion", + "elements": [ + { + "type": "NameExpression", + "name": "string" + }, + { + "type": "NameExpression", + "name": "symbol" + } + ] + } + }, + "description": "The event name.", + "name": "event" + }, + { + "type": { + "names": [ + "*" + ], + "parsedType": { + "type": "AllLiteral", + "repeatable": true + } + }, + "optional": true, + "variable": true, + "description": "Additional arguments that will be passed to the event handler.", + "name": "args" + } + ], + "inherits": "Phaser.Events.EventEmitter#emit", + "inherited": true, + "___id": "T000002R048377", + "___s": true + }, + { + "comment": "/**\r\n * Add a listener for a given event.\r\n *\r\n * @method Phaser.Events.EventEmitter#on\r\n * @since 3.0.0\r\n *\r\n * @param {(string|symbol)} event - The event name.\r\n * @param {function} fn - The listener function.\r\n * @param {*} [context=this] - The context to invoke the listener with.\r\n *\r\n * @return {this} `this`.\r\n */", + "meta": { + "filename": "EventEmitter.js", + "lineno": 98, + "columnno": 0, + "path": "D:\\wamp\\www\\phaser\\src\\events", + "code": {} + }, + "name": "on", + "longname": "Phaser.GameObjects.Layer#on", + "kind": "function", + "description": "Add a listener for a given event.", + "since": "3.0.0", + "returns": [ + { + "type": { + "names": [ + "this" + ], + "parsedType": { + "type": "NameExpression", + "name": "this", + "reservedWord": true + } + }, + "description": "`this`." + } + ], + "memberof": "Phaser.GameObjects.Layer", + "scope": "instance", + "params": [ + { + "type": { + "names": [ + "string", + "symbol" + ], + "parsedType": { + "type": "TypeUnion", + "elements": [ + { + "type": "NameExpression", + "name": "string" + }, + { + "type": "NameExpression", + "name": "symbol" + } + ] + } + }, + "description": "The event name.", + "name": "event" + }, + { + "type": { + "names": [ + "function" + ], + "parsedType": { + "type": "FunctionType", + "params": [] + } + }, + "description": "The listener function.", + "name": "fn" + }, + { + "type": { + "names": [ + "*" + ], + "parsedType": { + "type": "AllLiteral" + } + }, + "optional": true, + "defaultvalue": "this", + "description": "The context to invoke the listener with.", + "name": "context" + } + ], + "inherits": "Phaser.Events.EventEmitter#on", + "inherited": true, + "___id": "T000002R048378", + "___s": true + }, + { + "comment": "/**\r\n * Add a listener for a given event.\r\n *\r\n * @method Phaser.Events.EventEmitter#addListener\r\n * @since 3.0.0\r\n *\r\n * @param {(string|symbol)} event - The event name.\r\n * @param {function} fn - The listener function.\r\n * @param {*} [context=this] - The context to invoke the listener with.\r\n *\r\n * @return {this} `this`.\r\n */", + "meta": { + "filename": "EventEmitter.js", + "lineno": 111, + "columnno": 0, + "path": "D:\\wamp\\www\\phaser\\src\\events", + "code": {} + }, + "name": "addListener", + "longname": "Phaser.GameObjects.Layer#addListener", + "kind": "function", + "description": "Add a listener for a given event.", + "since": "3.0.0", + "returns": [ + { + "type": { + "names": [ + "this" + ], + "parsedType": { + "type": "NameExpression", + "name": "this", + "reservedWord": true + } + }, + "description": "`this`." + } + ], + "memberof": "Phaser.GameObjects.Layer", + "scope": "instance", + "params": [ + { + "type": { + "names": [ + "string", + "symbol" + ], + "parsedType": { + "type": "TypeUnion", + "elements": [ + { + "type": "NameExpression", + "name": "string" + }, + { + "type": "NameExpression", + "name": "symbol" + } + ] + } + }, + "description": "The event name.", + "name": "event" + }, + { + "type": { + "names": [ + "function" + ], + "parsedType": { + "type": "FunctionType", + "params": [] + } + }, + "description": "The listener function.", + "name": "fn" + }, + { + "type": { + "names": [ + "*" + ], + "parsedType": { + "type": "AllLiteral" + } + }, + "optional": true, + "defaultvalue": "this", + "description": "The context to invoke the listener with.", + "name": "context" + } + ], + "inherits": "Phaser.Events.EventEmitter#addListener", + "inherited": true, + "___id": "T000002R048379", + "___s": true + }, + { + "comment": "/**\r\n * Add a one-time listener for a given event.\r\n *\r\n * @method Phaser.Events.EventEmitter#once\r\n * @since 3.0.0\r\n *\r\n * @param {(string|symbol)} event - The event name.\r\n * @param {function} fn - The listener function.\r\n * @param {*} [context=this] - The context to invoke the listener with.\r\n *\r\n * @return {this} `this`.\r\n */", + "meta": { + "filename": "EventEmitter.js", + "lineno": 124, + "columnno": 0, + "path": "D:\\wamp\\www\\phaser\\src\\events", + "code": {} + }, + "name": "once", + "longname": "Phaser.GameObjects.Layer#once", + "kind": "function", + "description": "Add a one-time listener for a given event.", + "since": "3.0.0", + "returns": [ + { + "type": { + "names": [ + "this" + ], + "parsedType": { + "type": "NameExpression", + "name": "this", + "reservedWord": true + } + }, + "description": "`this`." + } + ], + "memberof": "Phaser.GameObjects.Layer", + "scope": "instance", + "params": [ + { + "type": { + "names": [ + "string", + "symbol" + ], + "parsedType": { + "type": "TypeUnion", + "elements": [ + { + "type": "NameExpression", + "name": "string" + }, + { + "type": "NameExpression", + "name": "symbol" + } + ] + } + }, + "description": "The event name.", + "name": "event" + }, + { + "type": { + "names": [ + "function" + ], + "parsedType": { + "type": "FunctionType", + "params": [] + } + }, + "description": "The listener function.", + "name": "fn" + }, + { + "type": { + "names": [ + "*" + ], + "parsedType": { + "type": "AllLiteral" + } + }, + "optional": true, + "defaultvalue": "this", + "description": "The context to invoke the listener with.", + "name": "context" + } + ], + "inherits": "Phaser.Events.EventEmitter#once", + "inherited": true, + "___id": "T000002R048380", + "___s": true + }, + { + "comment": "/**\r\n * Remove the listeners of a given event.\r\n *\r\n * @method Phaser.Events.EventEmitter#removeListener\r\n * @since 3.0.0\r\n *\r\n * @param {(string|symbol)} event - The event name.\r\n * @param {function} [fn] - Only remove the listeners that match this function.\r\n * @param {*} [context] - Only remove the listeners that have this context.\r\n * @param {boolean} [once] - Only remove one-time listeners.\r\n *\r\n * @return {this} `this`.\r\n */", + "meta": { + "filename": "EventEmitter.js", + "lineno": 137, + "columnno": 0, + "path": "D:\\wamp\\www\\phaser\\src\\events", + "code": {} + }, + "name": "removeListener", + "longname": "Phaser.GameObjects.Layer#removeListener", + "kind": "function", + "description": "Remove the listeners of a given event.", + "since": "3.0.0", + "returns": [ + { + "type": { + "names": [ + "this" + ], + "parsedType": { + "type": "NameExpression", + "name": "this", + "reservedWord": true + } + }, + "description": "`this`." + } + ], + "memberof": "Phaser.GameObjects.Layer", + "scope": "instance", + "params": [ + { + "type": { + "names": [ + "string", + "symbol" + ], + "parsedType": { + "type": "TypeUnion", + "elements": [ + { + "type": "NameExpression", + "name": "string" + }, + { + "type": "NameExpression", + "name": "symbol" + } + ] + } + }, + "description": "The event name.", + "name": "event" + }, + { + "type": { + "names": [ + "function" + ], + "parsedType": { + "type": "FunctionType", + "params": [] + } + }, + "optional": true, + "description": "Only remove the listeners that match this function.", + "name": "fn" + }, + { + "type": { + "names": [ + "*" + ], + "parsedType": { + "type": "AllLiteral" + } + }, + "optional": true, + "description": "Only remove the listeners that have this context.", + "name": "context" + }, + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "description": "Only remove one-time listeners.", + "name": "once" + } + ], + "inherits": "Phaser.Events.EventEmitter#removeListener", + "inherited": true, + "___id": "T000002R048381", + "___s": true + }, + { + "comment": "/**\r\n * Remove the listeners of a given event.\r\n *\r\n * @method Phaser.Events.EventEmitter#off\r\n * @since 3.0.0\r\n *\r\n * @param {(string|symbol)} event - The event name.\r\n * @param {function} [fn] - Only remove the listeners that match this function.\r\n * @param {*} [context] - Only remove the listeners that have this context.\r\n * @param {boolean} [once] - Only remove one-time listeners.\r\n *\r\n * @return {this} `this`.\r\n */", + "meta": { + "filename": "EventEmitter.js", + "lineno": 151, + "columnno": 0, + "path": "D:\\wamp\\www\\phaser\\src\\events", + "code": {} + }, + "name": "off", + "longname": "Phaser.GameObjects.Layer#off", + "kind": "function", + "description": "Remove the listeners of a given event.", + "since": "3.0.0", + "returns": [ + { + "type": { + "names": [ + "this" + ], + "parsedType": { + "type": "NameExpression", + "name": "this", + "reservedWord": true + } + }, + "description": "`this`." + } + ], + "memberof": "Phaser.GameObjects.Layer", + "scope": "instance", + "params": [ + { + "type": { + "names": [ + "string", + "symbol" + ], + "parsedType": { + "type": "TypeUnion", + "elements": [ + { + "type": "NameExpression", + "name": "string" + }, + { + "type": "NameExpression", + "name": "symbol" + } + ] + } + }, + "description": "The event name.", + "name": "event" + }, + { + "type": { + "names": [ + "function" + ], + "parsedType": { + "type": "FunctionType", + "params": [] + } + }, + "optional": true, + "description": "Only remove the listeners that match this function.", + "name": "fn" + }, + { + "type": { + "names": [ + "*" + ], + "parsedType": { + "type": "AllLiteral" + } + }, + "optional": true, + "description": "Only remove the listeners that have this context.", + "name": "context" + }, + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "description": "Only remove one-time listeners.", + "name": "once" + } + ], + "inherits": "Phaser.Events.EventEmitter#off", + "inherited": true, + "___id": "T000002R048382", + "___s": true + }, + { + "comment": "/**\r\n * Remove all listeners, or those of the specified event.\r\n *\r\n * @method Phaser.Events.EventEmitter#removeAllListeners\r\n * @since 3.0.0\r\n *\r\n * @param {(string|symbol)} [event] - The event name.\r\n *\r\n * @return {this} `this`.\r\n */", + "meta": { + "filename": "EventEmitter.js", + "lineno": 165, + "columnno": 0, + "path": "D:\\wamp\\www\\phaser\\src\\events", + "code": {} + }, + "name": "removeAllListeners", + "longname": "Phaser.GameObjects.Layer#removeAllListeners", + "kind": "function", + "description": "Remove all listeners, or those of the specified event.", + "since": "3.0.0", + "returns": [ + { + "type": { + "names": [ + "this" + ], + "parsedType": { + "type": "NameExpression", + "name": "this", + "reservedWord": true + } + }, + "description": "`this`." + } + ], + "memberof": "Phaser.GameObjects.Layer", + "scope": "instance", + "params": [ + { + "type": { + "names": [ + "string", + "symbol" + ], + "parsedType": { + "type": "TypeUnion", + "elements": [ + { + "type": "NameExpression", + "name": "string" + }, + { + "type": "NameExpression", + "name": "symbol" + } + ] + } + }, + "optional": true, + "description": "The event name.", + "name": "event" + } + ], + "inherits": "Phaser.Events.EventEmitter#removeAllListeners", + "inherited": true, + "___id": "T000002R048383", "___s": true }, { @@ -500404,7 +502092,7 @@ "scope": "instance", "inherits": "Phaser.Geom.Circle#type", "inherited": true, - "___id": "T000002R048403", + "___id": "T000002R048384", "___s": true }, { @@ -500435,7 +502123,7 @@ "scope": "instance", "inherits": "Phaser.Geom.Circle#x", "inherited": true, - "___id": "T000002R048404", + "___id": "T000002R048385", "___s": true }, { @@ -500466,7 +502154,7 @@ "scope": "instance", "inherits": "Phaser.Geom.Circle#y", "inherited": true, - "___id": "T000002R048405", + "___id": "T000002R048386", "___s": true }, { @@ -500529,7 +502217,7 @@ ], "inherits": "Phaser.Geom.Circle#contains", "inherited": true, - "___id": "T000002R048408", + "___id": "T000002R048389", "___s": true }, { @@ -500621,7 +502309,7 @@ ], "inherits": "Phaser.Geom.Circle#getPoint", "inherited": true, - "___id": "T000002R048409", + "___id": "T000002R048390", "___s": true }, { @@ -500745,7 +502433,7 @@ ], "inherits": "Phaser.Geom.Circle#getPoints", "inherited": true, - "___id": "T000002R048410", + "___id": "T000002R048391", "___s": true }, { @@ -500824,7 +502512,7 @@ ], "inherits": "Phaser.Geom.Circle#getRandomPoint", "inherited": true, - "___id": "T000002R048411", + "___id": "T000002R048392", "___s": true }, { @@ -500907,7 +502595,7 @@ ], "inherits": "Phaser.Geom.Circle#setTo", "inherited": true, - "___id": "T000002R048412", + "___id": "T000002R048393", "___s": true }, { @@ -500943,7 +502631,7 @@ "scope": "instance", "inherits": "Phaser.Geom.Circle#setEmpty", "inherited": true, - "___id": "T000002R048413", + "___id": "T000002R048394", "___s": true }, { @@ -501011,7 +502699,7 @@ ], "inherits": "Phaser.Geom.Circle#setPosition", "inherited": true, - "___id": "T000002R048414", + "___id": "T000002R048395", "___s": true }, { @@ -501046,7 +502734,7 @@ "scope": "instance", "inherits": "Phaser.Geom.Circle#isEmpty", "inherited": true, - "___id": "T000002R048415", + "___id": "T000002R048396", "___s": true }, { @@ -501076,7 +502764,7 @@ "scope": "instance", "inherits": "Phaser.Geom.Circle#radius", "inherited": true, - "___id": "T000002R048416", + "___id": "T000002R048397", "___s": true }, { @@ -501106,7 +502794,7 @@ "scope": "instance", "inherits": "Phaser.Geom.Circle#diameter", "inherited": true, - "___id": "T000002R048417", + "___id": "T000002R048398", "___s": true }, { @@ -501136,7 +502824,7 @@ "scope": "instance", "inherits": "Phaser.Geom.Circle#left", "inherited": true, - "___id": "T000002R048418", + "___id": "T000002R048399", "___s": true }, { @@ -501166,7 +502854,7 @@ "scope": "instance", "inherits": "Phaser.Geom.Circle#right", "inherited": true, - "___id": "T000002R048419", + "___id": "T000002R048400", "___s": true }, { @@ -501196,7 +502884,7 @@ "scope": "instance", "inherits": "Phaser.Geom.Circle#top", "inherited": true, - "___id": "T000002R048420", + "___id": "T000002R048401", "___s": true }, { @@ -501226,7 +502914,7 @@ "scope": "instance", "inherits": "Phaser.Geom.Circle#bottom", "inherited": true, - "___id": "T000002R048421", + "___id": "T000002R048402", "___s": true }, { @@ -501258,7 +502946,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R048423", + "___id": "T000002R048404", "___s": true }, { @@ -501290,7 +502978,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R048424", + "___id": "T000002R048405", "___s": true }, { @@ -501320,7 +503008,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R048425", + "___id": "T000002R048406", "___s": true }, { @@ -501350,7 +503038,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R048426", + "___id": "T000002R048407", "___s": true }, { @@ -501418,7 +503106,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R048427", + "___id": "T000002R048408", "___s": true }, { @@ -501454,7 +503142,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R048428", + "___id": "T000002R048409", "___s": true }, { @@ -501522,7 +503210,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R048429", + "___id": "T000002R048410", "___s": true }, { @@ -501558,7 +503246,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R048430", + "___id": "T000002R048411", "___s": true }, { @@ -501589,7 +503277,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R048431", + "___id": "T000002R048412", "___s": true }, { @@ -501620,7 +503308,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R048432", + "___id": "T000002R048413", "___s": true }, { @@ -501686,7 +503374,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R048433", + "___id": "T000002R048414", "___s": true }, { @@ -501716,7 +503404,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R048435", + "___id": "T000002R048416", "___s": true }, { @@ -501767,7 +503455,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R048436", + "___id": "T000002R048417", "___s": true }, { @@ -501807,7 +503495,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.LightsManager#lights", "inherited": true, - "___id": "T000002R048437", + "___id": "T000002R048418", "___s": true }, { @@ -501837,7 +503525,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.LightsManager#ambientColor", "inherited": true, - "___id": "T000002R048438", + "___id": "T000002R048419", "___s": true }, { @@ -501868,7 +503556,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.LightsManager#active", "inherited": true, - "___id": "T000002R048439", + "___id": "T000002R048420", "___s": true }, { @@ -501899,7 +503587,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.LightsManager#maxLights", "inherited": true, - "___id": "T000002R048440", + "___id": "T000002R048421", "___s": true }, { @@ -501930,7 +503618,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.LightsManager#visibleLights", "inherited": true, - "___id": "T000002R048441", + "___id": "T000002R048422", "___s": true }, { @@ -502053,7 +503741,7 @@ ], "inherits": "Phaser.GameObjects.LightsManager#addPointLight", "inherited": true, - "___id": "T000002R048442", + "___id": "T000002R048423", "___s": true }, { @@ -502089,7 +503777,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.LightsManager#enable", "inherited": true, - "___id": "T000002R048443", + "___id": "T000002R048424", "___s": true }, { @@ -502125,7 +503813,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.LightsManager#disable", "inherited": true, - "___id": "T000002R048444", + "___id": "T000002R048425", "___s": true }, { @@ -502184,7 +503872,7 @@ ], "inherits": "Phaser.GameObjects.LightsManager#getLights", "inherited": true, - "___id": "T000002R048445", + "___id": "T000002R048426", "___s": true }, { @@ -502235,7 +503923,7 @@ ], "inherits": "Phaser.GameObjects.LightsManager#setAmbientColor", "inherited": true, - "___id": "T000002R048446", + "___id": "T000002R048427", "___s": true }, { @@ -502270,7 +503958,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.LightsManager#getMaxVisibleLights", "inherited": true, - "___id": "T000002R048447", + "___id": "T000002R048428", "___s": true }, { @@ -502305,7 +503993,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.LightsManager#getLightCount", "inherited": true, - "___id": "T000002R048448", + "___id": "T000002R048429", "___s": true }, { @@ -502417,7 +504105,7 @@ ], "inherits": "Phaser.GameObjects.LightsManager#addLight", "inherited": true, - "___id": "T000002R048449", + "___id": "T000002R048430", "___s": true }, { @@ -502468,7 +504156,7 @@ ], "inherits": "Phaser.GameObjects.LightsManager#removeLight", "inherited": true, - "___id": "T000002R048450", + "___id": "T000002R048431", "___s": true }, { @@ -502489,7 +504177,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.LightsManager#shutdown", "inherited": true, - "___id": "T000002R048451", + "___id": "T000002R048432", "___s": true }, { @@ -502519,7 +504207,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R048452", + "___id": "T000002R048433", "___s": true }, { @@ -502560,7 +504248,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R048453", + "___id": "T000002R048434", "___s": true }, { @@ -502590,7 +504278,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R048454", + "___id": "T000002R048435", "___s": true }, { @@ -502630,7 +504318,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R048455", + "___id": "T000002R048436", "___s": true }, { @@ -502660,7 +504348,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R048456", + "___id": "T000002R048437", "___s": true }, { @@ -502691,7 +504379,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R048457", + "___id": "T000002R048438", "___s": true }, { @@ -502722,7 +504410,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R048458", + "___id": "T000002R048439", "___s": true }, { @@ -502753,7 +504441,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R048459", + "___id": "T000002R048440", "___s": true }, { @@ -502784,7 +504472,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R048460", + "___id": "T000002R048441", "___s": true }, { @@ -502815,7 +504503,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R048461", + "___id": "T000002R048442", "___s": true }, { @@ -502849,7 +504537,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R048462", + "___id": "T000002R048443", "___s": true }, { @@ -502882,7 +504570,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R048463", + "___id": "T000002R048444", "___s": true }, { @@ -502930,7 +504618,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R048464", + "___id": "T000002R048445", "___s": true }, { @@ -502961,7 +504649,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R048465", + "___id": "T000002R048446", "___s": true }, { @@ -503012,7 +504700,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R048466", + "___id": "T000002R048447", "___s": true }, { @@ -503063,7 +504751,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R048467", + "___id": "T000002R048448", "___s": true }, { @@ -503124,7 +504812,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R048468", + "___id": "T000002R048449", "___s": true }, { @@ -503163,7 +504851,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R048469", + "___id": "T000002R048450", "___s": true }, { @@ -503251,7 +504939,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R048470", + "___id": "T000002R048451", "___s": true }, { @@ -503317,7 +505005,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R048471", + "___id": "T000002R048452", "___s": true }, { @@ -503368,7 +505056,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R048472", + "___id": "T000002R048453", "___s": true }, { @@ -503436,11 +505124,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R048473", + "___id": "T000002R048454", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -503470,16 +505158,33 @@ ], "memberof": "Phaser.GameObjects.Mesh", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R048474", + "___id": "T000002R048455", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -503506,16 +505211,33 @@ ], "memberof": "Phaser.GameObjects.Mesh", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R048475", + "___id": "T000002R048456", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -503529,14 +505251,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R048476", + "___id": "T000002R048457", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -503550,14 +505272,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R048477", + "___id": "T000002R048458", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -503588,14 +505310,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R048478", + "___id": "T000002R048459", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -503623,14 +505345,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R048479", + "___id": "T000002R048460", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -503673,14 +505395,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R048480", + "___id": "T000002R048461", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -503717,14 +505439,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R048481", + "___id": "T000002R048462", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -503783,14 +505505,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R048482", + "___id": "T000002R048463", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -503819,14 +505541,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R048483", + "___id": "T000002R048464", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -503859,14 +505581,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R048484", + "___id": "T000002R048465", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -503895,14 +505617,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R048485", + "___id": "T000002R048466", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -503936,7 +505658,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R048486", + "___id": "T000002R048467", "___s": true }, { @@ -503957,7 +505679,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R048487", + "___id": "T000002R048468", "___s": true }, { @@ -504009,7 +505731,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R048488", + "___id": "T000002R048469", "___s": true }, { @@ -504078,7 +505800,7 @@ "name": "event" } ], - "___id": "T000002R048489", + "___id": "T000002R048470", "___s": true }, { @@ -504138,7 +505860,7 @@ "name": "event" } ], - "___id": "T000002R048490", + "___id": "T000002R048471", "___s": true }, { @@ -504213,7 +505935,7 @@ "name": "args" } ], - "___id": "T000002R048491", + "___id": "T000002R048472", "___s": true }, { @@ -504301,7 +506023,7 @@ "name": "context" } ], - "___id": "T000002R048492", + "___id": "T000002R048473", "___s": true }, { @@ -504389,7 +506111,7 @@ "name": "context" } ], - "___id": "T000002R048493", + "___id": "T000002R048474", "___s": true }, { @@ -504477,7 +506199,7 @@ "name": "context" } ], - "___id": "T000002R048494", + "___id": "T000002R048475", "___s": true }, { @@ -504579,7 +506301,7 @@ "name": "once" } ], - "___id": "T000002R048495", + "___id": "T000002R048476", "___s": true }, { @@ -504681,7 +506403,7 @@ "name": "once" } ], - "___id": "T000002R048496", + "___id": "T000002R048477", "___s": true }, { @@ -504743,7 +506465,7 @@ "name": "event" } ], - "___id": "T000002R048497", + "___id": "T000002R048478", "___s": true }, { @@ -504779,7 +506501,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R048499", + "___id": "T000002R048480", "___s": true }, { @@ -504832,7 +506554,7 @@ ], "inherits": "Phaser.GameObjects.Components.AlphaSingle#setAlpha", "inherited": true, - "___id": "T000002R048500", + "___id": "T000002R048481", "___s": true }, { @@ -504862,7 +506584,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R048501", + "___id": "T000002R048482", "___s": true }, { @@ -504907,7 +506629,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R048503", + "___id": "T000002R048484", "___s": true }, { @@ -504973,7 +506695,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R048504", + "___id": "T000002R048485", "___s": true }, { @@ -505003,7 +506725,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R048506", + "___id": "T000002R048487", "___s": true }, { @@ -505054,7 +506776,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R048507", + "___id": "T000002R048488", "___s": true }, { @@ -505090,7 +506812,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R048508", + "___id": "T000002R048489", "___s": true }, { @@ -505126,7 +506848,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R048509", + "___id": "T000002R048490", "___s": true }, { @@ -505177,7 +506899,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R048510", + "___id": "T000002R048491", "___s": true }, { @@ -505228,7 +506950,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R048511", + "___id": "T000002R048492", "___s": true }, { @@ -505268,7 +506990,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R048512", + "___id": "T000002R048493", "___s": true }, { @@ -505329,7 +507051,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R048513", + "___id": "T000002R048494", "___s": true }, { @@ -505382,7 +507104,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R048514", + "___id": "T000002R048495", "___s": true }, { @@ -505544,7 +507266,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R048515", + "___id": "T000002R048496", "___s": true }, { @@ -505625,7 +507347,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R048516", + "___id": "T000002R048497", "___s": true }, { @@ -505663,7 +507385,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R048517", + "___id": "T000002R048498", "___s": true }, { @@ -505701,7 +507423,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R048518", + "___id": "T000002R048499", "___s": true }, { @@ -505738,7 +507460,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R048519", + "___id": "T000002R048500", "___s": true }, { @@ -505806,7 +507528,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R048520", + "___id": "T000002R048501", "___s": true }, { @@ -505903,7 +507625,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R048521", + "___id": "T000002R048502", "___s": true }, { @@ -505975,7 +507697,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R048522", + "___id": "T000002R048503", "___s": true }, { @@ -506034,7 +507756,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R048523", + "___id": "T000002R048504", "___s": true }, { @@ -506078,7 +507800,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R048524", + "___id": "T000002R048505", "___s": true }, { @@ -506115,7 +507837,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R048525", + "___id": "T000002R048506", "___s": true }, { @@ -506161,7 +507883,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R048526", + "___id": "T000002R048507", "___s": true }, { @@ -506198,7 +507920,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R048527", + "___id": "T000002R048508", "___s": true }, { @@ -506237,7 +507959,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R048528", + "___id": "T000002R048509", "___s": true }, { @@ -506274,7 +507996,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R048529", + "___id": "T000002R048510", "___s": true }, { @@ -506319,7 +508041,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R048530", + "___id": "T000002R048511", "___s": true }, { @@ -506463,7 +508185,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R048531", + "___id": "T000002R048512", "___s": true }, { @@ -506535,7 +508257,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R048532", + "___id": "T000002R048513", "___s": true }, { @@ -506626,7 +508348,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R048533", + "___id": "T000002R048514", "___s": true }, { @@ -506671,7 +508393,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R048534", + "___id": "T000002R048515", "___s": true }, { @@ -506739,7 +508461,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R048535", + "___id": "T000002R048516", "___s": true }, { @@ -506782,7 +508504,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R048536", + "___id": "T000002R048517", "___s": true }, { @@ -506813,7 +508535,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R048537", + "___id": "T000002R048518", "___s": true }, { @@ -506844,7 +508566,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R048538", + "___id": "T000002R048519", "___s": true }, { @@ -506910,7 +508632,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R048539", + "___id": "T000002R048520", "___s": true }, { @@ -506940,7 +508662,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, - "___id": "T000002R048541", + "___id": "T000002R048522", "___s": true }, { @@ -506970,7 +508692,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, - "___id": "T000002R048542", + "___id": "T000002R048523", "___s": true }, { @@ -507000,7 +508722,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, - "___id": "T000002R048543", + "___id": "T000002R048524", "___s": true }, { @@ -507030,7 +508752,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, - "___id": "T000002R048544", + "___id": "T000002R048525", "___s": true }, { @@ -507092,7 +508814,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setSizeToFrame", "inherited": true, - "___id": "T000002R048545", + "___id": "T000002R048526", "___s": true }, { @@ -507156,7 +508878,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setSize", "inherited": true, - "___id": "T000002R048546", + "___id": "T000002R048527", "___s": true }, { @@ -507220,7 +508942,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setDisplaySize", "inherited": true, - "___id": "T000002R048547", + "___id": "T000002R048528", "___s": true }, { @@ -507260,7 +508982,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#texture", "inherited": true, - "___id": "T000002R048548", + "___id": "T000002R048529", "___s": true }, { @@ -507290,7 +509012,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#frame", "inherited": true, - "___id": "T000002R048549", + "___id": "T000002R048530", "___s": true }, { @@ -507405,7 +509127,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setTexture", "inherited": true, - "___id": "T000002R048551", + "___id": "T000002R048532", "___s": true }, { @@ -507501,7 +509223,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setFrame", "inherited": true, - "___id": "T000002R048552", + "___id": "T000002R048533", "___s": true }, { @@ -507533,7 +509255,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R048553", + "___id": "T000002R048534", "___s": true }, { @@ -507564,7 +509286,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R048557", + "___id": "T000002R048538", "___s": true }, { @@ -507595,7 +509317,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R048558", + "___id": "T000002R048539", "___s": true }, { @@ -507626,7 +509348,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R048559", + "___id": "T000002R048540", "___s": true }, { @@ -507657,7 +509379,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R048560", + "___id": "T000002R048541", "___s": true }, { @@ -507688,7 +509410,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R048561", + "___id": "T000002R048542", "___s": true }, { @@ -507719,7 +509441,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R048562", + "___id": "T000002R048543", "___s": true }, { @@ -507750,7 +509472,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R048563", + "___id": "T000002R048544", "___s": true }, { @@ -507781,7 +509503,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R048564", + "___id": "T000002R048545", "___s": true }, { @@ -507812,7 +509534,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R048565", + "___id": "T000002R048546", "___s": true }, { @@ -507910,7 +509632,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R048566", + "___id": "T000002R048547", "___s": true }, { @@ -507976,7 +509698,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R048567", + "___id": "T000002R048548", "___s": true }, { @@ -508072,7 +509794,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R048568", + "___id": "T000002R048549", "___s": true }, { @@ -508125,7 +509847,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R048569", + "___id": "T000002R048550", "___s": true }, { @@ -508178,7 +509900,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R048570", + "___id": "T000002R048551", "___s": true }, { @@ -508246,7 +509968,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R048571", + "___id": "T000002R048552", "___s": true }, { @@ -508299,7 +510021,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R048572", + "___id": "T000002R048553", "___s": true }, { @@ -508352,7 +510074,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R048573", + "___id": "T000002R048554", "___s": true }, { @@ -508405,7 +510127,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R048574", + "___id": "T000002R048555", "___s": true }, { @@ -508458,7 +510180,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R048575", + "___id": "T000002R048556", "___s": true }, { @@ -508509,7 +510231,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R048576", + "___id": "T000002R048557", "___s": true }, { @@ -508574,7 +510296,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R048577", + "___id": "T000002R048558", "___s": true }, { @@ -508665,7 +510387,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R048578", + "___id": "T000002R048559", "___s": true }, { @@ -508700,7 +510422,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R048579", + "___id": "T000002R048560", "___s": true }, { @@ -508730,7 +510452,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R048581", + "___id": "T000002R048562", "___s": true }, { @@ -508781,7 +510503,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R048582", + "___id": "T000002R048563", "___s": true }, { @@ -508811,7 +510533,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R048583", + "___id": "T000002R048564", "___s": true }, { @@ -508852,7 +510574,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R048584", + "___id": "T000002R048565", "___s": true }, { @@ -508882,7 +510604,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R048585", + "___id": "T000002R048566", "___s": true }, { @@ -508922,7 +510644,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R048586", + "___id": "T000002R048567", "___s": true }, { @@ -508952,7 +510674,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R048587", + "___id": "T000002R048568", "___s": true }, { @@ -508983,7 +510705,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R048588", + "___id": "T000002R048569", "___s": true }, { @@ -509014,7 +510736,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R048589", + "___id": "T000002R048570", "___s": true }, { @@ -509045,7 +510767,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R048590", + "___id": "T000002R048571", "___s": true }, { @@ -509076,7 +510798,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R048591", + "___id": "T000002R048572", "___s": true }, { @@ -509107,7 +510829,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R048592", + "___id": "T000002R048573", "___s": true }, { @@ -509141,7 +510863,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R048593", + "___id": "T000002R048574", "___s": true }, { @@ -509174,7 +510896,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R048594", + "___id": "T000002R048575", "___s": true }, { @@ -509222,7 +510944,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R048595", + "___id": "T000002R048576", "___s": true }, { @@ -509253,7 +510975,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R048596", + "___id": "T000002R048577", "___s": true }, { @@ -509304,7 +511026,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R048597", + "___id": "T000002R048578", "___s": true }, { @@ -509355,7 +511077,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R048598", + "___id": "T000002R048579", "___s": true }, { @@ -509416,7 +511138,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R048599", + "___id": "T000002R048580", "___s": true }, { @@ -509455,7 +511177,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R048600", + "___id": "T000002R048581", "___s": true }, { @@ -509543,7 +511265,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R048601", + "___id": "T000002R048582", "___s": true }, { @@ -509609,7 +511331,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R048602", + "___id": "T000002R048583", "___s": true }, { @@ -509660,7 +511382,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R048603", + "___id": "T000002R048584", "___s": true }, { @@ -509728,7 +511450,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R048604", + "___id": "T000002R048585", "___s": true }, { @@ -509824,11 +511546,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R048605", + "___id": "T000002R048586", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -509858,16 +511580,33 @@ ], "memberof": "Phaser.GameObjects.NineSlice", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R048606", + "___id": "T000002R048587", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -509894,16 +511633,33 @@ ], "memberof": "Phaser.GameObjects.NineSlice", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R048607", + "___id": "T000002R048588", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -509917,14 +511673,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R048608", + "___id": "T000002R048589", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -509938,14 +511694,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R048609", + "___id": "T000002R048590", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -509976,14 +511732,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R048610", + "___id": "T000002R048591", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -510011,14 +511767,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R048611", + "___id": "T000002R048592", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -510061,14 +511817,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R048612", + "___id": "T000002R048593", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -510105,14 +511861,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R048613", + "___id": "T000002R048594", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -510171,14 +511927,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R048614", + "___id": "T000002R048595", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -510207,14 +511963,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R048615", + "___id": "T000002R048596", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -510247,14 +512003,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R048616", + "___id": "T000002R048597", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -510283,14 +512039,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R048617", + "___id": "T000002R048598", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -510324,7 +512080,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R048618", + "___id": "T000002R048599", "___s": true }, { @@ -510345,7 +512101,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R048619", + "___id": "T000002R048600", "___s": true }, { @@ -510397,7 +512153,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R048620", + "___id": "T000002R048601", "___s": true }, { @@ -510466,7 +512222,7 @@ "name": "event" } ], - "___id": "T000002R048621", + "___id": "T000002R048602", "___s": true }, { @@ -510526,7 +512282,7 @@ "name": "event" } ], - "___id": "T000002R048622", + "___id": "T000002R048603", "___s": true }, { @@ -510601,7 +512357,7 @@ "name": "args" } ], - "___id": "T000002R048623", + "___id": "T000002R048604", "___s": true }, { @@ -510689,7 +512445,7 @@ "name": "context" } ], - "___id": "T000002R048624", + "___id": "T000002R048605", "___s": true }, { @@ -510777,7 +512533,7 @@ "name": "context" } ], - "___id": "T000002R048625", + "___id": "T000002R048606", "___s": true }, { @@ -510865,7 +512621,7 @@ "name": "context" } ], - "___id": "T000002R048626", + "___id": "T000002R048607", "___s": true }, { @@ -510967,7 +512723,7 @@ "name": "once" } ], - "___id": "T000002R048627", + "___id": "T000002R048608", "___s": true }, { @@ -511069,7 +512825,7 @@ "name": "once" } ], - "___id": "T000002R048628", + "___id": "T000002R048609", "___s": true }, { @@ -511131,7 +512887,7 @@ "name": "event" } ], - "___id": "T000002R048629", + "___id": "T000002R048610", "___s": true }, { @@ -511167,7 +512923,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R048631", + "___id": "T000002R048612", "___s": true }, { @@ -511220,7 +512976,7 @@ ], "inherits": "Phaser.GameObjects.Components.AlphaSingle#setAlpha", "inherited": true, - "___id": "T000002R048632", + "___id": "T000002R048613", "___s": true }, { @@ -511250,7 +513006,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R048633", + "___id": "T000002R048614", "___s": true }, { @@ -511295,7 +513051,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R048635", + "___id": "T000002R048616", "___s": true }, { @@ -511361,7 +513117,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R048636", + "___id": "T000002R048617", "___s": true }, { @@ -511391,7 +513147,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R048638", + "___id": "T000002R048619", "___s": true }, { @@ -511442,7 +513198,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R048639", + "___id": "T000002R048620", "___s": true }, { @@ -511478,7 +513234,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R048640", + "___id": "T000002R048621", "___s": true }, { @@ -511514,7 +513270,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R048641", + "___id": "T000002R048622", "___s": true }, { @@ -511565,7 +513321,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R048642", + "___id": "T000002R048623", "___s": true }, { @@ -511616,7 +513372,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R048643", + "___id": "T000002R048624", "___s": true }, { @@ -511690,7 +513446,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getCenter", "inherited": true, - "___id": "T000002R048645", + "___id": "T000002R048626", "___s": true }, { @@ -511764,7 +513520,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "inherited": true, - "___id": "T000002R048646", + "___id": "T000002R048627", "___s": true }, { @@ -511838,7 +513594,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "inherited": true, - "___id": "T000002R048647", + "___id": "T000002R048628", "___s": true }, { @@ -511912,7 +513668,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopRight", "inherited": true, - "___id": "T000002R048648", + "___id": "T000002R048629", "___s": true }, { @@ -511986,7 +513742,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "inherited": true, - "___id": "T000002R048649", + "___id": "T000002R048630", "___s": true }, { @@ -512060,7 +513816,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "inherited": true, - "___id": "T000002R048650", + "___id": "T000002R048631", "___s": true }, { @@ -512134,7 +513890,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "inherited": true, - "___id": "T000002R048651", + "___id": "T000002R048632", "___s": true }, { @@ -512208,7 +513964,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "inherited": true, - "___id": "T000002R048652", + "___id": "T000002R048633", "___s": true }, { @@ -512282,7 +514038,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "inherited": true, - "___id": "T000002R048653", + "___id": "T000002R048634", "___s": true }, { @@ -512361,7 +514117,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBounds", "inherited": true, - "___id": "T000002R048654", + "___id": "T000002R048635", "___s": true }, { @@ -512401,7 +514157,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R048655", + "___id": "T000002R048636", "___s": true }, { @@ -512462,7 +514218,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R048656", + "___id": "T000002R048637", "___s": true }, { @@ -512515,7 +514271,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R048657", + "___id": "T000002R048638", "___s": true }, { @@ -512677,7 +514433,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R048658", + "___id": "T000002R048639", "___s": true }, { @@ -512758,7 +514514,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R048659", + "___id": "T000002R048640", "___s": true }, { @@ -512788,7 +514544,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R048661", + "___id": "T000002R048642", "___s": true }, { @@ -512818,7 +514574,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R048662", + "___id": "T000002R048643", "___s": true }, { @@ -512854,7 +514610,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R048663", + "___id": "T000002R048644", "___s": true }, { @@ -512922,7 +514678,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R048664", + "___id": "T000002R048645", "___s": true }, { @@ -512958,7 +514714,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R048665", + "___id": "T000002R048646", "___s": true }, { @@ -512996,7 +514752,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R048666", + "___id": "T000002R048647", "___s": true }, { @@ -513034,7 +514790,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R048667", + "___id": "T000002R048648", "___s": true }, { @@ -513071,7 +514827,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R048668", + "___id": "T000002R048649", "___s": true }, { @@ -513139,7 +514895,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R048669", + "___id": "T000002R048650", "___s": true }, { @@ -513236,7 +514992,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R048670", + "___id": "T000002R048651", "___s": true }, { @@ -513308,7 +515064,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R048671", + "___id": "T000002R048652", "___s": true }, { @@ -513367,7 +515123,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R048672", + "___id": "T000002R048653", "___s": true }, { @@ -513411,7 +515167,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R048673", + "___id": "T000002R048654", "___s": true }, { @@ -513448,7 +515204,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R048674", + "___id": "T000002R048655", "___s": true }, { @@ -513494,7 +515250,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R048675", + "___id": "T000002R048656", "___s": true }, { @@ -513531,7 +515287,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R048676", + "___id": "T000002R048657", "___s": true }, { @@ -513570,7 +515326,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R048677", + "___id": "T000002R048658", "___s": true }, { @@ -513607,7 +515363,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R048678", + "___id": "T000002R048659", "___s": true }, { @@ -513652,7 +515408,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R048679", + "___id": "T000002R048660", "___s": true }, { @@ -513796,7 +515552,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R048680", + "___id": "T000002R048661", "___s": true }, { @@ -513868,7 +515624,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R048681", + "___id": "T000002R048662", "___s": true }, { @@ -513959,7 +515715,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R048682", + "___id": "T000002R048663", "___s": true }, { @@ -514004,7 +515760,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R048683", + "___id": "T000002R048664", "___s": true }, { @@ -514072,7 +515828,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R048684", + "___id": "T000002R048665", "___s": true }, { @@ -514115,7 +515871,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R048685", + "___id": "T000002R048666", "___s": true }, { @@ -514146,7 +515902,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R048686", + "___id": "T000002R048667", "___s": true }, { @@ -514177,7 +515933,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R048687", + "___id": "T000002R048668", "___s": true }, { @@ -514243,7 +515999,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R048688", + "___id": "T000002R048669", "___s": true }, { @@ -514283,7 +516039,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#texture", "inherited": true, - "___id": "T000002R048689", + "___id": "T000002R048670", "___s": true }, { @@ -514313,7 +516069,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#frame", "inherited": true, - "___id": "T000002R048690", + "___id": "T000002R048671", "___s": true }, { @@ -514428,7 +516184,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setTexture", "inherited": true, - "___id": "T000002R048692", + "___id": "T000002R048673", "___s": true }, { @@ -514524,7 +516280,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setFrame", "inherited": true, - "___id": "T000002R048693", + "___id": "T000002R048674", "___s": true }, { @@ -514556,7 +516312,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R048694", + "___id": "T000002R048675", "___s": true }, { @@ -514587,7 +516343,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R048698", + "___id": "T000002R048679", "___s": true }, { @@ -514618,7 +516374,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R048699", + "___id": "T000002R048680", "___s": true }, { @@ -514649,7 +516405,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R048700", + "___id": "T000002R048681", "___s": true }, { @@ -514680,7 +516436,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R048701", + "___id": "T000002R048682", "___s": true }, { @@ -514711,7 +516467,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R048702", + "___id": "T000002R048683", "___s": true }, { @@ -514742,7 +516498,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R048703", + "___id": "T000002R048684", "___s": true }, { @@ -514773,7 +516529,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R048704", + "___id": "T000002R048685", "___s": true }, { @@ -514804,7 +516560,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R048705", + "___id": "T000002R048686", "___s": true }, { @@ -514835,7 +516591,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R048706", + "___id": "T000002R048687", "___s": true }, { @@ -514933,7 +516689,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R048707", + "___id": "T000002R048688", "___s": true }, { @@ -514999,7 +516755,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R048708", + "___id": "T000002R048689", "___s": true }, { @@ -515095,7 +516851,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R048709", + "___id": "T000002R048690", "___s": true }, { @@ -515148,7 +516904,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R048710", + "___id": "T000002R048691", "___s": true }, { @@ -515201,7 +516957,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R048711", + "___id": "T000002R048692", "___s": true }, { @@ -515269,7 +517025,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R048712", + "___id": "T000002R048693", "___s": true }, { @@ -515322,7 +517078,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R048713", + "___id": "T000002R048694", "___s": true }, { @@ -515375,7 +517131,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R048714", + "___id": "T000002R048695", "___s": true }, { @@ -515428,7 +517184,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R048715", + "___id": "T000002R048696", "___s": true }, { @@ -515481,7 +517237,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R048716", + "___id": "T000002R048697", "___s": true }, { @@ -515532,7 +517288,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R048717", + "___id": "T000002R048698", "___s": true }, { @@ -515597,7 +517353,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R048718", + "___id": "T000002R048699", "___s": true }, { @@ -515688,7 +517444,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R048719", + "___id": "T000002R048700", "___s": true }, { @@ -515723,7 +517479,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R048720", + "___id": "T000002R048701", "___s": true }, { @@ -515753,7 +517509,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R048722", + "___id": "T000002R048703", "___s": true }, { @@ -515804,7 +517560,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R048723", + "___id": "T000002R048704", "___s": true }, { @@ -515834,7 +517590,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#propertyKey", "inherited": true, - "___id": "T000002R048724", + "___id": "T000002R048705", "___s": true }, { @@ -515874,7 +517630,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#propertyValue", "inherited": true, - "___id": "T000002R048725", + "___id": "T000002R048706", "___s": true }, { @@ -515914,7 +517670,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#defaultValue", "inherited": true, - "___id": "T000002R048726", + "___id": "T000002R048707", "___s": true }, { @@ -515945,7 +517701,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#steps", "inherited": true, - "___id": "T000002R048727", + "___id": "T000002R048708", "___s": true }, { @@ -515976,7 +517732,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#counter", "inherited": true, - "___id": "T000002R048728", + "___id": "T000002R048709", "___s": true }, { @@ -516007,7 +517763,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#yoyo", "inherited": true, - "___id": "T000002R048729", + "___id": "T000002R048710", "___s": true }, { @@ -516038,7 +517794,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#direction", "inherited": true, - "___id": "T000002R048730", + "___id": "T000002R048711", "___s": true }, { @@ -516088,7 +517844,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#start", "inherited": true, - "___id": "T000002R048731", + "___id": "T000002R048712", "___s": true }, { @@ -516118,7 +517874,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#current", "inherited": true, - "___id": "T000002R048732", + "___id": "T000002R048713", "___s": true }, { @@ -516149,7 +517905,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#end", "inherited": true, - "___id": "T000002R048733", + "___id": "T000002R048714", "___s": true }, { @@ -516181,7 +517937,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#ease", "inherited": true, - "___id": "T000002R048734", + "___id": "T000002R048715", "___s": true }, { @@ -516213,7 +517969,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#interpolation", "inherited": true, - "___id": "T000002R048735", + "___id": "T000002R048716", "___s": true }, { @@ -516243,7 +517999,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#emitOnly", "inherited": true, - "___id": "T000002R048736", + "___id": "T000002R048717", "___s": true }, { @@ -516273,7 +518029,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#onEmit", "inherited": true, - "___id": "T000002R048737", + "___id": "T000002R048718", "___s": true }, { @@ -516303,7 +518059,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#onUpdate", "inherited": true, - "___id": "T000002R048738", + "___id": "T000002R048719", "___s": true }, { @@ -516333,7 +518089,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#active", "inherited": true, - "___id": "T000002R048739", + "___id": "T000002R048720", "___s": true }, { @@ -516363,7 +518119,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#method", "inherited": true, - "___id": "T000002R048740", + "___id": "T000002R048721", "___s": true }, { @@ -516414,7 +518170,7 @@ ], "inherits": "Phaser.GameObjects.Particles.EmitterOp#loadConfig", "inherited": true, - "___id": "T000002R048743", + "___id": "T000002R048724", "___s": true }, { @@ -516449,7 +518205,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#toJSON", "inherited": true, - "___id": "T000002R048744", + "___id": "T000002R048725", "___s": true }, { @@ -516500,7 +518256,7 @@ ], "inherits": "Phaser.GameObjects.Particles.EmitterOp#onChange", "inherited": true, - "___id": "T000002R048745", + "___id": "T000002R048726", "___s": true }, { @@ -516563,7 +518319,7 @@ ], "inherits": "Phaser.GameObjects.Particles.EmitterOp#has", "inherited": true, - "___id": "T000002R048746", + "___id": "T000002R048727", "___s": true }, { @@ -516639,7 +518395,7 @@ ], "inherits": "Phaser.GameObjects.Particles.EmitterOp#hasBoth", "inherited": true, - "___id": "T000002R048747", + "___id": "T000002R048728", "___s": true }, { @@ -516715,7 +518471,7 @@ ], "inherits": "Phaser.GameObjects.Particles.EmitterOp#hasEither", "inherited": true, - "___id": "T000002R048748", + "___id": "T000002R048729", "___s": true }, { @@ -516792,7 +518548,7 @@ ], "inherits": "Phaser.GameObjects.Particles.EmitterOp#defaultEmit", "inherited": true, - "___id": "T000002R048749", + "___id": "T000002R048730", "___s": true }, { @@ -516881,7 +518637,7 @@ ], "inherits": "Phaser.GameObjects.Particles.EmitterOp#defaultUpdate", "inherited": true, - "___id": "T000002R048750", + "___id": "T000002R048731", "___s": true }, { @@ -516958,7 +518714,7 @@ ], "inherits": "Phaser.GameObjects.Particles.EmitterOp#proxyEmit", "inherited": true, - "___id": "T000002R048751", + "___id": "T000002R048732", "___s": true }, { @@ -517047,7 +518803,7 @@ ], "inherits": "Phaser.GameObjects.Particles.EmitterOp#proxyUpdate", "inherited": true, - "___id": "T000002R048752", + "___id": "T000002R048733", "___s": true }, { @@ -517082,7 +518838,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#staticValueEmit", "inherited": true, - "___id": "T000002R048753", + "___id": "T000002R048734", "___s": true }, { @@ -517117,7 +518873,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#staticValueUpdate", "inherited": true, - "___id": "T000002R048754", + "___id": "T000002R048735", "___s": true }, { @@ -517152,7 +518908,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#randomStaticValueEmit", "inherited": true, - "___id": "T000002R048755", + "___id": "T000002R048736", "___s": true }, { @@ -517215,7 +518971,7 @@ ], "inherits": "Phaser.GameObjects.Particles.EmitterOp#randomRangedValueEmit", "inherited": true, - "___id": "T000002R048756", + "___id": "T000002R048737", "___s": true }, { @@ -517278,7 +519034,7 @@ ], "inherits": "Phaser.GameObjects.Particles.EmitterOp#randomRangedIntEmit", "inherited": true, - "___id": "T000002R048757", + "___id": "T000002R048738", "___s": true }, { @@ -517313,7 +519069,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#steppedEmit", "inherited": true, - "___id": "T000002R048758", + "___id": "T000002R048739", "___s": true }, { @@ -517334,7 +519090,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.EmitterOp#destroy", "inherited": true, - "___id": "T000002R048759", + "___id": "T000002R048740", "___s": true }, { @@ -517364,7 +519120,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.ParticleProcessor#manager", "inherited": true, - "___id": "T000002R048760", + "___id": "T000002R048741", "___s": true }, { @@ -517394,7 +519150,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.ParticleProcessor#x", "inherited": true, - "___id": "T000002R048761", + "___id": "T000002R048742", "___s": true }, { @@ -517424,7 +519180,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.ParticleProcessor#y", "inherited": true, - "___id": "T000002R048762", + "___id": "T000002R048743", "___s": true }, { @@ -517454,7 +519210,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.ParticleProcessor#active", "inherited": true, - "___id": "T000002R048763", + "___id": "T000002R048744", "___s": true }, { @@ -517475,7 +519231,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.ParticleProcessor#destroy", "inherited": true, - "___id": "T000002R048764", + "___id": "T000002R048745", "___s": true }, { @@ -517505,7 +519261,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.ParticleProcessor#manager", "inherited": true, - "___id": "T000002R048765", + "___id": "T000002R048746", "___s": true }, { @@ -517535,7 +519291,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.ParticleProcessor#x", "inherited": true, - "___id": "T000002R048766", + "___id": "T000002R048747", "___s": true }, { @@ -517565,7 +519321,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.ParticleProcessor#y", "inherited": true, - "___id": "T000002R048767", + "___id": "T000002R048748", "___s": true }, { @@ -517595,7 +519351,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.ParticleProcessor#active", "inherited": true, - "___id": "T000002R048768", + "___id": "T000002R048749", "___s": true }, { @@ -517616,7 +519372,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Particles.ParticleProcessor#destroy", "inherited": true, - "___id": "T000002R048769", + "___id": "T000002R048750", "___s": true }, { @@ -517646,7 +519402,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R048770", + "___id": "T000002R048751", "___s": true }, { @@ -517687,7 +519443,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R048771", + "___id": "T000002R048752", "___s": true }, { @@ -517717,7 +519473,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R048772", + "___id": "T000002R048753", "___s": true }, { @@ -517757,7 +519513,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R048773", + "___id": "T000002R048754", "___s": true }, { @@ -517787,7 +519543,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R048774", + "___id": "T000002R048755", "___s": true }, { @@ -517818,7 +519574,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R048775", + "___id": "T000002R048756", "___s": true }, { @@ -517849,7 +519605,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R048776", + "___id": "T000002R048757", "___s": true }, { @@ -517880,7 +519636,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R048777", + "___id": "T000002R048758", "___s": true }, { @@ -517911,7 +519667,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R048778", + "___id": "T000002R048759", "___s": true }, { @@ -517942,7 +519698,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R048779", + "___id": "T000002R048760", "___s": true }, { @@ -517976,7 +519732,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R048780", + "___id": "T000002R048761", "___s": true }, { @@ -518009,7 +519765,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R048781", + "___id": "T000002R048762", "___s": true }, { @@ -518057,7 +519813,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R048782", + "___id": "T000002R048763", "___s": true }, { @@ -518088,7 +519844,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R048783", + "___id": "T000002R048764", "___s": true }, { @@ -518139,7 +519895,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R048784", + "___id": "T000002R048765", "___s": true }, { @@ -518190,7 +519946,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R048785", + "___id": "T000002R048766", "___s": true }, { @@ -518251,7 +520007,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R048786", + "___id": "T000002R048767", "___s": true }, { @@ -518290,7 +520046,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R048787", + "___id": "T000002R048768", "___s": true }, { @@ -518378,7 +520134,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R048788", + "___id": "T000002R048769", "___s": true }, { @@ -518444,7 +520200,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R048789", + "___id": "T000002R048770", "___s": true }, { @@ -518495,7 +520251,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R048790", + "___id": "T000002R048771", "___s": true }, { @@ -518563,7 +520319,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R048791", + "___id": "T000002R048772", "___s": true }, { @@ -518659,11 +520415,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R048792", + "___id": "T000002R048773", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -518693,16 +520449,33 @@ ], "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R048793", + "___id": "T000002R048774", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -518729,16 +520502,33 @@ ], "memberof": "Phaser.GameObjects.Particles.ParticleEmitter", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R048794", + "___id": "T000002R048775", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -518752,14 +520542,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R048795", + "___id": "T000002R048776", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -518773,14 +520563,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R048796", + "___id": "T000002R048777", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -518811,14 +520601,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R048797", + "___id": "T000002R048778", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -518861,14 +520651,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R048798", + "___id": "T000002R048779", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -518905,14 +520695,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R048799", + "___id": "T000002R048780", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -518971,14 +520761,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R048800", + "___id": "T000002R048781", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -519007,14 +520797,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R048801", + "___id": "T000002R048782", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -519047,14 +520837,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R048802", + "___id": "T000002R048783", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -519083,14 +520873,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R048803", + "___id": "T000002R048784", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -519124,7 +520914,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R048804", + "___id": "T000002R048785", "___s": true }, { @@ -519145,7 +520935,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R048805", + "___id": "T000002R048786", "___s": true }, { @@ -519197,7 +520987,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R048806", + "___id": "T000002R048787", "___s": true }, { @@ -519266,7 +521056,7 @@ "name": "event" } ], - "___id": "T000002R048807", + "___id": "T000002R048788", "___s": true }, { @@ -519326,7 +521116,7 @@ "name": "event" } ], - "___id": "T000002R048808", + "___id": "T000002R048789", "___s": true }, { @@ -519401,7 +521191,7 @@ "name": "args" } ], - "___id": "T000002R048809", + "___id": "T000002R048790", "___s": true }, { @@ -519489,7 +521279,7 @@ "name": "context" } ], - "___id": "T000002R048810", + "___id": "T000002R048791", "___s": true }, { @@ -519577,7 +521367,7 @@ "name": "context" } ], - "___id": "T000002R048811", + "___id": "T000002R048792", "___s": true }, { @@ -519665,7 +521455,7 @@ "name": "context" } ], - "___id": "T000002R048812", + "___id": "T000002R048793", "___s": true }, { @@ -519767,7 +521557,7 @@ "name": "once" } ], - "___id": "T000002R048813", + "___id": "T000002R048794", "___s": true }, { @@ -519869,7 +521659,7 @@ "name": "once" } ], - "___id": "T000002R048814", + "___id": "T000002R048795", "___s": true }, { @@ -519931,7 +521721,7 @@ "name": "event" } ], - "___id": "T000002R048815", + "___id": "T000002R048796", "___s": true }, { @@ -519967,7 +521757,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R048817", + "___id": "T000002R048798", "___s": true }, { @@ -520020,7 +521810,7 @@ ], "inherits": "Phaser.GameObjects.Components.AlphaSingle#setAlpha", "inherited": true, - "___id": "T000002R048818", + "___id": "T000002R048799", "___s": true }, { @@ -520050,7 +521840,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R048819", + "___id": "T000002R048800", "___s": true }, { @@ -520095,7 +521885,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R048821", + "___id": "T000002R048802", "___s": true }, { @@ -520161,7 +521951,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R048822", + "___id": "T000002R048803", "___s": true }, { @@ -520191,7 +521981,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R048824", + "___id": "T000002R048805", "___s": true }, { @@ -520242,7 +522032,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R048825", + "___id": "T000002R048806", "___s": true }, { @@ -520278,7 +522068,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R048826", + "___id": "T000002R048807", "___s": true }, { @@ -520314,7 +522104,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R048827", + "___id": "T000002R048808", "___s": true }, { @@ -520365,7 +522155,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R048828", + "___id": "T000002R048809", "___s": true }, { @@ -520416,7 +522206,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R048829", + "___id": "T000002R048810", "___s": true }, { @@ -520456,7 +522246,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R048830", + "___id": "T000002R048811", "___s": true }, { @@ -520517,7 +522307,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R048831", + "___id": "T000002R048812", "___s": true }, { @@ -520570,7 +522360,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R048832", + "___id": "T000002R048813", "___s": true }, { @@ -520732,7 +522522,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R048833", + "___id": "T000002R048814", "___s": true }, { @@ -520813,7 +522603,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R048834", + "___id": "T000002R048815", "___s": true }, { @@ -520851,7 +522641,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R048835", + "___id": "T000002R048816", "___s": true }, { @@ -520889,7 +522679,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R048836", + "___id": "T000002R048817", "___s": true }, { @@ -520926,7 +522716,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R048837", + "___id": "T000002R048818", "___s": true }, { @@ -520994,7 +522784,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R048838", + "___id": "T000002R048819", "___s": true }, { @@ -521091,7 +522881,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R048839", + "___id": "T000002R048820", "___s": true }, { @@ -521163,7 +522953,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R048840", + "___id": "T000002R048821", "___s": true }, { @@ -521222,7 +523012,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R048841", + "___id": "T000002R048822", "___s": true }, { @@ -521266,7 +523056,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R048842", + "___id": "T000002R048823", "___s": true }, { @@ -521303,7 +523093,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R048843", + "___id": "T000002R048824", "___s": true }, { @@ -521349,7 +523139,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R048844", + "___id": "T000002R048825", "___s": true }, { @@ -521386,7 +523176,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R048845", + "___id": "T000002R048826", "___s": true }, { @@ -521425,7 +523215,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R048846", + "___id": "T000002R048827", "___s": true }, { @@ -521462,7 +523252,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R048847", + "___id": "T000002R048828", "___s": true }, { @@ -521507,7 +523297,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R048848", + "___id": "T000002R048829", "___s": true }, { @@ -521651,7 +523441,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R048849", + "___id": "T000002R048830", "___s": true }, { @@ -521723,7 +523513,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R048850", + "___id": "T000002R048831", "___s": true }, { @@ -521814,7 +523604,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R048851", + "___id": "T000002R048832", "___s": true }, { @@ -521859,7 +523649,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R048852", + "___id": "T000002R048833", "___s": true }, { @@ -521927,7 +523717,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R048853", + "___id": "T000002R048834", "___s": true }, { @@ -521970,7 +523760,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R048854", + "___id": "T000002R048835", "___s": true }, { @@ -522001,7 +523791,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R048855", + "___id": "T000002R048836", "___s": true }, { @@ -522032,7 +523822,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R048856", + "___id": "T000002R048837", "___s": true }, { @@ -522098,7 +523888,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R048857", + "___id": "T000002R048838", "___s": true }, { @@ -522138,7 +523928,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#texture", "inherited": true, - "___id": "T000002R048858", + "___id": "T000002R048839", "___s": true }, { @@ -522168,7 +523958,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#frame", "inherited": true, - "___id": "T000002R048859", + "___id": "T000002R048840", "___s": true }, { @@ -522283,7 +524073,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setTexture", "inherited": true, - "___id": "T000002R048861", + "___id": "T000002R048842", "___s": true }, { @@ -522379,7 +524169,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setFrame", "inherited": true, - "___id": "T000002R048862", + "___id": "T000002R048843", "___s": true }, { @@ -522411,7 +524201,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R048863", + "___id": "T000002R048844", "___s": true }, { @@ -522442,7 +524232,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R048867", + "___id": "T000002R048848", "___s": true }, { @@ -522473,7 +524263,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R048868", + "___id": "T000002R048849", "___s": true }, { @@ -522504,7 +524294,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R048869", + "___id": "T000002R048850", "___s": true }, { @@ -522535,7 +524325,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R048870", + "___id": "T000002R048851", "___s": true }, { @@ -522566,7 +524356,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R048871", + "___id": "T000002R048852", "___s": true }, { @@ -522597,7 +524387,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R048872", + "___id": "T000002R048853", "___s": true }, { @@ -522628,7 +524418,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R048873", + "___id": "T000002R048854", "___s": true }, { @@ -522659,7 +524449,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R048874", + "___id": "T000002R048855", "___s": true }, { @@ -522690,7 +524480,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R048875", + "___id": "T000002R048856", "___s": true }, { @@ -522788,7 +524578,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R048876", + "___id": "T000002R048857", "___s": true }, { @@ -522854,7 +524644,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R048877", + "___id": "T000002R048858", "___s": true }, { @@ -522950,7 +524740,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R048878", + "___id": "T000002R048859", "___s": true }, { @@ -523003,7 +524793,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R048879", + "___id": "T000002R048860", "___s": true }, { @@ -523056,7 +524846,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R048880", + "___id": "T000002R048861", "___s": true }, { @@ -523124,7 +524914,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R048881", + "___id": "T000002R048862", "___s": true }, { @@ -523177,7 +524967,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R048882", + "___id": "T000002R048863", "___s": true }, { @@ -523230,7 +525020,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R048883", + "___id": "T000002R048864", "___s": true }, { @@ -523283,7 +525073,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R048884", + "___id": "T000002R048865", "___s": true }, { @@ -523336,7 +525126,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R048885", + "___id": "T000002R048866", "___s": true }, { @@ -523387,7 +525177,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R048886", + "___id": "T000002R048867", "___s": true }, { @@ -523452,7 +525242,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R048887", + "___id": "T000002R048868", "___s": true }, { @@ -523543,7 +525333,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R048888", + "___id": "T000002R048869", "___s": true }, { @@ -523578,7 +525368,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R048889", + "___id": "T000002R048870", "___s": true }, { @@ -523608,7 +525398,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R048891", + "___id": "T000002R048872", "___s": true }, { @@ -523659,7 +525449,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R048892", + "___id": "T000002R048873", "___s": true }, { @@ -523689,7 +525479,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R048893", + "___id": "T000002R048874", "___s": true }, { @@ -523730,7 +525520,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R048894", + "___id": "T000002R048875", "___s": true }, { @@ -523760,7 +525550,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R048895", + "___id": "T000002R048876", "___s": true }, { @@ -523800,7 +525590,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R048896", + "___id": "T000002R048877", "___s": true }, { @@ -523830,7 +525620,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R048897", + "___id": "T000002R048878", "___s": true }, { @@ -523861,7 +525651,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R048898", + "___id": "T000002R048879", "___s": true }, { @@ -523892,7 +525682,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R048899", + "___id": "T000002R048880", "___s": true }, { @@ -523923,7 +525713,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R048900", + "___id": "T000002R048881", "___s": true }, { @@ -523954,7 +525744,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R048901", + "___id": "T000002R048882", "___s": true }, { @@ -523985,7 +525775,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R048902", + "___id": "T000002R048883", "___s": true }, { @@ -524019,7 +525809,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R048903", + "___id": "T000002R048884", "___s": true }, { @@ -524052,7 +525842,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R048904", + "___id": "T000002R048885", "___s": true }, { @@ -524100,7 +525890,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R048905", + "___id": "T000002R048886", "___s": true }, { @@ -524131,7 +525921,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R048906", + "___id": "T000002R048887", "___s": true }, { @@ -524182,7 +525972,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R048907", + "___id": "T000002R048888", "___s": true }, { @@ -524233,7 +526023,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R048908", + "___id": "T000002R048889", "___s": true }, { @@ -524294,7 +526084,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R048909", + "___id": "T000002R048890", "___s": true }, { @@ -524333,7 +526123,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R048910", + "___id": "T000002R048891", "___s": true }, { @@ -524421,7 +526211,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R048911", + "___id": "T000002R048892", "___s": true }, { @@ -524487,7 +526277,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R048912", + "___id": "T000002R048893", "___s": true }, { @@ -524538,7 +526328,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R048913", + "___id": "T000002R048894", "___s": true }, { @@ -524606,7 +526396,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R048914", + "___id": "T000002R048895", "___s": true }, { @@ -524702,11 +526492,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R048915", + "___id": "T000002R048896", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -524736,16 +526526,33 @@ ], "memberof": "Phaser.GameObjects.Sprite", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R048916", + "___id": "T000002R048897", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -524772,16 +526579,33 @@ ], "memberof": "Phaser.GameObjects.Sprite", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R048917", + "___id": "T000002R048898", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -524795,14 +526619,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R048918", + "___id": "T000002R048899", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -524816,14 +526640,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R048919", + "___id": "T000002R048900", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -524854,14 +526678,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R048920", + "___id": "T000002R048901", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -524904,14 +526728,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R048921", + "___id": "T000002R048902", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -524948,14 +526772,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R048922", + "___id": "T000002R048903", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -525014,14 +526838,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R048923", + "___id": "T000002R048904", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -525050,14 +526874,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R048924", + "___id": "T000002R048905", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -525090,14 +526914,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R048925", + "___id": "T000002R048906", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -525126,14 +526950,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R048926", + "___id": "T000002R048907", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -525167,7 +526991,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R048927", + "___id": "T000002R048908", "___s": true }, { @@ -525188,7 +527012,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R048928", + "___id": "T000002R048909", "___s": true }, { @@ -525240,7 +527064,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R048929", + "___id": "T000002R048910", "___s": true }, { @@ -525309,7 +527133,7 @@ "name": "event" } ], - "___id": "T000002R048930", + "___id": "T000002R048911", "___s": true }, { @@ -525369,7 +527193,7 @@ "name": "event" } ], - "___id": "T000002R048931", + "___id": "T000002R048912", "___s": true }, { @@ -525444,7 +527268,7 @@ "name": "args" } ], - "___id": "T000002R048932", + "___id": "T000002R048913", "___s": true }, { @@ -525532,7 +527356,7 @@ "name": "context" } ], - "___id": "T000002R048933", + "___id": "T000002R048914", "___s": true }, { @@ -525620,7 +527444,7 @@ "name": "context" } ], - "___id": "T000002R048934", + "___id": "T000002R048915", "___s": true }, { @@ -525708,7 +527532,7 @@ "name": "context" } ], - "___id": "T000002R048935", + "___id": "T000002R048916", "___s": true }, { @@ -525810,7 +527634,7 @@ "name": "once" } ], - "___id": "T000002R048936", + "___id": "T000002R048917", "___s": true }, { @@ -525912,7 +527736,7 @@ "name": "once" } ], - "___id": "T000002R048937", + "___id": "T000002R048918", "___s": true }, { @@ -525974,7 +527798,7 @@ "name": "event" } ], - "___id": "T000002R048938", + "___id": "T000002R048919", "___s": true }, { @@ -526010,7 +527834,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R048944", + "___id": "T000002R048925", "___s": true }, { @@ -526105,7 +527929,7 @@ ], "inherits": "Phaser.GameObjects.Components.Alpha#setAlpha", "inherited": true, - "___id": "T000002R048945", + "___id": "T000002R048926", "___s": true }, { @@ -526135,7 +527959,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, - "___id": "T000002R048946", + "___id": "T000002R048927", "___s": true }, { @@ -526172,7 +527996,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R048947", + "___id": "T000002R048928", "___s": true }, { @@ -526209,7 +528033,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R048948", + "___id": "T000002R048929", "___s": true }, { @@ -526246,7 +528070,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R048949", + "___id": "T000002R048930", "___s": true }, { @@ -526283,7 +528107,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R048950", + "___id": "T000002R048931", "___s": true }, { @@ -526328,7 +528152,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R048952", + "___id": "T000002R048933", "___s": true }, { @@ -526394,7 +528218,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R048953", + "___id": "T000002R048934", "___s": true }, { @@ -526424,7 +528248,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R048955", + "___id": "T000002R048936", "___s": true }, { @@ -526475,7 +528299,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R048956", + "___id": "T000002R048937", "___s": true }, { @@ -526511,7 +528335,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R048957", + "___id": "T000002R048938", "___s": true }, { @@ -526547,7 +528371,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R048958", + "___id": "T000002R048939", "___s": true }, { @@ -526598,7 +528422,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R048959", + "___id": "T000002R048940", "___s": true }, { @@ -526649,7 +528473,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R048960", + "___id": "T000002R048941", "___s": true }, { @@ -526680,7 +528504,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, - "___id": "T000002R048961", + "___id": "T000002R048942", "___s": true }, { @@ -526711,7 +528535,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, - "___id": "T000002R048962", + "___id": "T000002R048943", "___s": true }, { @@ -526747,7 +528571,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, - "___id": "T000002R048963", + "___id": "T000002R048944", "___s": true }, { @@ -526783,7 +528607,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, - "___id": "T000002R048964", + "___id": "T000002R048945", "___s": true }, { @@ -526834,7 +528658,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipX", "inherited": true, - "___id": "T000002R048965", + "___id": "T000002R048946", "___s": true }, { @@ -526885,7 +528709,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipY", "inherited": true, - "___id": "T000002R048966", + "___id": "T000002R048947", "___s": true }, { @@ -526949,7 +528773,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlip", "inherited": true, - "___id": "T000002R048967", + "___id": "T000002R048948", "___s": true }, { @@ -526985,7 +528809,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, - "___id": "T000002R048968", + "___id": "T000002R048949", "___s": true }, { @@ -527059,7 +528883,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getCenter", "inherited": true, - "___id": "T000002R048970", + "___id": "T000002R048951", "___s": true }, { @@ -527133,7 +528957,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "inherited": true, - "___id": "T000002R048971", + "___id": "T000002R048952", "___s": true }, { @@ -527207,7 +529031,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "inherited": true, - "___id": "T000002R048972", + "___id": "T000002R048953", "___s": true }, { @@ -527281,7 +529105,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopRight", "inherited": true, - "___id": "T000002R048973", + "___id": "T000002R048954", "___s": true }, { @@ -527355,7 +529179,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "inherited": true, - "___id": "T000002R048974", + "___id": "T000002R048955", "___s": true }, { @@ -527429,7 +529253,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "inherited": true, - "___id": "T000002R048975", + "___id": "T000002R048956", "___s": true }, { @@ -527503,7 +529327,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "inherited": true, - "___id": "T000002R048976", + "___id": "T000002R048957", "___s": true }, { @@ -527577,7 +529401,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "inherited": true, - "___id": "T000002R048977", + "___id": "T000002R048958", "___s": true }, { @@ -527651,7 +529475,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "inherited": true, - "___id": "T000002R048978", + "___id": "T000002R048959", "___s": true }, { @@ -527730,7 +529554,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBounds", "inherited": true, - "___id": "T000002R048979", + "___id": "T000002R048960", "___s": true }, { @@ -527770,7 +529594,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R048980", + "___id": "T000002R048961", "___s": true }, { @@ -527831,7 +529655,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R048981", + "___id": "T000002R048962", "___s": true }, { @@ -527884,7 +529708,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R048982", + "___id": "T000002R048963", "___s": true }, { @@ -528046,7 +529870,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R048983", + "___id": "T000002R048964", "___s": true }, { @@ -528127,7 +529951,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R048984", + "___id": "T000002R048965", "___s": true }, { @@ -528159,7 +529983,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R048986", + "___id": "T000002R048967", "___s": true }, { @@ -528191,7 +530015,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R048987", + "___id": "T000002R048968", "___s": true }, { @@ -528221,7 +530045,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R048988", + "___id": "T000002R048969", "___s": true }, { @@ -528251,7 +530075,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R048989", + "___id": "T000002R048970", "___s": true }, { @@ -528319,7 +530143,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R048990", + "___id": "T000002R048971", "___s": true }, { @@ -528355,7 +530179,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R048991", + "___id": "T000002R048972", "___s": true }, { @@ -528423,7 +530247,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R048992", + "___id": "T000002R048973", "___s": true }, { @@ -528459,7 +530283,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R048993", + "___id": "T000002R048974", "___s": true }, { @@ -528497,7 +530321,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R048994", + "___id": "T000002R048975", "___s": true }, { @@ -528535,7 +530359,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R048995", + "___id": "T000002R048976", "___s": true }, { @@ -528572,7 +530396,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R048996", + "___id": "T000002R048977", "___s": true }, { @@ -528640,7 +530464,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R048997", + "___id": "T000002R048978", "___s": true }, { @@ -528737,7 +530561,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R048998", + "___id": "T000002R048979", "___s": true }, { @@ -528809,7 +530633,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R048999", + "___id": "T000002R048980", "___s": true }, { @@ -528868,7 +530692,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R049000", + "___id": "T000002R048981", "___s": true }, { @@ -528912,7 +530736,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R049001", + "___id": "T000002R048982", "___s": true }, { @@ -528949,7 +530773,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R049002", + "___id": "T000002R048983", "___s": true }, { @@ -528995,7 +530819,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R049003", + "___id": "T000002R048984", "___s": true }, { @@ -529032,7 +530856,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R049004", + "___id": "T000002R048985", "___s": true }, { @@ -529071,7 +530895,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R049005", + "___id": "T000002R048986", "___s": true }, { @@ -529108,7 +530932,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R049006", + "___id": "T000002R048987", "___s": true }, { @@ -529153,7 +530977,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R049007", + "___id": "T000002R048988", "___s": true }, { @@ -529297,7 +531121,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R049008", + "___id": "T000002R048989", "___s": true }, { @@ -529369,7 +531193,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R049009", + "___id": "T000002R048990", "___s": true }, { @@ -529460,7 +531284,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R049010", + "___id": "T000002R048991", "___s": true }, { @@ -529505,7 +531329,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R049011", + "___id": "T000002R048992", "___s": true }, { @@ -529573,7 +531397,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R049012", + "___id": "T000002R048993", "___s": true }, { @@ -529616,7 +531440,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R049013", + "___id": "T000002R048994", "___s": true }, { @@ -529647,7 +531471,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R049014", + "___id": "T000002R048995", "___s": true }, { @@ -529678,7 +531502,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R049015", + "___id": "T000002R048996", "___s": true }, { @@ -529744,7 +531568,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R049016", + "___id": "T000002R048997", "___s": true }, { @@ -529774,7 +531598,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, - "___id": "T000002R049018", + "___id": "T000002R048999", "___s": true }, { @@ -529804,7 +531628,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, - "___id": "T000002R049019", + "___id": "T000002R049000", "___s": true }, { @@ -529834,7 +531658,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, - "___id": "T000002R049020", + "___id": "T000002R049001", "___s": true }, { @@ -529864,7 +531688,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, - "___id": "T000002R049021", + "___id": "T000002R049002", "___s": true }, { @@ -529926,7 +531750,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setSizeToFrame", "inherited": true, - "___id": "T000002R049022", + "___id": "T000002R049003", "___s": true }, { @@ -529990,7 +531814,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setSize", "inherited": true, - "___id": "T000002R049023", + "___id": "T000002R049004", "___s": true }, { @@ -530054,7 +531878,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setDisplaySize", "inherited": true, - "___id": "T000002R049024", + "___id": "T000002R049005", "___s": true }, { @@ -530094,7 +531918,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#texture", "inherited": true, - "___id": "T000002R049025", + "___id": "T000002R049006", "___s": true }, { @@ -530124,7 +531948,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#frame", "inherited": true, - "___id": "T000002R049026", + "___id": "T000002R049007", "___s": true }, { @@ -530154,7 +531978,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#isCropped", "inherited": true, - "___id": "T000002R049027", + "___id": "T000002R049008", "___s": true }, { @@ -530258,7 +532082,7 @@ ], "inherits": "Phaser.GameObjects.Components.TextureCrop#setCrop", "inherited": true, - "___id": "T000002R049028", + "___id": "T000002R049009", "___s": true }, { @@ -530333,7 +532157,7 @@ ], "inherits": "Phaser.GameObjects.Components.TextureCrop#setTexture", "inherited": true, - "___id": "T000002R049029", + "___id": "T000002R049010", "___s": true }, { @@ -530429,7 +532253,7 @@ ], "inherits": "Phaser.GameObjects.Components.TextureCrop#setFrame", "inherited": true, - "___id": "T000002R049030", + "___id": "T000002R049011", "___s": true }, { @@ -530460,7 +532284,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, - "___id": "T000002R049032", + "___id": "T000002R049013", "___s": true }, { @@ -530491,7 +532315,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, - "___id": "T000002R049033", + "___id": "T000002R049014", "___s": true }, { @@ -530522,7 +532346,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, - "___id": "T000002R049034", + "___id": "T000002R049015", "___s": true }, { @@ -530553,7 +532377,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, - "___id": "T000002R049035", + "___id": "T000002R049016", "___s": true }, { @@ -530584,7 +532408,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, - "___id": "T000002R049036", + "___id": "T000002R049017", "___s": true }, { @@ -530627,7 +532451,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, - "___id": "T000002R049037", + "___id": "T000002R049018", "___s": true }, { @@ -530729,7 +532553,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTint", "inherited": true, - "___id": "T000002R049038", + "___id": "T000002R049019", "___s": true }, { @@ -530831,7 +532655,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTintFill", "inherited": true, - "___id": "T000002R049039", + "___id": "T000002R049020", "___s": true }, { @@ -530868,7 +532692,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, - "___id": "T000002R049040", + "___id": "T000002R049021", "___s": true }, { @@ -530906,7 +532730,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, - "___id": "T000002R049041", + "___id": "T000002R049022", "___s": true }, { @@ -530938,7 +532762,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R049042", + "___id": "T000002R049023", "___s": true }, { @@ -530969,7 +532793,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R049046", + "___id": "T000002R049027", "___s": true }, { @@ -531000,7 +532824,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R049047", + "___id": "T000002R049028", "___s": true }, { @@ -531031,7 +532855,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R049048", + "___id": "T000002R049029", "___s": true }, { @@ -531062,7 +532886,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R049049", + "___id": "T000002R049030", "___s": true }, { @@ -531093,7 +532917,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R049050", + "___id": "T000002R049031", "___s": true }, { @@ -531124,7 +532948,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R049051", + "___id": "T000002R049032", "___s": true }, { @@ -531155,7 +532979,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R049052", + "___id": "T000002R049033", "___s": true }, { @@ -531186,7 +533010,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R049053", + "___id": "T000002R049034", "___s": true }, { @@ -531217,7 +533041,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R049054", + "___id": "T000002R049035", "___s": true }, { @@ -531315,7 +533139,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R049055", + "___id": "T000002R049036", "___s": true }, { @@ -531381,7 +533205,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R049056", + "___id": "T000002R049037", "___s": true }, { @@ -531477,7 +533301,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R049057", + "___id": "T000002R049038", "___s": true }, { @@ -531530,7 +533354,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R049058", + "___id": "T000002R049039", "___s": true }, { @@ -531583,7 +533407,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R049059", + "___id": "T000002R049040", "___s": true }, { @@ -531651,7 +533475,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R049060", + "___id": "T000002R049041", "___s": true }, { @@ -531704,7 +533528,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R049061", + "___id": "T000002R049042", "___s": true }, { @@ -531757,7 +533581,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R049062", + "___id": "T000002R049043", "___s": true }, { @@ -531810,7 +533634,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R049063", + "___id": "T000002R049044", "___s": true }, { @@ -531863,7 +533687,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R049064", + "___id": "T000002R049045", "___s": true }, { @@ -531914,7 +533738,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R049065", + "___id": "T000002R049046", "___s": true }, { @@ -531979,7 +533803,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R049066", + "___id": "T000002R049047", "___s": true }, { @@ -532070,7 +533894,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R049067", + "___id": "T000002R049048", "___s": true }, { @@ -532105,7 +533929,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R049068", + "___id": "T000002R049049", "___s": true }, { @@ -532135,7 +533959,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R049070", + "___id": "T000002R049051", "___s": true }, { @@ -532186,7 +534010,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R049071", + "___id": "T000002R049052", "___s": true }, { @@ -532216,7 +534040,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Sprite#anims", "inherited": true, - "___id": "T000002R049073", + "___id": "T000002R049054", "___s": true }, { @@ -532300,7 +534124,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#play", "inherited": true, - "___id": "T000002R049074", + "___id": "T000002R049055", "___s": true }, { @@ -532384,7 +534208,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#playReverse", "inherited": true, - "___id": "T000002R049075", + "___id": "T000002R049056", "___s": true }, { @@ -532466,7 +534290,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#playAfterDelay", "inherited": true, - "___id": "T000002R049076", + "___id": "T000002R049057", "___s": true }, { @@ -532550,7 +534374,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#playAfterRepeat", "inherited": true, - "___id": "T000002R049077", + "___id": "T000002R049058", "___s": true }, { @@ -532659,7 +534483,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#chain", "inherited": true, - "___id": "T000002R049078", + "___id": "T000002R049059", "___s": true }, { @@ -532698,7 +534522,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Sprite#stop", "inherited": true, - "___id": "T000002R049079", + "___id": "T000002R049060", "___s": true }, { @@ -532752,7 +534576,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#stopAfterDelay", "inherited": true, - "___id": "T000002R049080", + "___id": "T000002R049061", "___s": true }, { @@ -532808,7 +534632,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#stopAfterRepeat", "inherited": true, - "___id": "T000002R049081", + "___id": "T000002R049062", "___s": true }, { @@ -532862,7 +534686,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#stopOnFrame", "inherited": true, - "___id": "T000002R049082", + "___id": "T000002R049063", "___s": true }, { @@ -532897,7 +534721,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Sprite#toJSON", "inherited": true, - "___id": "T000002R049083", + "___id": "T000002R049064", "___s": true }, { @@ -532927,7 +534751,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R049087", + "___id": "T000002R049068", "___s": true }, { @@ -532968,7 +534792,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R049088", + "___id": "T000002R049069", "___s": true }, { @@ -532998,7 +534822,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R049089", + "___id": "T000002R049070", "___s": true }, { @@ -533038,7 +534862,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R049090", + "___id": "T000002R049071", "___s": true }, { @@ -533068,7 +534892,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R049091", + "___id": "T000002R049072", "___s": true }, { @@ -533099,7 +534923,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R049092", + "___id": "T000002R049073", "___s": true }, { @@ -533130,7 +534954,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R049093", + "___id": "T000002R049074", "___s": true }, { @@ -533161,7 +534985,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R049094", + "___id": "T000002R049075", "___s": true }, { @@ -533192,7 +535016,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R049095", + "___id": "T000002R049076", "___s": true }, { @@ -533223,7 +535047,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R049096", + "___id": "T000002R049077", "___s": true }, { @@ -533257,7 +535081,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R049097", + "___id": "T000002R049078", "___s": true }, { @@ -533290,7 +535114,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R049098", + "___id": "T000002R049079", "___s": true }, { @@ -533338,7 +535162,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R049099", + "___id": "T000002R049080", "___s": true }, { @@ -533369,7 +535193,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R049100", + "___id": "T000002R049081", "___s": true }, { @@ -533420,7 +535244,7 @@ "name": "value" } ], - "___id": "T000002R049101", + "___id": "T000002R049082", "___s": true }, { @@ -533471,7 +535295,7 @@ "name": "value" } ], - "___id": "T000002R049102", + "___id": "T000002R049083", "___s": true }, { @@ -533532,7 +535356,7 @@ "name": "value" } ], - "___id": "T000002R049103", + "___id": "T000002R049084", "___s": true }, { @@ -533571,7 +535395,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R049104", + "___id": "T000002R049085", "___s": true }, { @@ -533659,7 +535483,7 @@ "name": "data" } ], - "___id": "T000002R049105", + "___id": "T000002R049086", "___s": true }, { @@ -533725,7 +535549,7 @@ "name": "amount" } ], - "___id": "T000002R049106", + "___id": "T000002R049087", "___s": true }, { @@ -533776,7 +535600,7 @@ "name": "key" } ], - "___id": "T000002R049107", + "___id": "T000002R049088", "___s": true }, { @@ -533844,7 +535668,7 @@ "name": "key" } ], - "___id": "T000002R049108", + "___id": "T000002R049089", "___s": true }, { @@ -533940,11 +535764,11 @@ "name": "dropZone" } ], - "___id": "T000002R049109", + "___id": "T000002R049090", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -533976,14 +535800,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R049110", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R049091", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -534012,14 +535853,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R049111", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R049092", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -534033,14 +535891,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R049112", + "___id": "T000002R049093", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -534054,14 +535912,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R049113", + "___id": "T000002R049094", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -534092,14 +535950,14 @@ "name": "args" } ], - "___id": "T000002R049114", + "___id": "T000002R049095", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -534142,14 +536000,14 @@ "name": "camera" } ], - "___id": "T000002R049115", + "___id": "T000002R049096", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -534186,14 +536044,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R049116", + "___id": "T000002R049097", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -534252,14 +536110,14 @@ "name": "displayList" } ], - "___id": "T000002R049117", + "___id": "T000002R049098", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -534288,14 +536146,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R049118", + "___id": "T000002R049099", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -534328,14 +536186,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R049119", + "___id": "T000002R049100", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -534364,14 +536222,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R049120", + "___id": "T000002R049101", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -534405,7 +536263,7 @@ "name": "fromScene" } ], - "___id": "T000002R049121", + "___id": "T000002R049102", "___s": true }, { @@ -534426,7 +536284,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R049122", + "___id": "T000002R049103", "___s": true }, { @@ -534478,7 +536336,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R049123", + "___id": "T000002R049104", "___s": true }, { @@ -534547,7 +536405,7 @@ "name": "event" } ], - "___id": "T000002R049124", + "___id": "T000002R049105", "___s": true }, { @@ -534607,7 +536465,7 @@ "name": "event" } ], - "___id": "T000002R049125", + "___id": "T000002R049106", "___s": true }, { @@ -534682,7 +536540,7 @@ "name": "args" } ], - "___id": "T000002R049126", + "___id": "T000002R049107", "___s": true }, { @@ -534770,7 +536628,7 @@ "name": "context" } ], - "___id": "T000002R049127", + "___id": "T000002R049108", "___s": true }, { @@ -534858,7 +536716,7 @@ "name": "context" } ], - "___id": "T000002R049128", + "___id": "T000002R049109", "___s": true }, { @@ -534946,7 +536804,7 @@ "name": "context" } ], - "___id": "T000002R049129", + "___id": "T000002R049110", "___s": true }, { @@ -535048,7 +536906,7 @@ "name": "once" } ], - "___id": "T000002R049130", + "___id": "T000002R049111", "___s": true }, { @@ -535150,7 +537008,7 @@ "name": "once" } ], - "___id": "T000002R049131", + "___id": "T000002R049112", "___s": true }, { @@ -535212,7 +537070,7 @@ "name": "event" } ], - "___id": "T000002R049132", + "___id": "T000002R049113", "___s": true }, { @@ -535248,7 +537106,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R049138", + "___id": "T000002R049119", "___s": true }, { @@ -535343,7 +537201,7 @@ "name": "bottomRight" } ], - "___id": "T000002R049139", + "___id": "T000002R049120", "___s": true }, { @@ -535373,7 +537231,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, - "___id": "T000002R049140", + "___id": "T000002R049121", "___s": true }, { @@ -535410,7 +537268,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R049141", + "___id": "T000002R049122", "___s": true }, { @@ -535447,7 +537305,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R049142", + "___id": "T000002R049123", "___s": true }, { @@ -535484,7 +537342,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R049143", + "___id": "T000002R049124", "___s": true }, { @@ -535521,7 +537379,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R049144", + "___id": "T000002R049125", "___s": true }, { @@ -535566,7 +537424,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R049146", + "___id": "T000002R049127", "___s": true }, { @@ -535632,7 +537490,7 @@ "name": "value" } ], - "___id": "T000002R049147", + "___id": "T000002R049128", "___s": true }, { @@ -535662,7 +537520,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R049149", + "___id": "T000002R049130", "___s": true }, { @@ -535713,7 +537571,7 @@ "name": "value" } ], - "___id": "T000002R049150", + "___id": "T000002R049131", "___s": true }, { @@ -535749,7 +537607,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R049151", + "___id": "T000002R049132", "___s": true }, { @@ -535785,7 +537643,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R049152", + "___id": "T000002R049133", "___s": true }, { @@ -535836,7 +537694,7 @@ "name": "gameObject" } ], - "___id": "T000002R049153", + "___id": "T000002R049134", "___s": true }, { @@ -535887,7 +537745,7 @@ "name": "gameObject" } ], - "___id": "T000002R049154", + "___id": "T000002R049135", "___s": true }, { @@ -535918,7 +537776,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, - "___id": "T000002R049155", + "___id": "T000002R049136", "___s": true }, { @@ -535949,7 +537807,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, - "___id": "T000002R049156", + "___id": "T000002R049137", "___s": true }, { @@ -535985,7 +537843,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, - "___id": "T000002R049157", + "___id": "T000002R049138", "___s": true }, { @@ -536021,7 +537879,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, - "___id": "T000002R049158", + "___id": "T000002R049139", "___s": true }, { @@ -536072,7 +537930,7 @@ "name": "value" } ], - "___id": "T000002R049159", + "___id": "T000002R049140", "___s": true }, { @@ -536123,7 +537981,7 @@ "name": "value" } ], - "___id": "T000002R049160", + "___id": "T000002R049141", "___s": true }, { @@ -536187,7 +538045,7 @@ "name": "y" } ], - "___id": "T000002R049161", + "___id": "T000002R049142", "___s": true }, { @@ -536223,7 +538081,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, - "___id": "T000002R049162", + "___id": "T000002R049143", "___s": true }, { @@ -536297,7 +538155,7 @@ "name": "includeParent" } ], - "___id": "T000002R049164", + "___id": "T000002R049145", "___s": true }, { @@ -536371,7 +538229,7 @@ "name": "includeParent" } ], - "___id": "T000002R049165", + "___id": "T000002R049146", "___s": true }, { @@ -536445,7 +538303,7 @@ "name": "includeParent" } ], - "___id": "T000002R049166", + "___id": "T000002R049147", "___s": true }, { @@ -536519,7 +538377,7 @@ "name": "includeParent" } ], - "___id": "T000002R049167", + "___id": "T000002R049148", "___s": true }, { @@ -536593,7 +538451,7 @@ "name": "includeParent" } ], - "___id": "T000002R049168", + "___id": "T000002R049149", "___s": true }, { @@ -536667,7 +538525,7 @@ "name": "includeParent" } ], - "___id": "T000002R049169", + "___id": "T000002R049150", "___s": true }, { @@ -536741,7 +538599,7 @@ "name": "includeParent" } ], - "___id": "T000002R049170", + "___id": "T000002R049151", "___s": true }, { @@ -536815,7 +538673,7 @@ "name": "includeParent" } ], - "___id": "T000002R049171", + "___id": "T000002R049152", "___s": true }, { @@ -536889,7 +538747,7 @@ "name": "includeParent" } ], - "___id": "T000002R049172", + "___id": "T000002R049153", "___s": true }, { @@ -536968,7 +538826,7 @@ "name": "output" } ], - "___id": "T000002R049173", + "___id": "T000002R049154", "___s": true }, { @@ -537008,7 +538866,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R049174", + "___id": "T000002R049155", "___s": true }, { @@ -537069,7 +538927,7 @@ "name": "mask" } ], - "___id": "T000002R049175", + "___id": "T000002R049156", "___s": true }, { @@ -537122,7 +538980,7 @@ "name": "destroyMask" } ], - "___id": "T000002R049176", + "___id": "T000002R049157", "___s": true }, { @@ -537284,7 +539142,7 @@ "name": "frame" } ], - "___id": "T000002R049177", + "___id": "T000002R049158", "___s": true }, { @@ -537365,7 +539223,7 @@ "name": "graphics" } ], - "___id": "T000002R049178", + "___id": "T000002R049159", "___s": true }, { @@ -537397,7 +539255,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R049180", + "___id": "T000002R049161", "___s": true }, { @@ -537429,7 +539287,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R049181", + "___id": "T000002R049162", "___s": true }, { @@ -537459,7 +539317,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R049182", + "___id": "T000002R049163", "___s": true }, { @@ -537489,7 +539347,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R049183", + "___id": "T000002R049164", "___s": true }, { @@ -537557,7 +539415,7 @@ "name": "y" } ], - "___id": "T000002R049184", + "___id": "T000002R049165", "___s": true }, { @@ -537593,7 +539451,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R049185", + "___id": "T000002R049166", "___s": true }, { @@ -537661,7 +539519,7 @@ "name": "y" } ], - "___id": "T000002R049186", + "___id": "T000002R049167", "___s": true }, { @@ -537697,7 +539555,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R049187", + "___id": "T000002R049168", "___s": true }, { @@ -537735,7 +539593,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R049188", + "___id": "T000002R049169", "___s": true }, { @@ -537773,7 +539631,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R049189", + "___id": "T000002R049170", "___s": true }, { @@ -537810,7 +539668,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R049190", + "___id": "T000002R049171", "___s": true }, { @@ -537878,7 +539736,7 @@ "name": "pipeline" } ], - "___id": "T000002R049191", + "___id": "T000002R049172", "___s": true }, { @@ -537975,7 +539833,7 @@ "name": "copyData" } ], - "___id": "T000002R049192", + "___id": "T000002R049173", "___s": true }, { @@ -538047,7 +539905,7 @@ "name": "value" } ], - "___id": "T000002R049193", + "___id": "T000002R049174", "___s": true }, { @@ -538106,7 +539964,7 @@ "name": "resetData" } ], - "___id": "T000002R049194", + "___id": "T000002R049175", "___s": true }, { @@ -538150,7 +540008,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R049195", + "___id": "T000002R049176", "___s": true }, { @@ -538187,7 +540045,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R049196", + "___id": "T000002R049177", "___s": true }, { @@ -538233,7 +540091,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R049197", + "___id": "T000002R049178", "___s": true }, { @@ -538270,7 +540128,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R049198", + "___id": "T000002R049179", "___s": true }, { @@ -538309,7 +540167,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R049199", + "___id": "T000002R049180", "___s": true }, { @@ -538346,7 +540204,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R049200", + "___id": "T000002R049181", "___s": true }, { @@ -538391,7 +540249,7 @@ "name": "preFX" } ], - "___id": "T000002R049201", + "___id": "T000002R049182", "___s": true }, { @@ -538535,7 +540393,7 @@ "name": "copyData" } ], - "___id": "T000002R049202", + "___id": "T000002R049183", "___s": true }, { @@ -538607,7 +540465,7 @@ "name": "value" } ], - "___id": "T000002R049203", + "___id": "T000002R049184", "___s": true }, { @@ -538698,7 +540556,7 @@ "name": "pipeline" } ], - "___id": "T000002R049204", + "___id": "T000002R049185", "___s": true }, { @@ -538743,7 +540601,7 @@ "name": "resetData" } ], - "___id": "T000002R049205", + "___id": "T000002R049186", "___s": true }, { @@ -538811,7 +540669,7 @@ "name": "pipeline" } ], - "___id": "T000002R049206", + "___id": "T000002R049187", "___s": true }, { @@ -538854,7 +540712,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R049207", + "___id": "T000002R049188", "___s": true }, { @@ -538885,7 +540743,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R049208", + "___id": "T000002R049189", "___s": true }, { @@ -538916,7 +540774,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R049209", + "___id": "T000002R049190", "___s": true }, { @@ -538982,7 +540840,7 @@ "name": "y" } ], - "___id": "T000002R049210", + "___id": "T000002R049191", "___s": true }, { @@ -539012,7 +540870,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, - "___id": "T000002R049212", + "___id": "T000002R049193", "___s": true }, { @@ -539042,7 +540900,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, - "___id": "T000002R049213", + "___id": "T000002R049194", "___s": true }, { @@ -539072,7 +540930,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, - "___id": "T000002R049214", + "___id": "T000002R049195", "___s": true }, { @@ -539102,7 +540960,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, - "___id": "T000002R049215", + "___id": "T000002R049196", "___s": true }, { @@ -539164,7 +541022,7 @@ "name": "frame" } ], - "___id": "T000002R049216", + "___id": "T000002R049197", "___s": true }, { @@ -539228,7 +541086,7 @@ "name": "height" } ], - "___id": "T000002R049217", + "___id": "T000002R049198", "___s": true }, { @@ -539292,7 +541150,7 @@ "name": "height" } ], - "___id": "T000002R049218", + "___id": "T000002R049199", "___s": true }, { @@ -539332,7 +541190,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#texture", "inherited": true, - "___id": "T000002R049219", + "___id": "T000002R049200", "___s": true }, { @@ -539362,7 +541220,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#frame", "inherited": true, - "___id": "T000002R049220", + "___id": "T000002R049201", "___s": true }, { @@ -539392,7 +541250,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#isCropped", "inherited": true, - "___id": "T000002R049221", + "___id": "T000002R049202", "___s": true }, { @@ -539496,7 +541354,7 @@ "name": "height" } ], - "___id": "T000002R049222", + "___id": "T000002R049203", "___s": true }, { @@ -539571,7 +541429,7 @@ "name": "frame" } ], - "___id": "T000002R049223", + "___id": "T000002R049204", "___s": true }, { @@ -539667,7 +541525,7 @@ "name": "updateOrigin" } ], - "___id": "T000002R049224", + "___id": "T000002R049205", "___s": true }, { @@ -539698,7 +541556,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, - "___id": "T000002R049226", + "___id": "T000002R049207", "___s": true }, { @@ -539729,7 +541587,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, - "___id": "T000002R049227", + "___id": "T000002R049208", "___s": true }, { @@ -539760,7 +541618,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, - "___id": "T000002R049228", + "___id": "T000002R049209", "___s": true }, { @@ -539791,7 +541649,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, - "___id": "T000002R049229", + "___id": "T000002R049210", "___s": true }, { @@ -539822,7 +541680,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, - "___id": "T000002R049230", + "___id": "T000002R049211", "___s": true }, { @@ -539865,7 +541723,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, - "___id": "T000002R049231", + "___id": "T000002R049212", "___s": true }, { @@ -539967,7 +541825,7 @@ "name": "bottomRight" } ], - "___id": "T000002R049232", + "___id": "T000002R049213", "___s": true }, { @@ -540069,7 +541927,7 @@ "name": "bottomRight" } ], - "___id": "T000002R049233", + "___id": "T000002R049214", "___s": true }, { @@ -540106,7 +541964,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, - "___id": "T000002R049234", + "___id": "T000002R049215", "___s": true }, { @@ -540144,7 +542002,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, - "___id": "T000002R049235", + "___id": "T000002R049216", "___s": true }, { @@ -540176,7 +542034,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R049236", + "___id": "T000002R049217", "___s": true }, { @@ -540207,7 +542065,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R049240", + "___id": "T000002R049221", "___s": true }, { @@ -540238,7 +542096,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R049241", + "___id": "T000002R049222", "___s": true }, { @@ -540269,7 +542127,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R049242", + "___id": "T000002R049223", "___s": true }, { @@ -540300,7 +542158,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R049243", + "___id": "T000002R049224", "___s": true }, { @@ -540331,7 +542189,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R049244", + "___id": "T000002R049225", "___s": true }, { @@ -540362,7 +542220,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R049245", + "___id": "T000002R049226", "___s": true }, { @@ -540393,7 +542251,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R049246", + "___id": "T000002R049227", "___s": true }, { @@ -540424,7 +542282,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R049247", + "___id": "T000002R049228", "___s": true }, { @@ -540455,7 +542313,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R049248", + "___id": "T000002R049229", "___s": true }, { @@ -540553,7 +542411,7 @@ "name": "w" } ], - "___id": "T000002R049249", + "___id": "T000002R049230", "___s": true }, { @@ -540619,7 +542477,7 @@ "name": "source" } ], - "___id": "T000002R049250", + "___id": "T000002R049231", "___s": true }, { @@ -540715,7 +542573,7 @@ "name": "height" } ], - "___id": "T000002R049251", + "___id": "T000002R049232", "___s": true }, { @@ -540768,7 +542626,7 @@ "name": "radians" } ], - "___id": "T000002R049252", + "___id": "T000002R049233", "___s": true }, { @@ -540821,7 +542679,7 @@ "name": "degrees" } ], - "___id": "T000002R049253", + "___id": "T000002R049234", "___s": true }, { @@ -540889,7 +542747,7 @@ "name": "y" } ], - "___id": "T000002R049254", + "___id": "T000002R049235", "___s": true }, { @@ -540942,7 +542800,7 @@ "name": "value" } ], - "___id": "T000002R049255", + "___id": "T000002R049236", "___s": true }, { @@ -540995,7 +542853,7 @@ "name": "value" } ], - "___id": "T000002R049256", + "___id": "T000002R049237", "___s": true }, { @@ -541048,7 +542906,7 @@ "name": "value" } ], - "___id": "T000002R049257", + "___id": "T000002R049238", "___s": true }, { @@ -541101,7 +542959,7 @@ "name": "value" } ], - "___id": "T000002R049258", + "___id": "T000002R049239", "___s": true }, { @@ -541152,7 +543010,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R049259", + "___id": "T000002R049240", "___s": true }, { @@ -541217,7 +543075,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R049260", + "___id": "T000002R049241", "___s": true }, { @@ -541308,7 +543166,7 @@ "name": "camera" } ], - "___id": "T000002R049261", + "___id": "T000002R049242", "___s": true }, { @@ -541343,7 +543201,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R049262", + "___id": "T000002R049243", "___s": true }, { @@ -541373,7 +543231,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R049264", + "___id": "T000002R049245", "___s": true }, { @@ -541424,7 +543282,7 @@ "name": "value" } ], - "___id": "T000002R049265", + "___id": "T000002R049246", "___s": true }, { @@ -541454,7 +543312,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PathFollower#path", "inherited": true, - "___id": "T000002R049266", + "___id": "T000002R049247", "___s": true }, { @@ -541485,7 +543343,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PathFollower#rotateToPath", "inherited": true, - "___id": "T000002R049267", + "___id": "T000002R049248", "___s": true }, { @@ -541565,7 +543423,7 @@ ], "inherits": "Phaser.GameObjects.Components.PathFollower#setPath", "inherited": true, - "___id": "T000002R049268", + "___id": "T000002R049249", "___s": true }, { @@ -541631,7 +543489,7 @@ ], "inherits": "Phaser.GameObjects.Components.PathFollower#setRotateToPath", "inherited": true, - "___id": "T000002R049269", + "___id": "T000002R049250", "___s": true }, { @@ -541666,7 +543524,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PathFollower#isFollowing", "inherited": true, - "___id": "T000002R049270", + "___id": "T000002R049251", "___s": true }, { @@ -541749,7 +543607,7 @@ ], "inherits": "Phaser.GameObjects.Components.PathFollower#startFollow", "inherited": true, - "___id": "T000002R049271", + "___id": "T000002R049252", "___s": true }, { @@ -541785,7 +543643,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PathFollower#pauseFollow", "inherited": true, - "___id": "T000002R049272", + "___id": "T000002R049253", "___s": true }, { @@ -541821,7 +543679,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PathFollower#resumeFollow", "inherited": true, - "___id": "T000002R049273", + "___id": "T000002R049254", "___s": true }, { @@ -541857,7 +543715,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PathFollower#stopFollow", "inherited": true, - "___id": "T000002R049274", + "___id": "T000002R049255", "___s": true }, { @@ -541878,7 +543736,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PathFollower#pathUpdate", "inherited": true, - "___id": "T000002R049275", + "___id": "T000002R049256", "___s": true }, { @@ -541917,7 +543775,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#faces", "inherited": true, - "___id": "T000002R049276", + "___id": "T000002R049257", "___s": true }, { @@ -541956,7 +543814,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#vertices", "inherited": true, - "___id": "T000002R049277", + "___id": "T000002R049258", "___s": true }, { @@ -541987,7 +543845,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#tintFill", "inherited": true, - "___id": "T000002R049278", + "___id": "T000002R049259", "___s": true }, { @@ -542017,7 +543875,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#debugCallback", "inherited": true, - "___id": "T000002R049279", + "___id": "T000002R049260", "___s": true }, { @@ -542047,7 +543905,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#debugGraphic", "inherited": true, - "___id": "T000002R049280", + "___id": "T000002R049261", "___s": true }, { @@ -542077,7 +543935,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#hideCCW", "inherited": true, - "___id": "T000002R049281", + "___id": "T000002R049262", "___s": true }, { @@ -542107,7 +543965,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#modelPosition", "inherited": true, - "___id": "T000002R049282", + "___id": "T000002R049263", "___s": true }, { @@ -542137,7 +543995,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#modelScale", "inherited": true, - "___id": "T000002R049283", + "___id": "T000002R049264", "___s": true }, { @@ -542167,7 +544025,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#modelRotation", "inherited": true, - "___id": "T000002R049284", + "___id": "T000002R049265", "___s": true }, { @@ -542197,7 +544055,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#transformMatrix", "inherited": true, - "___id": "T000002R049286", + "___id": "T000002R049267", "___s": true }, { @@ -542227,7 +544085,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#viewPosition", "inherited": true, - "___id": "T000002R049287", + "___id": "T000002R049268", "___s": true }, { @@ -542257,7 +544115,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#viewMatrix", "inherited": true, - "___id": "T000002R049288", + "___id": "T000002R049269", "___s": true }, { @@ -542287,7 +544145,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#projectionMatrix", "inherited": true, - "___id": "T000002R049289", + "___id": "T000002R049270", "___s": true }, { @@ -542318,7 +544176,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#totalRendered", "inherited": true, - "___id": "T000002R049290", + "___id": "T000002R049271", "___s": true }, { @@ -542348,7 +544206,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#ignoreDirtyCache", "inherited": true, - "___id": "T000002R049292", + "___id": "T000002R049273", "___s": true }, { @@ -542379,7 +544237,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#fov", "inherited": true, - "___id": "T000002R049293", + "___id": "T000002R049274", "___s": true }, { @@ -542415,7 +544273,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#panX", "inherited": true, - "___id": "T000002R049294", + "___id": "T000002R049275", "___s": true }, { @@ -542451,7 +544309,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#panY", "inherited": true, - "___id": "T000002R049295", + "___id": "T000002R049276", "___s": true }, { @@ -542487,7 +544345,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#panZ", "inherited": true, - "___id": "T000002R049296", + "___id": "T000002R049277", "___s": true }, { @@ -542581,7 +544439,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#setPerspective", "inherited": true, - "___id": "T000002R049297", + "___id": "T000002R049278", "___s": true }, { @@ -542664,7 +544522,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#setOrtho", "inherited": true, - "___id": "T000002R049298", + "___id": "T000002R049279", "___s": true }, { @@ -542700,7 +544558,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#clear", "inherited": true, - "___id": "T000002R049299", + "___id": "T000002R049280", "___s": true }, { @@ -542871,7 +544729,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#addVerticesFromObj", "inherited": true, - "___id": "T000002R049300", + "___id": "T000002R049281", "___s": true }, { @@ -542934,7 +544792,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#sortByDepth", "inherited": true, - "___id": "T000002R049301", + "___id": "T000002R049282", "___s": true }, { @@ -542970,7 +544828,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#depthSort", "inherited": true, - "___id": "T000002R049302", + "___id": "T000002R049283", "___s": true }, { @@ -543103,7 +544961,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#addVertex", "inherited": true, - "___id": "T000002R049303", + "___id": "T000002R049284", "___s": true }, { @@ -543180,7 +545038,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#addFace", "inherited": true, - "___id": "T000002R049304", + "___id": "T000002R049285", "___s": true }, { @@ -543391,7 +545249,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#addVertices", "inherited": true, - "___id": "T000002R049305", + "___id": "T000002R049286", "___s": true }, { @@ -543426,7 +545284,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#getFaceCount", "inherited": true, - "___id": "T000002R049306", + "___id": "T000002R049287", "___s": true }, { @@ -543461,7 +545319,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#getVertexCount", "inherited": true, - "___id": "T000002R049307", + "___id": "T000002R049288", "___s": true }, { @@ -543511,7 +545369,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#getFace", "inherited": true, - "___id": "T000002R049308", + "___id": "T000002R049289", "___s": true }, { @@ -543588,7 +545446,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#hasFaceAt", "inherited": true, - "___id": "T000002R049309", + "___id": "T000002R049290", "___s": true }, { @@ -543674,7 +545532,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#getFaceAt", "inherited": true, - "___id": "T000002R049310", + "___id": "T000002R049291", "___s": true }, { @@ -543740,7 +545598,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#setDebug", "inherited": true, - "___id": "T000002R049311", + "___id": "T000002R049292", "___s": true }, { @@ -543775,7 +545633,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#isDirty", "inherited": true, - "___id": "T000002R049312", + "___id": "T000002R049293", "___s": true }, { @@ -543833,7 +545691,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#renderDebug", "inherited": true, - "___id": "T000002R049313", + "___id": "T000002R049294", "___s": true }, { @@ -543876,7 +545734,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#clearTint", "inherited": true, - "___id": "T000002R049314", + "___id": "T000002R049295", "___s": true }, { @@ -543937,7 +545795,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#setInteractive", "inherited": true, - "___id": "T000002R049315", + "___id": "T000002R049296", "___s": true }, { @@ -543997,7 +545855,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#setTint", "inherited": true, - "___id": "T000002R049316", + "___id": "T000002R049297", "___s": true }, { @@ -544068,7 +545926,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#uvScroll", "inherited": true, - "___id": "T000002R049317", + "___id": "T000002R049298", "___s": true }, { @@ -544139,7 +545997,7 @@ ], "inherits": "Phaser.GameObjects.Mesh#uvScale", "inherited": true, - "___id": "T000002R049318", + "___id": "T000002R049299", "___s": true }, { @@ -544189,7 +546047,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#tint", "inherited": true, - "___id": "T000002R049319", + "___id": "T000002R049300", "___s": true }, { @@ -544232,7 +546090,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#rotateX", "inherited": true, - "___id": "T000002R049320", + "___id": "T000002R049301", "___s": true }, { @@ -544275,7 +546133,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#rotateY", "inherited": true, - "___id": "T000002R049321", + "___id": "T000002R049302", "___s": true }, { @@ -544318,7 +546176,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Mesh#rotateZ", "inherited": true, - "___id": "T000002R049322", + "___id": "T000002R049303", "___s": true }, { @@ -544348,7 +546206,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R049325", + "___id": "T000002R049306", "___s": true }, { @@ -544389,7 +546247,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R049326", + "___id": "T000002R049307", "___s": true }, { @@ -544419,7 +546277,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R049327", + "___id": "T000002R049308", "___s": true }, { @@ -544459,7 +546317,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R049328", + "___id": "T000002R049309", "___s": true }, { @@ -544489,7 +546347,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R049329", + "___id": "T000002R049310", "___s": true }, { @@ -544520,7 +546378,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R049330", + "___id": "T000002R049311", "___s": true }, { @@ -544551,7 +546409,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R049331", + "___id": "T000002R049312", "___s": true }, { @@ -544582,7 +546440,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R049332", + "___id": "T000002R049313", "___s": true }, { @@ -544613,7 +546471,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R049333", + "___id": "T000002R049314", "___s": true }, { @@ -544644,7 +546502,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R049334", + "___id": "T000002R049315", "___s": true }, { @@ -544678,7 +546536,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R049335", + "___id": "T000002R049316", "___s": true }, { @@ -544711,7 +546569,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R049336", + "___id": "T000002R049317", "___s": true }, { @@ -544759,7 +546617,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R049337", + "___id": "T000002R049318", "___s": true }, { @@ -544790,7 +546648,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R049338", + "___id": "T000002R049319", "___s": true }, { @@ -544841,7 +546699,7 @@ "name": "value" } ], - "___id": "T000002R049339", + "___id": "T000002R049320", "___s": true }, { @@ -544892,7 +546750,7 @@ "name": "value" } ], - "___id": "T000002R049340", + "___id": "T000002R049321", "___s": true }, { @@ -544953,7 +546811,7 @@ "name": "value" } ], - "___id": "T000002R049341", + "___id": "T000002R049322", "___s": true }, { @@ -544992,7 +546850,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R049342", + "___id": "T000002R049323", "___s": true }, { @@ -545080,7 +546938,7 @@ "name": "data" } ], - "___id": "T000002R049343", + "___id": "T000002R049324", "___s": true }, { @@ -545146,7 +547004,7 @@ "name": "amount" } ], - "___id": "T000002R049344", + "___id": "T000002R049325", "___s": true }, { @@ -545197,7 +547055,7 @@ "name": "key" } ], - "___id": "T000002R049345", + "___id": "T000002R049326", "___s": true }, { @@ -545265,11 +547123,11 @@ "name": "key" } ], - "___id": "T000002R049346", + "___id": "T000002R049327", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -545301,14 +547159,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R049347", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R049328", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -545337,14 +547212,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R049348", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R049329", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -545358,14 +547250,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R049349", + "___id": "T000002R049330", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -545379,14 +547271,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R049350", + "___id": "T000002R049331", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -545417,14 +547309,14 @@ "name": "args" } ], - "___id": "T000002R049351", + "___id": "T000002R049332", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -545452,14 +547344,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R049352", + "___id": "T000002R049333", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -545502,14 +547394,14 @@ "name": "camera" } ], - "___id": "T000002R049353", + "___id": "T000002R049334", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -545546,14 +547438,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R049354", + "___id": "T000002R049335", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -545612,14 +547504,14 @@ "name": "displayList" } ], - "___id": "T000002R049355", + "___id": "T000002R049336", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -545648,14 +547540,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R049356", + "___id": "T000002R049337", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -545688,14 +547580,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R049357", + "___id": "T000002R049338", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -545724,14 +547616,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R049358", + "___id": "T000002R049339", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -545765,7 +547657,7 @@ "name": "fromScene" } ], - "___id": "T000002R049359", + "___id": "T000002R049340", "___s": true }, { @@ -545786,7 +547678,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R049360", + "___id": "T000002R049341", "___s": true }, { @@ -545838,7 +547730,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R049361", + "___id": "T000002R049342", "___s": true }, { @@ -545907,7 +547799,7 @@ "name": "event" } ], - "___id": "T000002R049362", + "___id": "T000002R049343", "___s": true }, { @@ -545967,7 +547859,7 @@ "name": "event" } ], - "___id": "T000002R049363", + "___id": "T000002R049344", "___s": true }, { @@ -546042,7 +547934,7 @@ "name": "args" } ], - "___id": "T000002R049364", + "___id": "T000002R049345", "___s": true }, { @@ -546130,7 +548022,7 @@ "name": "context" } ], - "___id": "T000002R049365", + "___id": "T000002R049346", "___s": true }, { @@ -546218,7 +548110,7 @@ "name": "context" } ], - "___id": "T000002R049366", + "___id": "T000002R049347", "___s": true }, { @@ -546306,7 +548198,7 @@ "name": "context" } ], - "___id": "T000002R049367", + "___id": "T000002R049348", "___s": true }, { @@ -546408,7 +548300,7 @@ "name": "once" } ], - "___id": "T000002R049368", + "___id": "T000002R049349", "___s": true }, { @@ -546510,7 +548402,7 @@ "name": "once" } ], - "___id": "T000002R049369", + "___id": "T000002R049350", "___s": true }, { @@ -546572,7 +548464,7 @@ "name": "event" } ], - "___id": "T000002R049370", + "___id": "T000002R049351", "___s": true }, { @@ -546608,7 +548500,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R049372", + "___id": "T000002R049353", "___s": true }, { @@ -546661,7 +548553,7 @@ "name": "value" } ], - "___id": "T000002R049373", + "___id": "T000002R049354", "___s": true }, { @@ -546691,7 +548583,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R049374", + "___id": "T000002R049355", "___s": true }, { @@ -546736,7 +548628,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R049376", + "___id": "T000002R049357", "___s": true }, { @@ -546802,7 +548694,7 @@ "name": "value" } ], - "___id": "T000002R049377", + "___id": "T000002R049358", "___s": true }, { @@ -546832,7 +548724,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R049379", + "___id": "T000002R049360", "___s": true }, { @@ -546883,7 +548775,7 @@ "name": "value" } ], - "___id": "T000002R049380", + "___id": "T000002R049361", "___s": true }, { @@ -546919,7 +548811,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R049381", + "___id": "T000002R049362", "___s": true }, { @@ -546955,7 +548847,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R049382", + "___id": "T000002R049363", "___s": true }, { @@ -547006,7 +548898,7 @@ "name": "gameObject" } ], - "___id": "T000002R049383", + "___id": "T000002R049364", "___s": true }, { @@ -547057,7 +548949,7 @@ "name": "gameObject" } ], - "___id": "T000002R049384", + "___id": "T000002R049365", "___s": true }, { @@ -547097,7 +548989,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R049385", + "___id": "T000002R049366", "___s": true }, { @@ -547158,7 +549050,7 @@ "name": "mask" } ], - "___id": "T000002R049386", + "___id": "T000002R049367", "___s": true }, { @@ -547211,7 +549103,7 @@ "name": "destroyMask" } ], - "___id": "T000002R049387", + "___id": "T000002R049368", "___s": true }, { @@ -547373,7 +549265,7 @@ "name": "frame" } ], - "___id": "T000002R049388", + "___id": "T000002R049369", "___s": true }, { @@ -547454,7 +549346,7 @@ "name": "graphics" } ], - "___id": "T000002R049389", + "___id": "T000002R049370", "___s": true }, { @@ -547492,7 +549384,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R049390", + "___id": "T000002R049371", "___s": true }, { @@ -547530,7 +549422,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R049391", + "___id": "T000002R049372", "___s": true }, { @@ -547567,7 +549459,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R049392", + "___id": "T000002R049373", "___s": true }, { @@ -547635,7 +549527,7 @@ "name": "pipeline" } ], - "___id": "T000002R049393", + "___id": "T000002R049374", "___s": true }, { @@ -547732,7 +549624,7 @@ "name": "copyData" } ], - "___id": "T000002R049394", + "___id": "T000002R049375", "___s": true }, { @@ -547804,7 +549696,7 @@ "name": "value" } ], - "___id": "T000002R049395", + "___id": "T000002R049376", "___s": true }, { @@ -547863,7 +549755,7 @@ "name": "resetData" } ], - "___id": "T000002R049396", + "___id": "T000002R049377", "___s": true }, { @@ -547907,7 +549799,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R049397", + "___id": "T000002R049378", "___s": true }, { @@ -547944,7 +549836,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R049398", + "___id": "T000002R049379", "___s": true }, { @@ -547990,7 +549882,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R049399", + "___id": "T000002R049380", "___s": true }, { @@ -548027,7 +549919,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R049400", + "___id": "T000002R049381", "___s": true }, { @@ -548066,7 +549958,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R049401", + "___id": "T000002R049382", "___s": true }, { @@ -548103,7 +549995,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R049402", + "___id": "T000002R049383", "___s": true }, { @@ -548148,7 +550040,7 @@ "name": "preFX" } ], - "___id": "T000002R049403", + "___id": "T000002R049384", "___s": true }, { @@ -548292,7 +550184,7 @@ "name": "copyData" } ], - "___id": "T000002R049404", + "___id": "T000002R049385", "___s": true }, { @@ -548364,7 +550256,7 @@ "name": "value" } ], - "___id": "T000002R049405", + "___id": "T000002R049386", "___s": true }, { @@ -548455,7 +550347,7 @@ "name": "pipeline" } ], - "___id": "T000002R049406", + "___id": "T000002R049387", "___s": true }, { @@ -548500,7 +550392,7 @@ "name": "resetData" } ], - "___id": "T000002R049407", + "___id": "T000002R049388", "___s": true }, { @@ -548568,7 +550460,7 @@ "name": "pipeline" } ], - "___id": "T000002R049408", + "___id": "T000002R049389", "___s": true }, { @@ -548611,7 +550503,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R049409", + "___id": "T000002R049390", "___s": true }, { @@ -548642,7 +550534,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R049410", + "___id": "T000002R049391", "___s": true }, { @@ -548673,7 +550565,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R049411", + "___id": "T000002R049392", "___s": true }, { @@ -548739,7 +550631,7 @@ "name": "y" } ], - "___id": "T000002R049412", + "___id": "T000002R049393", "___s": true }, { @@ -548769,7 +550661,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, - "___id": "T000002R049414", + "___id": "T000002R049395", "___s": true }, { @@ -548799,7 +550691,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, - "___id": "T000002R049415", + "___id": "T000002R049396", "___s": true }, { @@ -548829,7 +550721,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, - "___id": "T000002R049416", + "___id": "T000002R049397", "___s": true }, { @@ -548859,7 +550751,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, - "___id": "T000002R049417", + "___id": "T000002R049398", "___s": true }, { @@ -548913,7 +550805,7 @@ } ], "overrides": "Phaser.GameObjects.Mesh#setSizeToFrame", - "___id": "T000002R049418", + "___id": "T000002R049399", "___s": true }, { @@ -548977,7 +550869,7 @@ "name": "height" } ], - "___id": "T000002R049419", + "___id": "T000002R049400", "___s": true }, { @@ -549041,7 +550933,7 @@ "name": "height" } ], - "___id": "T000002R049420", + "___id": "T000002R049401", "___s": true }, { @@ -549081,7 +550973,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#texture", "inherited": true, - "___id": "T000002R049421", + "___id": "T000002R049402", "___s": true }, { @@ -549111,7 +551003,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#frame", "inherited": true, - "___id": "T000002R049422", + "___id": "T000002R049403", "___s": true }, { @@ -549226,7 +551118,7 @@ "name": "updateOrigin" } ], - "___id": "T000002R049424", + "___id": "T000002R049405", "___s": true }, { @@ -549322,7 +551214,7 @@ "name": "updateOrigin" } ], - "___id": "T000002R049425", + "___id": "T000002R049406", "___s": true }, { @@ -549354,7 +551246,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R049426", + "___id": "T000002R049407", "___s": true }, { @@ -549385,7 +551277,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R049430", + "___id": "T000002R049411", "___s": true }, { @@ -549416,7 +551308,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R049431", + "___id": "T000002R049412", "___s": true }, { @@ -549447,7 +551339,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R049432", + "___id": "T000002R049413", "___s": true }, { @@ -549478,7 +551370,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R049433", + "___id": "T000002R049414", "___s": true }, { @@ -549509,7 +551401,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R049434", + "___id": "T000002R049415", "___s": true }, { @@ -549540,7 +551432,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R049435", + "___id": "T000002R049416", "___s": true }, { @@ -549571,7 +551463,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R049436", + "___id": "T000002R049417", "___s": true }, { @@ -549602,7 +551494,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R049437", + "___id": "T000002R049418", "___s": true }, { @@ -549633,7 +551525,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R049438", + "___id": "T000002R049419", "___s": true }, { @@ -549731,7 +551623,7 @@ "name": "w" } ], - "___id": "T000002R049439", + "___id": "T000002R049420", "___s": true }, { @@ -549797,7 +551689,7 @@ "name": "source" } ], - "___id": "T000002R049440", + "___id": "T000002R049421", "___s": true }, { @@ -549893,7 +551785,7 @@ "name": "height" } ], - "___id": "T000002R049441", + "___id": "T000002R049422", "___s": true }, { @@ -549946,7 +551838,7 @@ "name": "radians" } ], - "___id": "T000002R049442", + "___id": "T000002R049423", "___s": true }, { @@ -549999,7 +551891,7 @@ "name": "degrees" } ], - "___id": "T000002R049443", + "___id": "T000002R049424", "___s": true }, { @@ -550067,7 +551959,7 @@ "name": "y" } ], - "___id": "T000002R049444", + "___id": "T000002R049425", "___s": true }, { @@ -550120,7 +552012,7 @@ "name": "value" } ], - "___id": "T000002R049445", + "___id": "T000002R049426", "___s": true }, { @@ -550173,7 +552065,7 @@ "name": "value" } ], - "___id": "T000002R049446", + "___id": "T000002R049427", "___s": true }, { @@ -550226,7 +552118,7 @@ "name": "value" } ], - "___id": "T000002R049447", + "___id": "T000002R049428", "___s": true }, { @@ -550279,7 +552171,7 @@ "name": "value" } ], - "___id": "T000002R049448", + "___id": "T000002R049429", "___s": true }, { @@ -550330,7 +552222,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R049449", + "___id": "T000002R049430", "___s": true }, { @@ -550395,7 +552287,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R049450", + "___id": "T000002R049431", "___s": true }, { @@ -550486,7 +552378,7 @@ "name": "camera" } ], - "___id": "T000002R049451", + "___id": "T000002R049432", "___s": true }, { @@ -550521,7 +552413,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R049452", + "___id": "T000002R049433", "___s": true }, { @@ -550551,7 +552443,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R049454", + "___id": "T000002R049435", "___s": true }, { @@ -550602,7 +552494,7 @@ "name": "value" } ], - "___id": "T000002R049455", + "___id": "T000002R049436", "___s": true }, { @@ -550632,7 +552524,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R049456", + "___id": "T000002R049437", "___s": true }, { @@ -550673,7 +552565,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R049457", + "___id": "T000002R049438", "___s": true }, { @@ -550703,7 +552595,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R049458", + "___id": "T000002R049439", "___s": true }, { @@ -550743,7 +552635,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R049459", + "___id": "T000002R049440", "___s": true }, { @@ -550773,7 +552665,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R049460", + "___id": "T000002R049441", "___s": true }, { @@ -550804,7 +552696,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R049461", + "___id": "T000002R049442", "___s": true }, { @@ -550835,7 +552727,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R049462", + "___id": "T000002R049443", "___s": true }, { @@ -550866,7 +552758,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R049463", + "___id": "T000002R049444", "___s": true }, { @@ -550897,7 +552789,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R049464", + "___id": "T000002R049445", "___s": true }, { @@ -550928,7 +552820,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R049465", + "___id": "T000002R049446", "___s": true }, { @@ -550962,7 +552854,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R049466", + "___id": "T000002R049447", "___s": true }, { @@ -550995,7 +552887,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R049467", + "___id": "T000002R049448", "___s": true }, { @@ -551043,7 +552935,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R049468", + "___id": "T000002R049449", "___s": true }, { @@ -551074,7 +552966,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R049469", + "___id": "T000002R049450", "___s": true }, { @@ -551125,7 +553017,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R049470", + "___id": "T000002R049451", "___s": true }, { @@ -551176,7 +553068,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R049471", + "___id": "T000002R049452", "___s": true }, { @@ -551237,7 +553129,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R049472", + "___id": "T000002R049453", "___s": true }, { @@ -551276,7 +553168,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R049473", + "___id": "T000002R049454", "___s": true }, { @@ -551364,7 +553256,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R049474", + "___id": "T000002R049455", "___s": true }, { @@ -551430,7 +553322,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R049475", + "___id": "T000002R049456", "___s": true }, { @@ -551481,7 +553373,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R049476", + "___id": "T000002R049457", "___s": true }, { @@ -551549,7 +553441,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R049477", + "___id": "T000002R049458", "___s": true }, { @@ -551645,11 +553537,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R049478", + "___id": "T000002R049459", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -551679,16 +553571,33 @@ ], "memberof": "Phaser.GameObjects.PointLight", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R049479", + "___id": "T000002R049460", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -551715,16 +553624,33 @@ ], "memberof": "Phaser.GameObjects.PointLight", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R049480", + "___id": "T000002R049461", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -551738,14 +553664,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R049481", + "___id": "T000002R049462", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -551759,14 +553685,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R049482", + "___id": "T000002R049463", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -551797,14 +553723,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R049483", + "___id": "T000002R049464", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -551832,14 +553758,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R049484", + "___id": "T000002R049465", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -551882,14 +553808,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R049485", + "___id": "T000002R049466", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -551926,14 +553852,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R049486", + "___id": "T000002R049467", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -551992,14 +553918,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R049487", + "___id": "T000002R049468", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -552028,14 +553954,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R049488", + "___id": "T000002R049469", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -552068,14 +553994,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R049489", + "___id": "T000002R049470", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -552104,14 +554030,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R049490", + "___id": "T000002R049471", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -552145,7 +554071,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R049491", + "___id": "T000002R049472", "___s": true }, { @@ -552166,7 +554092,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R049492", + "___id": "T000002R049473", "___s": true }, { @@ -552218,7 +554144,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R049493", + "___id": "T000002R049474", "___s": true }, { @@ -552287,7 +554213,7 @@ "name": "event" } ], - "___id": "T000002R049494", + "___id": "T000002R049475", "___s": true }, { @@ -552347,7 +554273,7 @@ "name": "event" } ], - "___id": "T000002R049495", + "___id": "T000002R049476", "___s": true }, { @@ -552422,7 +554348,7 @@ "name": "args" } ], - "___id": "T000002R049496", + "___id": "T000002R049477", "___s": true }, { @@ -552510,7 +554436,7 @@ "name": "context" } ], - "___id": "T000002R049497", + "___id": "T000002R049478", "___s": true }, { @@ -552598,7 +554524,7 @@ "name": "context" } ], - "___id": "T000002R049498", + "___id": "T000002R049479", "___s": true }, { @@ -552686,7 +554612,7 @@ "name": "context" } ], - "___id": "T000002R049499", + "___id": "T000002R049480", "___s": true }, { @@ -552788,7 +554714,7 @@ "name": "once" } ], - "___id": "T000002R049500", + "___id": "T000002R049481", "___s": true }, { @@ -552890,7 +554816,7 @@ "name": "once" } ], - "___id": "T000002R049501", + "___id": "T000002R049482", "___s": true }, { @@ -552952,7 +554878,7 @@ "name": "event" } ], - "___id": "T000002R049502", + "___id": "T000002R049483", "___s": true }, { @@ -552988,7 +554914,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R049504", + "___id": "T000002R049485", "___s": true }, { @@ -553041,7 +554967,7 @@ ], "inherits": "Phaser.GameObjects.Components.AlphaSingle#setAlpha", "inherited": true, - "___id": "T000002R049505", + "___id": "T000002R049486", "___s": true }, { @@ -553071,7 +554997,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R049506", + "___id": "T000002R049487", "___s": true }, { @@ -553116,7 +555042,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R049508", + "___id": "T000002R049489", "___s": true }, { @@ -553182,7 +555108,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R049509", + "___id": "T000002R049490", "___s": true }, { @@ -553212,7 +555138,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R049511", + "___id": "T000002R049492", "___s": true }, { @@ -553263,7 +555189,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R049512", + "___id": "T000002R049493", "___s": true }, { @@ -553299,7 +555225,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R049513", + "___id": "T000002R049494", "___s": true }, { @@ -553335,7 +555261,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R049514", + "___id": "T000002R049495", "___s": true }, { @@ -553386,7 +555312,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R049515", + "___id": "T000002R049496", "___s": true }, { @@ -553437,7 +555363,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R049516", + "___id": "T000002R049497", "___s": true }, { @@ -553511,7 +555437,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getCenter", "inherited": true, - "___id": "T000002R049518", + "___id": "T000002R049499", "___s": true }, { @@ -553585,7 +555511,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "inherited": true, - "___id": "T000002R049519", + "___id": "T000002R049500", "___s": true }, { @@ -553659,7 +555585,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "inherited": true, - "___id": "T000002R049520", + "___id": "T000002R049501", "___s": true }, { @@ -553733,7 +555659,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopRight", "inherited": true, - "___id": "T000002R049521", + "___id": "T000002R049502", "___s": true }, { @@ -553807,7 +555733,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "inherited": true, - "___id": "T000002R049522", + "___id": "T000002R049503", "___s": true }, { @@ -553881,7 +555807,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "inherited": true, - "___id": "T000002R049523", + "___id": "T000002R049504", "___s": true }, { @@ -553955,7 +555881,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "inherited": true, - "___id": "T000002R049524", + "___id": "T000002R049505", "___s": true }, { @@ -554029,7 +555955,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "inherited": true, - "___id": "T000002R049525", + "___id": "T000002R049506", "___s": true }, { @@ -554103,7 +556029,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "inherited": true, - "___id": "T000002R049526", + "___id": "T000002R049507", "___s": true }, { @@ -554182,7 +556108,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBounds", "inherited": true, - "___id": "T000002R049527", + "___id": "T000002R049508", "___s": true }, { @@ -554222,7 +556148,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R049528", + "___id": "T000002R049509", "___s": true }, { @@ -554283,7 +556209,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R049529", + "___id": "T000002R049510", "___s": true }, { @@ -554336,7 +556262,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R049530", + "___id": "T000002R049511", "___s": true }, { @@ -554498,7 +556424,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R049531", + "___id": "T000002R049512", "___s": true }, { @@ -554579,7 +556505,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R049532", + "___id": "T000002R049513", "___s": true }, { @@ -554617,7 +556543,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R049533", + "___id": "T000002R049514", "___s": true }, { @@ -554655,7 +556581,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R049534", + "___id": "T000002R049515", "___s": true }, { @@ -554692,7 +556618,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R049535", + "___id": "T000002R049516", "___s": true }, { @@ -554760,7 +556686,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R049536", + "___id": "T000002R049517", "___s": true }, { @@ -554857,7 +556783,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R049537", + "___id": "T000002R049518", "___s": true }, { @@ -554929,7 +556855,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R049538", + "___id": "T000002R049519", "___s": true }, { @@ -554988,7 +556914,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R049539", + "___id": "T000002R049520", "___s": true }, { @@ -555032,7 +556958,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R049540", + "___id": "T000002R049521", "___s": true }, { @@ -555069,7 +556995,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R049541", + "___id": "T000002R049522", "___s": true }, { @@ -555115,7 +557041,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R049542", + "___id": "T000002R049523", "___s": true }, { @@ -555152,7 +557078,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R049543", + "___id": "T000002R049524", "___s": true }, { @@ -555191,7 +557117,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R049544", + "___id": "T000002R049525", "___s": true }, { @@ -555228,7 +557154,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R049545", + "___id": "T000002R049526", "___s": true }, { @@ -555273,7 +557199,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R049546", + "___id": "T000002R049527", "___s": true }, { @@ -555417,7 +557343,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R049547", + "___id": "T000002R049528", "___s": true }, { @@ -555489,7 +557415,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R049548", + "___id": "T000002R049529", "___s": true }, { @@ -555580,7 +557506,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R049549", + "___id": "T000002R049530", "___s": true }, { @@ -555625,7 +557551,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R049550", + "___id": "T000002R049531", "___s": true }, { @@ -555693,7 +557619,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R049551", + "___id": "T000002R049532", "___s": true }, { @@ -555736,7 +557662,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R049552", + "___id": "T000002R049533", "___s": true }, { @@ -555767,7 +557693,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R049553", + "___id": "T000002R049534", "___s": true }, { @@ -555798,7 +557724,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R049554", + "___id": "T000002R049535", "___s": true }, { @@ -555864,7 +557790,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R049555", + "___id": "T000002R049536", "___s": true }, { @@ -555896,7 +557822,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R049556", + "___id": "T000002R049537", "___s": true }, { @@ -555927,7 +557853,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R049560", + "___id": "T000002R049541", "___s": true }, { @@ -555958,7 +557884,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R049561", + "___id": "T000002R049542", "___s": true }, { @@ -555989,7 +557915,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R049562", + "___id": "T000002R049543", "___s": true }, { @@ -556020,7 +557946,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R049563", + "___id": "T000002R049544", "___s": true }, { @@ -556051,7 +557977,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R049564", + "___id": "T000002R049545", "___s": true }, { @@ -556082,7 +558008,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R049565", + "___id": "T000002R049546", "___s": true }, { @@ -556113,7 +558039,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R049566", + "___id": "T000002R049547", "___s": true }, { @@ -556144,7 +558070,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R049567", + "___id": "T000002R049548", "___s": true }, { @@ -556175,7 +558101,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R049568", + "___id": "T000002R049549", "___s": true }, { @@ -556273,7 +558199,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R049569", + "___id": "T000002R049550", "___s": true }, { @@ -556339,7 +558265,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R049570", + "___id": "T000002R049551", "___s": true }, { @@ -556435,7 +558361,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R049571", + "___id": "T000002R049552", "___s": true }, { @@ -556488,7 +558414,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R049572", + "___id": "T000002R049553", "___s": true }, { @@ -556541,7 +558467,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R049573", + "___id": "T000002R049554", "___s": true }, { @@ -556609,7 +558535,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R049574", + "___id": "T000002R049555", "___s": true }, { @@ -556662,7 +558588,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R049575", + "___id": "T000002R049556", "___s": true }, { @@ -556715,7 +558641,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R049576", + "___id": "T000002R049557", "___s": true }, { @@ -556768,7 +558694,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R049577", + "___id": "T000002R049558", "___s": true }, { @@ -556821,7 +558747,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R049578", + "___id": "T000002R049559", "___s": true }, { @@ -556872,7 +558798,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R049579", + "___id": "T000002R049560", "___s": true }, { @@ -556937,7 +558863,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R049580", + "___id": "T000002R049561", "___s": true }, { @@ -557028,7 +558954,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R049581", + "___id": "T000002R049562", "___s": true }, { @@ -557063,7 +558989,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R049582", + "___id": "T000002R049563", "___s": true }, { @@ -557093,7 +559019,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R049584", + "___id": "T000002R049565", "___s": true }, { @@ -557144,7 +559070,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R049585", + "___id": "T000002R049566", "___s": true }, { @@ -557174,7 +559100,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R049589", + "___id": "T000002R049570", "___s": true }, { @@ -557215,7 +559141,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R049590", + "___id": "T000002R049571", "___s": true }, { @@ -557245,7 +559171,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R049591", + "___id": "T000002R049572", "___s": true }, { @@ -557285,7 +559211,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R049592", + "___id": "T000002R049573", "___s": true }, { @@ -557315,7 +559241,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R049593", + "___id": "T000002R049574", "___s": true }, { @@ -557346,7 +559272,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R049594", + "___id": "T000002R049575", "___s": true }, { @@ -557377,7 +559303,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R049595", + "___id": "T000002R049576", "___s": true }, { @@ -557408,7 +559334,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R049596", + "___id": "T000002R049577", "___s": true }, { @@ -557439,7 +559365,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R049597", + "___id": "T000002R049578", "___s": true }, { @@ -557470,7 +559396,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R049598", + "___id": "T000002R049579", "___s": true }, { @@ -557504,7 +559430,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R049599", + "___id": "T000002R049580", "___s": true }, { @@ -557537,7 +559463,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R049600", + "___id": "T000002R049581", "___s": true }, { @@ -557585,7 +559511,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R049601", + "___id": "T000002R049582", "___s": true }, { @@ -557616,7 +559542,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R049602", + "___id": "T000002R049583", "___s": true }, { @@ -557667,7 +559593,7 @@ "name": "value" } ], - "___id": "T000002R049603", + "___id": "T000002R049584", "___s": true }, { @@ -557718,7 +559644,7 @@ "name": "value" } ], - "___id": "T000002R049604", + "___id": "T000002R049585", "___s": true }, { @@ -557779,7 +559705,7 @@ "name": "value" } ], - "___id": "T000002R049605", + "___id": "T000002R049586", "___s": true }, { @@ -557818,7 +559744,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R049606", + "___id": "T000002R049587", "___s": true }, { @@ -557906,7 +559832,7 @@ "name": "data" } ], - "___id": "T000002R049607", + "___id": "T000002R049588", "___s": true }, { @@ -557972,7 +559898,7 @@ "name": "amount" } ], - "___id": "T000002R049608", + "___id": "T000002R049589", "___s": true }, { @@ -558023,7 +559949,7 @@ "name": "key" } ], - "___id": "T000002R049609", + "___id": "T000002R049590", "___s": true }, { @@ -558091,7 +560017,7 @@ "name": "key" } ], - "___id": "T000002R049610", + "___id": "T000002R049591", "___s": true }, { @@ -558187,11 +560113,11 @@ "name": "dropZone" } ], - "___id": "T000002R049611", + "___id": "T000002R049592", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -558223,14 +560149,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R049612", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R049593", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -558259,14 +560202,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R049613", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R049594", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -558280,14 +560240,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R049614", + "___id": "T000002R049595", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -558301,14 +560261,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R049615", + "___id": "T000002R049596", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -558339,14 +560299,14 @@ "name": "args" } ], - "___id": "T000002R049616", + "___id": "T000002R049597", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -558374,14 +560334,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R049617", + "___id": "T000002R049598", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -558424,14 +560384,14 @@ "name": "camera" } ], - "___id": "T000002R049618", + "___id": "T000002R049599", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -558468,14 +560428,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R049619", + "___id": "T000002R049600", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -558534,14 +560494,14 @@ "name": "displayList" } ], - "___id": "T000002R049620", + "___id": "T000002R049601", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -558570,14 +560530,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R049621", + "___id": "T000002R049602", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -558610,14 +560570,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R049622", + "___id": "T000002R049603", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -558646,14 +560606,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R049623", + "___id": "T000002R049604", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -558687,7 +560647,7 @@ "name": "fromScene" } ], - "___id": "T000002R049624", + "___id": "T000002R049605", "___s": true }, { @@ -558708,7 +560668,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R049625", + "___id": "T000002R049606", "___s": true }, { @@ -558760,7 +560720,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R049626", + "___id": "T000002R049607", "___s": true }, { @@ -558829,7 +560789,7 @@ "name": "event" } ], - "___id": "T000002R049627", + "___id": "T000002R049608", "___s": true }, { @@ -558889,7 +560849,7 @@ "name": "event" } ], - "___id": "T000002R049628", + "___id": "T000002R049609", "___s": true }, { @@ -558964,7 +560924,7 @@ "name": "args" } ], - "___id": "T000002R049629", + "___id": "T000002R049610", "___s": true }, { @@ -559052,7 +561012,7 @@ "name": "context" } ], - "___id": "T000002R049630", + "___id": "T000002R049611", "___s": true }, { @@ -559140,7 +561100,7 @@ "name": "context" } ], - "___id": "T000002R049631", + "___id": "T000002R049612", "___s": true }, { @@ -559228,7 +561188,7 @@ "name": "context" } ], - "___id": "T000002R049632", + "___id": "T000002R049613", "___s": true }, { @@ -559330,7 +561290,7 @@ "name": "once" } ], - "___id": "T000002R049633", + "___id": "T000002R049614", "___s": true }, { @@ -559432,7 +561392,7 @@ "name": "once" } ], - "___id": "T000002R049634", + "___id": "T000002R049615", "___s": true }, { @@ -559494,7 +561454,7 @@ "name": "event" } ], - "___id": "T000002R049635", + "___id": "T000002R049616", "___s": true }, { @@ -559530,7 +561490,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R049641", + "___id": "T000002R049622", "___s": true }, { @@ -559625,7 +561585,7 @@ "name": "bottomRight" } ], - "___id": "T000002R049642", + "___id": "T000002R049623", "___s": true }, { @@ -559655,7 +561615,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, - "___id": "T000002R049643", + "___id": "T000002R049624", "___s": true }, { @@ -559692,7 +561652,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R049644", + "___id": "T000002R049625", "___s": true }, { @@ -559729,7 +561689,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R049645", + "___id": "T000002R049626", "___s": true }, { @@ -559766,7 +561726,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R049646", + "___id": "T000002R049627", "___s": true }, { @@ -559803,7 +561763,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R049647", + "___id": "T000002R049628", "___s": true }, { @@ -559848,7 +561808,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R049649", + "___id": "T000002R049630", "___s": true }, { @@ -559914,7 +561874,7 @@ "name": "value" } ], - "___id": "T000002R049650", + "___id": "T000002R049631", "___s": true }, { @@ -559944,7 +561904,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R049652", + "___id": "T000002R049633", "___s": true }, { @@ -559995,7 +561955,7 @@ "name": "value" } ], - "___id": "T000002R049653", + "___id": "T000002R049634", "___s": true }, { @@ -560031,7 +561991,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R049654", + "___id": "T000002R049635", "___s": true }, { @@ -560067,7 +562027,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R049655", + "___id": "T000002R049636", "___s": true }, { @@ -560118,7 +562078,7 @@ "name": "gameObject" } ], - "___id": "T000002R049656", + "___id": "T000002R049637", "___s": true }, { @@ -560169,7 +562129,7 @@ "name": "gameObject" } ], - "___id": "T000002R049657", + "___id": "T000002R049638", "___s": true }, { @@ -560200,7 +562160,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, - "___id": "T000002R049658", + "___id": "T000002R049639", "___s": true }, { @@ -560231,7 +562191,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, - "___id": "T000002R049659", + "___id": "T000002R049640", "___s": true }, { @@ -560267,7 +562227,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, - "___id": "T000002R049660", + "___id": "T000002R049641", "___s": true }, { @@ -560303,7 +562263,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, - "___id": "T000002R049661", + "___id": "T000002R049642", "___s": true }, { @@ -560354,7 +562314,7 @@ "name": "value" } ], - "___id": "T000002R049662", + "___id": "T000002R049643", "___s": true }, { @@ -560405,7 +562365,7 @@ "name": "value" } ], - "___id": "T000002R049663", + "___id": "T000002R049644", "___s": true }, { @@ -560469,7 +562429,7 @@ "name": "y" } ], - "___id": "T000002R049664", + "___id": "T000002R049645", "___s": true }, { @@ -560505,7 +562465,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, - "___id": "T000002R049665", + "___id": "T000002R049646", "___s": true }, { @@ -560579,7 +562539,7 @@ "name": "includeParent" } ], - "___id": "T000002R049667", + "___id": "T000002R049648", "___s": true }, { @@ -560653,7 +562613,7 @@ "name": "includeParent" } ], - "___id": "T000002R049668", + "___id": "T000002R049649", "___s": true }, { @@ -560727,7 +562687,7 @@ "name": "includeParent" } ], - "___id": "T000002R049669", + "___id": "T000002R049650", "___s": true }, { @@ -560801,7 +562761,7 @@ "name": "includeParent" } ], - "___id": "T000002R049670", + "___id": "T000002R049651", "___s": true }, { @@ -560875,7 +562835,7 @@ "name": "includeParent" } ], - "___id": "T000002R049671", + "___id": "T000002R049652", "___s": true }, { @@ -560949,7 +562909,7 @@ "name": "includeParent" } ], - "___id": "T000002R049672", + "___id": "T000002R049653", "___s": true }, { @@ -561023,7 +562983,7 @@ "name": "includeParent" } ], - "___id": "T000002R049673", + "___id": "T000002R049654", "___s": true }, { @@ -561097,7 +563057,7 @@ "name": "includeParent" } ], - "___id": "T000002R049674", + "___id": "T000002R049655", "___s": true }, { @@ -561171,7 +563131,7 @@ "name": "includeParent" } ], - "___id": "T000002R049675", + "___id": "T000002R049656", "___s": true }, { @@ -561250,7 +563210,7 @@ "name": "output" } ], - "___id": "T000002R049676", + "___id": "T000002R049657", "___s": true }, { @@ -561290,7 +563250,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R049677", + "___id": "T000002R049658", "___s": true }, { @@ -561351,7 +563311,7 @@ "name": "mask" } ], - "___id": "T000002R049678", + "___id": "T000002R049659", "___s": true }, { @@ -561404,7 +563364,7 @@ "name": "destroyMask" } ], - "___id": "T000002R049679", + "___id": "T000002R049660", "___s": true }, { @@ -561566,7 +563526,7 @@ "name": "frame" } ], - "___id": "T000002R049680", + "___id": "T000002R049661", "___s": true }, { @@ -561647,7 +563607,7 @@ "name": "graphics" } ], - "___id": "T000002R049681", + "___id": "T000002R049662", "___s": true }, { @@ -561679,7 +563639,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R049683", + "___id": "T000002R049664", "___s": true }, { @@ -561711,7 +563671,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R049684", + "___id": "T000002R049665", "___s": true }, { @@ -561741,7 +563701,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R049685", + "___id": "T000002R049666", "___s": true }, { @@ -561771,7 +563731,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R049686", + "___id": "T000002R049667", "___s": true }, { @@ -561839,7 +563799,7 @@ "name": "y" } ], - "___id": "T000002R049687", + "___id": "T000002R049668", "___s": true }, { @@ -561875,7 +563835,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R049688", + "___id": "T000002R049669", "___s": true }, { @@ -561943,7 +563903,7 @@ "name": "y" } ], - "___id": "T000002R049689", + "___id": "T000002R049670", "___s": true }, { @@ -561979,7 +563939,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R049690", + "___id": "T000002R049671", "___s": true }, { @@ -562017,7 +563977,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R049691", + "___id": "T000002R049672", "___s": true }, { @@ -562055,7 +564015,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R049692", + "___id": "T000002R049673", "___s": true }, { @@ -562092,7 +564052,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R049693", + "___id": "T000002R049674", "___s": true }, { @@ -562160,7 +564120,7 @@ "name": "pipeline" } ], - "___id": "T000002R049694", + "___id": "T000002R049675", "___s": true }, { @@ -562257,7 +564217,7 @@ "name": "copyData" } ], - "___id": "T000002R049695", + "___id": "T000002R049676", "___s": true }, { @@ -562329,7 +564289,7 @@ "name": "value" } ], - "___id": "T000002R049696", + "___id": "T000002R049677", "___s": true }, { @@ -562388,7 +564348,7 @@ "name": "resetData" } ], - "___id": "T000002R049697", + "___id": "T000002R049678", "___s": true }, { @@ -562432,7 +564392,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R049698", + "___id": "T000002R049679", "___s": true }, { @@ -562469,7 +564429,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R049699", + "___id": "T000002R049680", "___s": true }, { @@ -562515,7 +564475,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R049700", + "___id": "T000002R049681", "___s": true }, { @@ -562552,7 +564512,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R049701", + "___id": "T000002R049682", "___s": true }, { @@ -562591,7 +564551,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R049702", + "___id": "T000002R049683", "___s": true }, { @@ -562628,7 +564588,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R049703", + "___id": "T000002R049684", "___s": true }, { @@ -562673,7 +564633,7 @@ "name": "preFX" } ], - "___id": "T000002R049704", + "___id": "T000002R049685", "___s": true }, { @@ -562817,7 +564777,7 @@ "name": "copyData" } ], - "___id": "T000002R049705", + "___id": "T000002R049686", "___s": true }, { @@ -562889,7 +564849,7 @@ "name": "value" } ], - "___id": "T000002R049706", + "___id": "T000002R049687", "___s": true }, { @@ -562980,7 +564940,7 @@ "name": "pipeline" } ], - "___id": "T000002R049707", + "___id": "T000002R049688", "___s": true }, { @@ -563025,7 +564985,7 @@ "name": "resetData" } ], - "___id": "T000002R049708", + "___id": "T000002R049689", "___s": true }, { @@ -563093,7 +565053,7 @@ "name": "pipeline" } ], - "___id": "T000002R049709", + "___id": "T000002R049690", "___s": true }, { @@ -563136,7 +565096,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R049710", + "___id": "T000002R049691", "___s": true }, { @@ -563167,7 +565127,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R049711", + "___id": "T000002R049692", "___s": true }, { @@ -563198,7 +565158,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R049712", + "___id": "T000002R049693", "___s": true }, { @@ -563264,7 +565224,7 @@ "name": "y" } ], - "___id": "T000002R049713", + "___id": "T000002R049694", "___s": true }, { @@ -563294,7 +565254,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, - "___id": "T000002R049715", + "___id": "T000002R049696", "___s": true }, { @@ -563324,7 +565284,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, - "___id": "T000002R049716", + "___id": "T000002R049697", "___s": true }, { @@ -563354,7 +565314,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, - "___id": "T000002R049717", + "___id": "T000002R049698", "___s": true }, { @@ -563384,7 +565344,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, - "___id": "T000002R049718", + "___id": "T000002R049699", "___s": true }, { @@ -563446,7 +565406,7 @@ "name": "frame" } ], - "___id": "T000002R049719", + "___id": "T000002R049700", "___s": true }, { @@ -563510,7 +565470,7 @@ "name": "height" } ], - "___id": "T000002R049720", + "___id": "T000002R049701", "___s": true }, { @@ -563550,7 +565510,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#texture", "inherited": true, - "___id": "T000002R049721", + "___id": "T000002R049702", "___s": true }, { @@ -563580,7 +565540,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#frame", "inherited": true, - "___id": "T000002R049722", + "___id": "T000002R049703", "___s": true }, { @@ -563610,7 +565570,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#isCropped", "inherited": true, - "___id": "T000002R049723", + "___id": "T000002R049704", "___s": true }, { @@ -563714,7 +565674,7 @@ "name": "height" } ], - "___id": "T000002R049724", + "___id": "T000002R049705", "___s": true }, { @@ -563789,7 +565749,7 @@ "name": "frame" } ], - "___id": "T000002R049725", + "___id": "T000002R049706", "___s": true }, { @@ -563885,7 +565845,7 @@ "name": "updateOrigin" } ], - "___id": "T000002R049726", + "___id": "T000002R049707", "___s": true }, { @@ -563916,7 +565876,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, - "___id": "T000002R049728", + "___id": "T000002R049709", "___s": true }, { @@ -563947,7 +565907,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, - "___id": "T000002R049729", + "___id": "T000002R049710", "___s": true }, { @@ -563978,7 +565938,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, - "___id": "T000002R049730", + "___id": "T000002R049711", "___s": true }, { @@ -564009,7 +565969,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, - "___id": "T000002R049731", + "___id": "T000002R049712", "___s": true }, { @@ -564040,7 +566000,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, - "___id": "T000002R049732", + "___id": "T000002R049713", "___s": true }, { @@ -564083,7 +566043,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, - "___id": "T000002R049733", + "___id": "T000002R049714", "___s": true }, { @@ -564185,7 +566145,7 @@ "name": "bottomRight" } ], - "___id": "T000002R049734", + "___id": "T000002R049715", "___s": true }, { @@ -564287,7 +566247,7 @@ "name": "bottomRight" } ], - "___id": "T000002R049735", + "___id": "T000002R049716", "___s": true }, { @@ -564324,7 +566284,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, - "___id": "T000002R049736", + "___id": "T000002R049717", "___s": true }, { @@ -564362,7 +566322,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, - "___id": "T000002R049737", + "___id": "T000002R049718", "___s": true }, { @@ -564394,7 +566354,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R049738", + "___id": "T000002R049719", "___s": true }, { @@ -564425,7 +566385,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R049742", + "___id": "T000002R049723", "___s": true }, { @@ -564456,7 +566416,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R049743", + "___id": "T000002R049724", "___s": true }, { @@ -564487,7 +566447,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R049744", + "___id": "T000002R049725", "___s": true }, { @@ -564518,7 +566478,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R049745", + "___id": "T000002R049726", "___s": true }, { @@ -564549,7 +566509,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R049746", + "___id": "T000002R049727", "___s": true }, { @@ -564580,7 +566540,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R049747", + "___id": "T000002R049728", "___s": true }, { @@ -564611,7 +566571,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R049748", + "___id": "T000002R049729", "___s": true }, { @@ -564642,7 +566602,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R049749", + "___id": "T000002R049730", "___s": true }, { @@ -564673,7 +566633,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R049750", + "___id": "T000002R049731", "___s": true }, { @@ -564771,7 +566731,7 @@ "name": "w" } ], - "___id": "T000002R049751", + "___id": "T000002R049732", "___s": true }, { @@ -564837,7 +566797,7 @@ "name": "source" } ], - "___id": "T000002R049752", + "___id": "T000002R049733", "___s": true }, { @@ -564933,7 +566893,7 @@ "name": "height" } ], - "___id": "T000002R049753", + "___id": "T000002R049734", "___s": true }, { @@ -564986,7 +566946,7 @@ "name": "radians" } ], - "___id": "T000002R049754", + "___id": "T000002R049735", "___s": true }, { @@ -565039,7 +566999,7 @@ "name": "degrees" } ], - "___id": "T000002R049755", + "___id": "T000002R049736", "___s": true }, { @@ -565107,7 +567067,7 @@ "name": "y" } ], - "___id": "T000002R049756", + "___id": "T000002R049737", "___s": true }, { @@ -565160,7 +567120,7 @@ "name": "value" } ], - "___id": "T000002R049757", + "___id": "T000002R049738", "___s": true }, { @@ -565213,7 +567173,7 @@ "name": "value" } ], - "___id": "T000002R049758", + "___id": "T000002R049739", "___s": true }, { @@ -565266,7 +567226,7 @@ "name": "value" } ], - "___id": "T000002R049759", + "___id": "T000002R049740", "___s": true }, { @@ -565319,7 +567279,7 @@ "name": "value" } ], - "___id": "T000002R049760", + "___id": "T000002R049741", "___s": true }, { @@ -565370,7 +567330,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R049761", + "___id": "T000002R049742", "___s": true }, { @@ -565435,7 +567395,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R049762", + "___id": "T000002R049743", "___s": true }, { @@ -565526,7 +567486,7 @@ "name": "camera" } ], - "___id": "T000002R049763", + "___id": "T000002R049744", "___s": true }, { @@ -565561,7 +567521,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R049764", + "___id": "T000002R049745", "___s": true }, { @@ -565591,7 +567551,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R049766", + "___id": "T000002R049747", "___s": true }, { @@ -565642,7 +567602,7 @@ "name": "value" } ], - "___id": "T000002R049767", + "___id": "T000002R049748", "___s": true }, { @@ -565672,7 +567632,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R049768", + "___id": "T000002R049749", "___s": true }, { @@ -565713,7 +567673,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R049769", + "___id": "T000002R049750", "___s": true }, { @@ -565743,7 +567703,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R049770", + "___id": "T000002R049751", "___s": true }, { @@ -565783,7 +567743,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R049771", + "___id": "T000002R049752", "___s": true }, { @@ -565813,7 +567773,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R049772", + "___id": "T000002R049753", "___s": true }, { @@ -565844,7 +567804,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R049773", + "___id": "T000002R049754", "___s": true }, { @@ -565875,7 +567835,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R049774", + "___id": "T000002R049755", "___s": true }, { @@ -565906,7 +567866,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R049775", + "___id": "T000002R049756", "___s": true }, { @@ -565937,7 +567897,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R049776", + "___id": "T000002R049757", "___s": true }, { @@ -565968,7 +567928,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R049777", + "___id": "T000002R049758", "___s": true }, { @@ -566002,7 +567962,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R049778", + "___id": "T000002R049759", "___s": true }, { @@ -566035,7 +567995,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R049779", + "___id": "T000002R049760", "___s": true }, { @@ -566083,7 +568043,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R049780", + "___id": "T000002R049761", "___s": true }, { @@ -566114,7 +568074,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R049781", + "___id": "T000002R049762", "___s": true }, { @@ -566165,7 +568125,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R049782", + "___id": "T000002R049763", "___s": true }, { @@ -566216,7 +568176,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R049783", + "___id": "T000002R049764", "___s": true }, { @@ -566277,7 +568237,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R049784", + "___id": "T000002R049765", "___s": true }, { @@ -566316,7 +568276,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R049785", + "___id": "T000002R049766", "___s": true }, { @@ -566404,7 +568364,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R049786", + "___id": "T000002R049767", "___s": true }, { @@ -566470,7 +568430,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R049787", + "___id": "T000002R049768", "___s": true }, { @@ -566521,7 +568481,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R049788", + "___id": "T000002R049769", "___s": true }, { @@ -566589,7 +568549,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R049789", + "___id": "T000002R049770", "___s": true }, { @@ -566685,11 +568645,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R049790", + "___id": "T000002R049771", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -566719,16 +568679,33 @@ ], "memberof": "Phaser.GameObjects.Rope", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R049791", + "___id": "T000002R049772", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -566755,16 +568732,33 @@ ], "memberof": "Phaser.GameObjects.Rope", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R049792", + "___id": "T000002R049773", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -566778,14 +568772,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R049793", + "___id": "T000002R049774", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -566799,14 +568793,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R049794", + "___id": "T000002R049775", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -566837,14 +568831,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R049795", + "___id": "T000002R049776", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -566872,14 +568866,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R049796", + "___id": "T000002R049777", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -566922,14 +568916,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R049797", + "___id": "T000002R049778", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -566966,14 +568960,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R049798", + "___id": "T000002R049779", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -567032,14 +569026,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R049799", + "___id": "T000002R049780", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -567068,14 +569062,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R049800", + "___id": "T000002R049781", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -567108,14 +569102,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R049801", + "___id": "T000002R049782", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -567144,14 +569138,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R049802", + "___id": "T000002R049783", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -567185,7 +569179,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R049803", + "___id": "T000002R049784", "___s": true }, { @@ -567206,7 +569200,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R049804", + "___id": "T000002R049785", "___s": true }, { @@ -567258,7 +569252,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R049805", + "___id": "T000002R049786", "___s": true }, { @@ -567327,7 +569321,7 @@ "name": "event" } ], - "___id": "T000002R049806", + "___id": "T000002R049787", "___s": true }, { @@ -567387,7 +569381,7 @@ "name": "event" } ], - "___id": "T000002R049807", + "___id": "T000002R049788", "___s": true }, { @@ -567462,7 +569456,7 @@ "name": "args" } ], - "___id": "T000002R049808", + "___id": "T000002R049789", "___s": true }, { @@ -567550,7 +569544,7 @@ "name": "context" } ], - "___id": "T000002R049809", + "___id": "T000002R049790", "___s": true }, { @@ -567638,7 +569632,7 @@ "name": "context" } ], - "___id": "T000002R049810", + "___id": "T000002R049791", "___s": true }, { @@ -567726,7 +569720,7 @@ "name": "context" } ], - "___id": "T000002R049811", + "___id": "T000002R049792", "___s": true }, { @@ -567828,7 +569822,7 @@ "name": "once" } ], - "___id": "T000002R049812", + "___id": "T000002R049793", "___s": true }, { @@ -567930,7 +569924,7 @@ "name": "once" } ], - "___id": "T000002R049813", + "___id": "T000002R049794", "___s": true }, { @@ -567992,7 +569986,7 @@ "name": "event" } ], - "___id": "T000002R049814", + "___id": "T000002R049795", "___s": true }, { @@ -568028,7 +570022,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R049816", + "___id": "T000002R049797", "___s": true }, { @@ -568081,7 +570075,7 @@ ], "inherits": "Phaser.GameObjects.Components.AlphaSingle#setAlpha", "inherited": true, - "___id": "T000002R049817", + "___id": "T000002R049798", "___s": true }, { @@ -568111,7 +570105,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R049818", + "___id": "T000002R049799", "___s": true }, { @@ -568156,7 +570150,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R049820", + "___id": "T000002R049801", "___s": true }, { @@ -568222,7 +570216,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R049821", + "___id": "T000002R049802", "___s": true }, { @@ -568252,7 +570246,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R049823", + "___id": "T000002R049804", "___s": true }, { @@ -568303,7 +570297,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R049824", + "___id": "T000002R049805", "___s": true }, { @@ -568339,7 +570333,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R049825", + "___id": "T000002R049806", "___s": true }, { @@ -568375,7 +570369,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R049826", + "___id": "T000002R049807", "___s": true }, { @@ -568426,7 +570420,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R049827", + "___id": "T000002R049808", "___s": true }, { @@ -568477,7 +570471,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R049828", + "___id": "T000002R049809", "___s": true }, { @@ -568513,7 +570507,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, - "___id": "T000002R049829", + "___id": "T000002R049810", "___s": true }, { @@ -568549,7 +570543,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, - "___id": "T000002R049830", + "___id": "T000002R049811", "___s": true }, { @@ -568600,7 +570594,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipX", "inherited": true, - "___id": "T000002R049831", + "___id": "T000002R049812", "___s": true }, { @@ -568651,7 +570645,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipY", "inherited": true, - "___id": "T000002R049832", + "___id": "T000002R049813", "___s": true }, { @@ -568715,7 +570709,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlip", "inherited": true, - "___id": "T000002R049833", + "___id": "T000002R049814", "___s": true }, { @@ -568751,7 +570745,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, - "___id": "T000002R049834", + "___id": "T000002R049815", "___s": true }, { @@ -568791,7 +570785,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R049835", + "___id": "T000002R049816", "___s": true }, { @@ -568852,7 +570846,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R049836", + "___id": "T000002R049817", "___s": true }, { @@ -568905,7 +570899,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R049837", + "___id": "T000002R049818", "___s": true }, { @@ -569067,7 +571061,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R049838", + "___id": "T000002R049819", "___s": true }, { @@ -569148,7 +571142,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R049839", + "___id": "T000002R049820", "___s": true }, { @@ -569186,7 +571180,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R049840", + "___id": "T000002R049821", "___s": true }, { @@ -569224,7 +571218,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R049841", + "___id": "T000002R049822", "___s": true }, { @@ -569261,7 +571255,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R049842", + "___id": "T000002R049823", "___s": true }, { @@ -569329,7 +571323,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R049843", + "___id": "T000002R049824", "___s": true }, { @@ -569426,7 +571420,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R049844", + "___id": "T000002R049825", "___s": true }, { @@ -569498,7 +571492,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R049845", + "___id": "T000002R049826", "___s": true }, { @@ -569557,7 +571551,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R049846", + "___id": "T000002R049827", "___s": true }, { @@ -569601,7 +571595,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R049847", + "___id": "T000002R049828", "___s": true }, { @@ -569638,7 +571632,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R049848", + "___id": "T000002R049829", "___s": true }, { @@ -569684,7 +571678,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R049849", + "___id": "T000002R049830", "___s": true }, { @@ -569721,7 +571715,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R049850", + "___id": "T000002R049831", "___s": true }, { @@ -569760,7 +571754,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R049851", + "___id": "T000002R049832", "___s": true }, { @@ -569797,7 +571791,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R049852", + "___id": "T000002R049833", "___s": true }, { @@ -569842,7 +571836,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R049853", + "___id": "T000002R049834", "___s": true }, { @@ -569986,7 +571980,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R049854", + "___id": "T000002R049835", "___s": true }, { @@ -570058,7 +572052,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R049855", + "___id": "T000002R049836", "___s": true }, { @@ -570149,7 +572143,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R049856", + "___id": "T000002R049837", "___s": true }, { @@ -570194,7 +572188,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R049857", + "___id": "T000002R049838", "___s": true }, { @@ -570262,7 +572256,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R049858", + "___id": "T000002R049839", "___s": true }, { @@ -570305,7 +572299,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R049859", + "___id": "T000002R049840", "___s": true }, { @@ -570335,7 +572329,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, - "___id": "T000002R049861", + "___id": "T000002R049842", "___s": true }, { @@ -570365,7 +572359,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, - "___id": "T000002R049862", + "___id": "T000002R049843", "___s": true }, { @@ -570395,7 +572389,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, - "___id": "T000002R049863", + "___id": "T000002R049844", "___s": true }, { @@ -570425,7 +572419,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, - "___id": "T000002R049864", + "___id": "T000002R049845", "___s": true }, { @@ -570487,7 +572481,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setSizeToFrame", "inherited": true, - "___id": "T000002R049865", + "___id": "T000002R049846", "___s": true }, { @@ -570551,7 +572545,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setSize", "inherited": true, - "___id": "T000002R049866", + "___id": "T000002R049847", "___s": true }, { @@ -570615,7 +572609,7 @@ ], "inherits": "Phaser.GameObjects.Components.Size#setDisplaySize", "inherited": true, - "___id": "T000002R049867", + "___id": "T000002R049848", "___s": true }, { @@ -570655,7 +572649,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#texture", "inherited": true, - "___id": "T000002R049868", + "___id": "T000002R049849", "___s": true }, { @@ -570685,7 +572679,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Texture#frame", "inherited": true, - "___id": "T000002R049869", + "___id": "T000002R049850", "___s": true }, { @@ -570800,7 +572794,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setTexture", "inherited": true, - "___id": "T000002R049871", + "___id": "T000002R049852", "___s": true }, { @@ -570896,7 +572890,7 @@ ], "inherits": "Phaser.GameObjects.Components.Texture#setFrame", "inherited": true, - "___id": "T000002R049872", + "___id": "T000002R049853", "___s": true }, { @@ -570928,7 +572922,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R049873", + "___id": "T000002R049854", "___s": true }, { @@ -570959,7 +572953,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R049877", + "___id": "T000002R049858", "___s": true }, { @@ -570990,7 +572984,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R049878", + "___id": "T000002R049859", "___s": true }, { @@ -571021,7 +573015,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R049879", + "___id": "T000002R049860", "___s": true }, { @@ -571052,7 +573046,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R049880", + "___id": "T000002R049861", "___s": true }, { @@ -571083,7 +573077,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R049881", + "___id": "T000002R049862", "___s": true }, { @@ -571114,7 +573108,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R049882", + "___id": "T000002R049863", "___s": true }, { @@ -571145,7 +573139,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R049883", + "___id": "T000002R049864", "___s": true }, { @@ -571176,7 +573170,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R049884", + "___id": "T000002R049865", "___s": true }, { @@ -571207,7 +573201,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R049885", + "___id": "T000002R049866", "___s": true }, { @@ -571305,7 +573299,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R049886", + "___id": "T000002R049867", "___s": true }, { @@ -571371,7 +573365,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R049887", + "___id": "T000002R049868", "___s": true }, { @@ -571467,7 +573461,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R049888", + "___id": "T000002R049869", "___s": true }, { @@ -571520,7 +573514,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R049889", + "___id": "T000002R049870", "___s": true }, { @@ -571573,7 +573567,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R049890", + "___id": "T000002R049871", "___s": true }, { @@ -571641,7 +573635,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R049891", + "___id": "T000002R049872", "___s": true }, { @@ -571694,7 +573688,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R049892", + "___id": "T000002R049873", "___s": true }, { @@ -571747,7 +573741,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R049893", + "___id": "T000002R049874", "___s": true }, { @@ -571800,7 +573794,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R049894", + "___id": "T000002R049875", "___s": true }, { @@ -571853,7 +573847,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R049895", + "___id": "T000002R049876", "___s": true }, { @@ -571904,7 +573898,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R049896", + "___id": "T000002R049877", "___s": true }, { @@ -571969,7 +573963,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R049897", + "___id": "T000002R049878", "___s": true }, { @@ -572060,7 +574054,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R049898", + "___id": "T000002R049879", "___s": true }, { @@ -572095,7 +574089,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R049899", + "___id": "T000002R049880", "___s": true }, { @@ -572125,7 +574119,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R049901", + "___id": "T000002R049882", "___s": true }, { @@ -572176,7 +574170,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R049902", + "___id": "T000002R049883", "___s": true }, { @@ -572207,7 +574201,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R049903", + "___id": "T000002R049884", "___s": true }, { @@ -572238,7 +574232,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R049904", + "___id": "T000002R049885", "___s": true }, { @@ -572304,7 +574298,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R049905", + "___id": "T000002R049886", "___s": true }, { @@ -572334,7 +574328,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R049906", + "___id": "T000002R049887", "___s": true }, { @@ -572375,7 +574369,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R049907", + "___id": "T000002R049888", "___s": true }, { @@ -572405,7 +574399,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R049908", + "___id": "T000002R049889", "___s": true }, { @@ -572445,7 +574439,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R049909", + "___id": "T000002R049890", "___s": true }, { @@ -572475,7 +574469,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R049910", + "___id": "T000002R049891", "___s": true }, { @@ -572506,7 +574500,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R049911", + "___id": "T000002R049892", "___s": true }, { @@ -572537,7 +574531,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R049912", + "___id": "T000002R049893", "___s": true }, { @@ -572568,7 +574562,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R049913", + "___id": "T000002R049894", "___s": true }, { @@ -572599,7 +574593,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R049914", + "___id": "T000002R049895", "___s": true }, { @@ -572630,7 +574624,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R049915", + "___id": "T000002R049896", "___s": true }, { @@ -572664,7 +574658,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R049916", + "___id": "T000002R049897", "___s": true }, { @@ -572697,7 +574691,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R049917", + "___id": "T000002R049898", "___s": true }, { @@ -572745,7 +574739,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R049918", + "___id": "T000002R049899", "___s": true }, { @@ -572776,7 +574770,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R049919", + "___id": "T000002R049900", "___s": true }, { @@ -572827,7 +574821,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R049920", + "___id": "T000002R049901", "___s": true }, { @@ -572878,7 +574872,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R049921", + "___id": "T000002R049902", "___s": true }, { @@ -572939,7 +574933,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R049922", + "___id": "T000002R049903", "___s": true }, { @@ -572978,7 +574972,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R049923", + "___id": "T000002R049904", "___s": true }, { @@ -573066,7 +575060,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R049924", + "___id": "T000002R049905", "___s": true }, { @@ -573132,7 +575126,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R049925", + "___id": "T000002R049906", "___s": true }, { @@ -573183,7 +575177,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R049926", + "___id": "T000002R049907", "___s": true }, { @@ -573251,7 +575245,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R049927", + "___id": "T000002R049908", "___s": true }, { @@ -573347,11 +575341,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R049928", + "___id": "T000002R049909", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -573381,16 +575375,33 @@ ], "memberof": "Phaser.GameObjects.Shader", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R049929", + "___id": "T000002R049910", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -573417,16 +575428,33 @@ ], "memberof": "Phaser.GameObjects.Shader", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R049930", + "___id": "T000002R049911", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -573440,14 +575468,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R049931", + "___id": "T000002R049912", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -573461,14 +575489,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R049932", + "___id": "T000002R049913", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -573499,14 +575527,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R049933", + "___id": "T000002R049914", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -573534,14 +575562,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R049934", + "___id": "T000002R049915", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -573578,14 +575606,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R049935", + "___id": "T000002R049916", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -573644,14 +575672,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R049936", + "___id": "T000002R049917", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -573680,14 +575708,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R049937", + "___id": "T000002R049918", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -573720,14 +575748,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R049938", + "___id": "T000002R049919", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -573756,14 +575784,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R049939", + "___id": "T000002R049920", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -573797,7 +575825,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R049940", + "___id": "T000002R049921", "___s": true }, { @@ -573818,7 +575846,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R049941", + "___id": "T000002R049922", "___s": true }, { @@ -573870,7 +575898,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R049942", + "___id": "T000002R049923", "___s": true }, { @@ -573939,7 +575967,7 @@ "name": "event" } ], - "___id": "T000002R049943", + "___id": "T000002R049924", "___s": true }, { @@ -573999,7 +576027,7 @@ "name": "event" } ], - "___id": "T000002R049944", + "___id": "T000002R049925", "___s": true }, { @@ -574074,7 +576102,7 @@ "name": "args" } ], - "___id": "T000002R049945", + "___id": "T000002R049926", "___s": true }, { @@ -574162,7 +576190,7 @@ "name": "context" } ], - "___id": "T000002R049946", + "___id": "T000002R049927", "___s": true }, { @@ -574250,7 +576278,7 @@ "name": "context" } ], - "___id": "T000002R049947", + "___id": "T000002R049928", "___s": true }, { @@ -574338,7 +576366,7 @@ "name": "context" } ], - "___id": "T000002R049948", + "___id": "T000002R049929", "___s": true }, { @@ -574440,7 +576468,7 @@ "name": "once" } ], - "___id": "T000002R049949", + "___id": "T000002R049930", "___s": true }, { @@ -574542,7 +576570,7 @@ "name": "once" } ], - "___id": "T000002R049950", + "___id": "T000002R049931", "___s": true }, { @@ -574604,7 +576632,7 @@ "name": "event" } ], - "___id": "T000002R049951", + "___id": "T000002R049932", "___s": true }, { @@ -574634,7 +576662,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#width", "inherited": true, - "___id": "T000002R049952", + "___id": "T000002R049933", "___s": true }, { @@ -574664,7 +576692,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#height", "inherited": true, - "___id": "T000002R049953", + "___id": "T000002R049934", "___s": true }, { @@ -574694,7 +576722,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#displayWidth", "inherited": true, - "___id": "T000002R049954", + "___id": "T000002R049935", "___s": true }, { @@ -574724,7 +576752,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#displayHeight", "inherited": true, - "___id": "T000002R049955", + "___id": "T000002R049936", "___s": true }, { @@ -574788,7 +576816,7 @@ ], "inherits": "Phaser.GameObjects.Components.ComputedSize#setSize", "inherited": true, - "___id": "T000002R049956", + "___id": "T000002R049937", "___s": true }, { @@ -574852,7 +576880,7 @@ ], "inherits": "Phaser.GameObjects.Components.ComputedSize#setDisplaySize", "inherited": true, - "___id": "T000002R049957", + "___id": "T000002R049938", "___s": true }, { @@ -574882,7 +576910,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R049959", + "___id": "T000002R049940", "___s": true }, { @@ -574933,7 +576961,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R049960", + "___id": "T000002R049941", "___s": true }, { @@ -574969,7 +576997,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R049961", + "___id": "T000002R049942", "___s": true }, { @@ -575005,7 +577033,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R049962", + "___id": "T000002R049943", "___s": true }, { @@ -575056,7 +577084,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R049963", + "___id": "T000002R049944", "___s": true }, { @@ -575107,7 +577135,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R049964", + "___id": "T000002R049945", "___s": true }, { @@ -575181,7 +577209,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getCenter", "inherited": true, - "___id": "T000002R049966", + "___id": "T000002R049947", "___s": true }, { @@ -575255,7 +577283,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "inherited": true, - "___id": "T000002R049967", + "___id": "T000002R049948", "___s": true }, { @@ -575329,7 +577357,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "inherited": true, - "___id": "T000002R049968", + "___id": "T000002R049949", "___s": true }, { @@ -575403,7 +577431,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopRight", "inherited": true, - "___id": "T000002R049969", + "___id": "T000002R049950", "___s": true }, { @@ -575477,7 +577505,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "inherited": true, - "___id": "T000002R049970", + "___id": "T000002R049951", "___s": true }, { @@ -575551,7 +577579,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "inherited": true, - "___id": "T000002R049971", + "___id": "T000002R049952", "___s": true }, { @@ -575625,7 +577653,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "inherited": true, - "___id": "T000002R049972", + "___id": "T000002R049953", "___s": true }, { @@ -575699,7 +577727,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "inherited": true, - "___id": "T000002R049973", + "___id": "T000002R049954", "___s": true }, { @@ -575773,7 +577801,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "inherited": true, - "___id": "T000002R049974", + "___id": "T000002R049955", "___s": true }, { @@ -575852,7 +577880,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBounds", "inherited": true, - "___id": "T000002R049975", + "___id": "T000002R049956", "___s": true }, { @@ -575892,7 +577920,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R049976", + "___id": "T000002R049957", "___s": true }, { @@ -575953,7 +577981,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R049977", + "___id": "T000002R049958", "___s": true }, { @@ -576006,7 +578034,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R049978", + "___id": "T000002R049959", "___s": true }, { @@ -576168,7 +578196,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R049979", + "___id": "T000002R049960", "___s": true }, { @@ -576249,7 +578277,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R049980", + "___id": "T000002R049961", "___s": true }, { @@ -576281,7 +578309,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R049982", + "___id": "T000002R049963", "___s": true }, { @@ -576313,7 +578341,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R049983", + "___id": "T000002R049964", "___s": true }, { @@ -576343,7 +578371,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R049984", + "___id": "T000002R049965", "___s": true }, { @@ -576373,7 +578401,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R049985", + "___id": "T000002R049966", "___s": true }, { @@ -576441,7 +578469,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R049986", + "___id": "T000002R049967", "___s": true }, { @@ -576477,7 +578505,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R049987", + "___id": "T000002R049968", "___s": true }, { @@ -576545,7 +578573,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R049988", + "___id": "T000002R049969", "___s": true }, { @@ -576581,7 +578609,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R049989", + "___id": "T000002R049970", "___s": true }, { @@ -576612,7 +578640,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R049990", + "___id": "T000002R049971", "___s": true }, { @@ -576643,7 +578671,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R049991", + "___id": "T000002R049972", "___s": true }, { @@ -576709,7 +578737,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R049992", + "___id": "T000002R049973", "___s": true }, { @@ -576741,7 +578769,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R049993", + "___id": "T000002R049974", "___s": true }, { @@ -576772,7 +578800,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R049997", + "___id": "T000002R049978", "___s": true }, { @@ -576803,7 +578831,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R049998", + "___id": "T000002R049979", "___s": true }, { @@ -576834,7 +578862,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R049999", + "___id": "T000002R049980", "___s": true }, { @@ -576865,7 +578893,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R050000", + "___id": "T000002R049981", "___s": true }, { @@ -576896,7 +578924,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R050001", + "___id": "T000002R049982", "___s": true }, { @@ -576927,7 +578955,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R050002", + "___id": "T000002R049983", "___s": true }, { @@ -576958,7 +578986,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R050003", + "___id": "T000002R049984", "___s": true }, { @@ -576989,7 +579017,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R050004", + "___id": "T000002R049985", "___s": true }, { @@ -577020,7 +579048,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R050005", + "___id": "T000002R049986", "___s": true }, { @@ -577118,7 +579146,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R050006", + "___id": "T000002R049987", "___s": true }, { @@ -577184,7 +579212,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R050007", + "___id": "T000002R049988", "___s": true }, { @@ -577280,7 +579308,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R050008", + "___id": "T000002R049989", "___s": true }, { @@ -577333,7 +579361,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R050009", + "___id": "T000002R049990", "___s": true }, { @@ -577386,7 +579414,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R050010", + "___id": "T000002R049991", "___s": true }, { @@ -577454,7 +579482,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R050011", + "___id": "T000002R049992", "___s": true }, { @@ -577507,7 +579535,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R050012", + "___id": "T000002R049993", "___s": true }, { @@ -577560,7 +579588,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R050013", + "___id": "T000002R049994", "___s": true }, { @@ -577613,7 +579641,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R050014", + "___id": "T000002R049995", "___s": true }, { @@ -577666,7 +579694,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R050015", + "___id": "T000002R049996", "___s": true }, { @@ -577717,7 +579745,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R050016", + "___id": "T000002R049997", "___s": true }, { @@ -577782,7 +579810,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R050017", + "___id": "T000002R049998", "___s": true }, { @@ -577873,7 +579901,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R050018", + "___id": "T000002R049999", "___s": true }, { @@ -577908,7 +579936,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R050019", + "___id": "T000002R050000", "___s": true }, { @@ -577938,7 +579966,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R050021", + "___id": "T000002R050002", "___s": true }, { @@ -577989,7 +580017,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R050022", + "___id": "T000002R050003", "___s": true }, { @@ -578019,7 +580047,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R050023", + "___id": "T000002R050004", "___s": true }, { @@ -578060,7 +580088,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R050024", + "___id": "T000002R050005", "___s": true }, { @@ -578090,7 +580118,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R050025", + "___id": "T000002R050006", "___s": true }, { @@ -578130,7 +580158,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R050026", + "___id": "T000002R050007", "___s": true }, { @@ -578160,7 +580188,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R050027", + "___id": "T000002R050008", "___s": true }, { @@ -578191,7 +580219,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R050028", + "___id": "T000002R050009", "___s": true }, { @@ -578222,7 +580250,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R050029", + "___id": "T000002R050010", "___s": true }, { @@ -578253,7 +580281,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R050030", + "___id": "T000002R050011", "___s": true }, { @@ -578284,7 +580312,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R050031", + "___id": "T000002R050012", "___s": true }, { @@ -578315,7 +580343,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R050032", + "___id": "T000002R050013", "___s": true }, { @@ -578349,7 +580377,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R050033", + "___id": "T000002R050014", "___s": true }, { @@ -578382,7 +580410,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R050034", + "___id": "T000002R050015", "___s": true }, { @@ -578430,7 +580458,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R050035", + "___id": "T000002R050016", "___s": true }, { @@ -578461,7 +580489,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R050036", + "___id": "T000002R050017", "___s": true }, { @@ -578512,7 +580540,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R050037", + "___id": "T000002R050018", "___s": true }, { @@ -578563,7 +580591,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R050038", + "___id": "T000002R050019", "___s": true }, { @@ -578624,7 +580652,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R050039", + "___id": "T000002R050020", "___s": true }, { @@ -578663,7 +580691,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R050040", + "___id": "T000002R050021", "___s": true }, { @@ -578751,7 +580779,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R050041", + "___id": "T000002R050022", "___s": true }, { @@ -578817,7 +580845,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R050042", + "___id": "T000002R050023", "___s": true }, { @@ -578868,7 +580896,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R050043", + "___id": "T000002R050024", "___s": true }, { @@ -578936,7 +580964,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R050044", + "___id": "T000002R050025", "___s": true }, { @@ -579032,11 +581060,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R050045", + "___id": "T000002R050026", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -579066,16 +581094,33 @@ ], "memberof": "Phaser.GameObjects.Shape", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R050046", + "___id": "T000002R050027", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -579102,16 +581147,33 @@ ], "memberof": "Phaser.GameObjects.Shape", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R050047", + "___id": "T000002R050028", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -579125,14 +581187,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R050048", + "___id": "T000002R050029", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -579146,14 +581208,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R050049", + "___id": "T000002R050030", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -579184,14 +581246,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R050050", + "___id": "T000002R050031", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -579219,14 +581281,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R050051", + "___id": "T000002R050032", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -579269,14 +581331,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R050052", + "___id": "T000002R050033", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -579313,14 +581375,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R050053", + "___id": "T000002R050034", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -579379,14 +581441,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R050054", + "___id": "T000002R050035", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -579415,14 +581477,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R050055", + "___id": "T000002R050036", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -579455,14 +581517,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R050056", + "___id": "T000002R050037", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -579491,14 +581553,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R050057", + "___id": "T000002R050038", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -579532,7 +581594,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R050058", + "___id": "T000002R050039", "___s": true }, { @@ -579553,7 +581615,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R050059", + "___id": "T000002R050040", "___s": true }, { @@ -579605,7 +581667,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R050060", + "___id": "T000002R050041", "___s": true }, { @@ -579674,7 +581736,7 @@ "name": "event" } ], - "___id": "T000002R050061", + "___id": "T000002R050042", "___s": true }, { @@ -579734,7 +581796,7 @@ "name": "event" } ], - "___id": "T000002R050062", + "___id": "T000002R050043", "___s": true }, { @@ -579809,7 +581871,7 @@ "name": "args" } ], - "___id": "T000002R050063", + "___id": "T000002R050044", "___s": true }, { @@ -579897,7 +581959,7 @@ "name": "context" } ], - "___id": "T000002R050064", + "___id": "T000002R050045", "___s": true }, { @@ -579985,7 +582047,7 @@ "name": "context" } ], - "___id": "T000002R050065", + "___id": "T000002R050046", "___s": true }, { @@ -580073,7 +582135,7 @@ "name": "context" } ], - "___id": "T000002R050066", + "___id": "T000002R050047", "___s": true }, { @@ -580175,7 +582237,7 @@ "name": "once" } ], - "___id": "T000002R050067", + "___id": "T000002R050048", "___s": true }, { @@ -580277,7 +582339,7 @@ "name": "once" } ], - "___id": "T000002R050068", + "___id": "T000002R050049", "___s": true }, { @@ -580339,7 +582401,7 @@ "name": "event" } ], - "___id": "T000002R050069", + "___id": "T000002R050050", "___s": true }, { @@ -580375,7 +582437,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R050071", + "___id": "T000002R050052", "___s": true }, { @@ -580428,7 +582490,7 @@ ], "inherits": "Phaser.GameObjects.Components.AlphaSingle#setAlpha", "inherited": true, - "___id": "T000002R050072", + "___id": "T000002R050053", "___s": true }, { @@ -580458,7 +582520,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R050073", + "___id": "T000002R050054", "___s": true }, { @@ -580503,7 +582565,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R050075", + "___id": "T000002R050056", "___s": true }, { @@ -580569,7 +582631,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R050076", + "___id": "T000002R050057", "___s": true }, { @@ -580599,7 +582661,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R050078", + "___id": "T000002R050059", "___s": true }, { @@ -580650,7 +582712,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R050079", + "___id": "T000002R050060", "___s": true }, { @@ -580686,7 +582748,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R050080", + "___id": "T000002R050061", "___s": true }, { @@ -580722,7 +582784,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R050081", + "___id": "T000002R050062", "___s": true }, { @@ -580773,7 +582835,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R050082", + "___id": "T000002R050063", "___s": true }, { @@ -580824,7 +582886,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R050083", + "___id": "T000002R050064", "___s": true }, { @@ -580898,7 +582960,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getCenter", "inherited": true, - "___id": "T000002R050085", + "___id": "T000002R050066", "___s": true }, { @@ -580972,7 +583034,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "inherited": true, - "___id": "T000002R050086", + "___id": "T000002R050067", "___s": true }, { @@ -581046,7 +583108,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "inherited": true, - "___id": "T000002R050087", + "___id": "T000002R050068", "___s": true }, { @@ -581120,7 +583182,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopRight", "inherited": true, - "___id": "T000002R050088", + "___id": "T000002R050069", "___s": true }, { @@ -581194,7 +583256,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "inherited": true, - "___id": "T000002R050089", + "___id": "T000002R050070", "___s": true }, { @@ -581268,7 +583330,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "inherited": true, - "___id": "T000002R050090", + "___id": "T000002R050071", "___s": true }, { @@ -581342,7 +583404,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "inherited": true, - "___id": "T000002R050091", + "___id": "T000002R050072", "___s": true }, { @@ -581416,7 +583478,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "inherited": true, - "___id": "T000002R050092", + "___id": "T000002R050073", "___s": true }, { @@ -581490,7 +583552,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "inherited": true, - "___id": "T000002R050093", + "___id": "T000002R050074", "___s": true }, { @@ -581569,7 +583631,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBounds", "inherited": true, - "___id": "T000002R050094", + "___id": "T000002R050075", "___s": true }, { @@ -581609,7 +583671,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R050095", + "___id": "T000002R050076", "___s": true }, { @@ -581670,7 +583732,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R050096", + "___id": "T000002R050077", "___s": true }, { @@ -581723,7 +583785,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R050097", + "___id": "T000002R050078", "___s": true }, { @@ -581885,7 +583947,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R050098", + "___id": "T000002R050079", "___s": true }, { @@ -581966,7 +584028,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R050099", + "___id": "T000002R050080", "___s": true }, { @@ -581998,7 +584060,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R050101", + "___id": "T000002R050082", "___s": true }, { @@ -582030,7 +584092,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R050102", + "___id": "T000002R050083", "___s": true }, { @@ -582060,7 +584122,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R050103", + "___id": "T000002R050084", "___s": true }, { @@ -582090,7 +584152,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R050104", + "___id": "T000002R050085", "___s": true }, { @@ -582158,7 +584220,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R050105", + "___id": "T000002R050086", "___s": true }, { @@ -582194,7 +584256,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R050106", + "___id": "T000002R050087", "___s": true }, { @@ -582262,7 +584324,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R050107", + "___id": "T000002R050088", "___s": true }, { @@ -582298,7 +584360,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R050108", + "___id": "T000002R050089", "___s": true }, { @@ -582336,7 +584398,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R050109", + "___id": "T000002R050090", "___s": true }, { @@ -582374,7 +584436,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R050110", + "___id": "T000002R050091", "___s": true }, { @@ -582411,7 +584473,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R050111", + "___id": "T000002R050092", "___s": true }, { @@ -582479,7 +584541,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R050112", + "___id": "T000002R050093", "___s": true }, { @@ -582576,7 +584638,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R050113", + "___id": "T000002R050094", "___s": true }, { @@ -582648,7 +584710,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R050114", + "___id": "T000002R050095", "___s": true }, { @@ -582707,7 +584769,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R050115", + "___id": "T000002R050096", "___s": true }, { @@ -582751,7 +584813,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R050116", + "___id": "T000002R050097", "___s": true }, { @@ -582788,7 +584850,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R050117", + "___id": "T000002R050098", "___s": true }, { @@ -582834,7 +584896,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R050118", + "___id": "T000002R050099", "___s": true }, { @@ -582871,7 +584933,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R050119", + "___id": "T000002R050100", "___s": true }, { @@ -582910,7 +584972,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R050120", + "___id": "T000002R050101", "___s": true }, { @@ -582947,7 +585009,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R050121", + "___id": "T000002R050102", "___s": true }, { @@ -582992,7 +585054,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R050122", + "___id": "T000002R050103", "___s": true }, { @@ -583136,7 +585198,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R050123", + "___id": "T000002R050104", "___s": true }, { @@ -583208,7 +585270,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R050124", + "___id": "T000002R050105", "___s": true }, { @@ -583299,7 +585361,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R050125", + "___id": "T000002R050106", "___s": true }, { @@ -583344,7 +585406,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R050126", + "___id": "T000002R050107", "___s": true }, { @@ -583412,7 +585474,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R050127", + "___id": "T000002R050108", "___s": true }, { @@ -583455,7 +585517,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R050128", + "___id": "T000002R050109", "___s": true }, { @@ -583486,7 +585548,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R050129", + "___id": "T000002R050110", "___s": true }, { @@ -583517,7 +585579,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R050130", + "___id": "T000002R050111", "___s": true }, { @@ -583583,7 +585645,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R050131", + "___id": "T000002R050112", "___s": true }, { @@ -583615,7 +585677,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R050132", + "___id": "T000002R050113", "___s": true }, { @@ -583646,7 +585708,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R050136", + "___id": "T000002R050117", "___s": true }, { @@ -583677,7 +585739,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R050137", + "___id": "T000002R050118", "___s": true }, { @@ -583708,7 +585770,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R050138", + "___id": "T000002R050119", "___s": true }, { @@ -583739,7 +585801,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R050139", + "___id": "T000002R050120", "___s": true }, { @@ -583770,7 +585832,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R050140", + "___id": "T000002R050121", "___s": true }, { @@ -583801,7 +585863,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R050141", + "___id": "T000002R050122", "___s": true }, { @@ -583832,7 +585894,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R050142", + "___id": "T000002R050123", "___s": true }, { @@ -583863,7 +585925,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R050143", + "___id": "T000002R050124", "___s": true }, { @@ -583894,7 +585956,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R050144", + "___id": "T000002R050125", "___s": true }, { @@ -583992,7 +586054,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R050145", + "___id": "T000002R050126", "___s": true }, { @@ -584058,7 +586120,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R050146", + "___id": "T000002R050127", "___s": true }, { @@ -584154,7 +586216,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R050147", + "___id": "T000002R050128", "___s": true }, { @@ -584207,7 +586269,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R050148", + "___id": "T000002R050129", "___s": true }, { @@ -584260,7 +586322,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R050149", + "___id": "T000002R050130", "___s": true }, { @@ -584328,7 +586390,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R050150", + "___id": "T000002R050131", "___s": true }, { @@ -584381,7 +586443,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R050151", + "___id": "T000002R050132", "___s": true }, { @@ -584434,7 +586496,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R050152", + "___id": "T000002R050133", "___s": true }, { @@ -584487,7 +586549,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R050153", + "___id": "T000002R050134", "___s": true }, { @@ -584540,7 +586602,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R050154", + "___id": "T000002R050135", "___s": true }, { @@ -584591,7 +586653,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R050155", + "___id": "T000002R050136", "___s": true }, { @@ -584656,7 +586718,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R050156", + "___id": "T000002R050137", "___s": true }, { @@ -584747,7 +586809,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R050157", + "___id": "T000002R050138", "___s": true }, { @@ -584782,7 +586844,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R050158", + "___id": "T000002R050139", "___s": true }, { @@ -584812,7 +586874,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R050160", + "___id": "T000002R050141", "___s": true }, { @@ -584863,7 +586925,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R050161", + "___id": "T000002R050142", "___s": true }, { @@ -584894,7 +586956,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#geom", "inherited": true, - "___id": "T000002R050165", + "___id": "T000002R050146", "___s": true }, { @@ -584934,7 +586996,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathData", "inherited": true, - "___id": "T000002R050166", + "___id": "T000002R050147", "___s": true }, { @@ -584974,7 +587036,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathIndexes", "inherited": true, - "___id": "T000002R050167", + "___id": "T000002R050148", "___s": true }, { @@ -585004,7 +587066,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillColor", "inherited": true, - "___id": "T000002R050168", + "___id": "T000002R050149", "___s": true }, { @@ -585034,7 +587096,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillAlpha", "inherited": true, - "___id": "T000002R050169", + "___id": "T000002R050150", "___s": true }, { @@ -585064,7 +587126,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeColor", "inherited": true, - "___id": "T000002R050170", + "___id": "T000002R050151", "___s": true }, { @@ -585094,7 +587156,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeAlpha", "inherited": true, - "___id": "T000002R050171", + "___id": "T000002R050152", "___s": true }, { @@ -585124,7 +587186,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#lineWidth", "inherited": true, - "___id": "T000002R050172", + "___id": "T000002R050153", "___s": true }, { @@ -585154,7 +587216,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isFilled", "inherited": true, - "___id": "T000002R050173", + "___id": "T000002R050154", "___s": true }, { @@ -585184,7 +587246,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isStroked", "inherited": true, - "___id": "T000002R050174", + "___id": "T000002R050155", "___s": true }, { @@ -585214,7 +587276,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#closePath", "inherited": true, - "___id": "T000002R050175", + "___id": "T000002R050156", "___s": true }, { @@ -585244,7 +587306,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#width", "inherited": true, - "___id": "T000002R050177", + "___id": "T000002R050158", "___s": true }, { @@ -585274,7 +587336,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#height", "inherited": true, - "___id": "T000002R050178", + "___id": "T000002R050159", "___s": true }, { @@ -585341,7 +587403,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setFillStyle", "inherited": true, - "___id": "T000002R050179", + "___id": "T000002R050160", "___s": true }, { @@ -585422,7 +587484,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setStrokeStyle", "inherited": true, - "___id": "T000002R050180", + "___id": "T000002R050161", "___s": true }, { @@ -585473,7 +587535,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setClosePath", "inherited": true, - "___id": "T000002R050181", + "___id": "T000002R050162", "___s": true }, { @@ -585537,7 +587599,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setDisplaySize", "inherited": true, - "___id": "T000002R050183", + "___id": "T000002R050164", "___s": true }, { @@ -585559,7 +587621,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#preDestroy", "inherited": true, - "___id": "T000002R050184", + "___id": "T000002R050165", "___s": true }, { @@ -585589,7 +587651,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayWidth", "inherited": true, - "___id": "T000002R050185", + "___id": "T000002R050166", "___s": true }, { @@ -585619,7 +587681,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayHeight", "inherited": true, - "___id": "T000002R050186", + "___id": "T000002R050167", "___s": true }, { @@ -585649,7 +587711,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R050188", + "___id": "T000002R050169", "___s": true }, { @@ -585690,7 +587752,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R050189", + "___id": "T000002R050170", "___s": true }, { @@ -585720,7 +587782,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R050190", + "___id": "T000002R050171", "___s": true }, { @@ -585760,7 +587822,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R050191", + "___id": "T000002R050172", "___s": true }, { @@ -585790,7 +587852,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R050192", + "___id": "T000002R050173", "___s": true }, { @@ -585821,7 +587883,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R050193", + "___id": "T000002R050174", "___s": true }, { @@ -585852,7 +587914,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R050194", + "___id": "T000002R050175", "___s": true }, { @@ -585883,7 +587945,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R050195", + "___id": "T000002R050176", "___s": true }, { @@ -585914,7 +587976,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R050196", + "___id": "T000002R050177", "___s": true }, { @@ -585945,7 +588007,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R050197", + "___id": "T000002R050178", "___s": true }, { @@ -585979,7 +588041,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R050198", + "___id": "T000002R050179", "___s": true }, { @@ -586012,7 +588074,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R050199", + "___id": "T000002R050180", "___s": true }, { @@ -586060,7 +588122,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R050200", + "___id": "T000002R050181", "___s": true }, { @@ -586091,7 +588153,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R050201", + "___id": "T000002R050182", "___s": true }, { @@ -586142,7 +588204,7 @@ "name": "value" } ], - "___id": "T000002R050202", + "___id": "T000002R050183", "___s": true }, { @@ -586193,7 +588255,7 @@ "name": "value" } ], - "___id": "T000002R050203", + "___id": "T000002R050184", "___s": true }, { @@ -586254,7 +588316,7 @@ "name": "value" } ], - "___id": "T000002R050204", + "___id": "T000002R050185", "___s": true }, { @@ -586293,7 +588355,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R050205", + "___id": "T000002R050186", "___s": true }, { @@ -586381,7 +588443,7 @@ "name": "data" } ], - "___id": "T000002R050206", + "___id": "T000002R050187", "___s": true }, { @@ -586447,7 +588509,7 @@ "name": "amount" } ], - "___id": "T000002R050207", + "___id": "T000002R050188", "___s": true }, { @@ -586498,7 +588560,7 @@ "name": "key" } ], - "___id": "T000002R050208", + "___id": "T000002R050189", "___s": true }, { @@ -586566,7 +588628,7 @@ "name": "key" } ], - "___id": "T000002R050209", + "___id": "T000002R050190", "___s": true }, { @@ -586662,11 +588724,11 @@ "name": "dropZone" } ], - "___id": "T000002R050210", + "___id": "T000002R050191", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -586698,14 +588760,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R050211", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R050192", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -586734,14 +588813,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R050212", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R050193", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -586755,14 +588851,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R050213", + "___id": "T000002R050194", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -586776,14 +588872,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R050214", + "___id": "T000002R050195", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -586814,14 +588910,14 @@ "name": "args" } ], - "___id": "T000002R050215", + "___id": "T000002R050196", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -586849,14 +588945,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R050216", + "___id": "T000002R050197", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -586899,14 +588995,14 @@ "name": "camera" } ], - "___id": "T000002R050217", + "___id": "T000002R050198", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -586943,14 +589039,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R050218", + "___id": "T000002R050199", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -587009,14 +589105,14 @@ "name": "displayList" } ], - "___id": "T000002R050219", + "___id": "T000002R050200", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -587045,14 +589141,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R050220", + "___id": "T000002R050201", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -587085,14 +589181,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R050221", + "___id": "T000002R050202", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -587121,14 +589217,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R050222", + "___id": "T000002R050203", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -587162,7 +589258,7 @@ "name": "fromScene" } ], - "___id": "T000002R050223", + "___id": "T000002R050204", "___s": true }, { @@ -587183,7 +589279,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R050224", + "___id": "T000002R050205", "___s": true }, { @@ -587235,7 +589331,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R050225", + "___id": "T000002R050206", "___s": true }, { @@ -587304,7 +589400,7 @@ "name": "event" } ], - "___id": "T000002R050226", + "___id": "T000002R050207", "___s": true }, { @@ -587364,7 +589460,7 @@ "name": "event" } ], - "___id": "T000002R050227", + "___id": "T000002R050208", "___s": true }, { @@ -587439,7 +589535,7 @@ "name": "args" } ], - "___id": "T000002R050228", + "___id": "T000002R050209", "___s": true }, { @@ -587527,7 +589623,7 @@ "name": "context" } ], - "___id": "T000002R050229", + "___id": "T000002R050210", "___s": true }, { @@ -587615,7 +589711,7 @@ "name": "context" } ], - "___id": "T000002R050230", + "___id": "T000002R050211", "___s": true }, { @@ -587703,7 +589799,7 @@ "name": "context" } ], - "___id": "T000002R050231", + "___id": "T000002R050212", "___s": true }, { @@ -587805,7 +589901,7 @@ "name": "once" } ], - "___id": "T000002R050232", + "___id": "T000002R050213", "___s": true }, { @@ -587907,7 +590003,7 @@ "name": "once" } ], - "___id": "T000002R050233", + "___id": "T000002R050214", "___s": true }, { @@ -587969,7 +590065,7 @@ "name": "event" } ], - "___id": "T000002R050234", + "___id": "T000002R050215", "___s": true }, { @@ -588005,7 +590101,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R050236", + "___id": "T000002R050217", "___s": true }, { @@ -588058,7 +590154,7 @@ "name": "value" } ], - "___id": "T000002R050237", + "___id": "T000002R050218", "___s": true }, { @@ -588088,7 +590184,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R050238", + "___id": "T000002R050219", "___s": true }, { @@ -588133,7 +590229,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R050240", + "___id": "T000002R050221", "___s": true }, { @@ -588199,7 +590295,7 @@ "name": "value" } ], - "___id": "T000002R050241", + "___id": "T000002R050222", "___s": true }, { @@ -588229,7 +590325,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R050243", + "___id": "T000002R050224", "___s": true }, { @@ -588280,7 +590376,7 @@ "name": "value" } ], - "___id": "T000002R050244", + "___id": "T000002R050225", "___s": true }, { @@ -588316,7 +590412,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R050245", + "___id": "T000002R050226", "___s": true }, { @@ -588352,7 +590448,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R050246", + "___id": "T000002R050227", "___s": true }, { @@ -588403,7 +590499,7 @@ "name": "gameObject" } ], - "___id": "T000002R050247", + "___id": "T000002R050228", "___s": true }, { @@ -588454,7 +590550,7 @@ "name": "gameObject" } ], - "___id": "T000002R050248", + "___id": "T000002R050229", "___s": true }, { @@ -588528,7 +590624,7 @@ "name": "includeParent" } ], - "___id": "T000002R050250", + "___id": "T000002R050231", "___s": true }, { @@ -588602,7 +590698,7 @@ "name": "includeParent" } ], - "___id": "T000002R050251", + "___id": "T000002R050232", "___s": true }, { @@ -588676,7 +590772,7 @@ "name": "includeParent" } ], - "___id": "T000002R050252", + "___id": "T000002R050233", "___s": true }, { @@ -588750,7 +590846,7 @@ "name": "includeParent" } ], - "___id": "T000002R050253", + "___id": "T000002R050234", "___s": true }, { @@ -588824,7 +590920,7 @@ "name": "includeParent" } ], - "___id": "T000002R050254", + "___id": "T000002R050235", "___s": true }, { @@ -588898,7 +590994,7 @@ "name": "includeParent" } ], - "___id": "T000002R050255", + "___id": "T000002R050236", "___s": true }, { @@ -588972,7 +591068,7 @@ "name": "includeParent" } ], - "___id": "T000002R050256", + "___id": "T000002R050237", "___s": true }, { @@ -589046,7 +591142,7 @@ "name": "includeParent" } ], - "___id": "T000002R050257", + "___id": "T000002R050238", "___s": true }, { @@ -589120,7 +591216,7 @@ "name": "includeParent" } ], - "___id": "T000002R050258", + "___id": "T000002R050239", "___s": true }, { @@ -589199,7 +591295,7 @@ "name": "output" } ], - "___id": "T000002R050259", + "___id": "T000002R050240", "___s": true }, { @@ -589239,7 +591335,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R050260", + "___id": "T000002R050241", "___s": true }, { @@ -589300,7 +591396,7 @@ "name": "mask" } ], - "___id": "T000002R050261", + "___id": "T000002R050242", "___s": true }, { @@ -589353,7 +591449,7 @@ "name": "destroyMask" } ], - "___id": "T000002R050262", + "___id": "T000002R050243", "___s": true }, { @@ -589515,7 +591611,7 @@ "name": "frame" } ], - "___id": "T000002R050263", + "___id": "T000002R050244", "___s": true }, { @@ -589596,7 +591692,7 @@ "name": "graphics" } ], - "___id": "T000002R050264", + "___id": "T000002R050245", "___s": true }, { @@ -589628,7 +591724,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R050266", + "___id": "T000002R050247", "___s": true }, { @@ -589660,7 +591756,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R050267", + "___id": "T000002R050248", "___s": true }, { @@ -589690,7 +591786,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R050268", + "___id": "T000002R050249", "___s": true }, { @@ -589720,7 +591816,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R050269", + "___id": "T000002R050250", "___s": true }, { @@ -589788,7 +591884,7 @@ "name": "y" } ], - "___id": "T000002R050270", + "___id": "T000002R050251", "___s": true }, { @@ -589824,7 +591920,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R050271", + "___id": "T000002R050252", "___s": true }, { @@ -589892,7 +591988,7 @@ "name": "y" } ], - "___id": "T000002R050272", + "___id": "T000002R050253", "___s": true }, { @@ -589928,7 +592024,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R050273", + "___id": "T000002R050254", "___s": true }, { @@ -589966,7 +592062,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R050274", + "___id": "T000002R050255", "___s": true }, { @@ -590004,7 +592100,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R050275", + "___id": "T000002R050256", "___s": true }, { @@ -590041,7 +592137,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R050276", + "___id": "T000002R050257", "___s": true }, { @@ -590109,7 +592205,7 @@ "name": "pipeline" } ], - "___id": "T000002R050277", + "___id": "T000002R050258", "___s": true }, { @@ -590206,7 +592302,7 @@ "name": "copyData" } ], - "___id": "T000002R050278", + "___id": "T000002R050259", "___s": true }, { @@ -590278,7 +592374,7 @@ "name": "value" } ], - "___id": "T000002R050279", + "___id": "T000002R050260", "___s": true }, { @@ -590337,7 +592433,7 @@ "name": "resetData" } ], - "___id": "T000002R050280", + "___id": "T000002R050261", "___s": true }, { @@ -590381,7 +592477,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R050281", + "___id": "T000002R050262", "___s": true }, { @@ -590418,7 +592514,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R050282", + "___id": "T000002R050263", "___s": true }, { @@ -590464,7 +592560,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R050283", + "___id": "T000002R050264", "___s": true }, { @@ -590501,7 +592597,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R050284", + "___id": "T000002R050265", "___s": true }, { @@ -590540,7 +592636,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R050285", + "___id": "T000002R050266", "___s": true }, { @@ -590577,7 +592673,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R050286", + "___id": "T000002R050267", "___s": true }, { @@ -590622,7 +592718,7 @@ "name": "preFX" } ], - "___id": "T000002R050287", + "___id": "T000002R050268", "___s": true }, { @@ -590766,7 +592862,7 @@ "name": "copyData" } ], - "___id": "T000002R050288", + "___id": "T000002R050269", "___s": true }, { @@ -590838,7 +592934,7 @@ "name": "value" } ], - "___id": "T000002R050289", + "___id": "T000002R050270", "___s": true }, { @@ -590929,7 +593025,7 @@ "name": "pipeline" } ], - "___id": "T000002R050290", + "___id": "T000002R050271", "___s": true }, { @@ -590974,7 +593070,7 @@ "name": "resetData" } ], - "___id": "T000002R050291", + "___id": "T000002R050272", "___s": true }, { @@ -591042,7 +593138,7 @@ "name": "pipeline" } ], - "___id": "T000002R050292", + "___id": "T000002R050273", "___s": true }, { @@ -591085,7 +593181,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R050293", + "___id": "T000002R050274", "___s": true }, { @@ -591116,7 +593212,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R050294", + "___id": "T000002R050275", "___s": true }, { @@ -591147,7 +593243,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R050295", + "___id": "T000002R050276", "___s": true }, { @@ -591213,7 +593309,7 @@ "name": "y" } ], - "___id": "T000002R050296", + "___id": "T000002R050277", "___s": true }, { @@ -591245,7 +593341,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R050297", + "___id": "T000002R050278", "___s": true }, { @@ -591276,7 +593372,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R050301", + "___id": "T000002R050282", "___s": true }, { @@ -591307,7 +593403,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R050302", + "___id": "T000002R050283", "___s": true }, { @@ -591338,7 +593434,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R050303", + "___id": "T000002R050284", "___s": true }, { @@ -591369,7 +593465,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R050304", + "___id": "T000002R050285", "___s": true }, { @@ -591400,7 +593496,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R050305", + "___id": "T000002R050286", "___s": true }, { @@ -591431,7 +593527,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R050306", + "___id": "T000002R050287", "___s": true }, { @@ -591462,7 +593558,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R050307", + "___id": "T000002R050288", "___s": true }, { @@ -591493,7 +593589,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R050308", + "___id": "T000002R050289", "___s": true }, { @@ -591524,7 +593620,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R050309", + "___id": "T000002R050290", "___s": true }, { @@ -591622,7 +593718,7 @@ "name": "w" } ], - "___id": "T000002R050310", + "___id": "T000002R050291", "___s": true }, { @@ -591688,7 +593784,7 @@ "name": "source" } ], - "___id": "T000002R050311", + "___id": "T000002R050292", "___s": true }, { @@ -591784,7 +593880,7 @@ "name": "height" } ], - "___id": "T000002R050312", + "___id": "T000002R050293", "___s": true }, { @@ -591837,7 +593933,7 @@ "name": "radians" } ], - "___id": "T000002R050313", + "___id": "T000002R050294", "___s": true }, { @@ -591890,7 +593986,7 @@ "name": "degrees" } ], - "___id": "T000002R050314", + "___id": "T000002R050295", "___s": true }, { @@ -591958,7 +594054,7 @@ "name": "y" } ], - "___id": "T000002R050315", + "___id": "T000002R050296", "___s": true }, { @@ -592011,7 +594107,7 @@ "name": "value" } ], - "___id": "T000002R050316", + "___id": "T000002R050297", "___s": true }, { @@ -592064,7 +594160,7 @@ "name": "value" } ], - "___id": "T000002R050317", + "___id": "T000002R050298", "___s": true }, { @@ -592117,7 +594213,7 @@ "name": "value" } ], - "___id": "T000002R050318", + "___id": "T000002R050299", "___s": true }, { @@ -592170,7 +594266,7 @@ "name": "value" } ], - "___id": "T000002R050319", + "___id": "T000002R050300", "___s": true }, { @@ -592221,7 +594317,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R050320", + "___id": "T000002R050301", "___s": true }, { @@ -592286,7 +594382,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R050321", + "___id": "T000002R050302", "___s": true }, { @@ -592377,7 +594473,7 @@ "name": "camera" } ], - "___id": "T000002R050322", + "___id": "T000002R050303", "___s": true }, { @@ -592412,7 +594508,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R050323", + "___id": "T000002R050304", "___s": true }, { @@ -592442,7 +594538,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R050325", + "___id": "T000002R050306", "___s": true }, { @@ -592493,7 +594589,7 @@ "name": "value" } ], - "___id": "T000002R050326", + "___id": "T000002R050307", "___s": true }, { @@ -592524,7 +594620,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#geom", "inherited": true, - "___id": "T000002R050330", + "___id": "T000002R050311", "___s": true }, { @@ -592564,7 +594660,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathData", "inherited": true, - "___id": "T000002R050331", + "___id": "T000002R050312", "___s": true }, { @@ -592604,7 +594700,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathIndexes", "inherited": true, - "___id": "T000002R050332", + "___id": "T000002R050313", "___s": true }, { @@ -592634,7 +594730,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillColor", "inherited": true, - "___id": "T000002R050333", + "___id": "T000002R050314", "___s": true }, { @@ -592664,7 +594760,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillAlpha", "inherited": true, - "___id": "T000002R050334", + "___id": "T000002R050315", "___s": true }, { @@ -592694,7 +594790,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeColor", "inherited": true, - "___id": "T000002R050335", + "___id": "T000002R050316", "___s": true }, { @@ -592724,7 +594820,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeAlpha", "inherited": true, - "___id": "T000002R050336", + "___id": "T000002R050317", "___s": true }, { @@ -592754,7 +594850,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#lineWidth", "inherited": true, - "___id": "T000002R050337", + "___id": "T000002R050318", "___s": true }, { @@ -592784,7 +594880,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isFilled", "inherited": true, - "___id": "T000002R050338", + "___id": "T000002R050319", "___s": true }, { @@ -592814,7 +594910,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isStroked", "inherited": true, - "___id": "T000002R050339", + "___id": "T000002R050320", "___s": true }, { @@ -592844,7 +594940,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#closePath", "inherited": true, - "___id": "T000002R050340", + "___id": "T000002R050321", "___s": true }, { @@ -592874,7 +594970,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#width", "inherited": true, - "___id": "T000002R050342", + "___id": "T000002R050323", "___s": true }, { @@ -592904,7 +595000,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#height", "inherited": true, - "___id": "T000002R050343", + "___id": "T000002R050324", "___s": true }, { @@ -592971,7 +595067,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setFillStyle", "inherited": true, - "___id": "T000002R050344", + "___id": "T000002R050325", "___s": true }, { @@ -593052,7 +595148,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setStrokeStyle", "inherited": true, - "___id": "T000002R050345", + "___id": "T000002R050326", "___s": true }, { @@ -593103,7 +595199,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setClosePath", "inherited": true, - "___id": "T000002R050346", + "___id": "T000002R050327", "___s": true }, { @@ -593167,7 +595263,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setDisplaySize", "inherited": true, - "___id": "T000002R050348", + "___id": "T000002R050329", "___s": true }, { @@ -593189,7 +595285,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#preDestroy", "inherited": true, - "___id": "T000002R050349", + "___id": "T000002R050330", "___s": true }, { @@ -593219,7 +595315,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayWidth", "inherited": true, - "___id": "T000002R050350", + "___id": "T000002R050331", "___s": true }, { @@ -593249,7 +595345,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayHeight", "inherited": true, - "___id": "T000002R050351", + "___id": "T000002R050332", "___s": true }, { @@ -593279,7 +595375,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R050353", + "___id": "T000002R050334", "___s": true }, { @@ -593320,7 +595416,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R050354", + "___id": "T000002R050335", "___s": true }, { @@ -593350,7 +595446,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R050355", + "___id": "T000002R050336", "___s": true }, { @@ -593390,7 +595486,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R050356", + "___id": "T000002R050337", "___s": true }, { @@ -593420,7 +595516,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R050357", + "___id": "T000002R050338", "___s": true }, { @@ -593451,7 +595547,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R050358", + "___id": "T000002R050339", "___s": true }, { @@ -593482,7 +595578,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R050359", + "___id": "T000002R050340", "___s": true }, { @@ -593513,7 +595609,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R050360", + "___id": "T000002R050341", "___s": true }, { @@ -593544,7 +595640,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R050361", + "___id": "T000002R050342", "___s": true }, { @@ -593575,7 +595671,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R050362", + "___id": "T000002R050343", "___s": true }, { @@ -593609,7 +595705,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R050363", + "___id": "T000002R050344", "___s": true }, { @@ -593642,7 +595738,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R050364", + "___id": "T000002R050345", "___s": true }, { @@ -593690,7 +595786,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R050365", + "___id": "T000002R050346", "___s": true }, { @@ -593721,7 +595817,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R050366", + "___id": "T000002R050347", "___s": true }, { @@ -593772,7 +595868,7 @@ "name": "value" } ], - "___id": "T000002R050367", + "___id": "T000002R050348", "___s": true }, { @@ -593823,7 +595919,7 @@ "name": "value" } ], - "___id": "T000002R050368", + "___id": "T000002R050349", "___s": true }, { @@ -593884,7 +595980,7 @@ "name": "value" } ], - "___id": "T000002R050369", + "___id": "T000002R050350", "___s": true }, { @@ -593923,7 +596019,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R050370", + "___id": "T000002R050351", "___s": true }, { @@ -594011,7 +596107,7 @@ "name": "data" } ], - "___id": "T000002R050371", + "___id": "T000002R050352", "___s": true }, { @@ -594077,7 +596173,7 @@ "name": "amount" } ], - "___id": "T000002R050372", + "___id": "T000002R050353", "___s": true }, { @@ -594128,7 +596224,7 @@ "name": "key" } ], - "___id": "T000002R050373", + "___id": "T000002R050354", "___s": true }, { @@ -594196,7 +596292,7 @@ "name": "key" } ], - "___id": "T000002R050374", + "___id": "T000002R050355", "___s": true }, { @@ -594292,11 +596388,11 @@ "name": "dropZone" } ], - "___id": "T000002R050375", + "___id": "T000002R050356", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -594328,14 +596424,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R050376", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R050357", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -594364,14 +596477,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R050377", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R050358", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -594385,14 +596515,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R050378", + "___id": "T000002R050359", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -594406,14 +596536,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R050379", + "___id": "T000002R050360", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -594444,14 +596574,14 @@ "name": "args" } ], - "___id": "T000002R050380", + "___id": "T000002R050361", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -594479,14 +596609,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R050381", + "___id": "T000002R050362", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -594529,14 +596659,14 @@ "name": "camera" } ], - "___id": "T000002R050382", + "___id": "T000002R050363", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -594573,14 +596703,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R050383", + "___id": "T000002R050364", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -594639,14 +596769,14 @@ "name": "displayList" } ], - "___id": "T000002R050384", + "___id": "T000002R050365", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -594675,14 +596805,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R050385", + "___id": "T000002R050366", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -594715,14 +596845,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R050386", + "___id": "T000002R050367", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -594751,14 +596881,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R050387", + "___id": "T000002R050368", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -594792,7 +596922,7 @@ "name": "fromScene" } ], - "___id": "T000002R050388", + "___id": "T000002R050369", "___s": true }, { @@ -594813,7 +596943,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R050389", + "___id": "T000002R050370", "___s": true }, { @@ -594865,7 +596995,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R050390", + "___id": "T000002R050371", "___s": true }, { @@ -594934,7 +597064,7 @@ "name": "event" } ], - "___id": "T000002R050391", + "___id": "T000002R050372", "___s": true }, { @@ -594994,7 +597124,7 @@ "name": "event" } ], - "___id": "T000002R050392", + "___id": "T000002R050373", "___s": true }, { @@ -595069,7 +597199,7 @@ "name": "args" } ], - "___id": "T000002R050393", + "___id": "T000002R050374", "___s": true }, { @@ -595157,7 +597287,7 @@ "name": "context" } ], - "___id": "T000002R050394", + "___id": "T000002R050375", "___s": true }, { @@ -595245,7 +597375,7 @@ "name": "context" } ], - "___id": "T000002R050395", + "___id": "T000002R050376", "___s": true }, { @@ -595333,7 +597463,7 @@ "name": "context" } ], - "___id": "T000002R050396", + "___id": "T000002R050377", "___s": true }, { @@ -595435,7 +597565,7 @@ "name": "once" } ], - "___id": "T000002R050397", + "___id": "T000002R050378", "___s": true }, { @@ -595537,7 +597667,7 @@ "name": "once" } ], - "___id": "T000002R050398", + "___id": "T000002R050379", "___s": true }, { @@ -595599,7 +597729,7 @@ "name": "event" } ], - "___id": "T000002R050399", + "___id": "T000002R050380", "___s": true }, { @@ -595635,7 +597765,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R050401", + "___id": "T000002R050382", "___s": true }, { @@ -595688,7 +597818,7 @@ "name": "value" } ], - "___id": "T000002R050402", + "___id": "T000002R050383", "___s": true }, { @@ -595718,7 +597848,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R050403", + "___id": "T000002R050384", "___s": true }, { @@ -595763,7 +597893,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R050405", + "___id": "T000002R050386", "___s": true }, { @@ -595829,7 +597959,7 @@ "name": "value" } ], - "___id": "T000002R050406", + "___id": "T000002R050387", "___s": true }, { @@ -595859,7 +597989,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R050408", + "___id": "T000002R050389", "___s": true }, { @@ -595910,7 +598040,7 @@ "name": "value" } ], - "___id": "T000002R050409", + "___id": "T000002R050390", "___s": true }, { @@ -595946,7 +598076,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R050410", + "___id": "T000002R050391", "___s": true }, { @@ -595982,7 +598112,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R050411", + "___id": "T000002R050392", "___s": true }, { @@ -596033,7 +598163,7 @@ "name": "gameObject" } ], - "___id": "T000002R050412", + "___id": "T000002R050393", "___s": true }, { @@ -596084,7 +598214,7 @@ "name": "gameObject" } ], - "___id": "T000002R050413", + "___id": "T000002R050394", "___s": true }, { @@ -596158,7 +598288,7 @@ "name": "includeParent" } ], - "___id": "T000002R050415", + "___id": "T000002R050396", "___s": true }, { @@ -596232,7 +598362,7 @@ "name": "includeParent" } ], - "___id": "T000002R050416", + "___id": "T000002R050397", "___s": true }, { @@ -596306,7 +598436,7 @@ "name": "includeParent" } ], - "___id": "T000002R050417", + "___id": "T000002R050398", "___s": true }, { @@ -596380,7 +598510,7 @@ "name": "includeParent" } ], - "___id": "T000002R050418", + "___id": "T000002R050399", "___s": true }, { @@ -596454,7 +598584,7 @@ "name": "includeParent" } ], - "___id": "T000002R050419", + "___id": "T000002R050400", "___s": true }, { @@ -596528,7 +598658,7 @@ "name": "includeParent" } ], - "___id": "T000002R050420", + "___id": "T000002R050401", "___s": true }, { @@ -596602,7 +598732,7 @@ "name": "includeParent" } ], - "___id": "T000002R050421", + "___id": "T000002R050402", "___s": true }, { @@ -596676,7 +598806,7 @@ "name": "includeParent" } ], - "___id": "T000002R050422", + "___id": "T000002R050403", "___s": true }, { @@ -596750,7 +598880,7 @@ "name": "includeParent" } ], - "___id": "T000002R050423", + "___id": "T000002R050404", "___s": true }, { @@ -596829,7 +598959,7 @@ "name": "output" } ], - "___id": "T000002R050424", + "___id": "T000002R050405", "___s": true }, { @@ -596869,7 +598999,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R050425", + "___id": "T000002R050406", "___s": true }, { @@ -596930,7 +599060,7 @@ "name": "mask" } ], - "___id": "T000002R050426", + "___id": "T000002R050407", "___s": true }, { @@ -596983,7 +599113,7 @@ "name": "destroyMask" } ], - "___id": "T000002R050427", + "___id": "T000002R050408", "___s": true }, { @@ -597145,7 +599275,7 @@ "name": "frame" } ], - "___id": "T000002R050428", + "___id": "T000002R050409", "___s": true }, { @@ -597226,7 +599356,7 @@ "name": "graphics" } ], - "___id": "T000002R050429", + "___id": "T000002R050410", "___s": true }, { @@ -597258,7 +599388,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R050431", + "___id": "T000002R050412", "___s": true }, { @@ -597290,7 +599420,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R050432", + "___id": "T000002R050413", "___s": true }, { @@ -597320,7 +599450,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R050433", + "___id": "T000002R050414", "___s": true }, { @@ -597350,7 +599480,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R050434", + "___id": "T000002R050415", "___s": true }, { @@ -597418,7 +599548,7 @@ "name": "y" } ], - "___id": "T000002R050435", + "___id": "T000002R050416", "___s": true }, { @@ -597454,7 +599584,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R050436", + "___id": "T000002R050417", "___s": true }, { @@ -597522,7 +599652,7 @@ "name": "y" } ], - "___id": "T000002R050437", + "___id": "T000002R050418", "___s": true }, { @@ -597558,7 +599688,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R050438", + "___id": "T000002R050419", "___s": true }, { @@ -597596,7 +599726,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R050439", + "___id": "T000002R050420", "___s": true }, { @@ -597634,7 +599764,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R050440", + "___id": "T000002R050421", "___s": true }, { @@ -597671,7 +599801,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R050441", + "___id": "T000002R050422", "___s": true }, { @@ -597739,7 +599869,7 @@ "name": "pipeline" } ], - "___id": "T000002R050442", + "___id": "T000002R050423", "___s": true }, { @@ -597836,7 +599966,7 @@ "name": "copyData" } ], - "___id": "T000002R050443", + "___id": "T000002R050424", "___s": true }, { @@ -597908,7 +600038,7 @@ "name": "value" } ], - "___id": "T000002R050444", + "___id": "T000002R050425", "___s": true }, { @@ -597967,7 +600097,7 @@ "name": "resetData" } ], - "___id": "T000002R050445", + "___id": "T000002R050426", "___s": true }, { @@ -598011,7 +600141,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R050446", + "___id": "T000002R050427", "___s": true }, { @@ -598048,7 +600178,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R050447", + "___id": "T000002R050428", "___s": true }, { @@ -598094,7 +600224,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R050448", + "___id": "T000002R050429", "___s": true }, { @@ -598131,7 +600261,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R050449", + "___id": "T000002R050430", "___s": true }, { @@ -598170,7 +600300,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R050450", + "___id": "T000002R050431", "___s": true }, { @@ -598207,7 +600337,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R050451", + "___id": "T000002R050432", "___s": true }, { @@ -598252,7 +600382,7 @@ "name": "preFX" } ], - "___id": "T000002R050452", + "___id": "T000002R050433", "___s": true }, { @@ -598396,7 +600526,7 @@ "name": "copyData" } ], - "___id": "T000002R050453", + "___id": "T000002R050434", "___s": true }, { @@ -598468,7 +600598,7 @@ "name": "value" } ], - "___id": "T000002R050454", + "___id": "T000002R050435", "___s": true }, { @@ -598559,7 +600689,7 @@ "name": "pipeline" } ], - "___id": "T000002R050455", + "___id": "T000002R050436", "___s": true }, { @@ -598604,7 +600734,7 @@ "name": "resetData" } ], - "___id": "T000002R050456", + "___id": "T000002R050437", "___s": true }, { @@ -598672,7 +600802,7 @@ "name": "pipeline" } ], - "___id": "T000002R050457", + "___id": "T000002R050438", "___s": true }, { @@ -598715,7 +600845,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R050458", + "___id": "T000002R050439", "___s": true }, { @@ -598746,7 +600876,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R050459", + "___id": "T000002R050440", "___s": true }, { @@ -598777,7 +600907,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R050460", + "___id": "T000002R050441", "___s": true }, { @@ -598843,7 +600973,7 @@ "name": "y" } ], - "___id": "T000002R050461", + "___id": "T000002R050442", "___s": true }, { @@ -598875,7 +601005,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R050462", + "___id": "T000002R050443", "___s": true }, { @@ -598906,7 +601036,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R050466", + "___id": "T000002R050447", "___s": true }, { @@ -598937,7 +601067,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R050467", + "___id": "T000002R050448", "___s": true }, { @@ -598968,7 +601098,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R050468", + "___id": "T000002R050449", "___s": true }, { @@ -598999,7 +601129,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R050469", + "___id": "T000002R050450", "___s": true }, { @@ -599030,7 +601160,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R050470", + "___id": "T000002R050451", "___s": true }, { @@ -599061,7 +601191,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R050471", + "___id": "T000002R050452", "___s": true }, { @@ -599092,7 +601222,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R050472", + "___id": "T000002R050453", "___s": true }, { @@ -599123,7 +601253,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R050473", + "___id": "T000002R050454", "___s": true }, { @@ -599154,7 +601284,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R050474", + "___id": "T000002R050455", "___s": true }, { @@ -599252,7 +601382,7 @@ "name": "w" } ], - "___id": "T000002R050475", + "___id": "T000002R050456", "___s": true }, { @@ -599318,7 +601448,7 @@ "name": "source" } ], - "___id": "T000002R050476", + "___id": "T000002R050457", "___s": true }, { @@ -599414,7 +601544,7 @@ "name": "height" } ], - "___id": "T000002R050477", + "___id": "T000002R050458", "___s": true }, { @@ -599467,7 +601597,7 @@ "name": "radians" } ], - "___id": "T000002R050478", + "___id": "T000002R050459", "___s": true }, { @@ -599520,7 +601650,7 @@ "name": "degrees" } ], - "___id": "T000002R050479", + "___id": "T000002R050460", "___s": true }, { @@ -599588,7 +601718,7 @@ "name": "y" } ], - "___id": "T000002R050480", + "___id": "T000002R050461", "___s": true }, { @@ -599641,7 +601771,7 @@ "name": "value" } ], - "___id": "T000002R050481", + "___id": "T000002R050462", "___s": true }, { @@ -599694,7 +601824,7 @@ "name": "value" } ], - "___id": "T000002R050482", + "___id": "T000002R050463", "___s": true }, { @@ -599747,7 +601877,7 @@ "name": "value" } ], - "___id": "T000002R050483", + "___id": "T000002R050464", "___s": true }, { @@ -599800,7 +601930,7 @@ "name": "value" } ], - "___id": "T000002R050484", + "___id": "T000002R050465", "___s": true }, { @@ -599851,7 +601981,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R050485", + "___id": "T000002R050466", "___s": true }, { @@ -599916,7 +602046,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R050486", + "___id": "T000002R050467", "___s": true }, { @@ -600007,7 +602137,7 @@ "name": "camera" } ], - "___id": "T000002R050487", + "___id": "T000002R050468", "___s": true }, { @@ -600042,7 +602172,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R050488", + "___id": "T000002R050469", "___s": true }, { @@ -600072,7 +602202,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R050490", + "___id": "T000002R050471", "___s": true }, { @@ -600123,7 +602253,7 @@ "name": "value" } ], - "___id": "T000002R050491", + "___id": "T000002R050472", "___s": true }, { @@ -600154,7 +602284,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#geom", "inherited": true, - "___id": "T000002R050495", + "___id": "T000002R050476", "___s": true }, { @@ -600194,7 +602324,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathData", "inherited": true, - "___id": "T000002R050496", + "___id": "T000002R050477", "___s": true }, { @@ -600234,7 +602364,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathIndexes", "inherited": true, - "___id": "T000002R050497", + "___id": "T000002R050478", "___s": true }, { @@ -600264,7 +602394,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillColor", "inherited": true, - "___id": "T000002R050498", + "___id": "T000002R050479", "___s": true }, { @@ -600294,7 +602424,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillAlpha", "inherited": true, - "___id": "T000002R050499", + "___id": "T000002R050480", "___s": true }, { @@ -600324,7 +602454,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeColor", "inherited": true, - "___id": "T000002R050500", + "___id": "T000002R050481", "___s": true }, { @@ -600354,7 +602484,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeAlpha", "inherited": true, - "___id": "T000002R050501", + "___id": "T000002R050482", "___s": true }, { @@ -600384,7 +602514,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#lineWidth", "inherited": true, - "___id": "T000002R050502", + "___id": "T000002R050483", "___s": true }, { @@ -600414,7 +602544,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isFilled", "inherited": true, - "___id": "T000002R050503", + "___id": "T000002R050484", "___s": true }, { @@ -600444,7 +602574,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isStroked", "inherited": true, - "___id": "T000002R050504", + "___id": "T000002R050485", "___s": true }, { @@ -600474,7 +602604,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#closePath", "inherited": true, - "___id": "T000002R050505", + "___id": "T000002R050486", "___s": true }, { @@ -600504,7 +602634,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#width", "inherited": true, - "___id": "T000002R050507", + "___id": "T000002R050488", "___s": true }, { @@ -600534,7 +602664,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#height", "inherited": true, - "___id": "T000002R050508", + "___id": "T000002R050489", "___s": true }, { @@ -600601,7 +602731,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setFillStyle", "inherited": true, - "___id": "T000002R050509", + "___id": "T000002R050490", "___s": true }, { @@ -600682,7 +602812,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setStrokeStyle", "inherited": true, - "___id": "T000002R050510", + "___id": "T000002R050491", "___s": true }, { @@ -600733,7 +602863,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setClosePath", "inherited": true, - "___id": "T000002R050511", + "___id": "T000002R050492", "___s": true }, { @@ -600797,7 +602927,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setDisplaySize", "inherited": true, - "___id": "T000002R050512", + "___id": "T000002R050493", "___s": true }, { @@ -600819,7 +602949,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#preDestroy", "inherited": true, - "___id": "T000002R050513", + "___id": "T000002R050494", "___s": true }, { @@ -600849,7 +602979,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayWidth", "inherited": true, - "___id": "T000002R050514", + "___id": "T000002R050495", "___s": true }, { @@ -600879,7 +603009,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayHeight", "inherited": true, - "___id": "T000002R050515", + "___id": "T000002R050496", "___s": true }, { @@ -600909,7 +603039,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R050517", + "___id": "T000002R050498", "___s": true }, { @@ -600950,7 +603080,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R050518", + "___id": "T000002R050499", "___s": true }, { @@ -600980,7 +603110,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R050519", + "___id": "T000002R050500", "___s": true }, { @@ -601020,7 +603150,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R050520", + "___id": "T000002R050501", "___s": true }, { @@ -601050,7 +603180,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R050521", + "___id": "T000002R050502", "___s": true }, { @@ -601081,7 +603211,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R050522", + "___id": "T000002R050503", "___s": true }, { @@ -601112,7 +603242,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R050523", + "___id": "T000002R050504", "___s": true }, { @@ -601143,7 +603273,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R050524", + "___id": "T000002R050505", "___s": true }, { @@ -601174,7 +603304,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R050525", + "___id": "T000002R050506", "___s": true }, { @@ -601205,7 +603335,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R050526", + "___id": "T000002R050507", "___s": true }, { @@ -601239,7 +603369,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R050527", + "___id": "T000002R050508", "___s": true }, { @@ -601272,7 +603402,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R050528", + "___id": "T000002R050509", "___s": true }, { @@ -601320,7 +603450,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R050529", + "___id": "T000002R050510", "___s": true }, { @@ -601351,7 +603481,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R050530", + "___id": "T000002R050511", "___s": true }, { @@ -601402,7 +603532,7 @@ "name": "value" } ], - "___id": "T000002R050531", + "___id": "T000002R050512", "___s": true }, { @@ -601453,7 +603583,7 @@ "name": "value" } ], - "___id": "T000002R050532", + "___id": "T000002R050513", "___s": true }, { @@ -601514,7 +603644,7 @@ "name": "value" } ], - "___id": "T000002R050533", + "___id": "T000002R050514", "___s": true }, { @@ -601553,7 +603683,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R050534", + "___id": "T000002R050515", "___s": true }, { @@ -601641,7 +603771,7 @@ "name": "data" } ], - "___id": "T000002R050535", + "___id": "T000002R050516", "___s": true }, { @@ -601707,7 +603837,7 @@ "name": "amount" } ], - "___id": "T000002R050536", + "___id": "T000002R050517", "___s": true }, { @@ -601758,7 +603888,7 @@ "name": "key" } ], - "___id": "T000002R050537", + "___id": "T000002R050518", "___s": true }, { @@ -601826,7 +603956,7 @@ "name": "key" } ], - "___id": "T000002R050538", + "___id": "T000002R050519", "___s": true }, { @@ -601922,11 +604052,11 @@ "name": "dropZone" } ], - "___id": "T000002R050539", + "___id": "T000002R050520", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -601958,14 +604088,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R050540", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R050521", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -601994,14 +604141,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R050541", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R050522", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -602015,14 +604179,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R050542", + "___id": "T000002R050523", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -602036,14 +604200,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R050543", + "___id": "T000002R050524", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -602074,14 +604238,14 @@ "name": "args" } ], - "___id": "T000002R050544", + "___id": "T000002R050525", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -602109,14 +604273,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R050545", + "___id": "T000002R050526", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -602159,14 +604323,14 @@ "name": "camera" } ], - "___id": "T000002R050546", + "___id": "T000002R050527", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -602203,14 +604367,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R050547", + "___id": "T000002R050528", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -602269,14 +604433,14 @@ "name": "displayList" } ], - "___id": "T000002R050548", + "___id": "T000002R050529", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -602305,14 +604469,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R050549", + "___id": "T000002R050530", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -602345,14 +604509,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R050550", + "___id": "T000002R050531", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -602381,14 +604545,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R050551", + "___id": "T000002R050532", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -602422,7 +604586,7 @@ "name": "fromScene" } ], - "___id": "T000002R050552", + "___id": "T000002R050533", "___s": true }, { @@ -602443,7 +604607,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R050553", + "___id": "T000002R050534", "___s": true }, { @@ -602495,7 +604659,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R050554", + "___id": "T000002R050535", "___s": true }, { @@ -602564,7 +604728,7 @@ "name": "event" } ], - "___id": "T000002R050555", + "___id": "T000002R050536", "___s": true }, { @@ -602624,7 +604788,7 @@ "name": "event" } ], - "___id": "T000002R050556", + "___id": "T000002R050537", "___s": true }, { @@ -602699,7 +604863,7 @@ "name": "args" } ], - "___id": "T000002R050557", + "___id": "T000002R050538", "___s": true }, { @@ -602787,7 +604951,7 @@ "name": "context" } ], - "___id": "T000002R050558", + "___id": "T000002R050539", "___s": true }, { @@ -602875,7 +605039,7 @@ "name": "context" } ], - "___id": "T000002R050559", + "___id": "T000002R050540", "___s": true }, { @@ -602963,7 +605127,7 @@ "name": "context" } ], - "___id": "T000002R050560", + "___id": "T000002R050541", "___s": true }, { @@ -603065,7 +605229,7 @@ "name": "once" } ], - "___id": "T000002R050561", + "___id": "T000002R050542", "___s": true }, { @@ -603167,7 +605331,7 @@ "name": "once" } ], - "___id": "T000002R050562", + "___id": "T000002R050543", "___s": true }, { @@ -603229,7 +605393,7 @@ "name": "event" } ], - "___id": "T000002R050563", + "___id": "T000002R050544", "___s": true }, { @@ -603265,7 +605429,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R050565", + "___id": "T000002R050546", "___s": true }, { @@ -603318,7 +605482,7 @@ "name": "value" } ], - "___id": "T000002R050566", + "___id": "T000002R050547", "___s": true }, { @@ -603348,7 +605512,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R050567", + "___id": "T000002R050548", "___s": true }, { @@ -603393,7 +605557,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R050569", + "___id": "T000002R050550", "___s": true }, { @@ -603459,7 +605623,7 @@ "name": "value" } ], - "___id": "T000002R050570", + "___id": "T000002R050551", "___s": true }, { @@ -603489,7 +605653,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R050572", + "___id": "T000002R050553", "___s": true }, { @@ -603540,7 +605704,7 @@ "name": "value" } ], - "___id": "T000002R050573", + "___id": "T000002R050554", "___s": true }, { @@ -603576,7 +605740,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R050574", + "___id": "T000002R050555", "___s": true }, { @@ -603612,7 +605776,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R050575", + "___id": "T000002R050556", "___s": true }, { @@ -603663,7 +605827,7 @@ "name": "gameObject" } ], - "___id": "T000002R050576", + "___id": "T000002R050557", "___s": true }, { @@ -603714,7 +605878,7 @@ "name": "gameObject" } ], - "___id": "T000002R050577", + "___id": "T000002R050558", "___s": true }, { @@ -603788,7 +605952,7 @@ "name": "includeParent" } ], - "___id": "T000002R050579", + "___id": "T000002R050560", "___s": true }, { @@ -603862,7 +606026,7 @@ "name": "includeParent" } ], - "___id": "T000002R050580", + "___id": "T000002R050561", "___s": true }, { @@ -603936,7 +606100,7 @@ "name": "includeParent" } ], - "___id": "T000002R050581", + "___id": "T000002R050562", "___s": true }, { @@ -604010,7 +606174,7 @@ "name": "includeParent" } ], - "___id": "T000002R050582", + "___id": "T000002R050563", "___s": true }, { @@ -604084,7 +606248,7 @@ "name": "includeParent" } ], - "___id": "T000002R050583", + "___id": "T000002R050564", "___s": true }, { @@ -604158,7 +606322,7 @@ "name": "includeParent" } ], - "___id": "T000002R050584", + "___id": "T000002R050565", "___s": true }, { @@ -604232,7 +606396,7 @@ "name": "includeParent" } ], - "___id": "T000002R050585", + "___id": "T000002R050566", "___s": true }, { @@ -604306,7 +606470,7 @@ "name": "includeParent" } ], - "___id": "T000002R050586", + "___id": "T000002R050567", "___s": true }, { @@ -604380,7 +606544,7 @@ "name": "includeParent" } ], - "___id": "T000002R050587", + "___id": "T000002R050568", "___s": true }, { @@ -604459,7 +606623,7 @@ "name": "output" } ], - "___id": "T000002R050588", + "___id": "T000002R050569", "___s": true }, { @@ -604499,7 +606663,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R050589", + "___id": "T000002R050570", "___s": true }, { @@ -604560,7 +606724,7 @@ "name": "mask" } ], - "___id": "T000002R050590", + "___id": "T000002R050571", "___s": true }, { @@ -604613,7 +606777,7 @@ "name": "destroyMask" } ], - "___id": "T000002R050591", + "___id": "T000002R050572", "___s": true }, { @@ -604775,7 +606939,7 @@ "name": "frame" } ], - "___id": "T000002R050592", + "___id": "T000002R050573", "___s": true }, { @@ -604856,7 +607020,7 @@ "name": "graphics" } ], - "___id": "T000002R050593", + "___id": "T000002R050574", "___s": true }, { @@ -604888,7 +607052,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R050595", + "___id": "T000002R050576", "___s": true }, { @@ -604920,7 +607084,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R050596", + "___id": "T000002R050577", "___s": true }, { @@ -604950,7 +607114,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R050597", + "___id": "T000002R050578", "___s": true }, { @@ -604980,7 +607144,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R050598", + "___id": "T000002R050579", "___s": true }, { @@ -605048,7 +607212,7 @@ "name": "y" } ], - "___id": "T000002R050599", + "___id": "T000002R050580", "___s": true }, { @@ -605084,7 +607248,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R050600", + "___id": "T000002R050581", "___s": true }, { @@ -605152,7 +607316,7 @@ "name": "y" } ], - "___id": "T000002R050601", + "___id": "T000002R050582", "___s": true }, { @@ -605188,7 +607352,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R050602", + "___id": "T000002R050583", "___s": true }, { @@ -605226,7 +607390,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R050603", + "___id": "T000002R050584", "___s": true }, { @@ -605264,7 +607428,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R050604", + "___id": "T000002R050585", "___s": true }, { @@ -605301,7 +607465,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R050605", + "___id": "T000002R050586", "___s": true }, { @@ -605369,7 +607533,7 @@ "name": "pipeline" } ], - "___id": "T000002R050606", + "___id": "T000002R050587", "___s": true }, { @@ -605466,7 +607630,7 @@ "name": "copyData" } ], - "___id": "T000002R050607", + "___id": "T000002R050588", "___s": true }, { @@ -605538,7 +607702,7 @@ "name": "value" } ], - "___id": "T000002R050608", + "___id": "T000002R050589", "___s": true }, { @@ -605597,7 +607761,7 @@ "name": "resetData" } ], - "___id": "T000002R050609", + "___id": "T000002R050590", "___s": true }, { @@ -605641,7 +607805,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R050610", + "___id": "T000002R050591", "___s": true }, { @@ -605678,7 +607842,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R050611", + "___id": "T000002R050592", "___s": true }, { @@ -605724,7 +607888,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R050612", + "___id": "T000002R050593", "___s": true }, { @@ -605761,7 +607925,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R050613", + "___id": "T000002R050594", "___s": true }, { @@ -605800,7 +607964,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R050614", + "___id": "T000002R050595", "___s": true }, { @@ -605837,7 +608001,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R050615", + "___id": "T000002R050596", "___s": true }, { @@ -605882,7 +608046,7 @@ "name": "preFX" } ], - "___id": "T000002R050616", + "___id": "T000002R050597", "___s": true }, { @@ -606026,7 +608190,7 @@ "name": "copyData" } ], - "___id": "T000002R050617", + "___id": "T000002R050598", "___s": true }, { @@ -606098,7 +608262,7 @@ "name": "value" } ], - "___id": "T000002R050618", + "___id": "T000002R050599", "___s": true }, { @@ -606189,7 +608353,7 @@ "name": "pipeline" } ], - "___id": "T000002R050619", + "___id": "T000002R050600", "___s": true }, { @@ -606234,7 +608398,7 @@ "name": "resetData" } ], - "___id": "T000002R050620", + "___id": "T000002R050601", "___s": true }, { @@ -606302,7 +608466,7 @@ "name": "pipeline" } ], - "___id": "T000002R050621", + "___id": "T000002R050602", "___s": true }, { @@ -606345,7 +608509,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R050622", + "___id": "T000002R050603", "___s": true }, { @@ -606376,7 +608540,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R050623", + "___id": "T000002R050604", "___s": true }, { @@ -606407,7 +608571,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R050624", + "___id": "T000002R050605", "___s": true }, { @@ -606473,7 +608637,7 @@ "name": "y" } ], - "___id": "T000002R050625", + "___id": "T000002R050606", "___s": true }, { @@ -606505,7 +608669,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R050626", + "___id": "T000002R050607", "___s": true }, { @@ -606536,7 +608700,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R050630", + "___id": "T000002R050611", "___s": true }, { @@ -606567,7 +608731,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R050631", + "___id": "T000002R050612", "___s": true }, { @@ -606598,7 +608762,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R050632", + "___id": "T000002R050613", "___s": true }, { @@ -606629,7 +608793,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R050633", + "___id": "T000002R050614", "___s": true }, { @@ -606660,7 +608824,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R050634", + "___id": "T000002R050615", "___s": true }, { @@ -606691,7 +608855,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R050635", + "___id": "T000002R050616", "___s": true }, { @@ -606722,7 +608886,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R050636", + "___id": "T000002R050617", "___s": true }, { @@ -606753,7 +608917,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R050637", + "___id": "T000002R050618", "___s": true }, { @@ -606784,7 +608948,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R050638", + "___id": "T000002R050619", "___s": true }, { @@ -606882,7 +609046,7 @@ "name": "w" } ], - "___id": "T000002R050639", + "___id": "T000002R050620", "___s": true }, { @@ -606948,7 +609112,7 @@ "name": "source" } ], - "___id": "T000002R050640", + "___id": "T000002R050621", "___s": true }, { @@ -607044,7 +609208,7 @@ "name": "height" } ], - "___id": "T000002R050641", + "___id": "T000002R050622", "___s": true }, { @@ -607097,7 +609261,7 @@ "name": "radians" } ], - "___id": "T000002R050642", + "___id": "T000002R050623", "___s": true }, { @@ -607150,7 +609314,7 @@ "name": "degrees" } ], - "___id": "T000002R050643", + "___id": "T000002R050624", "___s": true }, { @@ -607218,7 +609382,7 @@ "name": "y" } ], - "___id": "T000002R050644", + "___id": "T000002R050625", "___s": true }, { @@ -607271,7 +609435,7 @@ "name": "value" } ], - "___id": "T000002R050645", + "___id": "T000002R050626", "___s": true }, { @@ -607324,7 +609488,7 @@ "name": "value" } ], - "___id": "T000002R050646", + "___id": "T000002R050627", "___s": true }, { @@ -607377,7 +609541,7 @@ "name": "value" } ], - "___id": "T000002R050647", + "___id": "T000002R050628", "___s": true }, { @@ -607430,7 +609594,7 @@ "name": "value" } ], - "___id": "T000002R050648", + "___id": "T000002R050629", "___s": true }, { @@ -607481,7 +609645,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R050649", + "___id": "T000002R050630", "___s": true }, { @@ -607546,7 +609710,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R050650", + "___id": "T000002R050631", "___s": true }, { @@ -607637,7 +609801,7 @@ "name": "camera" } ], - "___id": "T000002R050651", + "___id": "T000002R050632", "___s": true }, { @@ -607672,7 +609836,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R050652", + "___id": "T000002R050633", "___s": true }, { @@ -607702,7 +609866,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R050654", + "___id": "T000002R050635", "___s": true }, { @@ -607753,7 +609917,7 @@ "name": "value" } ], - "___id": "T000002R050655", + "___id": "T000002R050636", "___s": true }, { @@ -607784,7 +609948,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#geom", "inherited": true, - "___id": "T000002R050659", + "___id": "T000002R050640", "___s": true }, { @@ -607824,7 +609988,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathData", "inherited": true, - "___id": "T000002R050660", + "___id": "T000002R050641", "___s": true }, { @@ -607864,7 +610028,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathIndexes", "inherited": true, - "___id": "T000002R050661", + "___id": "T000002R050642", "___s": true }, { @@ -607894,7 +610058,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillColor", "inherited": true, - "___id": "T000002R050662", + "___id": "T000002R050643", "___s": true }, { @@ -607924,7 +610088,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillAlpha", "inherited": true, - "___id": "T000002R050663", + "___id": "T000002R050644", "___s": true }, { @@ -607954,7 +610118,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeColor", "inherited": true, - "___id": "T000002R050664", + "___id": "T000002R050645", "___s": true }, { @@ -607984,7 +610148,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeAlpha", "inherited": true, - "___id": "T000002R050665", + "___id": "T000002R050646", "___s": true }, { @@ -608014,7 +610178,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#lineWidth", "inherited": true, - "___id": "T000002R050666", + "___id": "T000002R050647", "___s": true }, { @@ -608044,7 +610208,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isFilled", "inherited": true, - "___id": "T000002R050667", + "___id": "T000002R050648", "___s": true }, { @@ -608074,7 +610238,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isStroked", "inherited": true, - "___id": "T000002R050668", + "___id": "T000002R050649", "___s": true }, { @@ -608104,7 +610268,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#closePath", "inherited": true, - "___id": "T000002R050669", + "___id": "T000002R050650", "___s": true }, { @@ -608134,7 +610298,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#width", "inherited": true, - "___id": "T000002R050671", + "___id": "T000002R050652", "___s": true }, { @@ -608164,7 +610328,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#height", "inherited": true, - "___id": "T000002R050672", + "___id": "T000002R050653", "___s": true }, { @@ -608245,7 +610409,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setStrokeStyle", "inherited": true, - "___id": "T000002R050673", + "___id": "T000002R050654", "___s": true }, { @@ -608296,7 +610460,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setClosePath", "inherited": true, - "___id": "T000002R050674", + "___id": "T000002R050655", "___s": true }, { @@ -608360,7 +610524,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setDisplaySize", "inherited": true, - "___id": "T000002R050676", + "___id": "T000002R050657", "___s": true }, { @@ -608382,7 +610546,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#preDestroy", "inherited": true, - "___id": "T000002R050677", + "___id": "T000002R050658", "___s": true }, { @@ -608412,7 +610576,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayWidth", "inherited": true, - "___id": "T000002R050678", + "___id": "T000002R050659", "___s": true }, { @@ -608442,7 +610606,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayHeight", "inherited": true, - "___id": "T000002R050679", + "___id": "T000002R050660", "___s": true }, { @@ -608472,7 +610636,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R050681", + "___id": "T000002R050662", "___s": true }, { @@ -608513,7 +610677,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R050682", + "___id": "T000002R050663", "___s": true }, { @@ -608543,7 +610707,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R050683", + "___id": "T000002R050664", "___s": true }, { @@ -608583,7 +610747,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R050684", + "___id": "T000002R050665", "___s": true }, { @@ -608613,7 +610777,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R050685", + "___id": "T000002R050666", "___s": true }, { @@ -608644,7 +610808,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R050686", + "___id": "T000002R050667", "___s": true }, { @@ -608675,7 +610839,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R050687", + "___id": "T000002R050668", "___s": true }, { @@ -608706,7 +610870,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R050688", + "___id": "T000002R050669", "___s": true }, { @@ -608737,7 +610901,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R050689", + "___id": "T000002R050670", "___s": true }, { @@ -608768,7 +610932,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R050690", + "___id": "T000002R050671", "___s": true }, { @@ -608802,7 +610966,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R050691", + "___id": "T000002R050672", "___s": true }, { @@ -608835,7 +610999,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R050692", + "___id": "T000002R050673", "___s": true }, { @@ -608883,7 +611047,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R050693", + "___id": "T000002R050674", "___s": true }, { @@ -608914,7 +611078,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R050694", + "___id": "T000002R050675", "___s": true }, { @@ -608965,7 +611129,7 @@ "name": "value" } ], - "___id": "T000002R050695", + "___id": "T000002R050676", "___s": true }, { @@ -609016,7 +611180,7 @@ "name": "value" } ], - "___id": "T000002R050696", + "___id": "T000002R050677", "___s": true }, { @@ -609077,7 +611241,7 @@ "name": "value" } ], - "___id": "T000002R050697", + "___id": "T000002R050678", "___s": true }, { @@ -609116,7 +611280,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R050698", + "___id": "T000002R050679", "___s": true }, { @@ -609204,7 +611368,7 @@ "name": "data" } ], - "___id": "T000002R050699", + "___id": "T000002R050680", "___s": true }, { @@ -609270,7 +611434,7 @@ "name": "amount" } ], - "___id": "T000002R050700", + "___id": "T000002R050681", "___s": true }, { @@ -609321,7 +611485,7 @@ "name": "key" } ], - "___id": "T000002R050701", + "___id": "T000002R050682", "___s": true }, { @@ -609389,7 +611553,7 @@ "name": "key" } ], - "___id": "T000002R050702", + "___id": "T000002R050683", "___s": true }, { @@ -609485,11 +611649,11 @@ "name": "dropZone" } ], - "___id": "T000002R050703", + "___id": "T000002R050684", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -609521,14 +611685,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R050704", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R050685", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -609557,14 +611738,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R050705", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R050686", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -609578,14 +611776,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R050706", + "___id": "T000002R050687", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -609599,14 +611797,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R050707", + "___id": "T000002R050688", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -609637,14 +611835,14 @@ "name": "args" } ], - "___id": "T000002R050708", + "___id": "T000002R050689", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -609672,14 +611870,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R050709", + "___id": "T000002R050690", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -609722,14 +611920,14 @@ "name": "camera" } ], - "___id": "T000002R050710", + "___id": "T000002R050691", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -609766,14 +611964,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R050711", + "___id": "T000002R050692", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -609832,14 +612030,14 @@ "name": "displayList" } ], - "___id": "T000002R050712", + "___id": "T000002R050693", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -609868,14 +612066,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R050713", + "___id": "T000002R050694", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -609908,14 +612106,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R050714", + "___id": "T000002R050695", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -609944,14 +612142,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R050715", + "___id": "T000002R050696", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -609985,7 +612183,7 @@ "name": "fromScene" } ], - "___id": "T000002R050716", + "___id": "T000002R050697", "___s": true }, { @@ -610006,7 +612204,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R050717", + "___id": "T000002R050698", "___s": true }, { @@ -610058,7 +612256,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R050718", + "___id": "T000002R050699", "___s": true }, { @@ -610127,7 +612325,7 @@ "name": "event" } ], - "___id": "T000002R050719", + "___id": "T000002R050700", "___s": true }, { @@ -610187,7 +612385,7 @@ "name": "event" } ], - "___id": "T000002R050720", + "___id": "T000002R050701", "___s": true }, { @@ -610262,7 +612460,7 @@ "name": "args" } ], - "___id": "T000002R050721", + "___id": "T000002R050702", "___s": true }, { @@ -610350,7 +612548,7 @@ "name": "context" } ], - "___id": "T000002R050722", + "___id": "T000002R050703", "___s": true }, { @@ -610438,7 +612636,7 @@ "name": "context" } ], - "___id": "T000002R050723", + "___id": "T000002R050704", "___s": true }, { @@ -610526,7 +612724,7 @@ "name": "context" } ], - "___id": "T000002R050724", + "___id": "T000002R050705", "___s": true }, { @@ -610628,7 +612826,7 @@ "name": "once" } ], - "___id": "T000002R050725", + "___id": "T000002R050706", "___s": true }, { @@ -610730,7 +612928,7 @@ "name": "once" } ], - "___id": "T000002R050726", + "___id": "T000002R050707", "___s": true }, { @@ -610792,7 +612990,7 @@ "name": "event" } ], - "___id": "T000002R050727", + "___id": "T000002R050708", "___s": true }, { @@ -610828,7 +613026,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R050729", + "___id": "T000002R050710", "___s": true }, { @@ -610881,7 +613079,7 @@ "name": "value" } ], - "___id": "T000002R050730", + "___id": "T000002R050711", "___s": true }, { @@ -610911,7 +613109,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R050731", + "___id": "T000002R050712", "___s": true }, { @@ -610956,7 +613154,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R050733", + "___id": "T000002R050714", "___s": true }, { @@ -611022,7 +613220,7 @@ "name": "value" } ], - "___id": "T000002R050734", + "___id": "T000002R050715", "___s": true }, { @@ -611052,7 +613250,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R050736", + "___id": "T000002R050717", "___s": true }, { @@ -611103,7 +613301,7 @@ "name": "value" } ], - "___id": "T000002R050737", + "___id": "T000002R050718", "___s": true }, { @@ -611139,7 +613337,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R050738", + "___id": "T000002R050719", "___s": true }, { @@ -611175,7 +613373,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R050739", + "___id": "T000002R050720", "___s": true }, { @@ -611226,7 +613424,7 @@ "name": "gameObject" } ], - "___id": "T000002R050740", + "___id": "T000002R050721", "___s": true }, { @@ -611277,7 +613475,7 @@ "name": "gameObject" } ], - "___id": "T000002R050741", + "___id": "T000002R050722", "___s": true }, { @@ -611351,7 +613549,7 @@ "name": "includeParent" } ], - "___id": "T000002R050743", + "___id": "T000002R050724", "___s": true }, { @@ -611425,7 +613623,7 @@ "name": "includeParent" } ], - "___id": "T000002R050744", + "___id": "T000002R050725", "___s": true }, { @@ -611499,7 +613697,7 @@ "name": "includeParent" } ], - "___id": "T000002R050745", + "___id": "T000002R050726", "___s": true }, { @@ -611573,7 +613771,7 @@ "name": "includeParent" } ], - "___id": "T000002R050746", + "___id": "T000002R050727", "___s": true }, { @@ -611647,7 +613845,7 @@ "name": "includeParent" } ], - "___id": "T000002R050747", + "___id": "T000002R050728", "___s": true }, { @@ -611721,7 +613919,7 @@ "name": "includeParent" } ], - "___id": "T000002R050748", + "___id": "T000002R050729", "___s": true }, { @@ -611795,7 +613993,7 @@ "name": "includeParent" } ], - "___id": "T000002R050749", + "___id": "T000002R050730", "___s": true }, { @@ -611869,7 +614067,7 @@ "name": "includeParent" } ], - "___id": "T000002R050750", + "___id": "T000002R050731", "___s": true }, { @@ -611943,7 +614141,7 @@ "name": "includeParent" } ], - "___id": "T000002R050751", + "___id": "T000002R050732", "___s": true }, { @@ -612022,7 +614220,7 @@ "name": "output" } ], - "___id": "T000002R050752", + "___id": "T000002R050733", "___s": true }, { @@ -612062,7 +614260,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R050753", + "___id": "T000002R050734", "___s": true }, { @@ -612123,7 +614321,7 @@ "name": "mask" } ], - "___id": "T000002R050754", + "___id": "T000002R050735", "___s": true }, { @@ -612176,7 +614374,7 @@ "name": "destroyMask" } ], - "___id": "T000002R050755", + "___id": "T000002R050736", "___s": true }, { @@ -612338,7 +614536,7 @@ "name": "frame" } ], - "___id": "T000002R050756", + "___id": "T000002R050737", "___s": true }, { @@ -612419,7 +614617,7 @@ "name": "graphics" } ], - "___id": "T000002R050757", + "___id": "T000002R050738", "___s": true }, { @@ -612451,7 +614649,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R050759", + "___id": "T000002R050740", "___s": true }, { @@ -612483,7 +614681,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R050760", + "___id": "T000002R050741", "___s": true }, { @@ -612513,7 +614711,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R050761", + "___id": "T000002R050742", "___s": true }, { @@ -612543,7 +614741,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R050762", + "___id": "T000002R050743", "___s": true }, { @@ -612611,7 +614809,7 @@ "name": "y" } ], - "___id": "T000002R050763", + "___id": "T000002R050744", "___s": true }, { @@ -612647,7 +614845,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R050764", + "___id": "T000002R050745", "___s": true }, { @@ -612715,7 +614913,7 @@ "name": "y" } ], - "___id": "T000002R050765", + "___id": "T000002R050746", "___s": true }, { @@ -612751,7 +614949,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R050766", + "___id": "T000002R050747", "___s": true }, { @@ -612789,7 +614987,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R050767", + "___id": "T000002R050748", "___s": true }, { @@ -612827,7 +615025,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R050768", + "___id": "T000002R050749", "___s": true }, { @@ -612864,7 +615062,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R050769", + "___id": "T000002R050750", "___s": true }, { @@ -612932,7 +615130,7 @@ "name": "pipeline" } ], - "___id": "T000002R050770", + "___id": "T000002R050751", "___s": true }, { @@ -613029,7 +615227,7 @@ "name": "copyData" } ], - "___id": "T000002R050771", + "___id": "T000002R050752", "___s": true }, { @@ -613101,7 +615299,7 @@ "name": "value" } ], - "___id": "T000002R050772", + "___id": "T000002R050753", "___s": true }, { @@ -613160,7 +615358,7 @@ "name": "resetData" } ], - "___id": "T000002R050773", + "___id": "T000002R050754", "___s": true }, { @@ -613204,7 +615402,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R050774", + "___id": "T000002R050755", "___s": true }, { @@ -613241,7 +615439,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R050775", + "___id": "T000002R050756", "___s": true }, { @@ -613287,7 +615485,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R050776", + "___id": "T000002R050757", "___s": true }, { @@ -613324,7 +615522,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R050777", + "___id": "T000002R050758", "___s": true }, { @@ -613363,7 +615561,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R050778", + "___id": "T000002R050759", "___s": true }, { @@ -613400,7 +615598,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R050779", + "___id": "T000002R050760", "___s": true }, { @@ -613445,7 +615643,7 @@ "name": "preFX" } ], - "___id": "T000002R050780", + "___id": "T000002R050761", "___s": true }, { @@ -613589,7 +615787,7 @@ "name": "copyData" } ], - "___id": "T000002R050781", + "___id": "T000002R050762", "___s": true }, { @@ -613661,7 +615859,7 @@ "name": "value" } ], - "___id": "T000002R050782", + "___id": "T000002R050763", "___s": true }, { @@ -613752,7 +615950,7 @@ "name": "pipeline" } ], - "___id": "T000002R050783", + "___id": "T000002R050764", "___s": true }, { @@ -613797,7 +615995,7 @@ "name": "resetData" } ], - "___id": "T000002R050784", + "___id": "T000002R050765", "___s": true }, { @@ -613865,7 +616063,7 @@ "name": "pipeline" } ], - "___id": "T000002R050785", + "___id": "T000002R050766", "___s": true }, { @@ -613908,7 +616106,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R050786", + "___id": "T000002R050767", "___s": true }, { @@ -613939,7 +616137,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R050787", + "___id": "T000002R050768", "___s": true }, { @@ -613970,7 +616168,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R050788", + "___id": "T000002R050769", "___s": true }, { @@ -614036,7 +616234,7 @@ "name": "y" } ], - "___id": "T000002R050789", + "___id": "T000002R050770", "___s": true }, { @@ -614068,7 +616266,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R050790", + "___id": "T000002R050771", "___s": true }, { @@ -614099,7 +616297,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R050794", + "___id": "T000002R050775", "___s": true }, { @@ -614130,7 +616328,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R050795", + "___id": "T000002R050776", "___s": true }, { @@ -614161,7 +616359,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R050796", + "___id": "T000002R050777", "___s": true }, { @@ -614192,7 +616390,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R050797", + "___id": "T000002R050778", "___s": true }, { @@ -614223,7 +616421,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R050798", + "___id": "T000002R050779", "___s": true }, { @@ -614254,7 +616452,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R050799", + "___id": "T000002R050780", "___s": true }, { @@ -614285,7 +616483,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R050800", + "___id": "T000002R050781", "___s": true }, { @@ -614316,7 +616514,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R050801", + "___id": "T000002R050782", "___s": true }, { @@ -614347,7 +616545,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R050802", + "___id": "T000002R050783", "___s": true }, { @@ -614445,7 +616643,7 @@ "name": "w" } ], - "___id": "T000002R050803", + "___id": "T000002R050784", "___s": true }, { @@ -614511,7 +616709,7 @@ "name": "source" } ], - "___id": "T000002R050804", + "___id": "T000002R050785", "___s": true }, { @@ -614607,7 +616805,7 @@ "name": "height" } ], - "___id": "T000002R050805", + "___id": "T000002R050786", "___s": true }, { @@ -614660,7 +616858,7 @@ "name": "radians" } ], - "___id": "T000002R050806", + "___id": "T000002R050787", "___s": true }, { @@ -614713,7 +616911,7 @@ "name": "degrees" } ], - "___id": "T000002R050807", + "___id": "T000002R050788", "___s": true }, { @@ -614781,7 +616979,7 @@ "name": "y" } ], - "___id": "T000002R050808", + "___id": "T000002R050789", "___s": true }, { @@ -614834,7 +617032,7 @@ "name": "value" } ], - "___id": "T000002R050809", + "___id": "T000002R050790", "___s": true }, { @@ -614887,7 +617085,7 @@ "name": "value" } ], - "___id": "T000002R050810", + "___id": "T000002R050791", "___s": true }, { @@ -614940,7 +617138,7 @@ "name": "value" } ], - "___id": "T000002R050811", + "___id": "T000002R050792", "___s": true }, { @@ -614993,7 +617191,7 @@ "name": "value" } ], - "___id": "T000002R050812", + "___id": "T000002R050793", "___s": true }, { @@ -615044,7 +617242,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R050813", + "___id": "T000002R050794", "___s": true }, { @@ -615109,7 +617307,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R050814", + "___id": "T000002R050795", "___s": true }, { @@ -615200,7 +617398,7 @@ "name": "camera" } ], - "___id": "T000002R050815", + "___id": "T000002R050796", "___s": true }, { @@ -615235,7 +617433,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R050816", + "___id": "T000002R050797", "___s": true }, { @@ -615265,7 +617463,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R050818", + "___id": "T000002R050799", "___s": true }, { @@ -615316,7 +617514,7 @@ "name": "value" } ], - "___id": "T000002R050819", + "___id": "T000002R050800", "___s": true }, { @@ -615347,7 +617545,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#geom", "inherited": true, - "___id": "T000002R050823", + "___id": "T000002R050804", "___s": true }, { @@ -615387,7 +617585,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathData", "inherited": true, - "___id": "T000002R050824", + "___id": "T000002R050805", "___s": true }, { @@ -615427,7 +617625,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathIndexes", "inherited": true, - "___id": "T000002R050825", + "___id": "T000002R050806", "___s": true }, { @@ -615457,7 +617655,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillColor", "inherited": true, - "___id": "T000002R050826", + "___id": "T000002R050807", "___s": true }, { @@ -615487,7 +617685,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillAlpha", "inherited": true, - "___id": "T000002R050827", + "___id": "T000002R050808", "___s": true }, { @@ -615517,7 +617715,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeColor", "inherited": true, - "___id": "T000002R050828", + "___id": "T000002R050809", "___s": true }, { @@ -615547,7 +617745,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeAlpha", "inherited": true, - "___id": "T000002R050829", + "___id": "T000002R050810", "___s": true }, { @@ -615577,7 +617775,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#lineWidth", "inherited": true, - "___id": "T000002R050830", + "___id": "T000002R050811", "___s": true }, { @@ -615607,7 +617805,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isFilled", "inherited": true, - "___id": "T000002R050831", + "___id": "T000002R050812", "___s": true }, { @@ -615637,7 +617835,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isStroked", "inherited": true, - "___id": "T000002R050832", + "___id": "T000002R050813", "___s": true }, { @@ -615667,7 +617865,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#closePath", "inherited": true, - "___id": "T000002R050833", + "___id": "T000002R050814", "___s": true }, { @@ -615697,7 +617895,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#width", "inherited": true, - "___id": "T000002R050835", + "___id": "T000002R050816", "___s": true }, { @@ -615727,7 +617925,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#height", "inherited": true, - "___id": "T000002R050836", + "___id": "T000002R050817", "___s": true }, { @@ -615808,7 +618006,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setStrokeStyle", "inherited": true, - "___id": "T000002R050837", + "___id": "T000002R050818", "___s": true }, { @@ -615859,7 +618057,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setClosePath", "inherited": true, - "___id": "T000002R050838", + "___id": "T000002R050819", "___s": true }, { @@ -615923,7 +618121,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setDisplaySize", "inherited": true, - "___id": "T000002R050840", + "___id": "T000002R050821", "___s": true }, { @@ -615945,7 +618143,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#preDestroy", "inherited": true, - "___id": "T000002R050841", + "___id": "T000002R050822", "___s": true }, { @@ -615975,7 +618173,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayWidth", "inherited": true, - "___id": "T000002R050842", + "___id": "T000002R050823", "___s": true }, { @@ -616005,7 +618203,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayHeight", "inherited": true, - "___id": "T000002R050843", + "___id": "T000002R050824", "___s": true }, { @@ -616035,7 +618233,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R050845", + "___id": "T000002R050826", "___s": true }, { @@ -616076,7 +618274,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R050846", + "___id": "T000002R050827", "___s": true }, { @@ -616106,7 +618304,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R050847", + "___id": "T000002R050828", "___s": true }, { @@ -616146,7 +618344,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R050848", + "___id": "T000002R050829", "___s": true }, { @@ -616176,7 +618374,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R050849", + "___id": "T000002R050830", "___s": true }, { @@ -616207,7 +618405,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R050850", + "___id": "T000002R050831", "___s": true }, { @@ -616238,7 +618436,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R050851", + "___id": "T000002R050832", "___s": true }, { @@ -616269,7 +618467,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R050852", + "___id": "T000002R050833", "___s": true }, { @@ -616300,7 +618498,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R050853", + "___id": "T000002R050834", "___s": true }, { @@ -616331,7 +618529,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R050854", + "___id": "T000002R050835", "___s": true }, { @@ -616365,7 +618563,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R050855", + "___id": "T000002R050836", "___s": true }, { @@ -616398,7 +618596,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R050856", + "___id": "T000002R050837", "___s": true }, { @@ -616446,7 +618644,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R050857", + "___id": "T000002R050838", "___s": true }, { @@ -616477,7 +618675,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R050858", + "___id": "T000002R050839", "___s": true }, { @@ -616528,7 +618726,7 @@ "name": "value" } ], - "___id": "T000002R050859", + "___id": "T000002R050840", "___s": true }, { @@ -616579,7 +618777,7 @@ "name": "value" } ], - "___id": "T000002R050860", + "___id": "T000002R050841", "___s": true }, { @@ -616640,7 +618838,7 @@ "name": "value" } ], - "___id": "T000002R050861", + "___id": "T000002R050842", "___s": true }, { @@ -616679,7 +618877,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R050862", + "___id": "T000002R050843", "___s": true }, { @@ -616767,7 +618965,7 @@ "name": "data" } ], - "___id": "T000002R050863", + "___id": "T000002R050844", "___s": true }, { @@ -616833,7 +619031,7 @@ "name": "amount" } ], - "___id": "T000002R050864", + "___id": "T000002R050845", "___s": true }, { @@ -616884,7 +619082,7 @@ "name": "key" } ], - "___id": "T000002R050865", + "___id": "T000002R050846", "___s": true }, { @@ -616952,7 +619150,7 @@ "name": "key" } ], - "___id": "T000002R050866", + "___id": "T000002R050847", "___s": true }, { @@ -617048,11 +619246,11 @@ "name": "dropZone" } ], - "___id": "T000002R050867", + "___id": "T000002R050848", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -617084,14 +619282,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R050868", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R050849", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -617120,14 +619335,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R050869", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R050850", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -617141,14 +619373,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R050870", + "___id": "T000002R050851", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -617162,14 +619394,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R050871", + "___id": "T000002R050852", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -617200,14 +619432,14 @@ "name": "args" } ], - "___id": "T000002R050872", + "___id": "T000002R050853", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -617235,14 +619467,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R050873", + "___id": "T000002R050854", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -617285,14 +619517,14 @@ "name": "camera" } ], - "___id": "T000002R050874", + "___id": "T000002R050855", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -617329,14 +619561,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R050875", + "___id": "T000002R050856", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -617395,14 +619627,14 @@ "name": "displayList" } ], - "___id": "T000002R050876", + "___id": "T000002R050857", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -617431,14 +619663,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R050877", + "___id": "T000002R050858", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -617471,14 +619703,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R050878", + "___id": "T000002R050859", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -617507,14 +619739,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R050879", + "___id": "T000002R050860", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -617548,7 +619780,7 @@ "name": "fromScene" } ], - "___id": "T000002R050880", + "___id": "T000002R050861", "___s": true }, { @@ -617569,7 +619801,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R050881", + "___id": "T000002R050862", "___s": true }, { @@ -617621,7 +619853,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R050882", + "___id": "T000002R050863", "___s": true }, { @@ -617690,7 +619922,7 @@ "name": "event" } ], - "___id": "T000002R050883", + "___id": "T000002R050864", "___s": true }, { @@ -617750,7 +619982,7 @@ "name": "event" } ], - "___id": "T000002R050884", + "___id": "T000002R050865", "___s": true }, { @@ -617825,7 +620057,7 @@ "name": "args" } ], - "___id": "T000002R050885", + "___id": "T000002R050866", "___s": true }, { @@ -617913,7 +620145,7 @@ "name": "context" } ], - "___id": "T000002R050886", + "___id": "T000002R050867", "___s": true }, { @@ -618001,7 +620233,7 @@ "name": "context" } ], - "___id": "T000002R050887", + "___id": "T000002R050868", "___s": true }, { @@ -618089,7 +620321,7 @@ "name": "context" } ], - "___id": "T000002R050888", + "___id": "T000002R050869", "___s": true }, { @@ -618191,7 +620423,7 @@ "name": "once" } ], - "___id": "T000002R050889", + "___id": "T000002R050870", "___s": true }, { @@ -618293,7 +620525,7 @@ "name": "once" } ], - "___id": "T000002R050890", + "___id": "T000002R050871", "___s": true }, { @@ -618355,7 +620587,7 @@ "name": "event" } ], - "___id": "T000002R050891", + "___id": "T000002R050872", "___s": true }, { @@ -618391,7 +620623,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R050893", + "___id": "T000002R050874", "___s": true }, { @@ -618444,7 +620676,7 @@ "name": "value" } ], - "___id": "T000002R050894", + "___id": "T000002R050875", "___s": true }, { @@ -618474,7 +620706,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R050895", + "___id": "T000002R050876", "___s": true }, { @@ -618519,7 +620751,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R050897", + "___id": "T000002R050878", "___s": true }, { @@ -618585,7 +620817,7 @@ "name": "value" } ], - "___id": "T000002R050898", + "___id": "T000002R050879", "___s": true }, { @@ -618615,7 +620847,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R050900", + "___id": "T000002R050881", "___s": true }, { @@ -618666,7 +620898,7 @@ "name": "value" } ], - "___id": "T000002R050901", + "___id": "T000002R050882", "___s": true }, { @@ -618702,7 +620934,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R050902", + "___id": "T000002R050883", "___s": true }, { @@ -618738,7 +620970,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R050903", + "___id": "T000002R050884", "___s": true }, { @@ -618789,7 +621021,7 @@ "name": "gameObject" } ], - "___id": "T000002R050904", + "___id": "T000002R050885", "___s": true }, { @@ -618840,7 +621072,7 @@ "name": "gameObject" } ], - "___id": "T000002R050905", + "___id": "T000002R050886", "___s": true }, { @@ -618914,7 +621146,7 @@ "name": "includeParent" } ], - "___id": "T000002R050907", + "___id": "T000002R050888", "___s": true }, { @@ -618988,7 +621220,7 @@ "name": "includeParent" } ], - "___id": "T000002R050908", + "___id": "T000002R050889", "___s": true }, { @@ -619062,7 +621294,7 @@ "name": "includeParent" } ], - "___id": "T000002R050909", + "___id": "T000002R050890", "___s": true }, { @@ -619136,7 +621368,7 @@ "name": "includeParent" } ], - "___id": "T000002R050910", + "___id": "T000002R050891", "___s": true }, { @@ -619210,7 +621442,7 @@ "name": "includeParent" } ], - "___id": "T000002R050911", + "___id": "T000002R050892", "___s": true }, { @@ -619284,7 +621516,7 @@ "name": "includeParent" } ], - "___id": "T000002R050912", + "___id": "T000002R050893", "___s": true }, { @@ -619358,7 +621590,7 @@ "name": "includeParent" } ], - "___id": "T000002R050913", + "___id": "T000002R050894", "___s": true }, { @@ -619432,7 +621664,7 @@ "name": "includeParent" } ], - "___id": "T000002R050914", + "___id": "T000002R050895", "___s": true }, { @@ -619506,7 +621738,7 @@ "name": "includeParent" } ], - "___id": "T000002R050915", + "___id": "T000002R050896", "___s": true }, { @@ -619585,7 +621817,7 @@ "name": "output" } ], - "___id": "T000002R050916", + "___id": "T000002R050897", "___s": true }, { @@ -619625,7 +621857,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R050917", + "___id": "T000002R050898", "___s": true }, { @@ -619686,7 +621918,7 @@ "name": "mask" } ], - "___id": "T000002R050918", + "___id": "T000002R050899", "___s": true }, { @@ -619739,7 +621971,7 @@ "name": "destroyMask" } ], - "___id": "T000002R050919", + "___id": "T000002R050900", "___s": true }, { @@ -619901,7 +622133,7 @@ "name": "frame" } ], - "___id": "T000002R050920", + "___id": "T000002R050901", "___s": true }, { @@ -619982,7 +622214,7 @@ "name": "graphics" } ], - "___id": "T000002R050921", + "___id": "T000002R050902", "___s": true }, { @@ -620014,7 +622246,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R050923", + "___id": "T000002R050904", "___s": true }, { @@ -620046,7 +622278,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R050924", + "___id": "T000002R050905", "___s": true }, { @@ -620076,7 +622308,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R050925", + "___id": "T000002R050906", "___s": true }, { @@ -620106,7 +622338,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R050926", + "___id": "T000002R050907", "___s": true }, { @@ -620174,7 +622406,7 @@ "name": "y" } ], - "___id": "T000002R050927", + "___id": "T000002R050908", "___s": true }, { @@ -620210,7 +622442,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R050928", + "___id": "T000002R050909", "___s": true }, { @@ -620278,7 +622510,7 @@ "name": "y" } ], - "___id": "T000002R050929", + "___id": "T000002R050910", "___s": true }, { @@ -620314,7 +622546,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R050930", + "___id": "T000002R050911", "___s": true }, { @@ -620352,7 +622584,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R050931", + "___id": "T000002R050912", "___s": true }, { @@ -620390,7 +622622,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R050932", + "___id": "T000002R050913", "___s": true }, { @@ -620427,7 +622659,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R050933", + "___id": "T000002R050914", "___s": true }, { @@ -620495,7 +622727,7 @@ "name": "pipeline" } ], - "___id": "T000002R050934", + "___id": "T000002R050915", "___s": true }, { @@ -620592,7 +622824,7 @@ "name": "copyData" } ], - "___id": "T000002R050935", + "___id": "T000002R050916", "___s": true }, { @@ -620664,7 +622896,7 @@ "name": "value" } ], - "___id": "T000002R050936", + "___id": "T000002R050917", "___s": true }, { @@ -620723,7 +622955,7 @@ "name": "resetData" } ], - "___id": "T000002R050937", + "___id": "T000002R050918", "___s": true }, { @@ -620767,7 +622999,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R050938", + "___id": "T000002R050919", "___s": true }, { @@ -620804,7 +623036,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R050939", + "___id": "T000002R050920", "___s": true }, { @@ -620850,7 +623082,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R050940", + "___id": "T000002R050921", "___s": true }, { @@ -620887,7 +623119,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R050941", + "___id": "T000002R050922", "___s": true }, { @@ -620926,7 +623158,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R050942", + "___id": "T000002R050923", "___s": true }, { @@ -620963,7 +623195,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R050943", + "___id": "T000002R050924", "___s": true }, { @@ -621008,7 +623240,7 @@ "name": "preFX" } ], - "___id": "T000002R050944", + "___id": "T000002R050925", "___s": true }, { @@ -621152,7 +623384,7 @@ "name": "copyData" } ], - "___id": "T000002R050945", + "___id": "T000002R050926", "___s": true }, { @@ -621224,7 +623456,7 @@ "name": "value" } ], - "___id": "T000002R050946", + "___id": "T000002R050927", "___s": true }, { @@ -621315,7 +623547,7 @@ "name": "pipeline" } ], - "___id": "T000002R050947", + "___id": "T000002R050928", "___s": true }, { @@ -621360,7 +623592,7 @@ "name": "resetData" } ], - "___id": "T000002R050948", + "___id": "T000002R050929", "___s": true }, { @@ -621428,7 +623660,7 @@ "name": "pipeline" } ], - "___id": "T000002R050949", + "___id": "T000002R050930", "___s": true }, { @@ -621471,7 +623703,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R050950", + "___id": "T000002R050931", "___s": true }, { @@ -621502,7 +623734,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R050951", + "___id": "T000002R050932", "___s": true }, { @@ -621533,7 +623765,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R050952", + "___id": "T000002R050933", "___s": true }, { @@ -621599,7 +623831,7 @@ "name": "y" } ], - "___id": "T000002R050953", + "___id": "T000002R050934", "___s": true }, { @@ -621631,7 +623863,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R050954", + "___id": "T000002R050935", "___s": true }, { @@ -621662,7 +623894,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R050958", + "___id": "T000002R050939", "___s": true }, { @@ -621693,7 +623925,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R050959", + "___id": "T000002R050940", "___s": true }, { @@ -621724,7 +623956,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R050960", + "___id": "T000002R050941", "___s": true }, { @@ -621755,7 +623987,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R050961", + "___id": "T000002R050942", "___s": true }, { @@ -621786,7 +624018,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R050962", + "___id": "T000002R050943", "___s": true }, { @@ -621817,7 +624049,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R050963", + "___id": "T000002R050944", "___s": true }, { @@ -621848,7 +624080,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R050964", + "___id": "T000002R050945", "___s": true }, { @@ -621879,7 +624111,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R050965", + "___id": "T000002R050946", "___s": true }, { @@ -621910,7 +624142,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R050966", + "___id": "T000002R050947", "___s": true }, { @@ -622008,7 +624240,7 @@ "name": "w" } ], - "___id": "T000002R050967", + "___id": "T000002R050948", "___s": true }, { @@ -622074,7 +624306,7 @@ "name": "source" } ], - "___id": "T000002R050968", + "___id": "T000002R050949", "___s": true }, { @@ -622170,7 +624402,7 @@ "name": "height" } ], - "___id": "T000002R050969", + "___id": "T000002R050950", "___s": true }, { @@ -622223,7 +624455,7 @@ "name": "radians" } ], - "___id": "T000002R050970", + "___id": "T000002R050951", "___s": true }, { @@ -622276,7 +624508,7 @@ "name": "degrees" } ], - "___id": "T000002R050971", + "___id": "T000002R050952", "___s": true }, { @@ -622344,7 +624576,7 @@ "name": "y" } ], - "___id": "T000002R050972", + "___id": "T000002R050953", "___s": true }, { @@ -622397,7 +624629,7 @@ "name": "value" } ], - "___id": "T000002R050973", + "___id": "T000002R050954", "___s": true }, { @@ -622450,7 +624682,7 @@ "name": "value" } ], - "___id": "T000002R050974", + "___id": "T000002R050955", "___s": true }, { @@ -622503,7 +624735,7 @@ "name": "value" } ], - "___id": "T000002R050975", + "___id": "T000002R050956", "___s": true }, { @@ -622556,7 +624788,7 @@ "name": "value" } ], - "___id": "T000002R050976", + "___id": "T000002R050957", "___s": true }, { @@ -622607,7 +624839,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R050977", + "___id": "T000002R050958", "___s": true }, { @@ -622672,7 +624904,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R050978", + "___id": "T000002R050959", "___s": true }, { @@ -622763,7 +624995,7 @@ "name": "camera" } ], - "___id": "T000002R050979", + "___id": "T000002R050960", "___s": true }, { @@ -622798,7 +625030,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R050980", + "___id": "T000002R050961", "___s": true }, { @@ -622828,7 +625060,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R050982", + "___id": "T000002R050963", "___s": true }, { @@ -622879,7 +625111,7 @@ "name": "value" } ], - "___id": "T000002R050983", + "___id": "T000002R050964", "___s": true }, { @@ -622910,7 +625142,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#geom", "inherited": true, - "___id": "T000002R050987", + "___id": "T000002R050968", "___s": true }, { @@ -622950,7 +625182,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathData", "inherited": true, - "___id": "T000002R050988", + "___id": "T000002R050969", "___s": true }, { @@ -622990,7 +625222,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathIndexes", "inherited": true, - "___id": "T000002R050989", + "___id": "T000002R050970", "___s": true }, { @@ -623020,7 +625252,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillColor", "inherited": true, - "___id": "T000002R050990", + "___id": "T000002R050971", "___s": true }, { @@ -623050,7 +625282,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillAlpha", "inherited": true, - "___id": "T000002R050991", + "___id": "T000002R050972", "___s": true }, { @@ -623080,7 +625312,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeColor", "inherited": true, - "___id": "T000002R050992", + "___id": "T000002R050973", "___s": true }, { @@ -623110,7 +625342,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeAlpha", "inherited": true, - "___id": "T000002R050993", + "___id": "T000002R050974", "___s": true }, { @@ -623140,7 +625372,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#lineWidth", "inherited": true, - "___id": "T000002R050994", + "___id": "T000002R050975", "___s": true }, { @@ -623170,7 +625402,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isFilled", "inherited": true, - "___id": "T000002R050995", + "___id": "T000002R050976", "___s": true }, { @@ -623200,7 +625432,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isStroked", "inherited": true, - "___id": "T000002R050996", + "___id": "T000002R050977", "___s": true }, { @@ -623230,7 +625462,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#closePath", "inherited": true, - "___id": "T000002R050997", + "___id": "T000002R050978", "___s": true }, { @@ -623260,7 +625492,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#width", "inherited": true, - "___id": "T000002R050999", + "___id": "T000002R050980", "___s": true }, { @@ -623290,7 +625522,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#height", "inherited": true, - "___id": "T000002R051000", + "___id": "T000002R050981", "___s": true }, { @@ -623371,7 +625603,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setStrokeStyle", "inherited": true, - "___id": "T000002R051001", + "___id": "T000002R050982", "___s": true }, { @@ -623422,7 +625654,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setClosePath", "inherited": true, - "___id": "T000002R051002", + "___id": "T000002R050983", "___s": true }, { @@ -623486,7 +625718,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setDisplaySize", "inherited": true, - "___id": "T000002R051004", + "___id": "T000002R050985", "___s": true }, { @@ -623508,7 +625740,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#preDestroy", "inherited": true, - "___id": "T000002R051005", + "___id": "T000002R050986", "___s": true }, { @@ -623538,7 +625770,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayWidth", "inherited": true, - "___id": "T000002R051006", + "___id": "T000002R050987", "___s": true }, { @@ -623568,7 +625800,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayHeight", "inherited": true, - "___id": "T000002R051007", + "___id": "T000002R050988", "___s": true }, { @@ -623598,7 +625830,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R051009", + "___id": "T000002R050990", "___s": true }, { @@ -623639,7 +625871,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R051010", + "___id": "T000002R050991", "___s": true }, { @@ -623669,7 +625901,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R051011", + "___id": "T000002R050992", "___s": true }, { @@ -623709,7 +625941,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R051012", + "___id": "T000002R050993", "___s": true }, { @@ -623739,7 +625971,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R051013", + "___id": "T000002R050994", "___s": true }, { @@ -623770,7 +626002,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R051014", + "___id": "T000002R050995", "___s": true }, { @@ -623801,7 +626033,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R051015", + "___id": "T000002R050996", "___s": true }, { @@ -623832,7 +626064,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R051016", + "___id": "T000002R050997", "___s": true }, { @@ -623863,7 +626095,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R051017", + "___id": "T000002R050998", "___s": true }, { @@ -623894,7 +626126,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R051018", + "___id": "T000002R050999", "___s": true }, { @@ -623928,7 +626160,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R051019", + "___id": "T000002R051000", "___s": true }, { @@ -623961,7 +626193,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R051020", + "___id": "T000002R051001", "___s": true }, { @@ -624009,7 +626241,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R051021", + "___id": "T000002R051002", "___s": true }, { @@ -624040,7 +626272,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R051022", + "___id": "T000002R051003", "___s": true }, { @@ -624091,7 +626323,7 @@ "name": "value" } ], - "___id": "T000002R051023", + "___id": "T000002R051004", "___s": true }, { @@ -624142,7 +626374,7 @@ "name": "value" } ], - "___id": "T000002R051024", + "___id": "T000002R051005", "___s": true }, { @@ -624203,7 +626435,7 @@ "name": "value" } ], - "___id": "T000002R051025", + "___id": "T000002R051006", "___s": true }, { @@ -624242,7 +626474,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R051026", + "___id": "T000002R051007", "___s": true }, { @@ -624330,7 +626562,7 @@ "name": "data" } ], - "___id": "T000002R051027", + "___id": "T000002R051008", "___s": true }, { @@ -624396,7 +626628,7 @@ "name": "amount" } ], - "___id": "T000002R051028", + "___id": "T000002R051009", "___s": true }, { @@ -624447,7 +626679,7 @@ "name": "key" } ], - "___id": "T000002R051029", + "___id": "T000002R051010", "___s": true }, { @@ -624515,7 +626747,7 @@ "name": "key" } ], - "___id": "T000002R051030", + "___id": "T000002R051011", "___s": true }, { @@ -624611,11 +626843,11 @@ "name": "dropZone" } ], - "___id": "T000002R051031", + "___id": "T000002R051012", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -624647,14 +626879,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R051032", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R051013", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -624683,14 +626932,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R051033", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R051014", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -624704,14 +626970,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R051034", + "___id": "T000002R051015", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -624725,14 +626991,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R051035", + "___id": "T000002R051016", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -624763,14 +627029,14 @@ "name": "args" } ], - "___id": "T000002R051036", + "___id": "T000002R051017", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -624798,14 +627064,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R051037", + "___id": "T000002R051018", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -624848,14 +627114,14 @@ "name": "camera" } ], - "___id": "T000002R051038", + "___id": "T000002R051019", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -624892,14 +627158,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R051039", + "___id": "T000002R051020", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -624958,14 +627224,14 @@ "name": "displayList" } ], - "___id": "T000002R051040", + "___id": "T000002R051021", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -624994,14 +627260,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R051041", + "___id": "T000002R051022", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -625034,14 +627300,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R051042", + "___id": "T000002R051023", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -625070,14 +627336,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R051043", + "___id": "T000002R051024", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -625111,7 +627377,7 @@ "name": "fromScene" } ], - "___id": "T000002R051044", + "___id": "T000002R051025", "___s": true }, { @@ -625132,7 +627398,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R051045", + "___id": "T000002R051026", "___s": true }, { @@ -625184,7 +627450,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R051046", + "___id": "T000002R051027", "___s": true }, { @@ -625253,7 +627519,7 @@ "name": "event" } ], - "___id": "T000002R051047", + "___id": "T000002R051028", "___s": true }, { @@ -625313,7 +627579,7 @@ "name": "event" } ], - "___id": "T000002R051048", + "___id": "T000002R051029", "___s": true }, { @@ -625388,7 +627654,7 @@ "name": "args" } ], - "___id": "T000002R051049", + "___id": "T000002R051030", "___s": true }, { @@ -625476,7 +627742,7 @@ "name": "context" } ], - "___id": "T000002R051050", + "___id": "T000002R051031", "___s": true }, { @@ -625564,7 +627830,7 @@ "name": "context" } ], - "___id": "T000002R051051", + "___id": "T000002R051032", "___s": true }, { @@ -625652,7 +627918,7 @@ "name": "context" } ], - "___id": "T000002R051052", + "___id": "T000002R051033", "___s": true }, { @@ -625754,7 +628020,7 @@ "name": "once" } ], - "___id": "T000002R051053", + "___id": "T000002R051034", "___s": true }, { @@ -625856,7 +628122,7 @@ "name": "once" } ], - "___id": "T000002R051054", + "___id": "T000002R051035", "___s": true }, { @@ -625918,7 +628184,7 @@ "name": "event" } ], - "___id": "T000002R051055", + "___id": "T000002R051036", "___s": true }, { @@ -625954,7 +628220,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R051057", + "___id": "T000002R051038", "___s": true }, { @@ -626007,7 +628273,7 @@ "name": "value" } ], - "___id": "T000002R051058", + "___id": "T000002R051039", "___s": true }, { @@ -626037,7 +628303,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R051059", + "___id": "T000002R051040", "___s": true }, { @@ -626082,7 +628348,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R051061", + "___id": "T000002R051042", "___s": true }, { @@ -626148,7 +628414,7 @@ "name": "value" } ], - "___id": "T000002R051062", + "___id": "T000002R051043", "___s": true }, { @@ -626178,7 +628444,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R051064", + "___id": "T000002R051045", "___s": true }, { @@ -626229,7 +628495,7 @@ "name": "value" } ], - "___id": "T000002R051065", + "___id": "T000002R051046", "___s": true }, { @@ -626265,7 +628531,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R051066", + "___id": "T000002R051047", "___s": true }, { @@ -626301,7 +628567,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R051067", + "___id": "T000002R051048", "___s": true }, { @@ -626352,7 +628618,7 @@ "name": "gameObject" } ], - "___id": "T000002R051068", + "___id": "T000002R051049", "___s": true }, { @@ -626403,7 +628669,7 @@ "name": "gameObject" } ], - "___id": "T000002R051069", + "___id": "T000002R051050", "___s": true }, { @@ -626477,7 +628743,7 @@ "name": "includeParent" } ], - "___id": "T000002R051071", + "___id": "T000002R051052", "___s": true }, { @@ -626551,7 +628817,7 @@ "name": "includeParent" } ], - "___id": "T000002R051072", + "___id": "T000002R051053", "___s": true }, { @@ -626625,7 +628891,7 @@ "name": "includeParent" } ], - "___id": "T000002R051073", + "___id": "T000002R051054", "___s": true }, { @@ -626699,7 +628965,7 @@ "name": "includeParent" } ], - "___id": "T000002R051074", + "___id": "T000002R051055", "___s": true }, { @@ -626773,7 +629039,7 @@ "name": "includeParent" } ], - "___id": "T000002R051075", + "___id": "T000002R051056", "___s": true }, { @@ -626847,7 +629113,7 @@ "name": "includeParent" } ], - "___id": "T000002R051076", + "___id": "T000002R051057", "___s": true }, { @@ -626921,7 +629187,7 @@ "name": "includeParent" } ], - "___id": "T000002R051077", + "___id": "T000002R051058", "___s": true }, { @@ -626995,7 +629261,7 @@ "name": "includeParent" } ], - "___id": "T000002R051078", + "___id": "T000002R051059", "___s": true }, { @@ -627069,7 +629335,7 @@ "name": "includeParent" } ], - "___id": "T000002R051079", + "___id": "T000002R051060", "___s": true }, { @@ -627148,7 +629414,7 @@ "name": "output" } ], - "___id": "T000002R051080", + "___id": "T000002R051061", "___s": true }, { @@ -627188,7 +629454,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R051081", + "___id": "T000002R051062", "___s": true }, { @@ -627249,7 +629515,7 @@ "name": "mask" } ], - "___id": "T000002R051082", + "___id": "T000002R051063", "___s": true }, { @@ -627302,7 +629568,7 @@ "name": "destroyMask" } ], - "___id": "T000002R051083", + "___id": "T000002R051064", "___s": true }, { @@ -627464,7 +629730,7 @@ "name": "frame" } ], - "___id": "T000002R051084", + "___id": "T000002R051065", "___s": true }, { @@ -627545,7 +629811,7 @@ "name": "graphics" } ], - "___id": "T000002R051085", + "___id": "T000002R051066", "___s": true }, { @@ -627577,7 +629843,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R051087", + "___id": "T000002R051068", "___s": true }, { @@ -627609,7 +629875,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R051088", + "___id": "T000002R051069", "___s": true }, { @@ -627639,7 +629905,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R051089", + "___id": "T000002R051070", "___s": true }, { @@ -627669,7 +629935,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R051090", + "___id": "T000002R051071", "___s": true }, { @@ -627737,7 +630003,7 @@ "name": "y" } ], - "___id": "T000002R051091", + "___id": "T000002R051072", "___s": true }, { @@ -627773,7 +630039,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R051092", + "___id": "T000002R051073", "___s": true }, { @@ -627841,7 +630107,7 @@ "name": "y" } ], - "___id": "T000002R051093", + "___id": "T000002R051074", "___s": true }, { @@ -627877,7 +630143,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R051094", + "___id": "T000002R051075", "___s": true }, { @@ -627915,7 +630181,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R051095", + "___id": "T000002R051076", "___s": true }, { @@ -627953,7 +630219,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R051096", + "___id": "T000002R051077", "___s": true }, { @@ -627990,7 +630256,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R051097", + "___id": "T000002R051078", "___s": true }, { @@ -628058,7 +630324,7 @@ "name": "pipeline" } ], - "___id": "T000002R051098", + "___id": "T000002R051079", "___s": true }, { @@ -628155,7 +630421,7 @@ "name": "copyData" } ], - "___id": "T000002R051099", + "___id": "T000002R051080", "___s": true }, { @@ -628227,7 +630493,7 @@ "name": "value" } ], - "___id": "T000002R051100", + "___id": "T000002R051081", "___s": true }, { @@ -628286,7 +630552,7 @@ "name": "resetData" } ], - "___id": "T000002R051101", + "___id": "T000002R051082", "___s": true }, { @@ -628330,7 +630596,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R051102", + "___id": "T000002R051083", "___s": true }, { @@ -628367,7 +630633,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R051103", + "___id": "T000002R051084", "___s": true }, { @@ -628413,7 +630679,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R051104", + "___id": "T000002R051085", "___s": true }, { @@ -628450,7 +630716,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R051105", + "___id": "T000002R051086", "___s": true }, { @@ -628489,7 +630755,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R051106", + "___id": "T000002R051087", "___s": true }, { @@ -628526,7 +630792,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R051107", + "___id": "T000002R051088", "___s": true }, { @@ -628571,7 +630837,7 @@ "name": "preFX" } ], - "___id": "T000002R051108", + "___id": "T000002R051089", "___s": true }, { @@ -628715,7 +630981,7 @@ "name": "copyData" } ], - "___id": "T000002R051109", + "___id": "T000002R051090", "___s": true }, { @@ -628787,7 +631053,7 @@ "name": "value" } ], - "___id": "T000002R051110", + "___id": "T000002R051091", "___s": true }, { @@ -628878,7 +631144,7 @@ "name": "pipeline" } ], - "___id": "T000002R051111", + "___id": "T000002R051092", "___s": true }, { @@ -628923,7 +631189,7 @@ "name": "resetData" } ], - "___id": "T000002R051112", + "___id": "T000002R051093", "___s": true }, { @@ -628991,7 +631257,7 @@ "name": "pipeline" } ], - "___id": "T000002R051113", + "___id": "T000002R051094", "___s": true }, { @@ -629034,7 +631300,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R051114", + "___id": "T000002R051095", "___s": true }, { @@ -629065,7 +631331,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R051115", + "___id": "T000002R051096", "___s": true }, { @@ -629096,7 +631362,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R051116", + "___id": "T000002R051097", "___s": true }, { @@ -629162,7 +631428,7 @@ "name": "y" } ], - "___id": "T000002R051117", + "___id": "T000002R051098", "___s": true }, { @@ -629194,7 +631460,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R051118", + "___id": "T000002R051099", "___s": true }, { @@ -629225,7 +631491,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R051122", + "___id": "T000002R051103", "___s": true }, { @@ -629256,7 +631522,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R051123", + "___id": "T000002R051104", "___s": true }, { @@ -629287,7 +631553,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R051124", + "___id": "T000002R051105", "___s": true }, { @@ -629318,7 +631584,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R051125", + "___id": "T000002R051106", "___s": true }, { @@ -629349,7 +631615,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R051126", + "___id": "T000002R051107", "___s": true }, { @@ -629380,7 +631646,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R051127", + "___id": "T000002R051108", "___s": true }, { @@ -629411,7 +631677,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R051128", + "___id": "T000002R051109", "___s": true }, { @@ -629442,7 +631708,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R051129", + "___id": "T000002R051110", "___s": true }, { @@ -629473,7 +631739,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R051130", + "___id": "T000002R051111", "___s": true }, { @@ -629571,7 +631837,7 @@ "name": "w" } ], - "___id": "T000002R051131", + "___id": "T000002R051112", "___s": true }, { @@ -629637,7 +631903,7 @@ "name": "source" } ], - "___id": "T000002R051132", + "___id": "T000002R051113", "___s": true }, { @@ -629733,7 +631999,7 @@ "name": "height" } ], - "___id": "T000002R051133", + "___id": "T000002R051114", "___s": true }, { @@ -629786,7 +632052,7 @@ "name": "radians" } ], - "___id": "T000002R051134", + "___id": "T000002R051115", "___s": true }, { @@ -629839,7 +632105,7 @@ "name": "degrees" } ], - "___id": "T000002R051135", + "___id": "T000002R051116", "___s": true }, { @@ -629907,7 +632173,7 @@ "name": "y" } ], - "___id": "T000002R051136", + "___id": "T000002R051117", "___s": true }, { @@ -629960,7 +632226,7 @@ "name": "value" } ], - "___id": "T000002R051137", + "___id": "T000002R051118", "___s": true }, { @@ -630013,7 +632279,7 @@ "name": "value" } ], - "___id": "T000002R051138", + "___id": "T000002R051119", "___s": true }, { @@ -630066,7 +632332,7 @@ "name": "value" } ], - "___id": "T000002R051139", + "___id": "T000002R051120", "___s": true }, { @@ -630119,7 +632385,7 @@ "name": "value" } ], - "___id": "T000002R051140", + "___id": "T000002R051121", "___s": true }, { @@ -630170,7 +632436,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R051141", + "___id": "T000002R051122", "___s": true }, { @@ -630235,7 +632501,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R051142", + "___id": "T000002R051123", "___s": true }, { @@ -630326,7 +632592,7 @@ "name": "camera" } ], - "___id": "T000002R051143", + "___id": "T000002R051124", "___s": true }, { @@ -630361,7 +632627,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R051144", + "___id": "T000002R051125", "___s": true }, { @@ -630391,7 +632657,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R051146", + "___id": "T000002R051127", "___s": true }, { @@ -630442,7 +632708,7 @@ "name": "value" } ], - "___id": "T000002R051147", + "___id": "T000002R051128", "___s": true }, { @@ -630473,7 +632739,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#geom", "inherited": true, - "___id": "T000002R051151", + "___id": "T000002R051132", "___s": true }, { @@ -630513,7 +632779,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathData", "inherited": true, - "___id": "T000002R051152", + "___id": "T000002R051133", "___s": true }, { @@ -630553,7 +632819,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathIndexes", "inherited": true, - "___id": "T000002R051153", + "___id": "T000002R051134", "___s": true }, { @@ -630583,7 +632849,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillColor", "inherited": true, - "___id": "T000002R051154", + "___id": "T000002R051135", "___s": true }, { @@ -630613,7 +632879,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillAlpha", "inherited": true, - "___id": "T000002R051155", + "___id": "T000002R051136", "___s": true }, { @@ -630643,7 +632909,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeColor", "inherited": true, - "___id": "T000002R051156", + "___id": "T000002R051137", "___s": true }, { @@ -630673,7 +632939,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeAlpha", "inherited": true, - "___id": "T000002R051157", + "___id": "T000002R051138", "___s": true }, { @@ -630703,7 +632969,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isFilled", "inherited": true, - "___id": "T000002R051158", + "___id": "T000002R051139", "___s": true }, { @@ -630733,7 +632999,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isStroked", "inherited": true, - "___id": "T000002R051159", + "___id": "T000002R051140", "___s": true }, { @@ -630763,7 +633029,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#closePath", "inherited": true, - "___id": "T000002R051160", + "___id": "T000002R051141", "___s": true }, { @@ -630793,7 +633059,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#width", "inherited": true, - "___id": "T000002R051162", + "___id": "T000002R051143", "___s": true }, { @@ -630823,7 +633089,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#height", "inherited": true, - "___id": "T000002R051163", + "___id": "T000002R051144", "___s": true }, { @@ -630890,7 +633156,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setFillStyle", "inherited": true, - "___id": "T000002R051164", + "___id": "T000002R051145", "___s": true }, { @@ -630971,7 +633237,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setStrokeStyle", "inherited": true, - "___id": "T000002R051165", + "___id": "T000002R051146", "___s": true }, { @@ -631022,7 +633288,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setClosePath", "inherited": true, - "___id": "T000002R051166", + "___id": "T000002R051147", "___s": true }, { @@ -631086,7 +633352,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setDisplaySize", "inherited": true, - "___id": "T000002R051168", + "___id": "T000002R051149", "___s": true }, { @@ -631108,7 +633374,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#preDestroy", "inherited": true, - "___id": "T000002R051169", + "___id": "T000002R051150", "___s": true }, { @@ -631138,7 +633404,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayWidth", "inherited": true, - "___id": "T000002R051170", + "___id": "T000002R051151", "___s": true }, { @@ -631168,7 +633434,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayHeight", "inherited": true, - "___id": "T000002R051171", + "___id": "T000002R051152", "___s": true }, { @@ -631198,7 +633464,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R051173", + "___id": "T000002R051154", "___s": true }, { @@ -631239,7 +633505,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R051174", + "___id": "T000002R051155", "___s": true }, { @@ -631269,7 +633535,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R051175", + "___id": "T000002R051156", "___s": true }, { @@ -631309,7 +633575,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R051176", + "___id": "T000002R051157", "___s": true }, { @@ -631339,7 +633605,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R051177", + "___id": "T000002R051158", "___s": true }, { @@ -631370,7 +633636,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R051178", + "___id": "T000002R051159", "___s": true }, { @@ -631401,7 +633667,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R051179", + "___id": "T000002R051160", "___s": true }, { @@ -631432,7 +633698,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R051180", + "___id": "T000002R051161", "___s": true }, { @@ -631463,7 +633729,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R051181", + "___id": "T000002R051162", "___s": true }, { @@ -631494,7 +633760,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R051182", + "___id": "T000002R051163", "___s": true }, { @@ -631528,7 +633794,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R051183", + "___id": "T000002R051164", "___s": true }, { @@ -631561,7 +633827,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R051184", + "___id": "T000002R051165", "___s": true }, { @@ -631609,7 +633875,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R051185", + "___id": "T000002R051166", "___s": true }, { @@ -631640,7 +633906,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R051186", + "___id": "T000002R051167", "___s": true }, { @@ -631691,7 +633957,7 @@ "name": "value" } ], - "___id": "T000002R051187", + "___id": "T000002R051168", "___s": true }, { @@ -631742,7 +634008,7 @@ "name": "value" } ], - "___id": "T000002R051188", + "___id": "T000002R051169", "___s": true }, { @@ -631803,7 +634069,7 @@ "name": "value" } ], - "___id": "T000002R051189", + "___id": "T000002R051170", "___s": true }, { @@ -631842,7 +634108,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R051190", + "___id": "T000002R051171", "___s": true }, { @@ -631930,7 +634196,7 @@ "name": "data" } ], - "___id": "T000002R051191", + "___id": "T000002R051172", "___s": true }, { @@ -631996,7 +634262,7 @@ "name": "amount" } ], - "___id": "T000002R051192", + "___id": "T000002R051173", "___s": true }, { @@ -632047,7 +634313,7 @@ "name": "key" } ], - "___id": "T000002R051193", + "___id": "T000002R051174", "___s": true }, { @@ -632115,7 +634381,7 @@ "name": "key" } ], - "___id": "T000002R051194", + "___id": "T000002R051175", "___s": true }, { @@ -632211,11 +634477,11 @@ "name": "dropZone" } ], - "___id": "T000002R051195", + "___id": "T000002R051176", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -632247,14 +634513,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R051196", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R051177", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -632283,14 +634566,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R051197", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R051178", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -632304,14 +634604,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R051198", + "___id": "T000002R051179", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -632325,14 +634625,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R051199", + "___id": "T000002R051180", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -632363,14 +634663,14 @@ "name": "args" } ], - "___id": "T000002R051200", + "___id": "T000002R051181", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -632398,14 +634698,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R051201", + "___id": "T000002R051182", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -632448,14 +634748,14 @@ "name": "camera" } ], - "___id": "T000002R051202", + "___id": "T000002R051183", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -632492,14 +634792,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R051203", + "___id": "T000002R051184", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -632558,14 +634858,14 @@ "name": "displayList" } ], - "___id": "T000002R051204", + "___id": "T000002R051185", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -632594,14 +634894,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R051205", + "___id": "T000002R051186", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -632634,14 +634934,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R051206", + "___id": "T000002R051187", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -632670,14 +634970,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R051207", + "___id": "T000002R051188", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -632711,7 +635011,7 @@ "name": "fromScene" } ], - "___id": "T000002R051208", + "___id": "T000002R051189", "___s": true }, { @@ -632732,7 +635032,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R051209", + "___id": "T000002R051190", "___s": true }, { @@ -632784,7 +635084,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R051210", + "___id": "T000002R051191", "___s": true }, { @@ -632853,7 +635153,7 @@ "name": "event" } ], - "___id": "T000002R051211", + "___id": "T000002R051192", "___s": true }, { @@ -632913,7 +635213,7 @@ "name": "event" } ], - "___id": "T000002R051212", + "___id": "T000002R051193", "___s": true }, { @@ -632988,7 +635288,7 @@ "name": "args" } ], - "___id": "T000002R051213", + "___id": "T000002R051194", "___s": true }, { @@ -633076,7 +635376,7 @@ "name": "context" } ], - "___id": "T000002R051214", + "___id": "T000002R051195", "___s": true }, { @@ -633164,7 +635464,7 @@ "name": "context" } ], - "___id": "T000002R051215", + "___id": "T000002R051196", "___s": true }, { @@ -633252,7 +635552,7 @@ "name": "context" } ], - "___id": "T000002R051216", + "___id": "T000002R051197", "___s": true }, { @@ -633354,7 +635654,7 @@ "name": "once" } ], - "___id": "T000002R051217", + "___id": "T000002R051198", "___s": true }, { @@ -633456,7 +635756,7 @@ "name": "once" } ], - "___id": "T000002R051218", + "___id": "T000002R051199", "___s": true }, { @@ -633518,7 +635818,7 @@ "name": "event" } ], - "___id": "T000002R051219", + "___id": "T000002R051200", "___s": true }, { @@ -633554,7 +635854,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R051221", + "___id": "T000002R051202", "___s": true }, { @@ -633607,7 +635907,7 @@ "name": "value" } ], - "___id": "T000002R051222", + "___id": "T000002R051203", "___s": true }, { @@ -633637,7 +635937,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R051223", + "___id": "T000002R051204", "___s": true }, { @@ -633682,7 +635982,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R051225", + "___id": "T000002R051206", "___s": true }, { @@ -633748,7 +636048,7 @@ "name": "value" } ], - "___id": "T000002R051226", + "___id": "T000002R051207", "___s": true }, { @@ -633778,7 +636078,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R051228", + "___id": "T000002R051209", "___s": true }, { @@ -633829,7 +636129,7 @@ "name": "value" } ], - "___id": "T000002R051229", + "___id": "T000002R051210", "___s": true }, { @@ -633865,7 +636165,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R051230", + "___id": "T000002R051211", "___s": true }, { @@ -633901,7 +636201,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R051231", + "___id": "T000002R051212", "___s": true }, { @@ -633952,7 +636252,7 @@ "name": "gameObject" } ], - "___id": "T000002R051232", + "___id": "T000002R051213", "___s": true }, { @@ -634003,7 +636303,7 @@ "name": "gameObject" } ], - "___id": "T000002R051233", + "___id": "T000002R051214", "___s": true }, { @@ -634077,7 +636377,7 @@ "name": "includeParent" } ], - "___id": "T000002R051235", + "___id": "T000002R051216", "___s": true }, { @@ -634151,7 +636451,7 @@ "name": "includeParent" } ], - "___id": "T000002R051236", + "___id": "T000002R051217", "___s": true }, { @@ -634225,7 +636525,7 @@ "name": "includeParent" } ], - "___id": "T000002R051237", + "___id": "T000002R051218", "___s": true }, { @@ -634299,7 +636599,7 @@ "name": "includeParent" } ], - "___id": "T000002R051238", + "___id": "T000002R051219", "___s": true }, { @@ -634373,7 +636673,7 @@ "name": "includeParent" } ], - "___id": "T000002R051239", + "___id": "T000002R051220", "___s": true }, { @@ -634447,7 +636747,7 @@ "name": "includeParent" } ], - "___id": "T000002R051240", + "___id": "T000002R051221", "___s": true }, { @@ -634521,7 +636821,7 @@ "name": "includeParent" } ], - "___id": "T000002R051241", + "___id": "T000002R051222", "___s": true }, { @@ -634595,7 +636895,7 @@ "name": "includeParent" } ], - "___id": "T000002R051242", + "___id": "T000002R051223", "___s": true }, { @@ -634669,7 +636969,7 @@ "name": "includeParent" } ], - "___id": "T000002R051243", + "___id": "T000002R051224", "___s": true }, { @@ -634748,7 +637048,7 @@ "name": "output" } ], - "___id": "T000002R051244", + "___id": "T000002R051225", "___s": true }, { @@ -634788,7 +637088,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R051245", + "___id": "T000002R051226", "___s": true }, { @@ -634849,7 +637149,7 @@ "name": "mask" } ], - "___id": "T000002R051246", + "___id": "T000002R051227", "___s": true }, { @@ -634902,7 +637202,7 @@ "name": "destroyMask" } ], - "___id": "T000002R051247", + "___id": "T000002R051228", "___s": true }, { @@ -635064,7 +637364,7 @@ "name": "frame" } ], - "___id": "T000002R051248", + "___id": "T000002R051229", "___s": true }, { @@ -635145,7 +637445,7 @@ "name": "graphics" } ], - "___id": "T000002R051249", + "___id": "T000002R051230", "___s": true }, { @@ -635177,7 +637477,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R051251", + "___id": "T000002R051232", "___s": true }, { @@ -635209,7 +637509,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R051252", + "___id": "T000002R051233", "___s": true }, { @@ -635239,7 +637539,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R051253", + "___id": "T000002R051234", "___s": true }, { @@ -635269,7 +637569,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R051254", + "___id": "T000002R051235", "___s": true }, { @@ -635337,7 +637637,7 @@ "name": "y" } ], - "___id": "T000002R051255", + "___id": "T000002R051236", "___s": true }, { @@ -635373,7 +637673,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R051256", + "___id": "T000002R051237", "___s": true }, { @@ -635441,7 +637741,7 @@ "name": "y" } ], - "___id": "T000002R051257", + "___id": "T000002R051238", "___s": true }, { @@ -635477,7 +637777,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R051258", + "___id": "T000002R051239", "___s": true }, { @@ -635515,7 +637815,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R051259", + "___id": "T000002R051240", "___s": true }, { @@ -635553,7 +637853,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R051260", + "___id": "T000002R051241", "___s": true }, { @@ -635590,7 +637890,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R051261", + "___id": "T000002R051242", "___s": true }, { @@ -635658,7 +637958,7 @@ "name": "pipeline" } ], - "___id": "T000002R051262", + "___id": "T000002R051243", "___s": true }, { @@ -635755,7 +638055,7 @@ "name": "copyData" } ], - "___id": "T000002R051263", + "___id": "T000002R051244", "___s": true }, { @@ -635827,7 +638127,7 @@ "name": "value" } ], - "___id": "T000002R051264", + "___id": "T000002R051245", "___s": true }, { @@ -635886,7 +638186,7 @@ "name": "resetData" } ], - "___id": "T000002R051265", + "___id": "T000002R051246", "___s": true }, { @@ -635930,7 +638230,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R051266", + "___id": "T000002R051247", "___s": true }, { @@ -635967,7 +638267,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R051267", + "___id": "T000002R051248", "___s": true }, { @@ -636013,7 +638313,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R051268", + "___id": "T000002R051249", "___s": true }, { @@ -636050,7 +638350,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R051269", + "___id": "T000002R051250", "___s": true }, { @@ -636089,7 +638389,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R051270", + "___id": "T000002R051251", "___s": true }, { @@ -636126,7 +638426,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R051271", + "___id": "T000002R051252", "___s": true }, { @@ -636171,7 +638471,7 @@ "name": "preFX" } ], - "___id": "T000002R051272", + "___id": "T000002R051253", "___s": true }, { @@ -636315,7 +638615,7 @@ "name": "copyData" } ], - "___id": "T000002R051273", + "___id": "T000002R051254", "___s": true }, { @@ -636387,7 +638687,7 @@ "name": "value" } ], - "___id": "T000002R051274", + "___id": "T000002R051255", "___s": true }, { @@ -636478,7 +638778,7 @@ "name": "pipeline" } ], - "___id": "T000002R051275", + "___id": "T000002R051256", "___s": true }, { @@ -636523,7 +638823,7 @@ "name": "resetData" } ], - "___id": "T000002R051276", + "___id": "T000002R051257", "___s": true }, { @@ -636591,7 +638891,7 @@ "name": "pipeline" } ], - "___id": "T000002R051277", + "___id": "T000002R051258", "___s": true }, { @@ -636634,7 +638934,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R051278", + "___id": "T000002R051259", "___s": true }, { @@ -636665,7 +638965,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R051279", + "___id": "T000002R051260", "___s": true }, { @@ -636696,7 +638996,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R051280", + "___id": "T000002R051261", "___s": true }, { @@ -636762,7 +639062,7 @@ "name": "y" } ], - "___id": "T000002R051281", + "___id": "T000002R051262", "___s": true }, { @@ -636794,7 +639094,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R051282", + "___id": "T000002R051263", "___s": true }, { @@ -636825,7 +639125,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R051286", + "___id": "T000002R051267", "___s": true }, { @@ -636856,7 +639156,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R051287", + "___id": "T000002R051268", "___s": true }, { @@ -636887,7 +639187,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R051288", + "___id": "T000002R051269", "___s": true }, { @@ -636918,7 +639218,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R051289", + "___id": "T000002R051270", "___s": true }, { @@ -636949,7 +639249,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R051290", + "___id": "T000002R051271", "___s": true }, { @@ -636980,7 +639280,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R051291", + "___id": "T000002R051272", "___s": true }, { @@ -637011,7 +639311,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R051292", + "___id": "T000002R051273", "___s": true }, { @@ -637042,7 +639342,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R051293", + "___id": "T000002R051274", "___s": true }, { @@ -637073,7 +639373,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R051294", + "___id": "T000002R051275", "___s": true }, { @@ -637171,7 +639471,7 @@ "name": "w" } ], - "___id": "T000002R051295", + "___id": "T000002R051276", "___s": true }, { @@ -637237,7 +639537,7 @@ "name": "source" } ], - "___id": "T000002R051296", + "___id": "T000002R051277", "___s": true }, { @@ -637333,7 +639633,7 @@ "name": "height" } ], - "___id": "T000002R051297", + "___id": "T000002R051278", "___s": true }, { @@ -637386,7 +639686,7 @@ "name": "radians" } ], - "___id": "T000002R051298", + "___id": "T000002R051279", "___s": true }, { @@ -637439,7 +639739,7 @@ "name": "degrees" } ], - "___id": "T000002R051299", + "___id": "T000002R051280", "___s": true }, { @@ -637507,7 +639807,7 @@ "name": "y" } ], - "___id": "T000002R051300", + "___id": "T000002R051281", "___s": true }, { @@ -637560,7 +639860,7 @@ "name": "value" } ], - "___id": "T000002R051301", + "___id": "T000002R051282", "___s": true }, { @@ -637613,7 +639913,7 @@ "name": "value" } ], - "___id": "T000002R051302", + "___id": "T000002R051283", "___s": true }, { @@ -637666,7 +639966,7 @@ "name": "value" } ], - "___id": "T000002R051303", + "___id": "T000002R051284", "___s": true }, { @@ -637719,7 +640019,7 @@ "name": "value" } ], - "___id": "T000002R051304", + "___id": "T000002R051285", "___s": true }, { @@ -637770,7 +640070,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R051305", + "___id": "T000002R051286", "___s": true }, { @@ -637835,7 +640135,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R051306", + "___id": "T000002R051287", "___s": true }, { @@ -637926,7 +640226,7 @@ "name": "camera" } ], - "___id": "T000002R051307", + "___id": "T000002R051288", "___s": true }, { @@ -637961,7 +640261,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R051308", + "___id": "T000002R051289", "___s": true }, { @@ -637991,7 +640291,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R051310", + "___id": "T000002R051291", "___s": true }, { @@ -638042,7 +640342,7 @@ "name": "value" } ], - "___id": "T000002R051311", + "___id": "T000002R051292", "___s": true }, { @@ -638073,7 +640373,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#geom", "inherited": true, - "___id": "T000002R051315", + "___id": "T000002R051296", "___s": true }, { @@ -638113,7 +640413,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathData", "inherited": true, - "___id": "T000002R051316", + "___id": "T000002R051297", "___s": true }, { @@ -638153,7 +640453,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathIndexes", "inherited": true, - "___id": "T000002R051317", + "___id": "T000002R051298", "___s": true }, { @@ -638183,7 +640483,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillColor", "inherited": true, - "___id": "T000002R051318", + "___id": "T000002R051299", "___s": true }, { @@ -638213,7 +640513,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillAlpha", "inherited": true, - "___id": "T000002R051319", + "___id": "T000002R051300", "___s": true }, { @@ -638243,7 +640543,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeColor", "inherited": true, - "___id": "T000002R051320", + "___id": "T000002R051301", "___s": true }, { @@ -638273,7 +640573,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeAlpha", "inherited": true, - "___id": "T000002R051321", + "___id": "T000002R051302", "___s": true }, { @@ -638303,7 +640603,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#lineWidth", "inherited": true, - "___id": "T000002R051322", + "___id": "T000002R051303", "___s": true }, { @@ -638333,7 +640633,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isFilled", "inherited": true, - "___id": "T000002R051323", + "___id": "T000002R051304", "___s": true }, { @@ -638363,7 +640663,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isStroked", "inherited": true, - "___id": "T000002R051324", + "___id": "T000002R051305", "___s": true }, { @@ -638393,7 +640693,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#closePath", "inherited": true, - "___id": "T000002R051325", + "___id": "T000002R051306", "___s": true }, { @@ -638423,7 +640723,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#width", "inherited": true, - "___id": "T000002R051327", + "___id": "T000002R051308", "___s": true }, { @@ -638453,7 +640753,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#height", "inherited": true, - "___id": "T000002R051328", + "___id": "T000002R051309", "___s": true }, { @@ -638520,7 +640820,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setFillStyle", "inherited": true, - "___id": "T000002R051329", + "___id": "T000002R051310", "___s": true }, { @@ -638601,7 +640901,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setStrokeStyle", "inherited": true, - "___id": "T000002R051330", + "___id": "T000002R051311", "___s": true }, { @@ -638652,7 +640952,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setClosePath", "inherited": true, - "___id": "T000002R051331", + "___id": "T000002R051312", "___s": true }, { @@ -638716,7 +641016,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setDisplaySize", "inherited": true, - "___id": "T000002R051333", + "___id": "T000002R051314", "___s": true }, { @@ -638738,7 +641038,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#preDestroy", "inherited": true, - "___id": "T000002R051334", + "___id": "T000002R051315", "___s": true }, { @@ -638768,7 +641068,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayWidth", "inherited": true, - "___id": "T000002R051335", + "___id": "T000002R051316", "___s": true }, { @@ -638798,7 +641098,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayHeight", "inherited": true, - "___id": "T000002R051336", + "___id": "T000002R051317", "___s": true }, { @@ -638828,7 +641128,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R051338", + "___id": "T000002R051319", "___s": true }, { @@ -638869,7 +641169,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R051339", + "___id": "T000002R051320", "___s": true }, { @@ -638899,7 +641199,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R051340", + "___id": "T000002R051321", "___s": true }, { @@ -638939,7 +641239,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R051341", + "___id": "T000002R051322", "___s": true }, { @@ -638969,7 +641269,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R051342", + "___id": "T000002R051323", "___s": true }, { @@ -639000,7 +641300,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R051343", + "___id": "T000002R051324", "___s": true }, { @@ -639031,7 +641331,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R051344", + "___id": "T000002R051325", "___s": true }, { @@ -639062,7 +641362,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R051345", + "___id": "T000002R051326", "___s": true }, { @@ -639093,7 +641393,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R051346", + "___id": "T000002R051327", "___s": true }, { @@ -639124,7 +641424,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R051347", + "___id": "T000002R051328", "___s": true }, { @@ -639158,7 +641458,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R051348", + "___id": "T000002R051329", "___s": true }, { @@ -639191,7 +641491,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R051349", + "___id": "T000002R051330", "___s": true }, { @@ -639239,7 +641539,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R051350", + "___id": "T000002R051331", "___s": true }, { @@ -639270,7 +641570,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R051351", + "___id": "T000002R051332", "___s": true }, { @@ -639321,7 +641621,7 @@ "name": "value" } ], - "___id": "T000002R051352", + "___id": "T000002R051333", "___s": true }, { @@ -639372,7 +641672,7 @@ "name": "value" } ], - "___id": "T000002R051353", + "___id": "T000002R051334", "___s": true }, { @@ -639433,7 +641733,7 @@ "name": "value" } ], - "___id": "T000002R051354", + "___id": "T000002R051335", "___s": true }, { @@ -639472,7 +641772,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R051355", + "___id": "T000002R051336", "___s": true }, { @@ -639560,7 +641860,7 @@ "name": "data" } ], - "___id": "T000002R051356", + "___id": "T000002R051337", "___s": true }, { @@ -639626,7 +641926,7 @@ "name": "amount" } ], - "___id": "T000002R051357", + "___id": "T000002R051338", "___s": true }, { @@ -639677,7 +641977,7 @@ "name": "key" } ], - "___id": "T000002R051358", + "___id": "T000002R051339", "___s": true }, { @@ -639745,7 +642045,7 @@ "name": "key" } ], - "___id": "T000002R051359", + "___id": "T000002R051340", "___s": true }, { @@ -639841,11 +642141,11 @@ "name": "dropZone" } ], - "___id": "T000002R051360", + "___id": "T000002R051341", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -639877,14 +642177,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R051361", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R051342", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -639913,14 +642230,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R051362", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R051343", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -639934,14 +642268,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R051363", + "___id": "T000002R051344", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -639955,14 +642289,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R051364", + "___id": "T000002R051345", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -639993,14 +642327,14 @@ "name": "args" } ], - "___id": "T000002R051365", + "___id": "T000002R051346", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -640028,14 +642362,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R051366", + "___id": "T000002R051347", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -640078,14 +642412,14 @@ "name": "camera" } ], - "___id": "T000002R051367", + "___id": "T000002R051348", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -640122,14 +642456,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R051368", + "___id": "T000002R051349", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -640188,14 +642522,14 @@ "name": "displayList" } ], - "___id": "T000002R051369", + "___id": "T000002R051350", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -640224,14 +642558,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R051370", + "___id": "T000002R051351", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -640264,14 +642598,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R051371", + "___id": "T000002R051352", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -640300,14 +642634,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R051372", + "___id": "T000002R051353", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -640341,7 +642675,7 @@ "name": "fromScene" } ], - "___id": "T000002R051373", + "___id": "T000002R051354", "___s": true }, { @@ -640362,7 +642696,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R051374", + "___id": "T000002R051355", "___s": true }, { @@ -640414,7 +642748,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R051375", + "___id": "T000002R051356", "___s": true }, { @@ -640483,7 +642817,7 @@ "name": "event" } ], - "___id": "T000002R051376", + "___id": "T000002R051357", "___s": true }, { @@ -640543,7 +642877,7 @@ "name": "event" } ], - "___id": "T000002R051377", + "___id": "T000002R051358", "___s": true }, { @@ -640618,7 +642952,7 @@ "name": "args" } ], - "___id": "T000002R051378", + "___id": "T000002R051359", "___s": true }, { @@ -640706,7 +643040,7 @@ "name": "context" } ], - "___id": "T000002R051379", + "___id": "T000002R051360", "___s": true }, { @@ -640794,7 +643128,7 @@ "name": "context" } ], - "___id": "T000002R051380", + "___id": "T000002R051361", "___s": true }, { @@ -640882,7 +643216,7 @@ "name": "context" } ], - "___id": "T000002R051381", + "___id": "T000002R051362", "___s": true }, { @@ -640984,7 +643318,7 @@ "name": "once" } ], - "___id": "T000002R051382", + "___id": "T000002R051363", "___s": true }, { @@ -641086,7 +643420,7 @@ "name": "once" } ], - "___id": "T000002R051383", + "___id": "T000002R051364", "___s": true }, { @@ -641148,7 +643482,7 @@ "name": "event" } ], - "___id": "T000002R051384", + "___id": "T000002R051365", "___s": true }, { @@ -641184,7 +643518,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R051386", + "___id": "T000002R051367", "___s": true }, { @@ -641237,7 +643571,7 @@ "name": "value" } ], - "___id": "T000002R051387", + "___id": "T000002R051368", "___s": true }, { @@ -641267,7 +643601,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R051388", + "___id": "T000002R051369", "___s": true }, { @@ -641312,7 +643646,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R051390", + "___id": "T000002R051371", "___s": true }, { @@ -641378,7 +643712,7 @@ "name": "value" } ], - "___id": "T000002R051391", + "___id": "T000002R051372", "___s": true }, { @@ -641408,7 +643742,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R051393", + "___id": "T000002R051374", "___s": true }, { @@ -641459,7 +643793,7 @@ "name": "value" } ], - "___id": "T000002R051394", + "___id": "T000002R051375", "___s": true }, { @@ -641495,7 +643829,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R051395", + "___id": "T000002R051376", "___s": true }, { @@ -641531,7 +643865,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R051396", + "___id": "T000002R051377", "___s": true }, { @@ -641582,7 +643916,7 @@ "name": "gameObject" } ], - "___id": "T000002R051397", + "___id": "T000002R051378", "___s": true }, { @@ -641633,7 +643967,7 @@ "name": "gameObject" } ], - "___id": "T000002R051398", + "___id": "T000002R051379", "___s": true }, { @@ -641707,7 +644041,7 @@ "name": "includeParent" } ], - "___id": "T000002R051400", + "___id": "T000002R051381", "___s": true }, { @@ -641781,7 +644115,7 @@ "name": "includeParent" } ], - "___id": "T000002R051401", + "___id": "T000002R051382", "___s": true }, { @@ -641855,7 +644189,7 @@ "name": "includeParent" } ], - "___id": "T000002R051402", + "___id": "T000002R051383", "___s": true }, { @@ -641929,7 +644263,7 @@ "name": "includeParent" } ], - "___id": "T000002R051403", + "___id": "T000002R051384", "___s": true }, { @@ -642003,7 +644337,7 @@ "name": "includeParent" } ], - "___id": "T000002R051404", + "___id": "T000002R051385", "___s": true }, { @@ -642077,7 +644411,7 @@ "name": "includeParent" } ], - "___id": "T000002R051405", + "___id": "T000002R051386", "___s": true }, { @@ -642151,7 +644485,7 @@ "name": "includeParent" } ], - "___id": "T000002R051406", + "___id": "T000002R051387", "___s": true }, { @@ -642225,7 +644559,7 @@ "name": "includeParent" } ], - "___id": "T000002R051407", + "___id": "T000002R051388", "___s": true }, { @@ -642299,7 +644633,7 @@ "name": "includeParent" } ], - "___id": "T000002R051408", + "___id": "T000002R051389", "___s": true }, { @@ -642378,7 +644712,7 @@ "name": "output" } ], - "___id": "T000002R051409", + "___id": "T000002R051390", "___s": true }, { @@ -642418,7 +644752,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R051410", + "___id": "T000002R051391", "___s": true }, { @@ -642479,7 +644813,7 @@ "name": "mask" } ], - "___id": "T000002R051411", + "___id": "T000002R051392", "___s": true }, { @@ -642532,7 +644866,7 @@ "name": "destroyMask" } ], - "___id": "T000002R051412", + "___id": "T000002R051393", "___s": true }, { @@ -642694,7 +645028,7 @@ "name": "frame" } ], - "___id": "T000002R051413", + "___id": "T000002R051394", "___s": true }, { @@ -642775,7 +645109,7 @@ "name": "graphics" } ], - "___id": "T000002R051414", + "___id": "T000002R051395", "___s": true }, { @@ -642807,7 +645141,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R051416", + "___id": "T000002R051397", "___s": true }, { @@ -642839,7 +645173,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R051417", + "___id": "T000002R051398", "___s": true }, { @@ -642869,7 +645203,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R051418", + "___id": "T000002R051399", "___s": true }, { @@ -642899,7 +645233,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R051419", + "___id": "T000002R051400", "___s": true }, { @@ -642967,7 +645301,7 @@ "name": "y" } ], - "___id": "T000002R051420", + "___id": "T000002R051401", "___s": true }, { @@ -643003,7 +645337,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R051421", + "___id": "T000002R051402", "___s": true }, { @@ -643071,7 +645405,7 @@ "name": "y" } ], - "___id": "T000002R051422", + "___id": "T000002R051403", "___s": true }, { @@ -643107,7 +645441,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R051423", + "___id": "T000002R051404", "___s": true }, { @@ -643145,7 +645479,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R051424", + "___id": "T000002R051405", "___s": true }, { @@ -643183,7 +645517,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R051425", + "___id": "T000002R051406", "___s": true }, { @@ -643220,7 +645554,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R051426", + "___id": "T000002R051407", "___s": true }, { @@ -643288,7 +645622,7 @@ "name": "pipeline" } ], - "___id": "T000002R051427", + "___id": "T000002R051408", "___s": true }, { @@ -643385,7 +645719,7 @@ "name": "copyData" } ], - "___id": "T000002R051428", + "___id": "T000002R051409", "___s": true }, { @@ -643457,7 +645791,7 @@ "name": "value" } ], - "___id": "T000002R051429", + "___id": "T000002R051410", "___s": true }, { @@ -643516,7 +645850,7 @@ "name": "resetData" } ], - "___id": "T000002R051430", + "___id": "T000002R051411", "___s": true }, { @@ -643560,7 +645894,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R051431", + "___id": "T000002R051412", "___s": true }, { @@ -643597,7 +645931,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R051432", + "___id": "T000002R051413", "___s": true }, { @@ -643643,7 +645977,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R051433", + "___id": "T000002R051414", "___s": true }, { @@ -643680,7 +646014,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R051434", + "___id": "T000002R051415", "___s": true }, { @@ -643719,7 +646053,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R051435", + "___id": "T000002R051416", "___s": true }, { @@ -643756,7 +646090,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R051436", + "___id": "T000002R051417", "___s": true }, { @@ -643801,7 +646135,7 @@ "name": "preFX" } ], - "___id": "T000002R051437", + "___id": "T000002R051418", "___s": true }, { @@ -643945,7 +646279,7 @@ "name": "copyData" } ], - "___id": "T000002R051438", + "___id": "T000002R051419", "___s": true }, { @@ -644017,7 +646351,7 @@ "name": "value" } ], - "___id": "T000002R051439", + "___id": "T000002R051420", "___s": true }, { @@ -644108,7 +646442,7 @@ "name": "pipeline" } ], - "___id": "T000002R051440", + "___id": "T000002R051421", "___s": true }, { @@ -644153,7 +646487,7 @@ "name": "resetData" } ], - "___id": "T000002R051441", + "___id": "T000002R051422", "___s": true }, { @@ -644221,7 +646555,7 @@ "name": "pipeline" } ], - "___id": "T000002R051442", + "___id": "T000002R051423", "___s": true }, { @@ -644264,7 +646598,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R051443", + "___id": "T000002R051424", "___s": true }, { @@ -644295,7 +646629,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R051444", + "___id": "T000002R051425", "___s": true }, { @@ -644326,7 +646660,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R051445", + "___id": "T000002R051426", "___s": true }, { @@ -644392,7 +646726,7 @@ "name": "y" } ], - "___id": "T000002R051446", + "___id": "T000002R051427", "___s": true }, { @@ -644424,7 +646758,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R051447", + "___id": "T000002R051428", "___s": true }, { @@ -644455,7 +646789,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R051451", + "___id": "T000002R051432", "___s": true }, { @@ -644486,7 +646820,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R051452", + "___id": "T000002R051433", "___s": true }, { @@ -644517,7 +646851,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R051453", + "___id": "T000002R051434", "___s": true }, { @@ -644548,7 +646882,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R051454", + "___id": "T000002R051435", "___s": true }, { @@ -644579,7 +646913,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R051455", + "___id": "T000002R051436", "___s": true }, { @@ -644610,7 +646944,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R051456", + "___id": "T000002R051437", "___s": true }, { @@ -644641,7 +646975,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R051457", + "___id": "T000002R051438", "___s": true }, { @@ -644672,7 +647006,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R051458", + "___id": "T000002R051439", "___s": true }, { @@ -644703,7 +647037,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R051459", + "___id": "T000002R051440", "___s": true }, { @@ -644801,7 +647135,7 @@ "name": "w" } ], - "___id": "T000002R051460", + "___id": "T000002R051441", "___s": true }, { @@ -644867,7 +647201,7 @@ "name": "source" } ], - "___id": "T000002R051461", + "___id": "T000002R051442", "___s": true }, { @@ -644963,7 +647297,7 @@ "name": "height" } ], - "___id": "T000002R051462", + "___id": "T000002R051443", "___s": true }, { @@ -645016,7 +647350,7 @@ "name": "radians" } ], - "___id": "T000002R051463", + "___id": "T000002R051444", "___s": true }, { @@ -645069,7 +647403,7 @@ "name": "degrees" } ], - "___id": "T000002R051464", + "___id": "T000002R051445", "___s": true }, { @@ -645137,7 +647471,7 @@ "name": "y" } ], - "___id": "T000002R051465", + "___id": "T000002R051446", "___s": true }, { @@ -645190,7 +647524,7 @@ "name": "value" } ], - "___id": "T000002R051466", + "___id": "T000002R051447", "___s": true }, { @@ -645243,7 +647577,7 @@ "name": "value" } ], - "___id": "T000002R051467", + "___id": "T000002R051448", "___s": true }, { @@ -645296,7 +647630,7 @@ "name": "value" } ], - "___id": "T000002R051468", + "___id": "T000002R051449", "___s": true }, { @@ -645349,7 +647683,7 @@ "name": "value" } ], - "___id": "T000002R051469", + "___id": "T000002R051450", "___s": true }, { @@ -645400,7 +647734,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R051470", + "___id": "T000002R051451", "___s": true }, { @@ -645465,7 +647799,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R051471", + "___id": "T000002R051452", "___s": true }, { @@ -645556,7 +647890,7 @@ "name": "camera" } ], - "___id": "T000002R051472", + "___id": "T000002R051453", "___s": true }, { @@ -645591,7 +647925,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R051473", + "___id": "T000002R051454", "___s": true }, { @@ -645621,7 +647955,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R051475", + "___id": "T000002R051456", "___s": true }, { @@ -645672,7 +648006,7 @@ "name": "value" } ], - "___id": "T000002R051476", + "___id": "T000002R051457", "___s": true }, { @@ -645703,7 +648037,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#geom", "inherited": true, - "___id": "T000002R051480", + "___id": "T000002R051461", "___s": true }, { @@ -645743,7 +648077,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathData", "inherited": true, - "___id": "T000002R051481", + "___id": "T000002R051462", "___s": true }, { @@ -645783,7 +648117,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathIndexes", "inherited": true, - "___id": "T000002R051482", + "___id": "T000002R051463", "___s": true }, { @@ -645813,7 +648147,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillColor", "inherited": true, - "___id": "T000002R051483", + "___id": "T000002R051464", "___s": true }, { @@ -645843,7 +648177,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillAlpha", "inherited": true, - "___id": "T000002R051484", + "___id": "T000002R051465", "___s": true }, { @@ -645873,7 +648207,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeColor", "inherited": true, - "___id": "T000002R051485", + "___id": "T000002R051466", "___s": true }, { @@ -645903,7 +648237,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeAlpha", "inherited": true, - "___id": "T000002R051486", + "___id": "T000002R051467", "___s": true }, { @@ -645933,7 +648267,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#lineWidth", "inherited": true, - "___id": "T000002R051487", + "___id": "T000002R051468", "___s": true }, { @@ -645963,7 +648297,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isFilled", "inherited": true, - "___id": "T000002R051488", + "___id": "T000002R051469", "___s": true }, { @@ -645993,7 +648327,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isStroked", "inherited": true, - "___id": "T000002R051489", + "___id": "T000002R051470", "___s": true }, { @@ -646023,7 +648357,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#closePath", "inherited": true, - "___id": "T000002R051490", + "___id": "T000002R051471", "___s": true }, { @@ -646053,7 +648387,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#width", "inherited": true, - "___id": "T000002R051492", + "___id": "T000002R051473", "___s": true }, { @@ -646083,7 +648417,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#height", "inherited": true, - "___id": "T000002R051493", + "___id": "T000002R051474", "___s": true }, { @@ -646150,7 +648484,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setFillStyle", "inherited": true, - "___id": "T000002R051494", + "___id": "T000002R051475", "___s": true }, { @@ -646231,7 +648565,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setStrokeStyle", "inherited": true, - "___id": "T000002R051495", + "___id": "T000002R051476", "___s": true }, { @@ -646282,7 +648616,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setClosePath", "inherited": true, - "___id": "T000002R051496", + "___id": "T000002R051477", "___s": true }, { @@ -646346,7 +648680,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setDisplaySize", "inherited": true, - "___id": "T000002R051497", + "___id": "T000002R051478", "___s": true }, { @@ -646368,7 +648702,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#preDestroy", "inherited": true, - "___id": "T000002R051498", + "___id": "T000002R051479", "___s": true }, { @@ -646398,7 +648732,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayWidth", "inherited": true, - "___id": "T000002R051499", + "___id": "T000002R051480", "___s": true }, { @@ -646428,7 +648762,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayHeight", "inherited": true, - "___id": "T000002R051500", + "___id": "T000002R051481", "___s": true }, { @@ -646458,7 +648792,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R051502", + "___id": "T000002R051483", "___s": true }, { @@ -646499,7 +648833,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R051503", + "___id": "T000002R051484", "___s": true }, { @@ -646529,7 +648863,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R051504", + "___id": "T000002R051485", "___s": true }, { @@ -646569,7 +648903,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R051505", + "___id": "T000002R051486", "___s": true }, { @@ -646599,7 +648933,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R051506", + "___id": "T000002R051487", "___s": true }, { @@ -646630,7 +648964,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R051507", + "___id": "T000002R051488", "___s": true }, { @@ -646661,7 +648995,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R051508", + "___id": "T000002R051489", "___s": true }, { @@ -646692,7 +649026,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R051509", + "___id": "T000002R051490", "___s": true }, { @@ -646723,7 +649057,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R051510", + "___id": "T000002R051491", "___s": true }, { @@ -646754,7 +649088,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R051511", + "___id": "T000002R051492", "___s": true }, { @@ -646788,7 +649122,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R051512", + "___id": "T000002R051493", "___s": true }, { @@ -646821,7 +649155,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R051513", + "___id": "T000002R051494", "___s": true }, { @@ -646869,7 +649203,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R051514", + "___id": "T000002R051495", "___s": true }, { @@ -646900,7 +649234,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R051515", + "___id": "T000002R051496", "___s": true }, { @@ -646951,7 +649285,7 @@ "name": "value" } ], - "___id": "T000002R051516", + "___id": "T000002R051497", "___s": true }, { @@ -647002,7 +649336,7 @@ "name": "value" } ], - "___id": "T000002R051517", + "___id": "T000002R051498", "___s": true }, { @@ -647063,7 +649397,7 @@ "name": "value" } ], - "___id": "T000002R051518", + "___id": "T000002R051499", "___s": true }, { @@ -647102,7 +649436,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R051519", + "___id": "T000002R051500", "___s": true }, { @@ -647190,7 +649524,7 @@ "name": "data" } ], - "___id": "T000002R051520", + "___id": "T000002R051501", "___s": true }, { @@ -647256,7 +649590,7 @@ "name": "amount" } ], - "___id": "T000002R051521", + "___id": "T000002R051502", "___s": true }, { @@ -647307,7 +649641,7 @@ "name": "key" } ], - "___id": "T000002R051522", + "___id": "T000002R051503", "___s": true }, { @@ -647375,7 +649709,7 @@ "name": "key" } ], - "___id": "T000002R051523", + "___id": "T000002R051504", "___s": true }, { @@ -647471,11 +649805,11 @@ "name": "dropZone" } ], - "___id": "T000002R051524", + "___id": "T000002R051505", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -647507,14 +649841,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R051525", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R051506", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -647543,14 +649894,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R051526", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R051507", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -647564,14 +649932,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R051527", + "___id": "T000002R051508", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -647585,14 +649953,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R051528", + "___id": "T000002R051509", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -647623,14 +649991,14 @@ "name": "args" } ], - "___id": "T000002R051529", + "___id": "T000002R051510", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -647658,14 +650026,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R051530", + "___id": "T000002R051511", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -647708,14 +650076,14 @@ "name": "camera" } ], - "___id": "T000002R051531", + "___id": "T000002R051512", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -647752,14 +650120,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R051532", + "___id": "T000002R051513", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -647818,14 +650186,14 @@ "name": "displayList" } ], - "___id": "T000002R051533", + "___id": "T000002R051514", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -647854,14 +650222,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R051534", + "___id": "T000002R051515", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -647894,14 +650262,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R051535", + "___id": "T000002R051516", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -647930,14 +650298,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R051536", + "___id": "T000002R051517", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -647971,7 +650339,7 @@ "name": "fromScene" } ], - "___id": "T000002R051537", + "___id": "T000002R051518", "___s": true }, { @@ -647992,7 +650360,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R051538", + "___id": "T000002R051519", "___s": true }, { @@ -648044,7 +650412,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R051539", + "___id": "T000002R051520", "___s": true }, { @@ -648113,7 +650481,7 @@ "name": "event" } ], - "___id": "T000002R051540", + "___id": "T000002R051521", "___s": true }, { @@ -648173,7 +650541,7 @@ "name": "event" } ], - "___id": "T000002R051541", + "___id": "T000002R051522", "___s": true }, { @@ -648248,7 +650616,7 @@ "name": "args" } ], - "___id": "T000002R051542", + "___id": "T000002R051523", "___s": true }, { @@ -648336,7 +650704,7 @@ "name": "context" } ], - "___id": "T000002R051543", + "___id": "T000002R051524", "___s": true }, { @@ -648424,7 +650792,7 @@ "name": "context" } ], - "___id": "T000002R051544", + "___id": "T000002R051525", "___s": true }, { @@ -648512,7 +650880,7 @@ "name": "context" } ], - "___id": "T000002R051545", + "___id": "T000002R051526", "___s": true }, { @@ -648614,7 +650982,7 @@ "name": "once" } ], - "___id": "T000002R051546", + "___id": "T000002R051527", "___s": true }, { @@ -648716,7 +651084,7 @@ "name": "once" } ], - "___id": "T000002R051547", + "___id": "T000002R051528", "___s": true }, { @@ -648778,7 +651146,7 @@ "name": "event" } ], - "___id": "T000002R051548", + "___id": "T000002R051529", "___s": true }, { @@ -648814,7 +651182,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R051550", + "___id": "T000002R051531", "___s": true }, { @@ -648867,7 +651235,7 @@ "name": "value" } ], - "___id": "T000002R051551", + "___id": "T000002R051532", "___s": true }, { @@ -648897,7 +651265,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R051552", + "___id": "T000002R051533", "___s": true }, { @@ -648942,7 +651310,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R051554", + "___id": "T000002R051535", "___s": true }, { @@ -649008,7 +651376,7 @@ "name": "value" } ], - "___id": "T000002R051555", + "___id": "T000002R051536", "___s": true }, { @@ -649038,7 +651406,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R051557", + "___id": "T000002R051538", "___s": true }, { @@ -649089,7 +651457,7 @@ "name": "value" } ], - "___id": "T000002R051558", + "___id": "T000002R051539", "___s": true }, { @@ -649125,7 +651493,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R051559", + "___id": "T000002R051540", "___s": true }, { @@ -649161,7 +651529,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R051560", + "___id": "T000002R051541", "___s": true }, { @@ -649212,7 +651580,7 @@ "name": "gameObject" } ], - "___id": "T000002R051561", + "___id": "T000002R051542", "___s": true }, { @@ -649263,7 +651631,7 @@ "name": "gameObject" } ], - "___id": "T000002R051562", + "___id": "T000002R051543", "___s": true }, { @@ -649337,7 +651705,7 @@ "name": "includeParent" } ], - "___id": "T000002R051564", + "___id": "T000002R051545", "___s": true }, { @@ -649411,7 +651779,7 @@ "name": "includeParent" } ], - "___id": "T000002R051565", + "___id": "T000002R051546", "___s": true }, { @@ -649485,7 +651853,7 @@ "name": "includeParent" } ], - "___id": "T000002R051566", + "___id": "T000002R051547", "___s": true }, { @@ -649559,7 +651927,7 @@ "name": "includeParent" } ], - "___id": "T000002R051567", + "___id": "T000002R051548", "___s": true }, { @@ -649633,7 +652001,7 @@ "name": "includeParent" } ], - "___id": "T000002R051568", + "___id": "T000002R051549", "___s": true }, { @@ -649707,7 +652075,7 @@ "name": "includeParent" } ], - "___id": "T000002R051569", + "___id": "T000002R051550", "___s": true }, { @@ -649781,7 +652149,7 @@ "name": "includeParent" } ], - "___id": "T000002R051570", + "___id": "T000002R051551", "___s": true }, { @@ -649855,7 +652223,7 @@ "name": "includeParent" } ], - "___id": "T000002R051571", + "___id": "T000002R051552", "___s": true }, { @@ -649929,7 +652297,7 @@ "name": "includeParent" } ], - "___id": "T000002R051572", + "___id": "T000002R051553", "___s": true }, { @@ -650008,7 +652376,7 @@ "name": "output" } ], - "___id": "T000002R051573", + "___id": "T000002R051554", "___s": true }, { @@ -650048,7 +652416,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R051574", + "___id": "T000002R051555", "___s": true }, { @@ -650109,7 +652477,7 @@ "name": "mask" } ], - "___id": "T000002R051575", + "___id": "T000002R051556", "___s": true }, { @@ -650162,7 +652530,7 @@ "name": "destroyMask" } ], - "___id": "T000002R051576", + "___id": "T000002R051557", "___s": true }, { @@ -650324,7 +652692,7 @@ "name": "frame" } ], - "___id": "T000002R051577", + "___id": "T000002R051558", "___s": true }, { @@ -650405,7 +652773,7 @@ "name": "graphics" } ], - "___id": "T000002R051578", + "___id": "T000002R051559", "___s": true }, { @@ -650437,7 +652805,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R051580", + "___id": "T000002R051561", "___s": true }, { @@ -650469,7 +652837,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R051581", + "___id": "T000002R051562", "___s": true }, { @@ -650499,7 +652867,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R051582", + "___id": "T000002R051563", "___s": true }, { @@ -650529,7 +652897,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R051583", + "___id": "T000002R051564", "___s": true }, { @@ -650597,7 +652965,7 @@ "name": "y" } ], - "___id": "T000002R051584", + "___id": "T000002R051565", "___s": true }, { @@ -650633,7 +653001,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R051585", + "___id": "T000002R051566", "___s": true }, { @@ -650701,7 +653069,7 @@ "name": "y" } ], - "___id": "T000002R051586", + "___id": "T000002R051567", "___s": true }, { @@ -650737,7 +653105,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R051587", + "___id": "T000002R051568", "___s": true }, { @@ -650775,7 +653143,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R051588", + "___id": "T000002R051569", "___s": true }, { @@ -650813,7 +653181,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R051589", + "___id": "T000002R051570", "___s": true }, { @@ -650850,7 +653218,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R051590", + "___id": "T000002R051571", "___s": true }, { @@ -650918,7 +653286,7 @@ "name": "pipeline" } ], - "___id": "T000002R051591", + "___id": "T000002R051572", "___s": true }, { @@ -651015,7 +653383,7 @@ "name": "copyData" } ], - "___id": "T000002R051592", + "___id": "T000002R051573", "___s": true }, { @@ -651087,7 +653455,7 @@ "name": "value" } ], - "___id": "T000002R051593", + "___id": "T000002R051574", "___s": true }, { @@ -651146,7 +653514,7 @@ "name": "resetData" } ], - "___id": "T000002R051594", + "___id": "T000002R051575", "___s": true }, { @@ -651190,7 +653558,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R051595", + "___id": "T000002R051576", "___s": true }, { @@ -651227,7 +653595,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R051596", + "___id": "T000002R051577", "___s": true }, { @@ -651273,7 +653641,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R051597", + "___id": "T000002R051578", "___s": true }, { @@ -651310,7 +653678,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R051598", + "___id": "T000002R051579", "___s": true }, { @@ -651349,7 +653717,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R051599", + "___id": "T000002R051580", "___s": true }, { @@ -651386,7 +653754,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R051600", + "___id": "T000002R051581", "___s": true }, { @@ -651431,7 +653799,7 @@ "name": "preFX" } ], - "___id": "T000002R051601", + "___id": "T000002R051582", "___s": true }, { @@ -651575,7 +653943,7 @@ "name": "copyData" } ], - "___id": "T000002R051602", + "___id": "T000002R051583", "___s": true }, { @@ -651647,7 +654015,7 @@ "name": "value" } ], - "___id": "T000002R051603", + "___id": "T000002R051584", "___s": true }, { @@ -651738,7 +654106,7 @@ "name": "pipeline" } ], - "___id": "T000002R051604", + "___id": "T000002R051585", "___s": true }, { @@ -651783,7 +654151,7 @@ "name": "resetData" } ], - "___id": "T000002R051605", + "___id": "T000002R051586", "___s": true }, { @@ -651851,7 +654219,7 @@ "name": "pipeline" } ], - "___id": "T000002R051606", + "___id": "T000002R051587", "___s": true }, { @@ -651894,7 +654262,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R051607", + "___id": "T000002R051588", "___s": true }, { @@ -651925,7 +654293,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R051608", + "___id": "T000002R051589", "___s": true }, { @@ -651956,7 +654324,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R051609", + "___id": "T000002R051590", "___s": true }, { @@ -652022,7 +654390,7 @@ "name": "y" } ], - "___id": "T000002R051610", + "___id": "T000002R051591", "___s": true }, { @@ -652054,7 +654422,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R051611", + "___id": "T000002R051592", "___s": true }, { @@ -652085,7 +654453,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R051615", + "___id": "T000002R051596", "___s": true }, { @@ -652116,7 +654484,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R051616", + "___id": "T000002R051597", "___s": true }, { @@ -652147,7 +654515,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R051617", + "___id": "T000002R051598", "___s": true }, { @@ -652178,7 +654546,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R051618", + "___id": "T000002R051599", "___s": true }, { @@ -652209,7 +654577,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R051619", + "___id": "T000002R051600", "___s": true }, { @@ -652240,7 +654608,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R051620", + "___id": "T000002R051601", "___s": true }, { @@ -652271,7 +654639,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R051621", + "___id": "T000002R051602", "___s": true }, { @@ -652302,7 +654670,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R051622", + "___id": "T000002R051603", "___s": true }, { @@ -652333,7 +654701,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R051623", + "___id": "T000002R051604", "___s": true }, { @@ -652431,7 +654799,7 @@ "name": "w" } ], - "___id": "T000002R051624", + "___id": "T000002R051605", "___s": true }, { @@ -652497,7 +654865,7 @@ "name": "source" } ], - "___id": "T000002R051625", + "___id": "T000002R051606", "___s": true }, { @@ -652593,7 +654961,7 @@ "name": "height" } ], - "___id": "T000002R051626", + "___id": "T000002R051607", "___s": true }, { @@ -652646,7 +655014,7 @@ "name": "radians" } ], - "___id": "T000002R051627", + "___id": "T000002R051608", "___s": true }, { @@ -652699,7 +655067,7 @@ "name": "degrees" } ], - "___id": "T000002R051628", + "___id": "T000002R051609", "___s": true }, { @@ -652767,7 +655135,7 @@ "name": "y" } ], - "___id": "T000002R051629", + "___id": "T000002R051610", "___s": true }, { @@ -652820,7 +655188,7 @@ "name": "value" } ], - "___id": "T000002R051630", + "___id": "T000002R051611", "___s": true }, { @@ -652873,7 +655241,7 @@ "name": "value" } ], - "___id": "T000002R051631", + "___id": "T000002R051612", "___s": true }, { @@ -652926,7 +655294,7 @@ "name": "value" } ], - "___id": "T000002R051632", + "___id": "T000002R051613", "___s": true }, { @@ -652979,7 +655347,7 @@ "name": "value" } ], - "___id": "T000002R051633", + "___id": "T000002R051614", "___s": true }, { @@ -653030,7 +655398,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R051634", + "___id": "T000002R051615", "___s": true }, { @@ -653095,7 +655463,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R051635", + "___id": "T000002R051616", "___s": true }, { @@ -653186,7 +655554,7 @@ "name": "camera" } ], - "___id": "T000002R051636", + "___id": "T000002R051617", "___s": true }, { @@ -653221,7 +655589,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R051637", + "___id": "T000002R051618", "___s": true }, { @@ -653251,7 +655619,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R051639", + "___id": "T000002R051620", "___s": true }, { @@ -653302,7 +655670,7 @@ "name": "value" } ], - "___id": "T000002R051640", + "___id": "T000002R051621", "___s": true }, { @@ -653333,7 +655701,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#geom", "inherited": true, - "___id": "T000002R051644", + "___id": "T000002R051625", "___s": true }, { @@ -653373,7 +655741,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathData", "inherited": true, - "___id": "T000002R051645", + "___id": "T000002R051626", "___s": true }, { @@ -653413,7 +655781,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathIndexes", "inherited": true, - "___id": "T000002R051646", + "___id": "T000002R051627", "___s": true }, { @@ -653443,7 +655811,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillColor", "inherited": true, - "___id": "T000002R051647", + "___id": "T000002R051628", "___s": true }, { @@ -653473,7 +655841,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillAlpha", "inherited": true, - "___id": "T000002R051648", + "___id": "T000002R051629", "___s": true }, { @@ -653503,7 +655871,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeColor", "inherited": true, - "___id": "T000002R051649", + "___id": "T000002R051630", "___s": true }, { @@ -653533,7 +655901,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeAlpha", "inherited": true, - "___id": "T000002R051650", + "___id": "T000002R051631", "___s": true }, { @@ -653563,7 +655931,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#lineWidth", "inherited": true, - "___id": "T000002R051651", + "___id": "T000002R051632", "___s": true }, { @@ -653593,7 +655961,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isFilled", "inherited": true, - "___id": "T000002R051652", + "___id": "T000002R051633", "___s": true }, { @@ -653623,7 +655991,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isStroked", "inherited": true, - "___id": "T000002R051653", + "___id": "T000002R051634", "___s": true }, { @@ -653653,7 +656021,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#closePath", "inherited": true, - "___id": "T000002R051654", + "___id": "T000002R051635", "___s": true }, { @@ -653683,7 +656051,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#width", "inherited": true, - "___id": "T000002R051656", + "___id": "T000002R051637", "___s": true }, { @@ -653713,7 +656081,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#height", "inherited": true, - "___id": "T000002R051657", + "___id": "T000002R051638", "___s": true }, { @@ -653780,7 +656148,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setFillStyle", "inherited": true, - "___id": "T000002R051658", + "___id": "T000002R051639", "___s": true }, { @@ -653861,7 +656229,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setStrokeStyle", "inherited": true, - "___id": "T000002R051659", + "___id": "T000002R051640", "___s": true }, { @@ -653912,7 +656280,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setClosePath", "inherited": true, - "___id": "T000002R051660", + "___id": "T000002R051641", "___s": true }, { @@ -653976,7 +656344,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setDisplaySize", "inherited": true, - "___id": "T000002R051662", + "___id": "T000002R051643", "___s": true }, { @@ -653998,7 +656366,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#preDestroy", "inherited": true, - "___id": "T000002R051663", + "___id": "T000002R051644", "___s": true }, { @@ -654028,7 +656396,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayWidth", "inherited": true, - "___id": "T000002R051664", + "___id": "T000002R051645", "___s": true }, { @@ -654058,7 +656426,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayHeight", "inherited": true, - "___id": "T000002R051665", + "___id": "T000002R051646", "___s": true }, { @@ -654088,7 +656456,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R051667", + "___id": "T000002R051648", "___s": true }, { @@ -654129,7 +656497,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R051668", + "___id": "T000002R051649", "___s": true }, { @@ -654159,7 +656527,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R051669", + "___id": "T000002R051650", "___s": true }, { @@ -654199,7 +656567,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R051670", + "___id": "T000002R051651", "___s": true }, { @@ -654229,7 +656597,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R051671", + "___id": "T000002R051652", "___s": true }, { @@ -654260,7 +656628,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R051672", + "___id": "T000002R051653", "___s": true }, { @@ -654291,7 +656659,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R051673", + "___id": "T000002R051654", "___s": true }, { @@ -654322,7 +656690,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R051674", + "___id": "T000002R051655", "___s": true }, { @@ -654353,7 +656721,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R051675", + "___id": "T000002R051656", "___s": true }, { @@ -654384,7 +656752,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R051676", + "___id": "T000002R051657", "___s": true }, { @@ -654418,7 +656786,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R051677", + "___id": "T000002R051658", "___s": true }, { @@ -654451,7 +656819,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R051678", + "___id": "T000002R051659", "___s": true }, { @@ -654499,7 +656867,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R051679", + "___id": "T000002R051660", "___s": true }, { @@ -654530,7 +656898,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R051680", + "___id": "T000002R051661", "___s": true }, { @@ -654581,7 +656949,7 @@ "name": "value" } ], - "___id": "T000002R051681", + "___id": "T000002R051662", "___s": true }, { @@ -654632,7 +657000,7 @@ "name": "value" } ], - "___id": "T000002R051682", + "___id": "T000002R051663", "___s": true }, { @@ -654693,7 +657061,7 @@ "name": "value" } ], - "___id": "T000002R051683", + "___id": "T000002R051664", "___s": true }, { @@ -654732,7 +657100,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R051684", + "___id": "T000002R051665", "___s": true }, { @@ -654820,7 +657188,7 @@ "name": "data" } ], - "___id": "T000002R051685", + "___id": "T000002R051666", "___s": true }, { @@ -654886,7 +657254,7 @@ "name": "amount" } ], - "___id": "T000002R051686", + "___id": "T000002R051667", "___s": true }, { @@ -654937,7 +657305,7 @@ "name": "key" } ], - "___id": "T000002R051687", + "___id": "T000002R051668", "___s": true }, { @@ -655005,7 +657373,7 @@ "name": "key" } ], - "___id": "T000002R051688", + "___id": "T000002R051669", "___s": true }, { @@ -655101,11 +657469,11 @@ "name": "dropZone" } ], - "___id": "T000002R051689", + "___id": "T000002R051670", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -655137,14 +657505,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R051690", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R051671", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -655173,14 +657558,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R051691", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R051672", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -655194,14 +657596,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R051692", + "___id": "T000002R051673", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -655215,14 +657617,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R051693", + "___id": "T000002R051674", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -655253,14 +657655,14 @@ "name": "args" } ], - "___id": "T000002R051694", + "___id": "T000002R051675", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -655288,14 +657690,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R051695", + "___id": "T000002R051676", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -655338,14 +657740,14 @@ "name": "camera" } ], - "___id": "T000002R051696", + "___id": "T000002R051677", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -655382,14 +657784,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R051697", + "___id": "T000002R051678", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -655448,14 +657850,14 @@ "name": "displayList" } ], - "___id": "T000002R051698", + "___id": "T000002R051679", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -655484,14 +657886,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R051699", + "___id": "T000002R051680", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -655524,14 +657926,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R051700", + "___id": "T000002R051681", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -655560,14 +657962,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R051701", + "___id": "T000002R051682", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -655601,7 +658003,7 @@ "name": "fromScene" } ], - "___id": "T000002R051702", + "___id": "T000002R051683", "___s": true }, { @@ -655622,7 +658024,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R051703", + "___id": "T000002R051684", "___s": true }, { @@ -655674,7 +658076,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R051704", + "___id": "T000002R051685", "___s": true }, { @@ -655743,7 +658145,7 @@ "name": "event" } ], - "___id": "T000002R051705", + "___id": "T000002R051686", "___s": true }, { @@ -655803,7 +658205,7 @@ "name": "event" } ], - "___id": "T000002R051706", + "___id": "T000002R051687", "___s": true }, { @@ -655878,7 +658280,7 @@ "name": "args" } ], - "___id": "T000002R051707", + "___id": "T000002R051688", "___s": true }, { @@ -655966,7 +658368,7 @@ "name": "context" } ], - "___id": "T000002R051708", + "___id": "T000002R051689", "___s": true }, { @@ -656054,7 +658456,7 @@ "name": "context" } ], - "___id": "T000002R051709", + "___id": "T000002R051690", "___s": true }, { @@ -656142,7 +658544,7 @@ "name": "context" } ], - "___id": "T000002R051710", + "___id": "T000002R051691", "___s": true }, { @@ -656244,7 +658646,7 @@ "name": "once" } ], - "___id": "T000002R051711", + "___id": "T000002R051692", "___s": true }, { @@ -656346,7 +658748,7 @@ "name": "once" } ], - "___id": "T000002R051712", + "___id": "T000002R051693", "___s": true }, { @@ -656408,7 +658810,7 @@ "name": "event" } ], - "___id": "T000002R051713", + "___id": "T000002R051694", "___s": true }, { @@ -656444,7 +658846,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R051715", + "___id": "T000002R051696", "___s": true }, { @@ -656497,7 +658899,7 @@ "name": "value" } ], - "___id": "T000002R051716", + "___id": "T000002R051697", "___s": true }, { @@ -656527,7 +658929,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R051717", + "___id": "T000002R051698", "___s": true }, { @@ -656572,7 +658974,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R051719", + "___id": "T000002R051700", "___s": true }, { @@ -656638,7 +659040,7 @@ "name": "value" } ], - "___id": "T000002R051720", + "___id": "T000002R051701", "___s": true }, { @@ -656668,7 +659070,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R051722", + "___id": "T000002R051703", "___s": true }, { @@ -656719,7 +659121,7 @@ "name": "value" } ], - "___id": "T000002R051723", + "___id": "T000002R051704", "___s": true }, { @@ -656755,7 +659157,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R051724", + "___id": "T000002R051705", "___s": true }, { @@ -656791,7 +659193,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R051725", + "___id": "T000002R051706", "___s": true }, { @@ -656842,7 +659244,7 @@ "name": "gameObject" } ], - "___id": "T000002R051726", + "___id": "T000002R051707", "___s": true }, { @@ -656893,7 +659295,7 @@ "name": "gameObject" } ], - "___id": "T000002R051727", + "___id": "T000002R051708", "___s": true }, { @@ -656967,7 +659369,7 @@ "name": "includeParent" } ], - "___id": "T000002R051729", + "___id": "T000002R051710", "___s": true }, { @@ -657041,7 +659443,7 @@ "name": "includeParent" } ], - "___id": "T000002R051730", + "___id": "T000002R051711", "___s": true }, { @@ -657115,7 +659517,7 @@ "name": "includeParent" } ], - "___id": "T000002R051731", + "___id": "T000002R051712", "___s": true }, { @@ -657189,7 +659591,7 @@ "name": "includeParent" } ], - "___id": "T000002R051732", + "___id": "T000002R051713", "___s": true }, { @@ -657263,7 +659665,7 @@ "name": "includeParent" } ], - "___id": "T000002R051733", + "___id": "T000002R051714", "___s": true }, { @@ -657337,7 +659739,7 @@ "name": "includeParent" } ], - "___id": "T000002R051734", + "___id": "T000002R051715", "___s": true }, { @@ -657411,7 +659813,7 @@ "name": "includeParent" } ], - "___id": "T000002R051735", + "___id": "T000002R051716", "___s": true }, { @@ -657485,7 +659887,7 @@ "name": "includeParent" } ], - "___id": "T000002R051736", + "___id": "T000002R051717", "___s": true }, { @@ -657559,7 +659961,7 @@ "name": "includeParent" } ], - "___id": "T000002R051737", + "___id": "T000002R051718", "___s": true }, { @@ -657638,7 +660040,7 @@ "name": "output" } ], - "___id": "T000002R051738", + "___id": "T000002R051719", "___s": true }, { @@ -657678,7 +660080,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R051739", + "___id": "T000002R051720", "___s": true }, { @@ -657739,7 +660141,7 @@ "name": "mask" } ], - "___id": "T000002R051740", + "___id": "T000002R051721", "___s": true }, { @@ -657792,7 +660194,7 @@ "name": "destroyMask" } ], - "___id": "T000002R051741", + "___id": "T000002R051722", "___s": true }, { @@ -657954,7 +660356,7 @@ "name": "frame" } ], - "___id": "T000002R051742", + "___id": "T000002R051723", "___s": true }, { @@ -658035,7 +660437,7 @@ "name": "graphics" } ], - "___id": "T000002R051743", + "___id": "T000002R051724", "___s": true }, { @@ -658067,7 +660469,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R051745", + "___id": "T000002R051726", "___s": true }, { @@ -658099,7 +660501,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R051746", + "___id": "T000002R051727", "___s": true }, { @@ -658129,7 +660531,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R051747", + "___id": "T000002R051728", "___s": true }, { @@ -658159,7 +660561,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R051748", + "___id": "T000002R051729", "___s": true }, { @@ -658227,7 +660629,7 @@ "name": "y" } ], - "___id": "T000002R051749", + "___id": "T000002R051730", "___s": true }, { @@ -658263,7 +660665,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R051750", + "___id": "T000002R051731", "___s": true }, { @@ -658331,7 +660733,7 @@ "name": "y" } ], - "___id": "T000002R051751", + "___id": "T000002R051732", "___s": true }, { @@ -658367,7 +660769,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R051752", + "___id": "T000002R051733", "___s": true }, { @@ -658405,7 +660807,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R051753", + "___id": "T000002R051734", "___s": true }, { @@ -658443,7 +660845,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R051754", + "___id": "T000002R051735", "___s": true }, { @@ -658480,7 +660882,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R051755", + "___id": "T000002R051736", "___s": true }, { @@ -658548,7 +660950,7 @@ "name": "pipeline" } ], - "___id": "T000002R051756", + "___id": "T000002R051737", "___s": true }, { @@ -658645,7 +661047,7 @@ "name": "copyData" } ], - "___id": "T000002R051757", + "___id": "T000002R051738", "___s": true }, { @@ -658717,7 +661119,7 @@ "name": "value" } ], - "___id": "T000002R051758", + "___id": "T000002R051739", "___s": true }, { @@ -658776,7 +661178,7 @@ "name": "resetData" } ], - "___id": "T000002R051759", + "___id": "T000002R051740", "___s": true }, { @@ -658820,7 +661222,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R051760", + "___id": "T000002R051741", "___s": true }, { @@ -658857,7 +661259,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R051761", + "___id": "T000002R051742", "___s": true }, { @@ -658903,7 +661305,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R051762", + "___id": "T000002R051743", "___s": true }, { @@ -658940,7 +661342,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R051763", + "___id": "T000002R051744", "___s": true }, { @@ -658979,7 +661381,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R051764", + "___id": "T000002R051745", "___s": true }, { @@ -659016,7 +661418,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R051765", + "___id": "T000002R051746", "___s": true }, { @@ -659061,7 +661463,7 @@ "name": "preFX" } ], - "___id": "T000002R051766", + "___id": "T000002R051747", "___s": true }, { @@ -659205,7 +661607,7 @@ "name": "copyData" } ], - "___id": "T000002R051767", + "___id": "T000002R051748", "___s": true }, { @@ -659277,7 +661679,7 @@ "name": "value" } ], - "___id": "T000002R051768", + "___id": "T000002R051749", "___s": true }, { @@ -659368,7 +661770,7 @@ "name": "pipeline" } ], - "___id": "T000002R051769", + "___id": "T000002R051750", "___s": true }, { @@ -659413,7 +661815,7 @@ "name": "resetData" } ], - "___id": "T000002R051770", + "___id": "T000002R051751", "___s": true }, { @@ -659481,7 +661883,7 @@ "name": "pipeline" } ], - "___id": "T000002R051771", + "___id": "T000002R051752", "___s": true }, { @@ -659524,7 +661926,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R051772", + "___id": "T000002R051753", "___s": true }, { @@ -659555,7 +661957,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R051773", + "___id": "T000002R051754", "___s": true }, { @@ -659586,7 +661988,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R051774", + "___id": "T000002R051755", "___s": true }, { @@ -659652,7 +662054,7 @@ "name": "y" } ], - "___id": "T000002R051775", + "___id": "T000002R051756", "___s": true }, { @@ -659684,7 +662086,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R051776", + "___id": "T000002R051757", "___s": true }, { @@ -659715,7 +662117,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R051780", + "___id": "T000002R051761", "___s": true }, { @@ -659746,7 +662148,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R051781", + "___id": "T000002R051762", "___s": true }, { @@ -659777,7 +662179,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R051782", + "___id": "T000002R051763", "___s": true }, { @@ -659808,7 +662210,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R051783", + "___id": "T000002R051764", "___s": true }, { @@ -659839,7 +662241,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R051784", + "___id": "T000002R051765", "___s": true }, { @@ -659870,7 +662272,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R051785", + "___id": "T000002R051766", "___s": true }, { @@ -659901,7 +662303,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R051786", + "___id": "T000002R051767", "___s": true }, { @@ -659932,7 +662334,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R051787", + "___id": "T000002R051768", "___s": true }, { @@ -659963,7 +662365,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R051788", + "___id": "T000002R051769", "___s": true }, { @@ -660061,7 +662463,7 @@ "name": "w" } ], - "___id": "T000002R051789", + "___id": "T000002R051770", "___s": true }, { @@ -660127,7 +662529,7 @@ "name": "source" } ], - "___id": "T000002R051790", + "___id": "T000002R051771", "___s": true }, { @@ -660223,7 +662625,7 @@ "name": "height" } ], - "___id": "T000002R051791", + "___id": "T000002R051772", "___s": true }, { @@ -660276,7 +662678,7 @@ "name": "radians" } ], - "___id": "T000002R051792", + "___id": "T000002R051773", "___s": true }, { @@ -660329,7 +662731,7 @@ "name": "degrees" } ], - "___id": "T000002R051793", + "___id": "T000002R051774", "___s": true }, { @@ -660397,7 +662799,7 @@ "name": "y" } ], - "___id": "T000002R051794", + "___id": "T000002R051775", "___s": true }, { @@ -660450,7 +662852,7 @@ "name": "value" } ], - "___id": "T000002R051795", + "___id": "T000002R051776", "___s": true }, { @@ -660503,7 +662905,7 @@ "name": "value" } ], - "___id": "T000002R051796", + "___id": "T000002R051777", "___s": true }, { @@ -660556,7 +662958,7 @@ "name": "value" } ], - "___id": "T000002R051797", + "___id": "T000002R051778", "___s": true }, { @@ -660609,7 +663011,7 @@ "name": "value" } ], - "___id": "T000002R051798", + "___id": "T000002R051779", "___s": true }, { @@ -660660,7 +663062,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R051799", + "___id": "T000002R051780", "___s": true }, { @@ -660725,7 +663127,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R051800", + "___id": "T000002R051781", "___s": true }, { @@ -660816,7 +663218,7 @@ "name": "camera" } ], - "___id": "T000002R051801", + "___id": "T000002R051782", "___s": true }, { @@ -660851,7 +663253,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R051802", + "___id": "T000002R051783", "___s": true }, { @@ -660881,7 +663283,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R051804", + "___id": "T000002R051785", "___s": true }, { @@ -660932,7 +663334,7 @@ "name": "value" } ], - "___id": "T000002R051805", + "___id": "T000002R051786", "___s": true }, { @@ -660963,7 +663365,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#geom", "inherited": true, - "___id": "T000002R051809", + "___id": "T000002R051790", "___s": true }, { @@ -661003,7 +663405,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathData", "inherited": true, - "___id": "T000002R051810", + "___id": "T000002R051791", "___s": true }, { @@ -661043,7 +663445,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#pathIndexes", "inherited": true, - "___id": "T000002R051811", + "___id": "T000002R051792", "___s": true }, { @@ -661073,7 +663475,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillColor", "inherited": true, - "___id": "T000002R051812", + "___id": "T000002R051793", "___s": true }, { @@ -661103,7 +663505,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#fillAlpha", "inherited": true, - "___id": "T000002R051813", + "___id": "T000002R051794", "___s": true }, { @@ -661133,7 +663535,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeColor", "inherited": true, - "___id": "T000002R051814", + "___id": "T000002R051795", "___s": true }, { @@ -661163,7 +663565,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#strokeAlpha", "inherited": true, - "___id": "T000002R051815", + "___id": "T000002R051796", "___s": true }, { @@ -661193,7 +663595,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#lineWidth", "inherited": true, - "___id": "T000002R051816", + "___id": "T000002R051797", "___s": true }, { @@ -661223,7 +663625,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isFilled", "inherited": true, - "___id": "T000002R051817", + "___id": "T000002R051798", "___s": true }, { @@ -661253,7 +663655,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#isStroked", "inherited": true, - "___id": "T000002R051818", + "___id": "T000002R051799", "___s": true }, { @@ -661283,7 +663685,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#closePath", "inherited": true, - "___id": "T000002R051819", + "___id": "T000002R051800", "___s": true }, { @@ -661313,7 +663715,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#width", "inherited": true, - "___id": "T000002R051821", + "___id": "T000002R051802", "___s": true }, { @@ -661343,7 +663745,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#height", "inherited": true, - "___id": "T000002R051822", + "___id": "T000002R051803", "___s": true }, { @@ -661410,7 +663812,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setFillStyle", "inherited": true, - "___id": "T000002R051823", + "___id": "T000002R051804", "___s": true }, { @@ -661491,7 +663893,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setStrokeStyle", "inherited": true, - "___id": "T000002R051824", + "___id": "T000002R051805", "___s": true }, { @@ -661542,7 +663944,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setClosePath", "inherited": true, - "___id": "T000002R051825", + "___id": "T000002R051806", "___s": true }, { @@ -661606,7 +664008,7 @@ ], "inherits": "Phaser.GameObjects.Shape#setDisplaySize", "inherited": true, - "___id": "T000002R051827", + "___id": "T000002R051808", "___s": true }, { @@ -661628,7 +664030,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#preDestroy", "inherited": true, - "___id": "T000002R051828", + "___id": "T000002R051809", "___s": true }, { @@ -661658,7 +664060,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayWidth", "inherited": true, - "___id": "T000002R051829", + "___id": "T000002R051810", "___s": true }, { @@ -661688,7 +664090,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Shape#displayHeight", "inherited": true, - "___id": "T000002R051830", + "___id": "T000002R051811", "___s": true }, { @@ -661718,7 +664120,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R051832", + "___id": "T000002R051813", "___s": true }, { @@ -661759,7 +664161,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R051833", + "___id": "T000002R051814", "___s": true }, { @@ -661789,7 +664191,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R051834", + "___id": "T000002R051815", "___s": true }, { @@ -661829,7 +664231,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R051835", + "___id": "T000002R051816", "___s": true }, { @@ -661859,7 +664261,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R051836", + "___id": "T000002R051817", "___s": true }, { @@ -661890,7 +664292,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R051837", + "___id": "T000002R051818", "___s": true }, { @@ -661921,7 +664323,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R051838", + "___id": "T000002R051819", "___s": true }, { @@ -661952,7 +664354,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R051839", + "___id": "T000002R051820", "___s": true }, { @@ -661983,7 +664385,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R051840", + "___id": "T000002R051821", "___s": true }, { @@ -662014,7 +664416,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R051841", + "___id": "T000002R051822", "___s": true }, { @@ -662048,7 +664450,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R051842", + "___id": "T000002R051823", "___s": true }, { @@ -662081,7 +664483,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R051843", + "___id": "T000002R051824", "___s": true }, { @@ -662129,7 +664531,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R051844", + "___id": "T000002R051825", "___s": true }, { @@ -662160,7 +664562,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R051845", + "___id": "T000002R051826", "___s": true }, { @@ -662211,7 +664613,7 @@ "name": "value" } ], - "___id": "T000002R051846", + "___id": "T000002R051827", "___s": true }, { @@ -662262,7 +664664,7 @@ "name": "value" } ], - "___id": "T000002R051847", + "___id": "T000002R051828", "___s": true }, { @@ -662323,7 +664725,7 @@ "name": "value" } ], - "___id": "T000002R051848", + "___id": "T000002R051829", "___s": true }, { @@ -662362,7 +664764,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R051849", + "___id": "T000002R051830", "___s": true }, { @@ -662450,7 +664852,7 @@ "name": "data" } ], - "___id": "T000002R051850", + "___id": "T000002R051831", "___s": true }, { @@ -662516,7 +664918,7 @@ "name": "amount" } ], - "___id": "T000002R051851", + "___id": "T000002R051832", "___s": true }, { @@ -662567,7 +664969,7 @@ "name": "key" } ], - "___id": "T000002R051852", + "___id": "T000002R051833", "___s": true }, { @@ -662635,7 +665037,7 @@ "name": "key" } ], - "___id": "T000002R051853", + "___id": "T000002R051834", "___s": true }, { @@ -662731,11 +665133,11 @@ "name": "dropZone" } ], - "___id": "T000002R051854", + "___id": "T000002R051835", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -662767,14 +665169,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R051855", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R051836", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -662803,14 +665222,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R051856", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R051837", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -662824,14 +665260,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R051857", + "___id": "T000002R051838", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -662845,14 +665281,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R051858", + "___id": "T000002R051839", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -662883,14 +665319,14 @@ "name": "args" } ], - "___id": "T000002R051859", + "___id": "T000002R051840", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -662918,14 +665354,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R051860", + "___id": "T000002R051841", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -662968,14 +665404,14 @@ "name": "camera" } ], - "___id": "T000002R051861", + "___id": "T000002R051842", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -663012,14 +665448,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R051862", + "___id": "T000002R051843", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -663078,14 +665514,14 @@ "name": "displayList" } ], - "___id": "T000002R051863", + "___id": "T000002R051844", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -663114,14 +665550,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R051864", + "___id": "T000002R051845", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -663154,14 +665590,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R051865", + "___id": "T000002R051846", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -663190,14 +665626,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R051866", + "___id": "T000002R051847", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -663231,7 +665667,7 @@ "name": "fromScene" } ], - "___id": "T000002R051867", + "___id": "T000002R051848", "___s": true }, { @@ -663252,7 +665688,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R051868", + "___id": "T000002R051849", "___s": true }, { @@ -663304,7 +665740,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R051869", + "___id": "T000002R051850", "___s": true }, { @@ -663373,7 +665809,7 @@ "name": "event" } ], - "___id": "T000002R051870", + "___id": "T000002R051851", "___s": true }, { @@ -663433,7 +665869,7 @@ "name": "event" } ], - "___id": "T000002R051871", + "___id": "T000002R051852", "___s": true }, { @@ -663508,7 +665944,7 @@ "name": "args" } ], - "___id": "T000002R051872", + "___id": "T000002R051853", "___s": true }, { @@ -663596,7 +666032,7 @@ "name": "context" } ], - "___id": "T000002R051873", + "___id": "T000002R051854", "___s": true }, { @@ -663684,7 +666120,7 @@ "name": "context" } ], - "___id": "T000002R051874", + "___id": "T000002R051855", "___s": true }, { @@ -663772,7 +666208,7 @@ "name": "context" } ], - "___id": "T000002R051875", + "___id": "T000002R051856", "___s": true }, { @@ -663874,7 +666310,7 @@ "name": "once" } ], - "___id": "T000002R051876", + "___id": "T000002R051857", "___s": true }, { @@ -663976,7 +666412,7 @@ "name": "once" } ], - "___id": "T000002R051877", + "___id": "T000002R051858", "___s": true }, { @@ -664038,7 +666474,7 @@ "name": "event" } ], - "___id": "T000002R051878", + "___id": "T000002R051859", "___s": true }, { @@ -664074,7 +666510,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R051880", + "___id": "T000002R051861", "___s": true }, { @@ -664127,7 +666563,7 @@ "name": "value" } ], - "___id": "T000002R051881", + "___id": "T000002R051862", "___s": true }, { @@ -664157,7 +666593,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R051882", + "___id": "T000002R051863", "___s": true }, { @@ -664202,7 +666638,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R051884", + "___id": "T000002R051865", "___s": true }, { @@ -664268,7 +666704,7 @@ "name": "value" } ], - "___id": "T000002R051885", + "___id": "T000002R051866", "___s": true }, { @@ -664298,7 +666734,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R051887", + "___id": "T000002R051868", "___s": true }, { @@ -664349,7 +666785,7 @@ "name": "value" } ], - "___id": "T000002R051888", + "___id": "T000002R051869", "___s": true }, { @@ -664385,7 +666821,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R051889", + "___id": "T000002R051870", "___s": true }, { @@ -664421,7 +666857,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R051890", + "___id": "T000002R051871", "___s": true }, { @@ -664472,7 +666908,7 @@ "name": "gameObject" } ], - "___id": "T000002R051891", + "___id": "T000002R051872", "___s": true }, { @@ -664523,7 +666959,7 @@ "name": "gameObject" } ], - "___id": "T000002R051892", + "___id": "T000002R051873", "___s": true }, { @@ -664597,7 +667033,7 @@ "name": "includeParent" } ], - "___id": "T000002R051894", + "___id": "T000002R051875", "___s": true }, { @@ -664671,7 +667107,7 @@ "name": "includeParent" } ], - "___id": "T000002R051895", + "___id": "T000002R051876", "___s": true }, { @@ -664745,7 +667181,7 @@ "name": "includeParent" } ], - "___id": "T000002R051896", + "___id": "T000002R051877", "___s": true }, { @@ -664819,7 +667255,7 @@ "name": "includeParent" } ], - "___id": "T000002R051897", + "___id": "T000002R051878", "___s": true }, { @@ -664893,7 +667329,7 @@ "name": "includeParent" } ], - "___id": "T000002R051898", + "___id": "T000002R051879", "___s": true }, { @@ -664967,7 +667403,7 @@ "name": "includeParent" } ], - "___id": "T000002R051899", + "___id": "T000002R051880", "___s": true }, { @@ -665041,7 +667477,7 @@ "name": "includeParent" } ], - "___id": "T000002R051900", + "___id": "T000002R051881", "___s": true }, { @@ -665115,7 +667551,7 @@ "name": "includeParent" } ], - "___id": "T000002R051901", + "___id": "T000002R051882", "___s": true }, { @@ -665189,7 +667625,7 @@ "name": "includeParent" } ], - "___id": "T000002R051902", + "___id": "T000002R051883", "___s": true }, { @@ -665268,7 +667704,7 @@ "name": "output" } ], - "___id": "T000002R051903", + "___id": "T000002R051884", "___s": true }, { @@ -665308,7 +667744,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R051904", + "___id": "T000002R051885", "___s": true }, { @@ -665369,7 +667805,7 @@ "name": "mask" } ], - "___id": "T000002R051905", + "___id": "T000002R051886", "___s": true }, { @@ -665422,7 +667858,7 @@ "name": "destroyMask" } ], - "___id": "T000002R051906", + "___id": "T000002R051887", "___s": true }, { @@ -665584,7 +668020,7 @@ "name": "frame" } ], - "___id": "T000002R051907", + "___id": "T000002R051888", "___s": true }, { @@ -665665,7 +668101,7 @@ "name": "graphics" } ], - "___id": "T000002R051908", + "___id": "T000002R051889", "___s": true }, { @@ -665697,7 +668133,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R051910", + "___id": "T000002R051891", "___s": true }, { @@ -665729,7 +668165,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R051911", + "___id": "T000002R051892", "___s": true }, { @@ -665759,7 +668195,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R051912", + "___id": "T000002R051893", "___s": true }, { @@ -665789,7 +668225,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R051913", + "___id": "T000002R051894", "___s": true }, { @@ -665857,7 +668293,7 @@ "name": "y" } ], - "___id": "T000002R051914", + "___id": "T000002R051895", "___s": true }, { @@ -665893,7 +668329,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R051915", + "___id": "T000002R051896", "___s": true }, { @@ -665961,7 +668397,7 @@ "name": "y" } ], - "___id": "T000002R051916", + "___id": "T000002R051897", "___s": true }, { @@ -665997,7 +668433,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R051917", + "___id": "T000002R051898", "___s": true }, { @@ -666035,7 +668471,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R051918", + "___id": "T000002R051899", "___s": true }, { @@ -666073,7 +668509,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R051919", + "___id": "T000002R051900", "___s": true }, { @@ -666110,7 +668546,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R051920", + "___id": "T000002R051901", "___s": true }, { @@ -666178,7 +668614,7 @@ "name": "pipeline" } ], - "___id": "T000002R051921", + "___id": "T000002R051902", "___s": true }, { @@ -666275,7 +668711,7 @@ "name": "copyData" } ], - "___id": "T000002R051922", + "___id": "T000002R051903", "___s": true }, { @@ -666347,7 +668783,7 @@ "name": "value" } ], - "___id": "T000002R051923", + "___id": "T000002R051904", "___s": true }, { @@ -666406,7 +668842,7 @@ "name": "resetData" } ], - "___id": "T000002R051924", + "___id": "T000002R051905", "___s": true }, { @@ -666450,7 +668886,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R051925", + "___id": "T000002R051906", "___s": true }, { @@ -666487,7 +668923,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R051926", + "___id": "T000002R051907", "___s": true }, { @@ -666533,7 +668969,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R051927", + "___id": "T000002R051908", "___s": true }, { @@ -666570,7 +669006,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R051928", + "___id": "T000002R051909", "___s": true }, { @@ -666609,7 +669045,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R051929", + "___id": "T000002R051910", "___s": true }, { @@ -666646,7 +669082,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R051930", + "___id": "T000002R051911", "___s": true }, { @@ -666691,7 +669127,7 @@ "name": "preFX" } ], - "___id": "T000002R051931", + "___id": "T000002R051912", "___s": true }, { @@ -666835,7 +669271,7 @@ "name": "copyData" } ], - "___id": "T000002R051932", + "___id": "T000002R051913", "___s": true }, { @@ -666907,7 +669343,7 @@ "name": "value" } ], - "___id": "T000002R051933", + "___id": "T000002R051914", "___s": true }, { @@ -666998,7 +669434,7 @@ "name": "pipeline" } ], - "___id": "T000002R051934", + "___id": "T000002R051915", "___s": true }, { @@ -667043,7 +669479,7 @@ "name": "resetData" } ], - "___id": "T000002R051935", + "___id": "T000002R051916", "___s": true }, { @@ -667111,7 +669547,7 @@ "name": "pipeline" } ], - "___id": "T000002R051936", + "___id": "T000002R051917", "___s": true }, { @@ -667154,7 +669590,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R051937", + "___id": "T000002R051918", "___s": true }, { @@ -667185,7 +669621,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R051938", + "___id": "T000002R051919", "___s": true }, { @@ -667216,7 +669652,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R051939", + "___id": "T000002R051920", "___s": true }, { @@ -667282,7 +669718,7 @@ "name": "y" } ], - "___id": "T000002R051940", + "___id": "T000002R051921", "___s": true }, { @@ -667314,7 +669750,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R051941", + "___id": "T000002R051922", "___s": true }, { @@ -667345,7 +669781,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R051945", + "___id": "T000002R051926", "___s": true }, { @@ -667376,7 +669812,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R051946", + "___id": "T000002R051927", "___s": true }, { @@ -667407,7 +669843,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R051947", + "___id": "T000002R051928", "___s": true }, { @@ -667438,7 +669874,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R051948", + "___id": "T000002R051929", "___s": true }, { @@ -667469,7 +669905,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R051949", + "___id": "T000002R051930", "___s": true }, { @@ -667500,7 +669936,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R051950", + "___id": "T000002R051931", "___s": true }, { @@ -667531,7 +669967,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R051951", + "___id": "T000002R051932", "___s": true }, { @@ -667562,7 +669998,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R051952", + "___id": "T000002R051933", "___s": true }, { @@ -667593,7 +670029,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R051953", + "___id": "T000002R051934", "___s": true }, { @@ -667691,7 +670127,7 @@ "name": "w" } ], - "___id": "T000002R051954", + "___id": "T000002R051935", "___s": true }, { @@ -667757,7 +670193,7 @@ "name": "source" } ], - "___id": "T000002R051955", + "___id": "T000002R051936", "___s": true }, { @@ -667853,7 +670289,7 @@ "name": "height" } ], - "___id": "T000002R051956", + "___id": "T000002R051937", "___s": true }, { @@ -667906,7 +670342,7 @@ "name": "radians" } ], - "___id": "T000002R051957", + "___id": "T000002R051938", "___s": true }, { @@ -667959,7 +670395,7 @@ "name": "degrees" } ], - "___id": "T000002R051958", + "___id": "T000002R051939", "___s": true }, { @@ -668027,7 +670463,7 @@ "name": "y" } ], - "___id": "T000002R051959", + "___id": "T000002R051940", "___s": true }, { @@ -668080,7 +670516,7 @@ "name": "value" } ], - "___id": "T000002R051960", + "___id": "T000002R051941", "___s": true }, { @@ -668133,7 +670569,7 @@ "name": "value" } ], - "___id": "T000002R051961", + "___id": "T000002R051942", "___s": true }, { @@ -668186,7 +670622,7 @@ "name": "value" } ], - "___id": "T000002R051962", + "___id": "T000002R051943", "___s": true }, { @@ -668239,7 +670675,7 @@ "name": "value" } ], - "___id": "T000002R051963", + "___id": "T000002R051944", "___s": true }, { @@ -668290,7 +670726,7 @@ "name": "tempMatrix" } ], - "___id": "T000002R051964", + "___id": "T000002R051945", "___s": true }, { @@ -668355,7 +670791,7 @@ "name": "parentMatrix" } ], - "___id": "T000002R051965", + "___id": "T000002R051946", "___s": true }, { @@ -668446,7 +670882,7 @@ "name": "camera" } ], - "___id": "T000002R051966", + "___id": "T000002R051947", "___s": true }, { @@ -668481,7 +670917,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R051967", + "___id": "T000002R051948", "___s": true }, { @@ -668511,7 +670947,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R051969", + "___id": "T000002R051950", "___s": true }, { @@ -668562,7 +670998,7 @@ "name": "value" } ], - "___id": "T000002R051970", + "___id": "T000002R051951", "___s": true }, { @@ -668592,7 +671028,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R051971", + "___id": "T000002R051952", "___s": true }, { @@ -668633,7 +671069,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R051972", + "___id": "T000002R051953", "___s": true }, { @@ -668663,7 +671099,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R051973", + "___id": "T000002R051954", "___s": true }, { @@ -668703,7 +671139,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R051974", + "___id": "T000002R051955", "___s": true }, { @@ -668733,7 +671169,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R051975", + "___id": "T000002R051956", "___s": true }, { @@ -668764,7 +671200,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R051976", + "___id": "T000002R051957", "___s": true }, { @@ -668795,7 +671231,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R051977", + "___id": "T000002R051958", "___s": true }, { @@ -668826,7 +671262,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R051978", + "___id": "T000002R051959", "___s": true }, { @@ -668857,7 +671293,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R051979", + "___id": "T000002R051960", "___s": true }, { @@ -668888,7 +671324,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R051980", + "___id": "T000002R051961", "___s": true }, { @@ -668922,7 +671358,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R051981", + "___id": "T000002R051962", "___s": true }, { @@ -668955,7 +671391,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R051982", + "___id": "T000002R051963", "___s": true }, { @@ -669003,7 +671439,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R051983", + "___id": "T000002R051964", "___s": true }, { @@ -669034,7 +671470,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R051984", + "___id": "T000002R051965", "___s": true }, { @@ -669085,7 +671521,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R051985", + "___id": "T000002R051966", "___s": true }, { @@ -669136,7 +671572,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R051986", + "___id": "T000002R051967", "___s": true }, { @@ -669197,7 +671633,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R051987", + "___id": "T000002R051968", "___s": true }, { @@ -669236,7 +671672,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R051988", + "___id": "T000002R051969", "___s": true }, { @@ -669324,7 +671760,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R051989", + "___id": "T000002R051970", "___s": true }, { @@ -669390,7 +671826,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R051990", + "___id": "T000002R051971", "___s": true }, { @@ -669441,7 +671877,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R051991", + "___id": "T000002R051972", "___s": true }, { @@ -669509,7 +671945,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R051992", + "___id": "T000002R051973", "___s": true }, { @@ -669605,11 +672041,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R051993", + "___id": "T000002R051974", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -669639,16 +672075,33 @@ ], "memberof": "Phaser.GameObjects.Text", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R051994", + "___id": "T000002R051975", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -669675,16 +672128,33 @@ ], "memberof": "Phaser.GameObjects.Text", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R051995", + "___id": "T000002R051976", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -669698,14 +672168,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R051996", + "___id": "T000002R051977", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -669719,14 +672189,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R051997", + "___id": "T000002R051978", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -669757,14 +672227,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R051998", + "___id": "T000002R051979", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -669807,14 +672277,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R051999", + "___id": "T000002R051980", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -669851,14 +672321,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R052000", + "___id": "T000002R051981", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -669917,14 +672387,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R052001", + "___id": "T000002R051982", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -669953,14 +672423,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R052002", + "___id": "T000002R051983", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -669993,14 +672463,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R052003", + "___id": "T000002R051984", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -670029,14 +672499,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R052004", + "___id": "T000002R051985", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -670070,7 +672540,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R052005", + "___id": "T000002R051986", "___s": true }, { @@ -670091,7 +672561,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R052006", + "___id": "T000002R051987", "___s": true }, { @@ -670143,7 +672613,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R052007", + "___id": "T000002R051988", "___s": true }, { @@ -670212,7 +672682,7 @@ "name": "event" } ], - "___id": "T000002R052008", + "___id": "T000002R051989", "___s": true }, { @@ -670272,7 +672742,7 @@ "name": "event" } ], - "___id": "T000002R052009", + "___id": "T000002R051990", "___s": true }, { @@ -670347,7 +672817,7 @@ "name": "args" } ], - "___id": "T000002R052010", + "___id": "T000002R051991", "___s": true }, { @@ -670435,7 +672905,7 @@ "name": "context" } ], - "___id": "T000002R052011", + "___id": "T000002R051992", "___s": true }, { @@ -670523,7 +672993,7 @@ "name": "context" } ], - "___id": "T000002R052012", + "___id": "T000002R051993", "___s": true }, { @@ -670611,7 +673081,7 @@ "name": "context" } ], - "___id": "T000002R052013", + "___id": "T000002R051994", "___s": true }, { @@ -670713,7 +673183,7 @@ "name": "once" } ], - "___id": "T000002R052014", + "___id": "T000002R051995", "___s": true }, { @@ -670815,7 +673285,7 @@ "name": "once" } ], - "___id": "T000002R052015", + "___id": "T000002R051996", "___s": true }, { @@ -670877,7 +673347,7 @@ "name": "event" } ], - "___id": "T000002R052016", + "___id": "T000002R051997", "___s": true }, { @@ -670913,7 +673383,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R052022", + "___id": "T000002R052003", "___s": true }, { @@ -671008,7 +673478,7 @@ ], "inherits": "Phaser.GameObjects.Components.Alpha#setAlpha", "inherited": true, - "___id": "T000002R052023", + "___id": "T000002R052004", "___s": true }, { @@ -671038,7 +673508,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, - "___id": "T000002R052024", + "___id": "T000002R052005", "___s": true }, { @@ -671075,7 +673545,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R052025", + "___id": "T000002R052006", "___s": true }, { @@ -671112,7 +673582,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R052026", + "___id": "T000002R052007", "___s": true }, { @@ -671149,7 +673619,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R052027", + "___id": "T000002R052008", "___s": true }, { @@ -671186,7 +673656,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R052028", + "___id": "T000002R052009", "___s": true }, { @@ -671231,7 +673701,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R052030", + "___id": "T000002R052011", "___s": true }, { @@ -671297,7 +673767,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R052031", + "___id": "T000002R052012", "___s": true }, { @@ -671327,7 +673797,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#displayWidth", "inherited": true, - "___id": "T000002R052032", + "___id": "T000002R052013", "___s": true }, { @@ -671357,7 +673827,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#displayHeight", "inherited": true, - "___id": "T000002R052033", + "___id": "T000002R052014", "___s": true }, { @@ -671421,7 +673891,7 @@ ], "inherits": "Phaser.GameObjects.Components.ComputedSize#setSize", "inherited": true, - "___id": "T000002R052034", + "___id": "T000002R052015", "___s": true }, { @@ -671485,7 +673955,7 @@ ], "inherits": "Phaser.GameObjects.Components.ComputedSize#setDisplaySize", "inherited": true, - "___id": "T000002R052035", + "___id": "T000002R052016", "___s": true }, { @@ -671525,7 +673995,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Crop#texture", "inherited": true, - "___id": "T000002R052036", + "___id": "T000002R052017", "___s": true }, { @@ -671555,7 +674025,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Crop#frame", "inherited": true, - "___id": "T000002R052037", + "___id": "T000002R052018", "___s": true }, { @@ -671585,7 +674055,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Crop#isCropped", "inherited": true, - "___id": "T000002R052038", + "___id": "T000002R052019", "___s": true }, { @@ -671689,7 +674159,7 @@ ], "inherits": "Phaser.GameObjects.Components.Crop#setCrop", "inherited": true, - "___id": "T000002R052039", + "___id": "T000002R052020", "___s": true }, { @@ -671719,7 +674189,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R052042", + "___id": "T000002R052023", "___s": true }, { @@ -671770,7 +674240,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R052043", + "___id": "T000002R052024", "___s": true }, { @@ -671806,7 +674276,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R052044", + "___id": "T000002R052025", "___s": true }, { @@ -671842,7 +674312,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R052045", + "___id": "T000002R052026", "___s": true }, { @@ -671893,7 +674363,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R052046", + "___id": "T000002R052027", "___s": true }, { @@ -671944,7 +674414,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R052047", + "___id": "T000002R052028", "___s": true }, { @@ -671975,7 +674445,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, - "___id": "T000002R052048", + "___id": "T000002R052029", "___s": true }, { @@ -672006,7 +674476,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, - "___id": "T000002R052049", + "___id": "T000002R052030", "___s": true }, { @@ -672042,7 +674512,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, - "___id": "T000002R052050", + "___id": "T000002R052031", "___s": true }, { @@ -672078,7 +674548,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, - "___id": "T000002R052051", + "___id": "T000002R052032", "___s": true }, { @@ -672129,7 +674599,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipX", "inherited": true, - "___id": "T000002R052052", + "___id": "T000002R052033", "___s": true }, { @@ -672180,7 +674650,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipY", "inherited": true, - "___id": "T000002R052053", + "___id": "T000002R052034", "___s": true }, { @@ -672244,7 +674714,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlip", "inherited": true, - "___id": "T000002R052054", + "___id": "T000002R052035", "___s": true }, { @@ -672280,7 +674750,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, - "___id": "T000002R052055", + "___id": "T000002R052036", "___s": true }, { @@ -672354,7 +674824,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getCenter", "inherited": true, - "___id": "T000002R052057", + "___id": "T000002R052038", "___s": true }, { @@ -672428,7 +674898,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "inherited": true, - "___id": "T000002R052058", + "___id": "T000002R052039", "___s": true }, { @@ -672502,7 +674972,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "inherited": true, - "___id": "T000002R052059", + "___id": "T000002R052040", "___s": true }, { @@ -672576,7 +675046,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopRight", "inherited": true, - "___id": "T000002R052060", + "___id": "T000002R052041", "___s": true }, { @@ -672650,7 +675120,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "inherited": true, - "___id": "T000002R052061", + "___id": "T000002R052042", "___s": true }, { @@ -672724,7 +675194,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "inherited": true, - "___id": "T000002R052062", + "___id": "T000002R052043", "___s": true }, { @@ -672798,7 +675268,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "inherited": true, - "___id": "T000002R052063", + "___id": "T000002R052044", "___s": true }, { @@ -672872,7 +675342,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "inherited": true, - "___id": "T000002R052064", + "___id": "T000002R052045", "___s": true }, { @@ -672946,7 +675416,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "inherited": true, - "___id": "T000002R052065", + "___id": "T000002R052046", "___s": true }, { @@ -673025,7 +675495,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBounds", "inherited": true, - "___id": "T000002R052066", + "___id": "T000002R052047", "___s": true }, { @@ -673065,7 +675535,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R052067", + "___id": "T000002R052048", "___s": true }, { @@ -673126,7 +675596,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R052068", + "___id": "T000002R052049", "___s": true }, { @@ -673179,7 +675649,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R052069", + "___id": "T000002R052050", "___s": true }, { @@ -673341,7 +675811,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R052070", + "___id": "T000002R052051", "___s": true }, { @@ -673422,7 +675892,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R052071", + "___id": "T000002R052052", "___s": true }, { @@ -673454,7 +675924,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R052073", + "___id": "T000002R052054", "___s": true }, { @@ -673486,7 +675956,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R052074", + "___id": "T000002R052055", "___s": true }, { @@ -673516,7 +675986,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R052075", + "___id": "T000002R052056", "___s": true }, { @@ -673546,7 +676016,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R052076", + "___id": "T000002R052057", "___s": true }, { @@ -673614,7 +676084,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R052077", + "___id": "T000002R052058", "___s": true }, { @@ -673650,7 +676120,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R052078", + "___id": "T000002R052059", "___s": true }, { @@ -673718,7 +676188,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R052079", + "___id": "T000002R052060", "___s": true }, { @@ -673754,7 +676224,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R052080", + "___id": "T000002R052061", "___s": true }, { @@ -673792,7 +676262,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R052081", + "___id": "T000002R052062", "___s": true }, { @@ -673830,7 +676300,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R052082", + "___id": "T000002R052063", "___s": true }, { @@ -673867,7 +676337,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R052083", + "___id": "T000002R052064", "___s": true }, { @@ -673935,7 +676405,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R052084", + "___id": "T000002R052065", "___s": true }, { @@ -674032,7 +676502,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R052085", + "___id": "T000002R052066", "___s": true }, { @@ -674104,7 +676574,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R052086", + "___id": "T000002R052067", "___s": true }, { @@ -674163,7 +676633,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R052087", + "___id": "T000002R052068", "___s": true }, { @@ -674207,7 +676677,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R052088", + "___id": "T000002R052069", "___s": true }, { @@ -674244,7 +676714,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R052089", + "___id": "T000002R052070", "___s": true }, { @@ -674290,7 +676760,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R052090", + "___id": "T000002R052071", "___s": true }, { @@ -674327,7 +676797,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R052091", + "___id": "T000002R052072", "___s": true }, { @@ -674366,7 +676836,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R052092", + "___id": "T000002R052073", "___s": true }, { @@ -674403,7 +676873,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R052093", + "___id": "T000002R052074", "___s": true }, { @@ -674448,7 +676918,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R052094", + "___id": "T000002R052075", "___s": true }, { @@ -674592,7 +677062,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R052095", + "___id": "T000002R052076", "___s": true }, { @@ -674664,7 +677134,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R052096", + "___id": "T000002R052077", "___s": true }, { @@ -674755,7 +677225,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R052097", + "___id": "T000002R052078", "___s": true }, { @@ -674800,7 +677270,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R052098", + "___id": "T000002R052079", "___s": true }, { @@ -674868,7 +677338,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R052099", + "___id": "T000002R052080", "___s": true }, { @@ -674911,7 +677381,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R052100", + "___id": "T000002R052081", "___s": true }, { @@ -674942,7 +677412,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R052101", + "___id": "T000002R052082", "___s": true }, { @@ -674973,7 +677443,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R052102", + "___id": "T000002R052083", "___s": true }, { @@ -675039,7 +677509,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R052103", + "___id": "T000002R052084", "___s": true }, { @@ -675070,7 +677540,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, - "___id": "T000002R052104", + "___id": "T000002R052085", "___s": true }, { @@ -675101,7 +677571,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, - "___id": "T000002R052105", + "___id": "T000002R052086", "___s": true }, { @@ -675132,7 +677602,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, - "___id": "T000002R052106", + "___id": "T000002R052087", "___s": true }, { @@ -675163,7 +677633,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, - "___id": "T000002R052107", + "___id": "T000002R052088", "___s": true }, { @@ -675194,7 +677664,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, - "___id": "T000002R052108", + "___id": "T000002R052089", "___s": true }, { @@ -675237,7 +677707,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, - "___id": "T000002R052109", + "___id": "T000002R052090", "___s": true }, { @@ -675339,7 +677809,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTint", "inherited": true, - "___id": "T000002R052110", + "___id": "T000002R052091", "___s": true }, { @@ -675441,7 +677911,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTintFill", "inherited": true, - "___id": "T000002R052111", + "___id": "T000002R052092", "___s": true }, { @@ -675478,7 +677948,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, - "___id": "T000002R052112", + "___id": "T000002R052093", "___s": true }, { @@ -675516,7 +677986,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, - "___id": "T000002R052113", + "___id": "T000002R052094", "___s": true }, { @@ -675548,7 +678018,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R052114", + "___id": "T000002R052095", "___s": true }, { @@ -675579,7 +678049,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R052118", + "___id": "T000002R052099", "___s": true }, { @@ -675610,7 +678080,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R052119", + "___id": "T000002R052100", "___s": true }, { @@ -675641,7 +678111,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R052120", + "___id": "T000002R052101", "___s": true }, { @@ -675672,7 +678142,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R052121", + "___id": "T000002R052102", "___s": true }, { @@ -675703,7 +678173,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R052122", + "___id": "T000002R052103", "___s": true }, { @@ -675734,7 +678204,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R052123", + "___id": "T000002R052104", "___s": true }, { @@ -675765,7 +678235,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R052124", + "___id": "T000002R052105", "___s": true }, { @@ -675796,7 +678266,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R052125", + "___id": "T000002R052106", "___s": true }, { @@ -675827,7 +678297,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R052126", + "___id": "T000002R052107", "___s": true }, { @@ -675925,7 +678395,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R052127", + "___id": "T000002R052108", "___s": true }, { @@ -675991,7 +678461,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R052128", + "___id": "T000002R052109", "___s": true }, { @@ -676087,7 +678557,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R052129", + "___id": "T000002R052110", "___s": true }, { @@ -676140,7 +678610,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R052130", + "___id": "T000002R052111", "___s": true }, { @@ -676193,7 +678663,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R052131", + "___id": "T000002R052112", "___s": true }, { @@ -676261,7 +678731,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R052132", + "___id": "T000002R052113", "___s": true }, { @@ -676314,7 +678784,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R052133", + "___id": "T000002R052114", "___s": true }, { @@ -676367,7 +678837,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R052134", + "___id": "T000002R052115", "___s": true }, { @@ -676420,7 +678890,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R052135", + "___id": "T000002R052116", "___s": true }, { @@ -676473,7 +678943,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R052136", + "___id": "T000002R052117", "___s": true }, { @@ -676524,7 +678994,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R052137", + "___id": "T000002R052118", "___s": true }, { @@ -676589,7 +679059,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R052138", + "___id": "T000002R052119", "___s": true }, { @@ -676680,7 +679150,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R052139", + "___id": "T000002R052120", "___s": true }, { @@ -676715,7 +679185,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R052140", + "___id": "T000002R052121", "___s": true }, { @@ -676745,7 +679215,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R052142", + "___id": "T000002R052123", "___s": true }, { @@ -676796,7 +679266,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R052143", + "___id": "T000002R052124", "___s": true }, { @@ -676826,7 +679296,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R052144", + "___id": "T000002R052125", "___s": true }, { @@ -676867,7 +679337,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R052145", + "___id": "T000002R052126", "___s": true }, { @@ -676897,7 +679367,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R052146", + "___id": "T000002R052127", "___s": true }, { @@ -676937,7 +679407,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R052147", + "___id": "T000002R052128", "___s": true }, { @@ -676967,7 +679437,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R052148", + "___id": "T000002R052129", "___s": true }, { @@ -676998,7 +679468,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R052149", + "___id": "T000002R052130", "___s": true }, { @@ -677029,7 +679499,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R052150", + "___id": "T000002R052131", "___s": true }, { @@ -677060,7 +679530,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R052151", + "___id": "T000002R052132", "___s": true }, { @@ -677091,7 +679561,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R052152", + "___id": "T000002R052133", "___s": true }, { @@ -677122,7 +679592,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R052153", + "___id": "T000002R052134", "___s": true }, { @@ -677156,7 +679626,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R052154", + "___id": "T000002R052135", "___s": true }, { @@ -677189,7 +679659,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R052155", + "___id": "T000002R052136", "___s": true }, { @@ -677237,7 +679707,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R052156", + "___id": "T000002R052137", "___s": true }, { @@ -677268,7 +679738,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R052157", + "___id": "T000002R052138", "___s": true }, { @@ -677319,7 +679789,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R052158", + "___id": "T000002R052139", "___s": true }, { @@ -677370,7 +679840,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R052159", + "___id": "T000002R052140", "___s": true }, { @@ -677431,7 +679901,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R052160", + "___id": "T000002R052141", "___s": true }, { @@ -677470,7 +679940,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R052161", + "___id": "T000002R052142", "___s": true }, { @@ -677558,7 +680028,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R052162", + "___id": "T000002R052143", "___s": true }, { @@ -677624,7 +680094,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R052163", + "___id": "T000002R052144", "___s": true }, { @@ -677675,7 +680145,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R052164", + "___id": "T000002R052145", "___s": true }, { @@ -677743,7 +680213,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R052165", + "___id": "T000002R052146", "___s": true }, { @@ -677839,11 +680309,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R052166", + "___id": "T000002R052147", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -677873,16 +680343,33 @@ ], "memberof": "Phaser.GameObjects.TileSprite", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R052167", + "___id": "T000002R052148", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -677909,16 +680396,33 @@ ], "memberof": "Phaser.GameObjects.TileSprite", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R052168", + "___id": "T000002R052149", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -677932,14 +680436,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R052169", + "___id": "T000002R052150", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -677953,14 +680457,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R052170", + "___id": "T000002R052151", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -677991,14 +680495,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R052171", + "___id": "T000002R052152", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -678026,14 +680530,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R052172", + "___id": "T000002R052153", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -678076,14 +680580,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R052173", + "___id": "T000002R052154", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -678120,14 +680624,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R052174", + "___id": "T000002R052155", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -678186,14 +680690,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R052175", + "___id": "T000002R052156", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -678222,14 +680726,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R052176", + "___id": "T000002R052157", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -678262,14 +680766,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R052177", + "___id": "T000002R052158", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -678298,14 +680802,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R052178", + "___id": "T000002R052159", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -678339,7 +680843,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R052179", + "___id": "T000002R052160", "___s": true }, { @@ -678360,7 +680864,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R052180", + "___id": "T000002R052161", "___s": true }, { @@ -678412,7 +680916,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R052181", + "___id": "T000002R052162", "___s": true }, { @@ -678481,7 +680985,7 @@ "name": "event" } ], - "___id": "T000002R052182", + "___id": "T000002R052163", "___s": true }, { @@ -678541,7 +681045,7 @@ "name": "event" } ], - "___id": "T000002R052183", + "___id": "T000002R052164", "___s": true }, { @@ -678616,7 +681120,7 @@ "name": "args" } ], - "___id": "T000002R052184", + "___id": "T000002R052165", "___s": true }, { @@ -678704,7 +681208,7 @@ "name": "context" } ], - "___id": "T000002R052185", + "___id": "T000002R052166", "___s": true }, { @@ -678792,7 +681296,7 @@ "name": "context" } ], - "___id": "T000002R052186", + "___id": "T000002R052167", "___s": true }, { @@ -678880,7 +681384,7 @@ "name": "context" } ], - "___id": "T000002R052187", + "___id": "T000002R052168", "___s": true }, { @@ -678982,7 +681486,7 @@ "name": "once" } ], - "___id": "T000002R052188", + "___id": "T000002R052169", "___s": true }, { @@ -679084,7 +681588,7 @@ "name": "once" } ], - "___id": "T000002R052189", + "___id": "T000002R052170", "___s": true }, { @@ -679146,7 +681650,7 @@ "name": "event" } ], - "___id": "T000002R052190", + "___id": "T000002R052171", "___s": true }, { @@ -679182,7 +681686,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R052196", + "___id": "T000002R052177", "___s": true }, { @@ -679277,7 +681781,7 @@ ], "inherits": "Phaser.GameObjects.Components.Alpha#setAlpha", "inherited": true, - "___id": "T000002R052197", + "___id": "T000002R052178", "___s": true }, { @@ -679307,7 +681811,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, - "___id": "T000002R052198", + "___id": "T000002R052179", "___s": true }, { @@ -679344,7 +681848,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R052199", + "___id": "T000002R052180", "___s": true }, { @@ -679381,7 +681885,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R052200", + "___id": "T000002R052181", "___s": true }, { @@ -679418,7 +681922,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R052201", + "___id": "T000002R052182", "___s": true }, { @@ -679455,7 +681959,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R052202", + "___id": "T000002R052183", "___s": true }, { @@ -679500,7 +682004,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R052204", + "___id": "T000002R052185", "___s": true }, { @@ -679566,7 +682070,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R052205", + "___id": "T000002R052186", "___s": true }, { @@ -679596,7 +682100,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#width", "inherited": true, - "___id": "T000002R052206", + "___id": "T000002R052187", "___s": true }, { @@ -679626,7 +682130,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#height", "inherited": true, - "___id": "T000002R052207", + "___id": "T000002R052188", "___s": true }, { @@ -679656,7 +682160,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#displayWidth", "inherited": true, - "___id": "T000002R052208", + "___id": "T000002R052189", "___s": true }, { @@ -679686,7 +682190,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#displayHeight", "inherited": true, - "___id": "T000002R052209", + "___id": "T000002R052190", "___s": true }, { @@ -679750,7 +682254,7 @@ ], "inherits": "Phaser.GameObjects.Components.ComputedSize#setSize", "inherited": true, - "___id": "T000002R052210", + "___id": "T000002R052191", "___s": true }, { @@ -679814,7 +682318,7 @@ ], "inherits": "Phaser.GameObjects.Components.ComputedSize#setDisplaySize", "inherited": true, - "___id": "T000002R052211", + "___id": "T000002R052192", "___s": true }, { @@ -679844,7 +682348,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Crop#isCropped", "inherited": true, - "___id": "T000002R052212", + "___id": "T000002R052193", "___s": true }, { @@ -679948,7 +682452,7 @@ ], "inherits": "Phaser.GameObjects.Components.Crop#setCrop", "inherited": true, - "___id": "T000002R052213", + "___id": "T000002R052194", "___s": true }, { @@ -679978,7 +682482,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R052216", + "___id": "T000002R052197", "___s": true }, { @@ -680029,7 +682533,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R052217", + "___id": "T000002R052198", "___s": true }, { @@ -680065,7 +682569,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R052218", + "___id": "T000002R052199", "___s": true }, { @@ -680101,7 +682605,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R052219", + "___id": "T000002R052200", "___s": true }, { @@ -680152,7 +682656,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R052220", + "___id": "T000002R052201", "___s": true }, { @@ -680203,7 +682707,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R052221", + "___id": "T000002R052202", "___s": true }, { @@ -680234,7 +682738,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, - "___id": "T000002R052222", + "___id": "T000002R052203", "___s": true }, { @@ -680265,7 +682769,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, - "___id": "T000002R052223", + "___id": "T000002R052204", "___s": true }, { @@ -680301,7 +682805,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, - "___id": "T000002R052224", + "___id": "T000002R052205", "___s": true }, { @@ -680337,7 +682841,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, - "___id": "T000002R052225", + "___id": "T000002R052206", "___s": true }, { @@ -680388,7 +682892,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipX", "inherited": true, - "___id": "T000002R052226", + "___id": "T000002R052207", "___s": true }, { @@ -680439,7 +682943,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipY", "inherited": true, - "___id": "T000002R052227", + "___id": "T000002R052208", "___s": true }, { @@ -680503,7 +683007,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlip", "inherited": true, - "___id": "T000002R052228", + "___id": "T000002R052209", "___s": true }, { @@ -680539,7 +683043,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, - "___id": "T000002R052229", + "___id": "T000002R052210", "___s": true }, { @@ -680613,7 +683117,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getCenter", "inherited": true, - "___id": "T000002R052231", + "___id": "T000002R052212", "___s": true }, { @@ -680687,7 +683191,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "inherited": true, - "___id": "T000002R052232", + "___id": "T000002R052213", "___s": true }, { @@ -680761,7 +683265,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "inherited": true, - "___id": "T000002R052233", + "___id": "T000002R052214", "___s": true }, { @@ -680835,7 +683339,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopRight", "inherited": true, - "___id": "T000002R052234", + "___id": "T000002R052215", "___s": true }, { @@ -680909,7 +683413,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "inherited": true, - "___id": "T000002R052235", + "___id": "T000002R052216", "___s": true }, { @@ -680983,7 +683487,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "inherited": true, - "___id": "T000002R052236", + "___id": "T000002R052217", "___s": true }, { @@ -681057,7 +683561,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "inherited": true, - "___id": "T000002R052237", + "___id": "T000002R052218", "___s": true }, { @@ -681131,7 +683635,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "inherited": true, - "___id": "T000002R052238", + "___id": "T000002R052219", "___s": true }, { @@ -681205,7 +683709,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "inherited": true, - "___id": "T000002R052239", + "___id": "T000002R052220", "___s": true }, { @@ -681284,7 +683788,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBounds", "inherited": true, - "___id": "T000002R052240", + "___id": "T000002R052221", "___s": true }, { @@ -681324,7 +683828,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R052241", + "___id": "T000002R052222", "___s": true }, { @@ -681385,7 +683889,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R052242", + "___id": "T000002R052223", "___s": true }, { @@ -681438,7 +683942,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R052243", + "___id": "T000002R052224", "___s": true }, { @@ -681600,7 +684104,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R052244", + "___id": "T000002R052225", "___s": true }, { @@ -681681,7 +684185,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R052245", + "___id": "T000002R052226", "___s": true }, { @@ -681713,7 +684217,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R052247", + "___id": "T000002R052228", "___s": true }, { @@ -681745,7 +684249,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R052248", + "___id": "T000002R052229", "___s": true }, { @@ -681775,7 +684279,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R052249", + "___id": "T000002R052230", "___s": true }, { @@ -681805,7 +684309,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R052250", + "___id": "T000002R052231", "___s": true }, { @@ -681873,7 +684377,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R052251", + "___id": "T000002R052232", "___s": true }, { @@ -681909,7 +684413,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R052252", + "___id": "T000002R052233", "___s": true }, { @@ -681977,7 +684481,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R052253", + "___id": "T000002R052234", "___s": true }, { @@ -682013,7 +684517,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R052254", + "___id": "T000002R052235", "___s": true }, { @@ -682051,7 +684555,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R052255", + "___id": "T000002R052236", "___s": true }, { @@ -682089,7 +684593,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R052256", + "___id": "T000002R052237", "___s": true }, { @@ -682126,7 +684630,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R052257", + "___id": "T000002R052238", "___s": true }, { @@ -682194,7 +684698,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R052258", + "___id": "T000002R052239", "___s": true }, { @@ -682291,7 +684795,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R052259", + "___id": "T000002R052240", "___s": true }, { @@ -682363,7 +684867,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R052260", + "___id": "T000002R052241", "___s": true }, { @@ -682422,7 +684926,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R052261", + "___id": "T000002R052242", "___s": true }, { @@ -682466,7 +684970,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R052262", + "___id": "T000002R052243", "___s": true }, { @@ -682503,7 +685007,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R052263", + "___id": "T000002R052244", "___s": true }, { @@ -682549,7 +685053,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R052264", + "___id": "T000002R052245", "___s": true }, { @@ -682586,7 +685090,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R052265", + "___id": "T000002R052246", "___s": true }, { @@ -682625,7 +685129,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R052266", + "___id": "T000002R052247", "___s": true }, { @@ -682662,7 +685166,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R052267", + "___id": "T000002R052248", "___s": true }, { @@ -682707,7 +685211,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R052268", + "___id": "T000002R052249", "___s": true }, { @@ -682851,7 +685355,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R052269", + "___id": "T000002R052250", "___s": true }, { @@ -682923,7 +685427,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R052270", + "___id": "T000002R052251", "___s": true }, { @@ -683014,7 +685518,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R052271", + "___id": "T000002R052252", "___s": true }, { @@ -683059,7 +685563,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R052272", + "___id": "T000002R052253", "___s": true }, { @@ -683127,7 +685631,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R052273", + "___id": "T000002R052254", "___s": true }, { @@ -683170,7 +685674,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R052274", + "___id": "T000002R052255", "___s": true }, { @@ -683201,7 +685705,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R052275", + "___id": "T000002R052256", "___s": true }, { @@ -683232,7 +685736,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R052276", + "___id": "T000002R052257", "___s": true }, { @@ -683298,7 +685802,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R052277", + "___id": "T000002R052258", "___s": true }, { @@ -683329,7 +685833,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, - "___id": "T000002R052278", + "___id": "T000002R052259", "___s": true }, { @@ -683360,7 +685864,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, - "___id": "T000002R052279", + "___id": "T000002R052260", "___s": true }, { @@ -683391,7 +685895,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, - "___id": "T000002R052280", + "___id": "T000002R052261", "___s": true }, { @@ -683422,7 +685926,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, - "___id": "T000002R052281", + "___id": "T000002R052262", "___s": true }, { @@ -683453,7 +685957,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, - "___id": "T000002R052282", + "___id": "T000002R052263", "___s": true }, { @@ -683496,7 +686000,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, - "___id": "T000002R052283", + "___id": "T000002R052264", "___s": true }, { @@ -683598,7 +686102,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTint", "inherited": true, - "___id": "T000002R052284", + "___id": "T000002R052265", "___s": true }, { @@ -683700,7 +686204,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTintFill", "inherited": true, - "___id": "T000002R052285", + "___id": "T000002R052266", "___s": true }, { @@ -683737,7 +686241,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, - "___id": "T000002R052286", + "___id": "T000002R052267", "___s": true }, { @@ -683775,7 +686279,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, - "___id": "T000002R052287", + "___id": "T000002R052268", "___s": true }, { @@ -683807,7 +686311,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R052288", + "___id": "T000002R052269", "___s": true }, { @@ -683838,7 +686342,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R052292", + "___id": "T000002R052273", "___s": true }, { @@ -683869,7 +686373,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R052293", + "___id": "T000002R052274", "___s": true }, { @@ -683900,7 +686404,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R052294", + "___id": "T000002R052275", "___s": true }, { @@ -683931,7 +686435,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R052295", + "___id": "T000002R052276", "___s": true }, { @@ -683962,7 +686466,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R052296", + "___id": "T000002R052277", "___s": true }, { @@ -683993,7 +686497,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R052297", + "___id": "T000002R052278", "___s": true }, { @@ -684024,7 +686528,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R052298", + "___id": "T000002R052279", "___s": true }, { @@ -684055,7 +686559,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R052299", + "___id": "T000002R052280", "___s": true }, { @@ -684086,7 +686590,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R052300", + "___id": "T000002R052281", "___s": true }, { @@ -684184,7 +686688,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R052301", + "___id": "T000002R052282", "___s": true }, { @@ -684250,7 +686754,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R052302", + "___id": "T000002R052283", "___s": true }, { @@ -684346,7 +686850,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R052303", + "___id": "T000002R052284", "___s": true }, { @@ -684399,7 +686903,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R052304", + "___id": "T000002R052285", "___s": true }, { @@ -684452,7 +686956,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R052305", + "___id": "T000002R052286", "___s": true }, { @@ -684520,7 +687024,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R052306", + "___id": "T000002R052287", "___s": true }, { @@ -684573,7 +687077,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R052307", + "___id": "T000002R052288", "___s": true }, { @@ -684626,7 +687130,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R052308", + "___id": "T000002R052289", "___s": true }, { @@ -684679,7 +687183,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R052309", + "___id": "T000002R052290", "___s": true }, { @@ -684732,7 +687236,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R052310", + "___id": "T000002R052291", "___s": true }, { @@ -684783,7 +687287,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R052311", + "___id": "T000002R052292", "___s": true }, { @@ -684848,7 +687352,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R052312", + "___id": "T000002R052293", "___s": true }, { @@ -684939,7 +687443,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R052313", + "___id": "T000002R052294", "___s": true }, { @@ -684974,7 +687478,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R052314", + "___id": "T000002R052295", "___s": true }, { @@ -685004,7 +687508,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R052316", + "___id": "T000002R052297", "___s": true }, { @@ -685055,7 +687559,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R052317", + "___id": "T000002R052298", "___s": true }, { @@ -685085,7 +687589,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R052318", + "___id": "T000002R052299", "___s": true }, { @@ -685126,7 +687630,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R052319", + "___id": "T000002R052300", "___s": true }, { @@ -685156,7 +687660,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R052320", + "___id": "T000002R052301", "___s": true }, { @@ -685196,7 +687700,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R052321", + "___id": "T000002R052302", "___s": true }, { @@ -685226,7 +687730,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R052322", + "___id": "T000002R052303", "___s": true }, { @@ -685257,7 +687761,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R052323", + "___id": "T000002R052304", "___s": true }, { @@ -685288,7 +687792,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R052324", + "___id": "T000002R052305", "___s": true }, { @@ -685319,7 +687823,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R052325", + "___id": "T000002R052306", "___s": true }, { @@ -685350,7 +687854,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R052326", + "___id": "T000002R052307", "___s": true }, { @@ -685381,7 +687885,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R052327", + "___id": "T000002R052308", "___s": true }, { @@ -685415,7 +687919,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R052328", + "___id": "T000002R052309", "___s": true }, { @@ -685448,7 +687952,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R052329", + "___id": "T000002R052310", "___s": true }, { @@ -685496,7 +688000,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R052330", + "___id": "T000002R052311", "___s": true }, { @@ -685527,7 +688031,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R052331", + "___id": "T000002R052312", "___s": true }, { @@ -685578,7 +688082,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R052332", + "___id": "T000002R052313", "___s": true }, { @@ -685629,7 +688133,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R052333", + "___id": "T000002R052314", "___s": true }, { @@ -685690,7 +688194,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R052334", + "___id": "T000002R052315", "___s": true }, { @@ -685729,7 +688233,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R052335", + "___id": "T000002R052316", "___s": true }, { @@ -685817,7 +688321,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R052336", + "___id": "T000002R052317", "___s": true }, { @@ -685883,7 +688387,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R052337", + "___id": "T000002R052318", "___s": true }, { @@ -685934,7 +688438,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R052338", + "___id": "T000002R052319", "___s": true }, { @@ -686002,7 +688506,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R052339", + "___id": "T000002R052320", "___s": true }, { @@ -686098,11 +688602,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R052340", + "___id": "T000002R052321", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -686132,16 +688636,33 @@ ], "memberof": "Phaser.GameObjects.Video", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R052341", + "___id": "T000002R052322", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -686168,16 +688689,33 @@ ], "memberof": "Phaser.GameObjects.Video", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R052342", + "___id": "T000002R052323", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -686191,14 +688729,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R052343", + "___id": "T000002R052324", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -686212,14 +688750,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R052344", + "___id": "T000002R052325", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -686250,14 +688788,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R052345", + "___id": "T000002R052326", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -686285,14 +688823,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R052346", + "___id": "T000002R052327", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -686335,14 +688873,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R052347", + "___id": "T000002R052328", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -686379,14 +688917,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R052348", + "___id": "T000002R052329", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -686445,14 +688983,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R052349", + "___id": "T000002R052330", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -686481,14 +689019,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R052350", + "___id": "T000002R052331", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -686521,14 +689059,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R052351", + "___id": "T000002R052332", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -686557,14 +689095,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R052352", + "___id": "T000002R052333", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -686598,7 +689136,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R052353", + "___id": "T000002R052334", "___s": true }, { @@ -686619,7 +689157,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R052354", + "___id": "T000002R052335", "___s": true }, { @@ -686671,7 +689209,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R052355", + "___id": "T000002R052336", "___s": true }, { @@ -686740,7 +689278,7 @@ "name": "event" } ], - "___id": "T000002R052356", + "___id": "T000002R052337", "___s": true }, { @@ -686800,7 +689338,7 @@ "name": "event" } ], - "___id": "T000002R052357", + "___id": "T000002R052338", "___s": true }, { @@ -686875,7 +689413,7 @@ "name": "args" } ], - "___id": "T000002R052358", + "___id": "T000002R052339", "___s": true }, { @@ -686963,7 +689501,7 @@ "name": "context" } ], - "___id": "T000002R052359", + "___id": "T000002R052340", "___s": true }, { @@ -687051,7 +689589,7 @@ "name": "context" } ], - "___id": "T000002R052360", + "___id": "T000002R052341", "___s": true }, { @@ -687139,7 +689677,7 @@ "name": "context" } ], - "___id": "T000002R052361", + "___id": "T000002R052342", "___s": true }, { @@ -687241,7 +689779,7 @@ "name": "once" } ], - "___id": "T000002R052362", + "___id": "T000002R052343", "___s": true }, { @@ -687343,7 +689881,7 @@ "name": "once" } ], - "___id": "T000002R052363", + "___id": "T000002R052344", "___s": true }, { @@ -687405,7 +689943,7 @@ "name": "event" } ], - "___id": "T000002R052364", + "___id": "T000002R052345", "___s": true }, { @@ -687441,7 +689979,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R052370", + "___id": "T000002R052351", "___s": true }, { @@ -687536,7 +690074,7 @@ ], "inherits": "Phaser.GameObjects.Components.Alpha#setAlpha", "inherited": true, - "___id": "T000002R052371", + "___id": "T000002R052352", "___s": true }, { @@ -687566,7 +690104,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, - "___id": "T000002R052372", + "___id": "T000002R052353", "___s": true }, { @@ -687603,7 +690141,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R052373", + "___id": "T000002R052354", "___s": true }, { @@ -687640,7 +690178,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R052374", + "___id": "T000002R052355", "___s": true }, { @@ -687677,7 +690215,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R052375", + "___id": "T000002R052356", "___s": true }, { @@ -687714,7 +690252,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R052376", + "___id": "T000002R052357", "___s": true }, { @@ -687759,7 +690297,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R052378", + "___id": "T000002R052359", "___s": true }, { @@ -687825,7 +690363,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R052379", + "___id": "T000002R052360", "___s": true }, { @@ -687855,7 +690393,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#width", "inherited": true, - "___id": "T000002R052380", + "___id": "T000002R052361", "___s": true }, { @@ -687885,7 +690423,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#height", "inherited": true, - "___id": "T000002R052381", + "___id": "T000002R052362", "___s": true }, { @@ -687915,7 +690453,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#displayWidth", "inherited": true, - "___id": "T000002R052382", + "___id": "T000002R052363", "___s": true }, { @@ -687945,7 +690483,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#displayHeight", "inherited": true, - "___id": "T000002R052383", + "___id": "T000002R052364", "___s": true }, { @@ -688009,7 +690547,7 @@ ], "inherits": "Phaser.GameObjects.Components.ComputedSize#setSize", "inherited": true, - "___id": "T000002R052384", + "___id": "T000002R052365", "___s": true }, { @@ -688073,7 +690611,7 @@ ], "inherits": "Phaser.GameObjects.Components.ComputedSize#setDisplaySize", "inherited": true, - "___id": "T000002R052385", + "___id": "T000002R052366", "___s": true }, { @@ -688103,7 +690641,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R052387", + "___id": "T000002R052368", "___s": true }, { @@ -688154,7 +690692,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R052388", + "___id": "T000002R052369", "___s": true }, { @@ -688190,7 +690728,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R052389", + "___id": "T000002R052370", "___s": true }, { @@ -688226,7 +690764,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R052390", + "___id": "T000002R052371", "___s": true }, { @@ -688277,7 +690815,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R052391", + "___id": "T000002R052372", "___s": true }, { @@ -688328,7 +690866,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R052392", + "___id": "T000002R052373", "___s": true }, { @@ -688359,7 +690897,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, - "___id": "T000002R052393", + "___id": "T000002R052374", "___s": true }, { @@ -688395,7 +690933,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, - "___id": "T000002R052394", + "___id": "T000002R052375", "___s": true }, { @@ -688431,7 +690969,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, - "___id": "T000002R052395", + "___id": "T000002R052376", "___s": true }, { @@ -688482,7 +691020,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipX", "inherited": true, - "___id": "T000002R052396", + "___id": "T000002R052377", "___s": true }, { @@ -688533,7 +691071,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipY", "inherited": true, - "___id": "T000002R052397", + "___id": "T000002R052378", "___s": true }, { @@ -688597,7 +691135,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlip", "inherited": true, - "___id": "T000002R052398", + "___id": "T000002R052379", "___s": true }, { @@ -688633,7 +691171,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, - "___id": "T000002R052399", + "___id": "T000002R052380", "___s": true }, { @@ -688707,7 +691245,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getCenter", "inherited": true, - "___id": "T000002R052401", + "___id": "T000002R052382", "___s": true }, { @@ -688781,7 +691319,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "inherited": true, - "___id": "T000002R052402", + "___id": "T000002R052383", "___s": true }, { @@ -688855,7 +691393,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "inherited": true, - "___id": "T000002R052403", + "___id": "T000002R052384", "___s": true }, { @@ -688929,7 +691467,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopRight", "inherited": true, - "___id": "T000002R052404", + "___id": "T000002R052385", "___s": true }, { @@ -689003,7 +691541,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "inherited": true, - "___id": "T000002R052405", + "___id": "T000002R052386", "___s": true }, { @@ -689077,7 +691615,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "inherited": true, - "___id": "T000002R052406", + "___id": "T000002R052387", "___s": true }, { @@ -689151,7 +691689,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "inherited": true, - "___id": "T000002R052407", + "___id": "T000002R052388", "___s": true }, { @@ -689225,7 +691763,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "inherited": true, - "___id": "T000002R052408", + "___id": "T000002R052389", "___s": true }, { @@ -689299,7 +691837,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "inherited": true, - "___id": "T000002R052409", + "___id": "T000002R052390", "___s": true }, { @@ -689378,7 +691916,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBounds", "inherited": true, - "___id": "T000002R052410", + "___id": "T000002R052391", "___s": true }, { @@ -689418,7 +691956,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R052411", + "___id": "T000002R052392", "___s": true }, { @@ -689479,7 +692017,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R052412", + "___id": "T000002R052393", "___s": true }, { @@ -689532,7 +692070,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R052413", + "___id": "T000002R052394", "___s": true }, { @@ -689694,7 +692232,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R052414", + "___id": "T000002R052395", "___s": true }, { @@ -689775,7 +692313,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R052415", + "___id": "T000002R052396", "___s": true }, { @@ -689807,7 +692345,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R052417", + "___id": "T000002R052398", "___s": true }, { @@ -689839,7 +692377,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R052418", + "___id": "T000002R052399", "___s": true }, { @@ -689869,7 +692407,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R052419", + "___id": "T000002R052400", "___s": true }, { @@ -689899,7 +692437,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R052420", + "___id": "T000002R052401", "___s": true }, { @@ -689967,7 +692505,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R052421", + "___id": "T000002R052402", "___s": true }, { @@ -690003,7 +692541,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R052422", + "___id": "T000002R052403", "___s": true }, { @@ -690071,7 +692609,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R052423", + "___id": "T000002R052404", "___s": true }, { @@ -690107,7 +692645,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R052424", + "___id": "T000002R052405", "___s": true }, { @@ -690145,7 +692683,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R052425", + "___id": "T000002R052406", "___s": true }, { @@ -690183,7 +692721,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R052426", + "___id": "T000002R052407", "___s": true }, { @@ -690220,7 +692758,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R052427", + "___id": "T000002R052408", "___s": true }, { @@ -690288,7 +692826,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R052428", + "___id": "T000002R052409", "___s": true }, { @@ -690385,7 +692923,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R052429", + "___id": "T000002R052410", "___s": true }, { @@ -690457,7 +692995,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R052430", + "___id": "T000002R052411", "___s": true }, { @@ -690516,7 +693054,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R052431", + "___id": "T000002R052412", "___s": true }, { @@ -690560,7 +693098,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R052432", + "___id": "T000002R052413", "___s": true }, { @@ -690597,7 +693135,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R052433", + "___id": "T000002R052414", "___s": true }, { @@ -690643,7 +693181,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R052434", + "___id": "T000002R052415", "___s": true }, { @@ -690680,7 +693218,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R052435", + "___id": "T000002R052416", "___s": true }, { @@ -690719,7 +693257,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R052436", + "___id": "T000002R052417", "___s": true }, { @@ -690756,7 +693294,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R052437", + "___id": "T000002R052418", "___s": true }, { @@ -690801,7 +693339,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R052438", + "___id": "T000002R052419", "___s": true }, { @@ -690945,7 +693483,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R052439", + "___id": "T000002R052420", "___s": true }, { @@ -691017,7 +693555,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R052440", + "___id": "T000002R052421", "___s": true }, { @@ -691108,7 +693646,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R052441", + "___id": "T000002R052422", "___s": true }, { @@ -691153,7 +693691,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R052442", + "___id": "T000002R052423", "___s": true }, { @@ -691221,7 +693759,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R052443", + "___id": "T000002R052424", "___s": true }, { @@ -691264,7 +693802,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R052444", + "___id": "T000002R052425", "___s": true }, { @@ -691295,7 +693833,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R052445", + "___id": "T000002R052426", "___s": true }, { @@ -691326,7 +693864,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R052446", + "___id": "T000002R052427", "___s": true }, { @@ -691392,7 +693930,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R052447", + "___id": "T000002R052428", "___s": true }, { @@ -691432,7 +693970,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#texture", "inherited": true, - "___id": "T000002R052448", + "___id": "T000002R052429", "___s": true }, { @@ -691462,7 +694000,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#frame", "inherited": true, - "___id": "T000002R052449", + "___id": "T000002R052430", "___s": true }, { @@ -691492,7 +694030,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.TextureCrop#isCropped", "inherited": true, - "___id": "T000002R052450", + "___id": "T000002R052431", "___s": true }, { @@ -691596,7 +694134,7 @@ ], "inherits": "Phaser.GameObjects.Components.TextureCrop#setCrop", "inherited": true, - "___id": "T000002R052451", + "___id": "T000002R052432", "___s": true }, { @@ -691671,7 +694209,7 @@ ], "inherits": "Phaser.GameObjects.Components.TextureCrop#setTexture", "inherited": true, - "___id": "T000002R052452", + "___id": "T000002R052433", "___s": true }, { @@ -691767,7 +694305,7 @@ ], "inherits": "Phaser.GameObjects.Components.TextureCrop#setFrame", "inherited": true, - "___id": "T000002R052453", + "___id": "T000002R052434", "___s": true }, { @@ -691798,7 +694336,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, - "___id": "T000002R052455", + "___id": "T000002R052436", "___s": true }, { @@ -691829,7 +694367,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, - "___id": "T000002R052456", + "___id": "T000002R052437", "___s": true }, { @@ -691860,7 +694398,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, - "___id": "T000002R052457", + "___id": "T000002R052438", "___s": true }, { @@ -691891,7 +694429,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, - "___id": "T000002R052458", + "___id": "T000002R052439", "___s": true }, { @@ -691922,7 +694460,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, - "___id": "T000002R052459", + "___id": "T000002R052440", "___s": true }, { @@ -691965,7 +694503,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, - "___id": "T000002R052460", + "___id": "T000002R052441", "___s": true }, { @@ -692067,7 +694605,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTint", "inherited": true, - "___id": "T000002R052461", + "___id": "T000002R052442", "___s": true }, { @@ -692169,7 +694707,7 @@ ], "inherits": "Phaser.GameObjects.Components.Tint#setTintFill", "inherited": true, - "___id": "T000002R052462", + "___id": "T000002R052443", "___s": true }, { @@ -692206,7 +694744,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, - "___id": "T000002R052463", + "___id": "T000002R052444", "___s": true }, { @@ -692244,7 +694782,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, - "___id": "T000002R052464", + "___id": "T000002R052445", "___s": true }, { @@ -692276,7 +694814,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R052465", + "___id": "T000002R052446", "___s": true }, { @@ -692307,7 +694845,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R052469", + "___id": "T000002R052450", "___s": true }, { @@ -692338,7 +694876,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R052470", + "___id": "T000002R052451", "___s": true }, { @@ -692369,7 +694907,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R052471", + "___id": "T000002R052452", "___s": true }, { @@ -692400,7 +694938,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R052472", + "___id": "T000002R052453", "___s": true }, { @@ -692431,7 +694969,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R052473", + "___id": "T000002R052454", "___s": true }, { @@ -692462,7 +695000,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R052474", + "___id": "T000002R052455", "___s": true }, { @@ -692493,7 +695031,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R052475", + "___id": "T000002R052456", "___s": true }, { @@ -692524,7 +695062,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R052476", + "___id": "T000002R052457", "___s": true }, { @@ -692555,7 +695093,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R052477", + "___id": "T000002R052458", "___s": true }, { @@ -692653,7 +695191,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R052478", + "___id": "T000002R052459", "___s": true }, { @@ -692719,7 +695257,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R052479", + "___id": "T000002R052460", "___s": true }, { @@ -692815,7 +695353,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R052480", + "___id": "T000002R052461", "___s": true }, { @@ -692868,7 +695406,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R052481", + "___id": "T000002R052462", "___s": true }, { @@ -692921,7 +695459,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R052482", + "___id": "T000002R052463", "___s": true }, { @@ -692989,7 +695527,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R052483", + "___id": "T000002R052464", "___s": true }, { @@ -693042,7 +695580,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R052484", + "___id": "T000002R052465", "___s": true }, { @@ -693095,7 +695633,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R052485", + "___id": "T000002R052466", "___s": true }, { @@ -693148,7 +695686,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R052486", + "___id": "T000002R052467", "___s": true }, { @@ -693201,7 +695739,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R052487", + "___id": "T000002R052468", "___s": true }, { @@ -693252,7 +695790,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R052488", + "___id": "T000002R052469", "___s": true }, { @@ -693317,7 +695855,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R052489", + "___id": "T000002R052470", "___s": true }, { @@ -693408,7 +695946,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R052490", + "___id": "T000002R052471", "___s": true }, { @@ -693443,7 +695981,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R052491", + "___id": "T000002R052472", "___s": true }, { @@ -693473,7 +696011,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R052493", + "___id": "T000002R052474", "___s": true }, { @@ -693524,7 +696062,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R052494", + "___id": "T000002R052475", "___s": true }, { @@ -693554,7 +696092,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R052495", + "___id": "T000002R052476", "___s": true }, { @@ -693595,7 +696133,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R052496", + "___id": "T000002R052477", "___s": true }, { @@ -693625,7 +696163,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R052497", + "___id": "T000002R052478", "___s": true }, { @@ -693665,7 +696203,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R052498", + "___id": "T000002R052479", "___s": true }, { @@ -693695,7 +696233,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R052499", + "___id": "T000002R052480", "___s": true }, { @@ -693726,7 +696264,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R052500", + "___id": "T000002R052481", "___s": true }, { @@ -693757,7 +696295,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R052501", + "___id": "T000002R052482", "___s": true }, { @@ -693788,7 +696326,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R052502", + "___id": "T000002R052483", "___s": true }, { @@ -693819,7 +696357,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R052503", + "___id": "T000002R052484", "___s": true }, { @@ -693850,7 +696388,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R052504", + "___id": "T000002R052485", "___s": true }, { @@ -693884,7 +696422,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R052505", + "___id": "T000002R052486", "___s": true }, { @@ -693917,7 +696455,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R052506", + "___id": "T000002R052487", "___s": true }, { @@ -693965,7 +696503,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R052507", + "___id": "T000002R052488", "___s": true }, { @@ -693996,7 +696534,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R052508", + "___id": "T000002R052489", "___s": true }, { @@ -694047,7 +696585,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R052509", + "___id": "T000002R052490", "___s": true }, { @@ -694098,7 +696636,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R052510", + "___id": "T000002R052491", "___s": true }, { @@ -694159,7 +696697,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R052511", + "___id": "T000002R052492", "___s": true }, { @@ -694198,7 +696736,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R052512", + "___id": "T000002R052493", "___s": true }, { @@ -694286,7 +696824,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R052513", + "___id": "T000002R052494", "___s": true }, { @@ -694352,7 +696890,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R052514", + "___id": "T000002R052495", "___s": true }, { @@ -694403,7 +696941,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R052515", + "___id": "T000002R052496", "___s": true }, { @@ -694471,7 +697009,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R052516", + "___id": "T000002R052497", "___s": true }, { @@ -694567,11 +697105,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R052517", + "___id": "T000002R052498", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -694601,16 +697139,33 @@ ], "memberof": "Phaser.GameObjects.Zone", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R052518", + "___id": "T000002R052499", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -694637,16 +697192,33 @@ ], "memberof": "Phaser.GameObjects.Zone", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R052519", + "___id": "T000002R052500", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -694660,14 +697232,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R052520", + "___id": "T000002R052501", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -694681,14 +697253,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R052521", + "___id": "T000002R052502", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -694719,14 +697291,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R052522", + "___id": "T000002R052503", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -694754,14 +697326,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R052523", + "___id": "T000002R052504", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -694804,14 +697376,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R052524", + "___id": "T000002R052505", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -694848,14 +697420,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R052525", + "___id": "T000002R052506", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -694914,14 +697486,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R052526", + "___id": "T000002R052507", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -694950,14 +697522,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R052527", + "___id": "T000002R052508", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -694990,14 +697562,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R052528", + "___id": "T000002R052509", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -695026,14 +697598,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R052529", + "___id": "T000002R052510", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -695067,7 +697639,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#destroy", "inherited": true, - "___id": "T000002R052530", + "___id": "T000002R052511", "___s": true }, { @@ -695088,7 +697660,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R052531", + "___id": "T000002R052512", "___s": true }, { @@ -695140,7 +697712,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R052532", + "___id": "T000002R052513", "___s": true }, { @@ -695209,7 +697781,7 @@ "name": "event" } ], - "___id": "T000002R052533", + "___id": "T000002R052514", "___s": true }, { @@ -695269,7 +697841,7 @@ "name": "event" } ], - "___id": "T000002R052534", + "___id": "T000002R052515", "___s": true }, { @@ -695344,7 +697916,7 @@ "name": "args" } ], - "___id": "T000002R052535", + "___id": "T000002R052516", "___s": true }, { @@ -695432,7 +698004,7 @@ "name": "context" } ], - "___id": "T000002R052536", + "___id": "T000002R052517", "___s": true }, { @@ -695520,7 +698092,7 @@ "name": "context" } ], - "___id": "T000002R052537", + "___id": "T000002R052518", "___s": true }, { @@ -695608,7 +698180,7 @@ "name": "context" } ], - "___id": "T000002R052538", + "___id": "T000002R052519", "___s": true }, { @@ -695710,7 +698282,7 @@ "name": "once" } ], - "___id": "T000002R052539", + "___id": "T000002R052520", "___s": true }, { @@ -695812,7 +698384,7 @@ "name": "once" } ], - "___id": "T000002R052540", + "___id": "T000002R052521", "___s": true }, { @@ -695874,7 +698446,7 @@ "name": "event" } ], - "___id": "T000002R052541", + "___id": "T000002R052522", "___s": true }, { @@ -695904,7 +698476,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R052543", + "___id": "T000002R052524", "___s": true }, { @@ -695955,7 +698527,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R052544", + "___id": "T000002R052525", "___s": true }, { @@ -695991,7 +698563,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R052545", + "___id": "T000002R052526", "___s": true }, { @@ -696027,7 +698599,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R052546", + "___id": "T000002R052527", "___s": true }, { @@ -696078,7 +698650,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R052547", + "___id": "T000002R052528", "___s": true }, { @@ -696129,7 +698701,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R052548", + "___id": "T000002R052529", "___s": true }, { @@ -696203,7 +698775,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getCenter", "inherited": true, - "___id": "T000002R052550", + "___id": "T000002R052531", "___s": true }, { @@ -696277,7 +698849,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "inherited": true, - "___id": "T000002R052551", + "___id": "T000002R052532", "___s": true }, { @@ -696351,7 +698923,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "inherited": true, - "___id": "T000002R052552", + "___id": "T000002R052533", "___s": true }, { @@ -696425,7 +698997,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopRight", "inherited": true, - "___id": "T000002R052553", + "___id": "T000002R052534", "___s": true }, { @@ -696499,7 +699071,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "inherited": true, - "___id": "T000002R052554", + "___id": "T000002R052535", "___s": true }, { @@ -696573,7 +699145,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "inherited": true, - "___id": "T000002R052555", + "___id": "T000002R052536", "___s": true }, { @@ -696647,7 +699219,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "inherited": true, - "___id": "T000002R052556", + "___id": "T000002R052537", "___s": true }, { @@ -696721,7 +699293,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "inherited": true, - "___id": "T000002R052557", + "___id": "T000002R052538", "___s": true }, { @@ -696795,7 +699367,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "inherited": true, - "___id": "T000002R052558", + "___id": "T000002R052539", "___s": true }, { @@ -696874,7 +699446,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBounds", "inherited": true, - "___id": "T000002R052559", + "___id": "T000002R052540", "___s": true }, { @@ -696906,7 +699478,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, - "___id": "T000002R052561", + "___id": "T000002R052542", "___s": true }, { @@ -696938,7 +699510,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, - "___id": "T000002R052562", + "___id": "T000002R052543", "___s": true }, { @@ -696968,7 +699540,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, - "___id": "T000002R052563", + "___id": "T000002R052544", "___s": true }, { @@ -696998,7 +699570,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, - "___id": "T000002R052564", + "___id": "T000002R052545", "___s": true }, { @@ -697066,7 +699638,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R052565", + "___id": "T000002R052546", "___s": true }, { @@ -697102,7 +699674,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R052566", + "___id": "T000002R052547", "___s": true }, { @@ -697170,7 +699742,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R052567", + "___id": "T000002R052548", "___s": true }, { @@ -697206,7 +699778,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R052568", + "___id": "T000002R052549", "___s": true }, { @@ -697238,7 +699810,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R052569", + "___id": "T000002R052550", "___s": true }, { @@ -697269,7 +699841,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R052573", + "___id": "T000002R052554", "___s": true }, { @@ -697300,7 +699872,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R052574", + "___id": "T000002R052555", "___s": true }, { @@ -697331,7 +699903,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R052575", + "___id": "T000002R052556", "___s": true }, { @@ -697362,7 +699934,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R052576", + "___id": "T000002R052557", "___s": true }, { @@ -697393,7 +699965,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R052577", + "___id": "T000002R052558", "___s": true }, { @@ -697424,7 +699996,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R052578", + "___id": "T000002R052559", "___s": true }, { @@ -697455,7 +700027,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R052579", + "___id": "T000002R052560", "___s": true }, { @@ -697486,7 +700058,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R052580", + "___id": "T000002R052561", "___s": true }, { @@ -697517,7 +700089,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R052581", + "___id": "T000002R052562", "___s": true }, { @@ -697615,7 +700187,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R052582", + "___id": "T000002R052563", "___s": true }, { @@ -697681,7 +700253,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R052583", + "___id": "T000002R052564", "___s": true }, { @@ -697777,7 +700349,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R052584", + "___id": "T000002R052565", "___s": true }, { @@ -697830,7 +700402,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R052585", + "___id": "T000002R052566", "___s": true }, { @@ -697883,7 +700455,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R052586", + "___id": "T000002R052567", "___s": true }, { @@ -697951,7 +700523,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R052587", + "___id": "T000002R052568", "___s": true }, { @@ -698004,7 +700576,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R052588", + "___id": "T000002R052569", "___s": true }, { @@ -698057,7 +700629,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R052589", + "___id": "T000002R052570", "___s": true }, { @@ -698110,7 +700682,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R052590", + "___id": "T000002R052571", "___s": true }, { @@ -698163,7 +700735,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R052591", + "___id": "T000002R052572", "___s": true }, { @@ -698214,7 +700786,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R052592", + "___id": "T000002R052573", "___s": true }, { @@ -698279,7 +700851,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R052593", + "___id": "T000002R052574", "___s": true }, { @@ -698370,7 +700942,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R052594", + "___id": "T000002R052575", "___s": true }, { @@ -698405,7 +700977,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R052595", + "___id": "T000002R052576", "___s": true }, { @@ -698436,7 +701008,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R052596", + "___id": "T000002R052577", "___s": true }, { @@ -698467,7 +701039,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R052597", + "___id": "T000002R052578", "___s": true }, { @@ -698533,7 +701105,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R052598", + "___id": "T000002R052579", "___s": true }, { @@ -698563,7 +701135,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R052600", + "___id": "T000002R052581", "___s": true }, { @@ -698614,7 +701186,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R052601", + "___id": "T000002R052582", "___s": true }, { @@ -698645,7 +701217,7 @@ "scope": "instance", "inherits": "Phaser.Math.Vector3#x", "inherited": true, - "___id": "T000002R052602", + "___id": "T000002R052583", "___s": true }, { @@ -698676,7 +701248,7 @@ "scope": "instance", "inherits": "Phaser.Math.Vector3#y", "inherited": true, - "___id": "T000002R052603", + "___id": "T000002R052584", "___s": true }, { @@ -698707,7 +701279,7 @@ "scope": "instance", "inherits": "Phaser.Math.Vector3#z", "inherited": true, - "___id": "T000002R052604", + "___id": "T000002R052585", "___s": true }, { @@ -698742,7 +701314,7 @@ "scope": "instance", "inherits": "Phaser.Math.Vector3#up", "inherited": true, - "___id": "T000002R052605", + "___id": "T000002R052586", "___s": true }, { @@ -698792,7 +701364,7 @@ ], "inherits": "Phaser.Math.Vector3#min", "inherited": true, - "___id": "T000002R052606", + "___id": "T000002R052587", "___s": true }, { @@ -698842,7 +701414,7 @@ ], "inherits": "Phaser.Math.Vector3#max", "inherited": true, - "___id": "T000002R052607", + "___id": "T000002R052588", "___s": true }, { @@ -698877,7 +701449,7 @@ "scope": "instance", "inherits": "Phaser.Math.Vector3#clone", "inherited": true, - "___id": "T000002R052608", + "___id": "T000002R052589", "___s": true }, { @@ -698940,7 +701512,7 @@ ], "inherits": "Phaser.Math.Vector3#addVectors", "inherited": true, - "___id": "T000002R052609", + "___id": "T000002R052590", "___s": true }, { @@ -699003,7 +701575,7 @@ ], "inherits": "Phaser.Math.Vector3#subVectors", "inherited": true, - "___id": "T000002R052610", + "___id": "T000002R052591", "___s": true }, { @@ -699066,7 +701638,7 @@ ], "inherits": "Phaser.Math.Vector3#crossVectors", "inherited": true, - "___id": "T000002R052611", + "___id": "T000002R052592", "___s": true }, { @@ -699116,7 +701688,7 @@ ], "inherits": "Phaser.Math.Vector3#equals", "inherited": true, - "___id": "T000002R052612", + "___id": "T000002R052593", "___s": true }, { @@ -699176,7 +701748,7 @@ ], "inherits": "Phaser.Math.Vector3#copy", "inherited": true, - "___id": "T000002R052613", + "___id": "T000002R052594", "___s": true }, { @@ -699264,7 +701836,7 @@ ], "inherits": "Phaser.Math.Vector3#set", "inherited": true, - "___id": "T000002R052614", + "___id": "T000002R052595", "___s": true }, { @@ -699314,7 +701886,7 @@ ], "inherits": "Phaser.Math.Vector3#setFromMatrixPosition", "inherited": true, - "___id": "T000002R052615", + "___id": "T000002R052596", "___s": true }, { @@ -699377,7 +701949,7 @@ ], "inherits": "Phaser.Math.Vector3#setFromMatrixColumn", "inherited": true, - "___id": "T000002R052616", + "___id": "T000002R052597", "___s": true }, { @@ -699451,7 +702023,7 @@ ], "inherits": "Phaser.Math.Vector3#fromArray", "inherited": true, - "___id": "T000002R052617", + "___id": "T000002R052598", "___s": true }, { @@ -699511,7 +702083,7 @@ ], "inherits": "Phaser.Math.Vector3#add", "inherited": true, - "___id": "T000002R052618", + "___id": "T000002R052599", "___s": true }, { @@ -699561,7 +702133,7 @@ ], "inherits": "Phaser.Math.Vector3#addScalar", "inherited": true, - "___id": "T000002R052619", + "___id": "T000002R052600", "___s": true }, { @@ -699634,7 +702206,7 @@ ], "inherits": "Phaser.Math.Vector3#addScale", "inherited": true, - "___id": "T000002R052620", + "___id": "T000002R052601", "___s": true }, { @@ -699694,7 +702266,7 @@ ], "inherits": "Phaser.Math.Vector3#subtract", "inherited": true, - "___id": "T000002R052621", + "___id": "T000002R052602", "___s": true }, { @@ -699754,7 +702326,7 @@ ], "inherits": "Phaser.Math.Vector3#multiply", "inherited": true, - "___id": "T000002R052622", + "___id": "T000002R052603", "___s": true }, { @@ -699804,7 +702376,7 @@ ], "inherits": "Phaser.Math.Vector3#scale", "inherited": true, - "___id": "T000002R052623", + "___id": "T000002R052604", "___s": true }, { @@ -699864,7 +702436,7 @@ ], "inherits": "Phaser.Math.Vector3#divide", "inherited": true, - "___id": "T000002R052624", + "___id": "T000002R052605", "___s": true }, { @@ -699899,7 +702471,7 @@ "scope": "instance", "inherits": "Phaser.Math.Vector3#negate", "inherited": true, - "___id": "T000002R052625", + "___id": "T000002R052606", "___s": true }, { @@ -699959,7 +702531,7 @@ ], "inherits": "Phaser.Math.Vector3#distance", "inherited": true, - "___id": "T000002R052626", + "___id": "T000002R052607", "___s": true }, { @@ -700019,7 +702591,7 @@ ], "inherits": "Phaser.Math.Vector3#distanceSq", "inherited": true, - "___id": "T000002R052627", + "___id": "T000002R052608", "___s": true }, { @@ -700054,7 +702626,7 @@ "scope": "instance", "inherits": "Phaser.Math.Vector3#length", "inherited": true, - "___id": "T000002R052628", + "___id": "T000002R052609", "___s": true }, { @@ -700089,7 +702661,7 @@ "scope": "instance", "inherits": "Phaser.Math.Vector3#lengthSq", "inherited": true, - "___id": "T000002R052629", + "___id": "T000002R052610", "___s": true }, { @@ -700124,7 +702696,7 @@ "scope": "instance", "inherits": "Phaser.Math.Vector3#normalize", "inherited": true, - "___id": "T000002R052630", + "___id": "T000002R052611", "___s": true }, { @@ -700174,7 +702746,7 @@ ], "inherits": "Phaser.Math.Vector3#dot", "inherited": true, - "___id": "T000002R052631", + "___id": "T000002R052612", "___s": true }, { @@ -700224,7 +702796,7 @@ ], "inherits": "Phaser.Math.Vector3#cross", "inherited": true, - "___id": "T000002R052632", + "___id": "T000002R052613", "___s": true }, { @@ -700289,7 +702861,7 @@ ], "inherits": "Phaser.Math.Vector3#lerp", "inherited": true, - "___id": "T000002R052633", + "___id": "T000002R052614", "___s": true }, { @@ -700339,7 +702911,7 @@ ], "inherits": "Phaser.Math.Vector3#applyMatrix3", "inherited": true, - "___id": "T000002R052634", + "___id": "T000002R052615", "___s": true }, { @@ -700389,7 +702961,7 @@ ], "inherits": "Phaser.Math.Vector3#applyMatrix4", "inherited": true, - "___id": "T000002R052635", + "___id": "T000002R052616", "___s": true }, { @@ -700439,7 +703011,7 @@ ], "inherits": "Phaser.Math.Vector3#transformMat3", "inherited": true, - "___id": "T000002R052636", + "___id": "T000002R052617", "___s": true }, { @@ -700489,7 +703061,7 @@ ], "inherits": "Phaser.Math.Vector3#transformMat4", "inherited": true, - "___id": "T000002R052637", + "___id": "T000002R052618", "___s": true }, { @@ -700539,7 +703111,7 @@ ], "inherits": "Phaser.Math.Vector3#transformCoordinates", "inherited": true, - "___id": "T000002R052638", + "___id": "T000002R052619", "___s": true }, { @@ -700589,7 +703161,7 @@ ], "inherits": "Phaser.Math.Vector3#transformQuat", "inherited": true, - "___id": "T000002R052639", + "___id": "T000002R052620", "___s": true }, { @@ -700639,7 +703211,7 @@ ], "inherits": "Phaser.Math.Vector3#project", "inherited": true, - "___id": "T000002R052640", + "___id": "T000002R052621", "___s": true }, { @@ -700702,7 +703274,7 @@ ], "inherits": "Phaser.Math.Vector3#projectViewMatrix", "inherited": true, - "___id": "T000002R052641", + "___id": "T000002R052622", "___s": true }, { @@ -700765,7 +703337,7 @@ ], "inherits": "Phaser.Math.Vector3#unprojectViewMatrix", "inherited": true, - "___id": "T000002R052642", + "___id": "T000002R052623", "___s": true }, { @@ -700828,7 +703400,7 @@ ], "inherits": "Phaser.Math.Vector3#unproject", "inherited": true, - "___id": "T000002R052643", + "___id": "T000002R052624", "___s": true }, { @@ -700863,7 +703435,7 @@ "scope": "instance", "inherits": "Phaser.Math.Vector3#reset", "inherited": true, - "___id": "T000002R052644", + "___id": "T000002R052625", "___s": true }, { @@ -700884,7 +703456,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R052645", + "___id": "T000002R052626", "___s": true }, { @@ -700936,7 +703508,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R052646", + "___id": "T000002R052627", "___s": true }, { @@ -701005,7 +703577,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R052647", + "___id": "T000002R052628", "___s": true }, { @@ -701065,7 +703637,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R052648", + "___id": "T000002R052629", "___s": true }, { @@ -701140,7 +703712,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R052649", + "___id": "T000002R052630", "___s": true }, { @@ -701228,7 +703800,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R052650", + "___id": "T000002R052631", "___s": true }, { @@ -701316,7 +703888,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R052651", + "___id": "T000002R052632", "___s": true }, { @@ -701404,7 +703976,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R052652", + "___id": "T000002R052633", "___s": true }, { @@ -701506,7 +704078,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R052653", + "___id": "T000002R052634", "___s": true }, { @@ -701608,7 +704180,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R052654", + "___id": "T000002R052635", "___s": true }, { @@ -701670,7 +704242,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R052655", + "___id": "T000002R052636", "___s": true }, { @@ -701722,7 +704294,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R052656", + "___id": "T000002R052637", "___s": true }, { @@ -701791,7 +704363,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R052657", + "___id": "T000002R052638", "___s": true }, { @@ -701851,7 +704423,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R052658", + "___id": "T000002R052639", "___s": true }, { @@ -701926,7 +704498,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R052659", + "___id": "T000002R052640", "___s": true }, { @@ -702014,7 +704586,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R052660", + "___id": "T000002R052641", "___s": true }, { @@ -702102,7 +704674,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R052661", + "___id": "T000002R052642", "___s": true }, { @@ -702190,7 +704762,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R052662", + "___id": "T000002R052643", "___s": true }, { @@ -702292,7 +704864,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R052663", + "___id": "T000002R052644", "___s": true }, { @@ -702394,7 +704966,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R052664", + "___id": "T000002R052645", "___s": true }, { @@ -702456,7 +705028,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R052665", + "___id": "T000002R052646", "___s": true }, { @@ -702508,7 +705080,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R052666", + "___id": "T000002R052647", "___s": true }, { @@ -702577,7 +705149,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R052667", + "___id": "T000002R052648", "___s": true }, { @@ -702637,7 +705209,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R052668", + "___id": "T000002R052649", "___s": true }, { @@ -702712,7 +705284,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R052669", + "___id": "T000002R052650", "___s": true }, { @@ -702800,7 +705372,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R052670", + "___id": "T000002R052651", "___s": true }, { @@ -702888,7 +705460,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R052671", + "___id": "T000002R052652", "___s": true }, { @@ -702976,7 +705548,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R052672", + "___id": "T000002R052653", "___s": true }, { @@ -703078,7 +705650,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R052673", + "___id": "T000002R052654", "___s": true }, { @@ -703180,7 +705752,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R052674", + "___id": "T000002R052655", "___s": true }, { @@ -703242,7 +705814,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R052675", + "___id": "T000002R052656", "___s": true }, { @@ -703294,7 +705866,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R052676", + "___id": "T000002R052657", "___s": true }, { @@ -703363,7 +705935,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R052677", + "___id": "T000002R052658", "___s": true }, { @@ -703423,7 +705995,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R052678", + "___id": "T000002R052659", "___s": true }, { @@ -703498,7 +706070,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R052679", + "___id": "T000002R052660", "___s": true }, { @@ -703586,7 +706158,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R052680", + "___id": "T000002R052661", "___s": true }, { @@ -703674,7 +706246,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R052681", + "___id": "T000002R052662", "___s": true }, { @@ -703762,7 +706334,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R052682", + "___id": "T000002R052663", "___s": true }, { @@ -703864,7 +706436,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R052683", + "___id": "T000002R052664", "___s": true }, { @@ -703966,7 +706538,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R052684", + "___id": "T000002R052665", "___s": true }, { @@ -704028,7 +706600,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R052685", + "___id": "T000002R052666", "___s": true }, { @@ -704049,7 +706621,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R052686", + "___id": "T000002R052667", "___s": true }, { @@ -704101,7 +706673,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R052687", + "___id": "T000002R052668", "___s": true }, { @@ -704170,7 +706742,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R052688", + "___id": "T000002R052669", "___s": true }, { @@ -704230,7 +706802,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R052689", + "___id": "T000002R052670", "___s": true }, { @@ -704305,7 +706877,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R052690", + "___id": "T000002R052671", "___s": true }, { @@ -704393,7 +706965,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R052691", + "___id": "T000002R052672", "___s": true }, { @@ -704481,7 +707053,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R052692", + "___id": "T000002R052673", "___s": true }, { @@ -704569,7 +707141,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R052693", + "___id": "T000002R052674", "___s": true }, { @@ -704671,7 +707243,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R052694", + "___id": "T000002R052675", "___s": true }, { @@ -704773,7 +707345,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R052695", + "___id": "T000002R052676", "___s": true }, { @@ -704835,7 +707407,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R052696", + "___id": "T000002R052677", "___s": true }, { @@ -704865,7 +707437,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R052697", + "___id": "T000002R052678", "___s": true }, { @@ -704905,7 +707477,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R052698", + "___id": "T000002R052679", "___s": true }, { @@ -704935,7 +707507,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R052699", + "___id": "T000002R052680", "___s": true }, { @@ -704965,7 +707537,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R052700", + "___id": "T000002R052681", "___s": true }, { @@ -705005,7 +707577,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R052701", + "___id": "T000002R052682", "___s": true }, { @@ -705035,7 +707607,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R052702", + "___id": "T000002R052683", "___s": true }, { @@ -705065,7 +707637,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R052703", + "___id": "T000002R052684", "___s": true }, { @@ -705097,7 +707669,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R052704", + "___id": "T000002R052685", "___s": true }, { @@ -705127,7 +707699,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R052705", + "___id": "T000002R052686", "___s": true }, { @@ -705158,7 +707730,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R052706", + "___id": "T000002R052687", "___s": true }, { @@ -705189,7 +707761,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R052707", + "___id": "T000002R052688", "___s": true }, { @@ -705220,7 +707792,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R052708", + "___id": "T000002R052689", "___s": true }, { @@ -705259,7 +707831,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R052709", + "___id": "T000002R052690", "___s": true }, { @@ -705288,7 +707860,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R052710", + "___id": "T000002R052691", "___s": true }, { @@ -705317,7 +707889,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R052711", + "___id": "T000002R052692", "___s": true }, { @@ -705349,7 +707921,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R052712", + "___id": "T000002R052693", "___s": true }, { @@ -705381,7 +707953,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R052713", + "___id": "T000002R052694", "___s": true }, { @@ -705411,14 +707983,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R052714", + "___id": "T000002R052695", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.AnimationJSONFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.AnimationJSONFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R052696", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705447,14 +708050,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R052715", + "___id": "T000002R052697", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705468,14 +708071,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R052716", + "___id": "T000002R052698", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705489,14 +708092,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R052717", + "___id": "T000002R052699", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705538,14 +708141,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R052718", + "___id": "T000002R052700", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705574,14 +708177,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R052719", + "___id": "T000002R052701", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705623,14 +708226,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R052720", + "___id": "T000002R052702", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705662,14 +708265,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R052721", + "___id": "T000002R052703", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705683,14 +708286,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R052722", + "___id": "T000002R052704", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705704,14 +708307,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R052723", + "___id": "T000002R052705", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705739,14 +708342,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R052724", + "___id": "T000002R052706", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705760,14 +708363,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R052725", + "___id": "T000002R052707", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705785,14 +708388,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R052726", + "___id": "T000002R052708", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -705806,7 +708409,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R052727", + "___id": "T000002R052709", "___s": true }, { @@ -705836,7 +708439,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#loader", "inherited": true, - "___id": "T000002R052728", + "___id": "T000002R052710", "___s": true }, { @@ -705866,7 +708469,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#type", "inherited": true, - "___id": "T000002R052729", + "___id": "T000002R052711", "___s": true }, { @@ -705896,7 +708499,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#key", "inherited": true, - "___id": "T000002R052730", + "___id": "T000002R052712", "___s": true }, { @@ -705935,7 +708538,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#files", "inherited": true, - "___id": "T000002R052732", + "___id": "T000002R052714", "___s": true }, { @@ -705965,7 +708568,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#state", "inherited": true, - "___id": "T000002R052733", + "___id": "T000002R052715", "___s": true }, { @@ -705996,7 +708599,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#complete", "inherited": true, - "___id": "T000002R052734", + "___id": "T000002R052716", "___s": true }, { @@ -706026,7 +708629,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pending", "inherited": true, - "___id": "T000002R052735", + "___id": "T000002R052717", "___s": true }, { @@ -706057,7 +708660,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#failed", "inherited": true, - "___id": "T000002R052736", + "___id": "T000002R052718", "___s": true }, { @@ -706087,7 +708690,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#config", "inherited": true, - "___id": "T000002R052737", + "___id": "T000002R052719", "___s": true }, { @@ -706117,7 +708720,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#baseURL", "inherited": true, - "___id": "T000002R052738", + "___id": "T000002R052720", "___s": true }, { @@ -706147,7 +708750,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#path", "inherited": true, - "___id": "T000002R052739", + "___id": "T000002R052721", "___s": true }, { @@ -706177,7 +708780,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#prefix", "inherited": true, - "___id": "T000002R052740", + "___id": "T000002R052722", "___s": true }, { @@ -706212,7 +708815,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#isReadyToProcess", "inherited": true, - "___id": "T000002R052741", + "___id": "T000002R052723", "___s": true }, { @@ -706262,7 +708865,7 @@ ], "inherits": "Phaser.Loader.MultiFile#addToMultiFile", "inherited": true, - "___id": "T000002R052742", + "___id": "T000002R052724", "___s": true }, { @@ -706298,7 +708901,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileComplete", "inherited": true, - "___id": "T000002R052743", + "___id": "T000002R052725", "___s": true }, { @@ -706334,7 +708937,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileFailed", "inherited": true, - "___id": "T000002R052744", + "___id": "T000002R052726", "___s": true }, { @@ -706359,7 +708962,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pendingDestroy", "inherited": true, - "___id": "T000002R052745", + "___id": "T000002R052727", "___s": true }, { @@ -706380,7 +708983,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#destroy", "inherited": true, - "___id": "T000002R052746", + "___id": "T000002R052728", "___s": true }, { @@ -706410,7 +709013,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#loader", "inherited": true, - "___id": "T000002R052747", + "___id": "T000002R052729", "___s": true }, { @@ -706440,7 +709043,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#type", "inherited": true, - "___id": "T000002R052748", + "___id": "T000002R052730", "___s": true }, { @@ -706470,7 +709073,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#key", "inherited": true, - "___id": "T000002R052749", + "___id": "T000002R052731", "___s": true }, { @@ -706509,7 +709112,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#files", "inherited": true, - "___id": "T000002R052751", + "___id": "T000002R052733", "___s": true }, { @@ -706539,7 +709142,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#state", "inherited": true, - "___id": "T000002R052752", + "___id": "T000002R052734", "___s": true }, { @@ -706570,7 +709173,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#complete", "inherited": true, - "___id": "T000002R052753", + "___id": "T000002R052735", "___s": true }, { @@ -706600,7 +709203,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pending", "inherited": true, - "___id": "T000002R052754", + "___id": "T000002R052736", "___s": true }, { @@ -706631,7 +709234,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#failed", "inherited": true, - "___id": "T000002R052755", + "___id": "T000002R052737", "___s": true }, { @@ -706661,7 +709264,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#config", "inherited": true, - "___id": "T000002R052756", + "___id": "T000002R052738", "___s": true }, { @@ -706691,7 +709294,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#baseURL", "inherited": true, - "___id": "T000002R052757", + "___id": "T000002R052739", "___s": true }, { @@ -706721,7 +709324,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#path", "inherited": true, - "___id": "T000002R052758", + "___id": "T000002R052740", "___s": true }, { @@ -706751,7 +709354,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#prefix", "inherited": true, - "___id": "T000002R052759", + "___id": "T000002R052741", "___s": true }, { @@ -706786,7 +709389,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#isReadyToProcess", "inherited": true, - "___id": "T000002R052760", + "___id": "T000002R052742", "___s": true }, { @@ -706836,7 +709439,7 @@ ], "inherits": "Phaser.Loader.MultiFile#addToMultiFile", "inherited": true, - "___id": "T000002R052761", + "___id": "T000002R052743", "___s": true }, { @@ -706872,7 +709475,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileComplete", "inherited": true, - "___id": "T000002R052762", + "___id": "T000002R052744", "___s": true }, { @@ -706908,7 +709511,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileFailed", "inherited": true, - "___id": "T000002R052763", + "___id": "T000002R052745", "___s": true }, { @@ -706933,7 +709536,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pendingDestroy", "inherited": true, - "___id": "T000002R052764", + "___id": "T000002R052746", "___s": true }, { @@ -706954,7 +709557,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#destroy", "inherited": true, - "___id": "T000002R052765", + "___id": "T000002R052747", "___s": true }, { @@ -706984,7 +709587,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#loader", "inherited": true, - "___id": "T000002R052766", + "___id": "T000002R052748", "___s": true }, { @@ -707014,7 +709617,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#type", "inherited": true, - "___id": "T000002R052767", + "___id": "T000002R052749", "___s": true }, { @@ -707044,7 +709647,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#key", "inherited": true, - "___id": "T000002R052768", + "___id": "T000002R052750", "___s": true }, { @@ -707083,7 +709686,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#files", "inherited": true, - "___id": "T000002R052770", + "___id": "T000002R052752", "___s": true }, { @@ -707113,7 +709716,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#state", "inherited": true, - "___id": "T000002R052771", + "___id": "T000002R052753", "___s": true }, { @@ -707144,7 +709747,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#complete", "inherited": true, - "___id": "T000002R052772", + "___id": "T000002R052754", "___s": true }, { @@ -707174,7 +709777,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pending", "inherited": true, - "___id": "T000002R052773", + "___id": "T000002R052755", "___s": true }, { @@ -707205,7 +709808,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#failed", "inherited": true, - "___id": "T000002R052774", + "___id": "T000002R052756", "___s": true }, { @@ -707235,7 +709838,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#config", "inherited": true, - "___id": "T000002R052775", + "___id": "T000002R052757", "___s": true }, { @@ -707265,7 +709868,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#baseURL", "inherited": true, - "___id": "T000002R052776", + "___id": "T000002R052758", "___s": true }, { @@ -707295,7 +709898,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#path", "inherited": true, - "___id": "T000002R052777", + "___id": "T000002R052759", "___s": true }, { @@ -707325,7 +709928,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#prefix", "inherited": true, - "___id": "T000002R052778", + "___id": "T000002R052760", "___s": true }, { @@ -707360,7 +709963,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#isReadyToProcess", "inherited": true, - "___id": "T000002R052779", + "___id": "T000002R052761", "___s": true }, { @@ -707410,7 +710013,7 @@ ], "inherits": "Phaser.Loader.MultiFile#addToMultiFile", "inherited": true, - "___id": "T000002R052780", + "___id": "T000002R052762", "___s": true }, { @@ -707446,7 +710049,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileComplete", "inherited": true, - "___id": "T000002R052781", + "___id": "T000002R052763", "___s": true }, { @@ -707482,7 +710085,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileFailed", "inherited": true, - "___id": "T000002R052782", + "___id": "T000002R052764", "___s": true }, { @@ -707507,7 +710110,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pendingDestroy", "inherited": true, - "___id": "T000002R052783", + "___id": "T000002R052765", "___s": true }, { @@ -707528,7 +710131,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#destroy", "inherited": true, - "___id": "T000002R052784", + "___id": "T000002R052766", "___s": true }, { @@ -707558,7 +710161,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R052785", + "___id": "T000002R052767", "___s": true }, { @@ -707598,7 +710201,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R052786", + "___id": "T000002R052768", "___s": true }, { @@ -707628,7 +710231,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R052787", + "___id": "T000002R052769", "___s": true }, { @@ -707658,7 +710261,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R052788", + "___id": "T000002R052770", "___s": true }, { @@ -707698,7 +710301,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R052789", + "___id": "T000002R052771", "___s": true }, { @@ -707728,7 +710331,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R052790", + "___id": "T000002R052772", "___s": true }, { @@ -707758,7 +710361,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R052791", + "___id": "T000002R052773", "___s": true }, { @@ -707790,7 +710393,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R052792", + "___id": "T000002R052774", "___s": true }, { @@ -707820,7 +710423,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R052793", + "___id": "T000002R052775", "___s": true }, { @@ -707851,7 +710454,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R052794", + "___id": "T000002R052776", "___s": true }, { @@ -707882,7 +710485,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R052795", + "___id": "T000002R052777", "___s": true }, { @@ -707913,7 +710516,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R052796", + "___id": "T000002R052778", "___s": true }, { @@ -707952,7 +710555,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R052797", + "___id": "T000002R052779", "___s": true }, { @@ -707981,7 +710584,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R052798", + "___id": "T000002R052780", "___s": true }, { @@ -708010,7 +710613,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R052799", + "___id": "T000002R052781", "___s": true }, { @@ -708042,7 +710645,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R052800", + "___id": "T000002R052782", "___s": true }, { @@ -708074,7 +710677,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R052801", + "___id": "T000002R052783", "___s": true }, { @@ -708104,14 +710707,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R052802", + "___id": "T000002R052784", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.AudioFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.AudioFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R052785", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708140,14 +710774,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R052803", + "___id": "T000002R052786", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708161,14 +710795,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R052804", + "___id": "T000002R052787", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708182,14 +710816,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R052805", + "___id": "T000002R052788", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708231,14 +710865,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R052806", + "___id": "T000002R052789", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708267,14 +710901,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R052807", + "___id": "T000002R052790", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708316,14 +710950,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R052808", + "___id": "T000002R052791", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708355,14 +710989,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R052809", + "___id": "T000002R052792", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708376,14 +711010,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R052810", + "___id": "T000002R052793", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708397,14 +711031,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R052811", + "___id": "T000002R052794", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708432,14 +711066,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R052812", + "___id": "T000002R052795", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708453,14 +711087,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R052813", + "___id": "T000002R052796", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708478,14 +711112,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R052814", + "___id": "T000002R052797", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -708499,7 +711133,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R052815", + "___id": "T000002R052798", "___s": true }, { @@ -708529,7 +711163,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#loader", "inherited": true, - "___id": "T000002R052816", + "___id": "T000002R052799", "___s": true }, { @@ -708559,7 +711193,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#type", "inherited": true, - "___id": "T000002R052817", + "___id": "T000002R052800", "___s": true }, { @@ -708589,7 +711223,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#key", "inherited": true, - "___id": "T000002R052818", + "___id": "T000002R052801", "___s": true }, { @@ -708628,7 +711262,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#files", "inherited": true, - "___id": "T000002R052820", + "___id": "T000002R052803", "___s": true }, { @@ -708658,7 +711292,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#state", "inherited": true, - "___id": "T000002R052821", + "___id": "T000002R052804", "___s": true }, { @@ -708689,7 +711323,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#complete", "inherited": true, - "___id": "T000002R052822", + "___id": "T000002R052805", "___s": true }, { @@ -708719,7 +711353,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pending", "inherited": true, - "___id": "T000002R052823", + "___id": "T000002R052806", "___s": true }, { @@ -708750,7 +711384,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#failed", "inherited": true, - "___id": "T000002R052824", + "___id": "T000002R052807", "___s": true }, { @@ -708780,7 +711414,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#config", "inherited": true, - "___id": "T000002R052825", + "___id": "T000002R052808", "___s": true }, { @@ -708810,7 +711444,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#baseURL", "inherited": true, - "___id": "T000002R052826", + "___id": "T000002R052809", "___s": true }, { @@ -708840,7 +711474,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#path", "inherited": true, - "___id": "T000002R052827", + "___id": "T000002R052810", "___s": true }, { @@ -708870,7 +711504,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#prefix", "inherited": true, - "___id": "T000002R052828", + "___id": "T000002R052811", "___s": true }, { @@ -708905,7 +711539,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#isReadyToProcess", "inherited": true, - "___id": "T000002R052829", + "___id": "T000002R052812", "___s": true }, { @@ -708955,7 +711589,7 @@ ], "inherits": "Phaser.Loader.MultiFile#addToMultiFile", "inherited": true, - "___id": "T000002R052830", + "___id": "T000002R052813", "___s": true }, { @@ -708991,7 +711625,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileFailed", "inherited": true, - "___id": "T000002R052831", + "___id": "T000002R052814", "___s": true }, { @@ -709016,7 +711650,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pendingDestroy", "inherited": true, - "___id": "T000002R052832", + "___id": "T000002R052815", "___s": true }, { @@ -709037,7 +711671,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#destroy", "inherited": true, - "___id": "T000002R052833", + "___id": "T000002R052816", "___s": true }, { @@ -709067,7 +711701,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R052834", + "___id": "T000002R052817", "___s": true }, { @@ -709107,7 +711741,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R052835", + "___id": "T000002R052818", "___s": true }, { @@ -709137,7 +711771,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R052836", + "___id": "T000002R052819", "___s": true }, { @@ -709167,7 +711801,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R052837", + "___id": "T000002R052820", "___s": true }, { @@ -709207,7 +711841,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R052838", + "___id": "T000002R052821", "___s": true }, { @@ -709237,7 +711871,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R052839", + "___id": "T000002R052822", "___s": true }, { @@ -709267,7 +711901,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R052840", + "___id": "T000002R052823", "___s": true }, { @@ -709299,7 +711933,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R052841", + "___id": "T000002R052824", "___s": true }, { @@ -709329,7 +711963,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R052842", + "___id": "T000002R052825", "___s": true }, { @@ -709360,7 +711994,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R052843", + "___id": "T000002R052826", "___s": true }, { @@ -709391,7 +712025,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R052844", + "___id": "T000002R052827", "___s": true }, { @@ -709422,7 +712056,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R052845", + "___id": "T000002R052828", "___s": true }, { @@ -709461,7 +712095,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R052846", + "___id": "T000002R052829", "___s": true }, { @@ -709490,7 +712124,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R052847", + "___id": "T000002R052830", "___s": true }, { @@ -709519,7 +712153,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R052848", + "___id": "T000002R052831", "___s": true }, { @@ -709551,7 +712185,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R052849", + "___id": "T000002R052832", "___s": true }, { @@ -709583,7 +712217,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R052850", + "___id": "T000002R052833", "___s": true }, { @@ -709613,14 +712247,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R052851", + "___id": "T000002R052834", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.BinaryFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.BinaryFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R052835", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -709649,14 +712314,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R052852", + "___id": "T000002R052836", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -709670,14 +712335,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R052853", + "___id": "T000002R052837", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -709691,14 +712356,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R052854", + "___id": "T000002R052838", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -709740,14 +712405,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R052855", + "___id": "T000002R052839", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -709776,14 +712441,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R052856", + "___id": "T000002R052840", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -709825,14 +712490,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R052857", + "___id": "T000002R052841", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -709864,14 +712529,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R052858", + "___id": "T000002R052842", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -709885,14 +712550,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R052859", + "___id": "T000002R052843", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -709906,14 +712571,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R052860", + "___id": "T000002R052844", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -709941,14 +712606,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R052861", + "___id": "T000002R052845", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -709962,14 +712627,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R052862", + "___id": "T000002R052846", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -709987,14 +712652,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R052863", + "___id": "T000002R052847", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -710008,7 +712673,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R052864", + "___id": "T000002R052848", "___s": true }, { @@ -710038,7 +712703,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#loader", "inherited": true, - "___id": "T000002R052865", + "___id": "T000002R052849", "___s": true }, { @@ -710068,7 +712733,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#type", "inherited": true, - "___id": "T000002R052866", + "___id": "T000002R052850", "___s": true }, { @@ -710098,7 +712763,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#key", "inherited": true, - "___id": "T000002R052867", + "___id": "T000002R052851", "___s": true }, { @@ -710137,7 +712802,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#files", "inherited": true, - "___id": "T000002R052869", + "___id": "T000002R052853", "___s": true }, { @@ -710167,7 +712832,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#state", "inherited": true, - "___id": "T000002R052870", + "___id": "T000002R052854", "___s": true }, { @@ -710198,7 +712863,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#complete", "inherited": true, - "___id": "T000002R052871", + "___id": "T000002R052855", "___s": true }, { @@ -710228,7 +712893,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pending", "inherited": true, - "___id": "T000002R052872", + "___id": "T000002R052856", "___s": true }, { @@ -710259,7 +712924,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#failed", "inherited": true, - "___id": "T000002R052873", + "___id": "T000002R052857", "___s": true }, { @@ -710289,7 +712954,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#config", "inherited": true, - "___id": "T000002R052874", + "___id": "T000002R052858", "___s": true }, { @@ -710319,7 +712984,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#baseURL", "inherited": true, - "___id": "T000002R052875", + "___id": "T000002R052859", "___s": true }, { @@ -710349,7 +713014,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#path", "inherited": true, - "___id": "T000002R052876", + "___id": "T000002R052860", "___s": true }, { @@ -710379,7 +713044,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#prefix", "inherited": true, - "___id": "T000002R052877", + "___id": "T000002R052861", "___s": true }, { @@ -710414,7 +713079,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#isReadyToProcess", "inherited": true, - "___id": "T000002R052878", + "___id": "T000002R052862", "___s": true }, { @@ -710464,7 +713129,7 @@ ], "inherits": "Phaser.Loader.MultiFile#addToMultiFile", "inherited": true, - "___id": "T000002R052879", + "___id": "T000002R052863", "___s": true }, { @@ -710500,7 +713165,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileComplete", "inherited": true, - "___id": "T000002R052880", + "___id": "T000002R052864", "___s": true }, { @@ -710536,7 +713201,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileFailed", "inherited": true, - "___id": "T000002R052881", + "___id": "T000002R052865", "___s": true }, { @@ -710561,7 +713226,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pendingDestroy", "inherited": true, - "___id": "T000002R052882", + "___id": "T000002R052866", "___s": true }, { @@ -710582,7 +713247,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#destroy", "inherited": true, - "___id": "T000002R052883", + "___id": "T000002R052867", "___s": true }, { @@ -710612,7 +713277,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#loader", "inherited": true, - "___id": "T000002R052884", + "___id": "T000002R052868", "___s": true }, { @@ -710642,7 +713307,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#type", "inherited": true, - "___id": "T000002R052885", + "___id": "T000002R052869", "___s": true }, { @@ -710672,7 +713337,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#key", "inherited": true, - "___id": "T000002R052886", + "___id": "T000002R052870", "___s": true }, { @@ -710711,7 +713376,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#files", "inherited": true, - "___id": "T000002R052888", + "___id": "T000002R052872", "___s": true }, { @@ -710741,7 +713406,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#state", "inherited": true, - "___id": "T000002R052889", + "___id": "T000002R052873", "___s": true }, { @@ -710772,7 +713437,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#complete", "inherited": true, - "___id": "T000002R052890", + "___id": "T000002R052874", "___s": true }, { @@ -710802,7 +713467,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pending", "inherited": true, - "___id": "T000002R052891", + "___id": "T000002R052875", "___s": true }, { @@ -710833,7 +713498,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#failed", "inherited": true, - "___id": "T000002R052892", + "___id": "T000002R052876", "___s": true }, { @@ -710863,7 +713528,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#config", "inherited": true, - "___id": "T000002R052893", + "___id": "T000002R052877", "___s": true }, { @@ -710893,7 +713558,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#baseURL", "inherited": true, - "___id": "T000002R052894", + "___id": "T000002R052878", "___s": true }, { @@ -710923,7 +713588,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#path", "inherited": true, - "___id": "T000002R052895", + "___id": "T000002R052879", "___s": true }, { @@ -710953,7 +713618,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#prefix", "inherited": true, - "___id": "T000002R052896", + "___id": "T000002R052880", "___s": true }, { @@ -710988,7 +713653,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#isReadyToProcess", "inherited": true, - "___id": "T000002R052897", + "___id": "T000002R052881", "___s": true }, { @@ -711038,7 +713703,7 @@ ], "inherits": "Phaser.Loader.MultiFile#addToMultiFile", "inherited": true, - "___id": "T000002R052898", + "___id": "T000002R052882", "___s": true }, { @@ -711074,7 +713739,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileFailed", "inherited": true, - "___id": "T000002R052899", + "___id": "T000002R052883", "___s": true }, { @@ -711099,7 +713764,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pendingDestroy", "inherited": true, - "___id": "T000002R052900", + "___id": "T000002R052884", "___s": true }, { @@ -711120,7 +713785,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#destroy", "inherited": true, - "___id": "T000002R052901", + "___id": "T000002R052885", "___s": true }, { @@ -711150,7 +713815,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R052902", + "___id": "T000002R052886", "___s": true }, { @@ -711190,7 +713855,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R052903", + "___id": "T000002R052887", "___s": true }, { @@ -711220,7 +713885,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R052904", + "___id": "T000002R052888", "___s": true }, { @@ -711250,7 +713915,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R052905", + "___id": "T000002R052889", "___s": true }, { @@ -711290,7 +713955,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R052906", + "___id": "T000002R052890", "___s": true }, { @@ -711320,7 +713985,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R052907", + "___id": "T000002R052891", "___s": true }, { @@ -711350,7 +714015,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R052908", + "___id": "T000002R052892", "___s": true }, { @@ -711382,7 +714047,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R052909", + "___id": "T000002R052893", "___s": true }, { @@ -711412,7 +714077,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R052910", + "___id": "T000002R052894", "___s": true }, { @@ -711443,7 +714108,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R052911", + "___id": "T000002R052895", "___s": true }, { @@ -711474,7 +714139,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R052912", + "___id": "T000002R052896", "___s": true }, { @@ -711505,7 +714170,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R052913", + "___id": "T000002R052897", "___s": true }, { @@ -711544,7 +714209,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R052914", + "___id": "T000002R052898", "___s": true }, { @@ -711573,7 +714238,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R052915", + "___id": "T000002R052899", "___s": true }, { @@ -711602,7 +714267,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R052916", + "___id": "T000002R052900", "___s": true }, { @@ -711634,7 +714299,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R052917", + "___id": "T000002R052901", "___s": true }, { @@ -711666,7 +714331,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R052918", + "___id": "T000002R052902", "___s": true }, { @@ -711696,14 +714361,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R052919", + "___id": "T000002R052903", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.CSSFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.CSSFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R052904", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -711732,14 +714428,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R052920", + "___id": "T000002R052905", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -711753,14 +714449,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R052921", + "___id": "T000002R052906", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -711774,14 +714470,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R052922", + "___id": "T000002R052907", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -711823,14 +714519,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R052923", + "___id": "T000002R052908", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -711859,14 +714555,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R052924", + "___id": "T000002R052909", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -711908,14 +714604,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R052925", + "___id": "T000002R052910", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -711947,14 +714643,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R052926", + "___id": "T000002R052911", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -711968,14 +714664,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R052927", + "___id": "T000002R052912", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -711989,14 +714685,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R052928", + "___id": "T000002R052913", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712024,14 +714720,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R052929", + "___id": "T000002R052914", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712045,14 +714741,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R052930", + "___id": "T000002R052915", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712070,14 +714766,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R052931", + "___id": "T000002R052916", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712091,7 +714787,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R052932", + "___id": "T000002R052917", "___s": true }, { @@ -712121,7 +714817,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R052933", + "___id": "T000002R052918", "___s": true }, { @@ -712161,7 +714857,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R052934", + "___id": "T000002R052919", "___s": true }, { @@ -712191,7 +714887,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R052935", + "___id": "T000002R052920", "___s": true }, { @@ -712221,7 +714917,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R052936", + "___id": "T000002R052921", "___s": true }, { @@ -712261,7 +714957,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R052937", + "___id": "T000002R052922", "___s": true }, { @@ -712291,7 +714987,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R052938", + "___id": "T000002R052923", "___s": true }, { @@ -712321,7 +715017,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R052939", + "___id": "T000002R052924", "___s": true }, { @@ -712353,7 +715049,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R052940", + "___id": "T000002R052925", "___s": true }, { @@ -712383,7 +715079,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R052941", + "___id": "T000002R052926", "___s": true }, { @@ -712414,7 +715110,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R052942", + "___id": "T000002R052927", "___s": true }, { @@ -712445,7 +715141,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R052943", + "___id": "T000002R052928", "___s": true }, { @@ -712476,7 +715172,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R052944", + "___id": "T000002R052929", "___s": true }, { @@ -712515,7 +715211,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R052945", + "___id": "T000002R052930", "___s": true }, { @@ -712544,7 +715240,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R052946", + "___id": "T000002R052931", "___s": true }, { @@ -712573,7 +715269,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R052947", + "___id": "T000002R052932", "___s": true }, { @@ -712605,7 +715301,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R052948", + "___id": "T000002R052933", "___s": true }, { @@ -712637,7 +715333,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R052949", + "___id": "T000002R052934", "___s": true }, { @@ -712667,14 +715363,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R052950", + "___id": "T000002R052935", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.GLSLFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.GLSLFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R052936", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712703,14 +715430,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R052951", + "___id": "T000002R052937", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712724,14 +715451,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R052952", + "___id": "T000002R052938", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712745,14 +715472,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R052953", + "___id": "T000002R052939", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712794,14 +715521,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R052954", + "___id": "T000002R052940", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712830,14 +715557,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R052955", + "___id": "T000002R052941", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712879,14 +715606,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R052956", + "___id": "T000002R052942", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712918,14 +715645,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R052957", + "___id": "T000002R052943", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712939,14 +715666,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R052958", + "___id": "T000002R052944", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712960,14 +715687,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R052959", + "___id": "T000002R052945", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -712995,14 +715722,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R052960", + "___id": "T000002R052946", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -713020,14 +715747,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R052961", + "___id": "T000002R052947", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -713041,7 +715768,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R052962", + "___id": "T000002R052948", "___s": true }, { @@ -713071,7 +715798,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R052963", + "___id": "T000002R052949", "___s": true }, { @@ -713111,7 +715838,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R052964", + "___id": "T000002R052950", "___s": true }, { @@ -713141,7 +715868,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R052965", + "___id": "T000002R052951", "___s": true }, { @@ -713171,7 +715898,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R052966", + "___id": "T000002R052952", "___s": true }, { @@ -713211,7 +715938,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R052967", + "___id": "T000002R052953", "___s": true }, { @@ -713241,7 +715968,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R052968", + "___id": "T000002R052954", "___s": true }, { @@ -713271,7 +715998,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R052969", + "___id": "T000002R052955", "___s": true }, { @@ -713303,7 +716030,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R052970", + "___id": "T000002R052956", "___s": true }, { @@ -713333,7 +716060,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R052971", + "___id": "T000002R052957", "___s": true }, { @@ -713364,7 +716091,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R052972", + "___id": "T000002R052958", "___s": true }, { @@ -713395,7 +716122,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R052973", + "___id": "T000002R052959", "___s": true }, { @@ -713426,7 +716153,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R052974", + "___id": "T000002R052960", "___s": true }, { @@ -713465,7 +716192,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R052975", + "___id": "T000002R052961", "___s": true }, { @@ -713494,7 +716221,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R052976", + "___id": "T000002R052962", "___s": true }, { @@ -713523,7 +716250,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R052977", + "___id": "T000002R052963", "___s": true }, { @@ -713555,7 +716282,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R052978", + "___id": "T000002R052964", "___s": true }, { @@ -713587,7 +716314,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R052979", + "___id": "T000002R052965", "___s": true }, { @@ -713617,14 +716344,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R052980", + "___id": "T000002R052966", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.HTML5AudioFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.HTML5AudioFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R052967", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -713653,14 +716411,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R052981", + "___id": "T000002R052968", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -713674,14 +716432,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R052982", + "___id": "T000002R052969", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -713710,14 +716468,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R052983", + "___id": "T000002R052970", "___s": true }, { "comment": "/**\r\n * Usually overridden by the FileTypes and is called by Loader.nextFile.\r\n * This method controls what extra work this File does with its loaded data, for example a JSON file will parse itself during this stage.\r\n *\r\n * @method Phaser.Loader.File#onProcess\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 404, + "lineno": 432, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -713731,14 +716489,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcess", "inherited": true, - "___id": "T000002R052984", + "___id": "T000002R052971", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -713752,14 +716510,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R052985", + "___id": "T000002R052972", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -713773,14 +716531,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R052986", + "___id": "T000002R052973", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -713808,14 +716566,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R052987", + "___id": "T000002R052974", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -713829,14 +716587,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R052988", + "___id": "T000002R052975", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -713854,14 +716612,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R052989", + "___id": "T000002R052976", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -713875,7 +716633,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R052990", + "___id": "T000002R052977", "___s": true }, { @@ -713905,7 +716663,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R052991", + "___id": "T000002R052978", "___s": true }, { @@ -713945,7 +716703,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R052992", + "___id": "T000002R052979", "___s": true }, { @@ -713975,7 +716733,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R052993", + "___id": "T000002R052980", "___s": true }, { @@ -714005,7 +716763,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R052994", + "___id": "T000002R052981", "___s": true }, { @@ -714045,7 +716803,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R052995", + "___id": "T000002R052982", "___s": true }, { @@ -714075,7 +716833,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R052996", + "___id": "T000002R052983", "___s": true }, { @@ -714105,7 +716863,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R052997", + "___id": "T000002R052984", "___s": true }, { @@ -714137,7 +716895,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R052998", + "___id": "T000002R052985", "___s": true }, { @@ -714167,7 +716925,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R052999", + "___id": "T000002R052986", "___s": true }, { @@ -714198,7 +716956,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053000", + "___id": "T000002R052987", "___s": true }, { @@ -714229,7 +716987,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053001", + "___id": "T000002R052988", "___s": true }, { @@ -714260,7 +717018,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053002", + "___id": "T000002R052989", "___s": true }, { @@ -714299,7 +717057,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053003", + "___id": "T000002R052990", "___s": true }, { @@ -714328,7 +717086,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053004", + "___id": "T000002R052991", "___s": true }, { @@ -714357,7 +717115,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053005", + "___id": "T000002R052992", "___s": true }, { @@ -714389,7 +717147,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053006", + "___id": "T000002R052993", "___s": true }, { @@ -714421,7 +717179,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053007", + "___id": "T000002R052994", "___s": true }, { @@ -714451,14 +717209,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053008", + "___id": "T000002R052995", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.HTMLFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.HTMLFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R052996", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714487,14 +717276,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053009", + "___id": "T000002R052997", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714508,14 +717297,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053010", + "___id": "T000002R052998", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714529,14 +717318,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053011", + "___id": "T000002R052999", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714578,14 +717367,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053012", + "___id": "T000002R053000", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714614,14 +717403,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053013", + "___id": "T000002R053001", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714663,14 +717452,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053014", + "___id": "T000002R053002", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714702,14 +717491,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053015", + "___id": "T000002R053003", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714723,14 +717512,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053016", + "___id": "T000002R053004", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714744,14 +717533,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053017", + "___id": "T000002R053005", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714779,14 +717568,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053018", + "___id": "T000002R053006", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714800,14 +717589,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R053019", + "___id": "T000002R053007", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714825,14 +717614,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053020", + "___id": "T000002R053008", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -714846,7 +717635,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053021", + "___id": "T000002R053009", "___s": true }, { @@ -714876,7 +717665,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053022", + "___id": "T000002R053010", "___s": true }, { @@ -714916,7 +717705,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053023", + "___id": "T000002R053011", "___s": true }, { @@ -714946,7 +717735,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053024", + "___id": "T000002R053012", "___s": true }, { @@ -714976,7 +717765,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053025", + "___id": "T000002R053013", "___s": true }, { @@ -715016,7 +717805,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053026", + "___id": "T000002R053014", "___s": true }, { @@ -715046,7 +717835,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053027", + "___id": "T000002R053015", "___s": true }, { @@ -715076,7 +717865,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053028", + "___id": "T000002R053016", "___s": true }, { @@ -715108,7 +717897,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053029", + "___id": "T000002R053017", "___s": true }, { @@ -715138,7 +717927,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053030", + "___id": "T000002R053018", "___s": true }, { @@ -715169,7 +717958,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053031", + "___id": "T000002R053019", "___s": true }, { @@ -715200,7 +717989,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053032", + "___id": "T000002R053020", "___s": true }, { @@ -715231,7 +718020,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053033", + "___id": "T000002R053021", "___s": true }, { @@ -715270,7 +718059,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053034", + "___id": "T000002R053022", "___s": true }, { @@ -715299,7 +718088,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053035", + "___id": "T000002R053023", "___s": true }, { @@ -715328,7 +718117,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053036", + "___id": "T000002R053024", "___s": true }, { @@ -715360,7 +718149,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053037", + "___id": "T000002R053025", "___s": true }, { @@ -715392,7 +718181,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053038", + "___id": "T000002R053026", "___s": true }, { @@ -715422,14 +718211,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053039", + "___id": "T000002R053027", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.HTMLTextureFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.HTMLTextureFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053028", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -715458,14 +718278,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053040", + "___id": "T000002R053029", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -715479,14 +718299,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053041", + "___id": "T000002R053030", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -715500,14 +718320,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053042", + "___id": "T000002R053031", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -715549,14 +718369,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053043", + "___id": "T000002R053032", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -715585,14 +718405,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053044", + "___id": "T000002R053033", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -715634,14 +718454,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053045", + "___id": "T000002R053034", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -715673,14 +718493,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053046", + "___id": "T000002R053035", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -715694,14 +718514,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053047", + "___id": "T000002R053036", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -715715,14 +718535,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053048", + "___id": "T000002R053037", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -715750,14 +718570,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053049", + "___id": "T000002R053038", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -715775,14 +718595,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053050", + "___id": "T000002R053039", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -715796,7 +718616,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053051", + "___id": "T000002R053040", "___s": true }, { @@ -715826,7 +718646,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053052", + "___id": "T000002R053041", "___s": true }, { @@ -715866,7 +718686,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053053", + "___id": "T000002R053042", "___s": true }, { @@ -715896,7 +718716,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053054", + "___id": "T000002R053043", "___s": true }, { @@ -715926,7 +718746,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053055", + "___id": "T000002R053044", "___s": true }, { @@ -715966,7 +718786,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053056", + "___id": "T000002R053045", "___s": true }, { @@ -715996,7 +718816,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053057", + "___id": "T000002R053046", "___s": true }, { @@ -716026,7 +718846,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053058", + "___id": "T000002R053047", "___s": true }, { @@ -716058,7 +718878,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053059", + "___id": "T000002R053048", "___s": true }, { @@ -716088,7 +718908,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053060", + "___id": "T000002R053049", "___s": true }, { @@ -716119,7 +718939,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053061", + "___id": "T000002R053050", "___s": true }, { @@ -716150,7 +718970,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053062", + "___id": "T000002R053051", "___s": true }, { @@ -716181,7 +719001,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053063", + "___id": "T000002R053052", "___s": true }, { @@ -716220,7 +719040,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053064", + "___id": "T000002R053053", "___s": true }, { @@ -716249,7 +719069,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053065", + "___id": "T000002R053054", "___s": true }, { @@ -716278,7 +719098,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053066", + "___id": "T000002R053055", "___s": true }, { @@ -716310,7 +719130,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053067", + "___id": "T000002R053056", "___s": true }, { @@ -716342,7 +719162,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053068", + "___id": "T000002R053057", "___s": true }, { @@ -716372,14 +719192,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053069", + "___id": "T000002R053058", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.ImageFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.ImageFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053059", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -716408,14 +719259,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053070", + "___id": "T000002R053060", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -716429,14 +719280,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053071", + "___id": "T000002R053061", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -716450,14 +719301,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053072", + "___id": "T000002R053062", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -716499,14 +719350,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053073", + "___id": "T000002R053063", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -716535,14 +719386,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053074", + "___id": "T000002R053064", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -716584,14 +719435,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053075", + "___id": "T000002R053065", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -716623,14 +719474,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053076", + "___id": "T000002R053066", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -716644,14 +719495,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053077", + "___id": "T000002R053067", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -716665,14 +719516,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053078", + "___id": "T000002R053068", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -716700,14 +719551,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053079", + "___id": "T000002R053069", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -716725,14 +719576,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053080", + "___id": "T000002R053070", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -716746,7 +719597,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053081", + "___id": "T000002R053071", "___s": true }, { @@ -716776,7 +719627,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053082", + "___id": "T000002R053072", "___s": true }, { @@ -716816,7 +719667,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053083", + "___id": "T000002R053073", "___s": true }, { @@ -716846,7 +719697,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053084", + "___id": "T000002R053074", "___s": true }, { @@ -716876,7 +719727,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053085", + "___id": "T000002R053075", "___s": true }, { @@ -716916,7 +719767,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053086", + "___id": "T000002R053076", "___s": true }, { @@ -716946,7 +719797,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053087", + "___id": "T000002R053077", "___s": true }, { @@ -716976,7 +719827,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053088", + "___id": "T000002R053078", "___s": true }, { @@ -717008,7 +719859,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053089", + "___id": "T000002R053079", "___s": true }, { @@ -717038,7 +719889,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053090", + "___id": "T000002R053080", "___s": true }, { @@ -717069,7 +719920,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053091", + "___id": "T000002R053081", "___s": true }, { @@ -717100,7 +719951,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053092", + "___id": "T000002R053082", "___s": true }, { @@ -717131,7 +719982,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053093", + "___id": "T000002R053083", "___s": true }, { @@ -717170,7 +720021,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053094", + "___id": "T000002R053084", "___s": true }, { @@ -717199,7 +720050,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053095", + "___id": "T000002R053085", "___s": true }, { @@ -717228,7 +720079,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053096", + "___id": "T000002R053086", "___s": true }, { @@ -717260,7 +720111,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053097", + "___id": "T000002R053087", "___s": true }, { @@ -717292,7 +720143,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053098", + "___id": "T000002R053088", "___s": true }, { @@ -717322,14 +720173,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053099", + "___id": "T000002R053089", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.JSONFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.JSONFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053090", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717358,14 +720240,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053100", + "___id": "T000002R053091", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717379,14 +720261,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053101", + "___id": "T000002R053092", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717400,14 +720282,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053102", + "___id": "T000002R053093", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717449,14 +720331,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053103", + "___id": "T000002R053094", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717485,14 +720367,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053104", + "___id": "T000002R053095", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717534,14 +720416,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053105", + "___id": "T000002R053096", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717573,14 +720455,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053106", + "___id": "T000002R053097", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717594,14 +720476,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053107", + "___id": "T000002R053098", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717615,14 +720497,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053108", + "___id": "T000002R053099", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717650,14 +720532,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053109", + "___id": "T000002R053100", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717671,14 +720553,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R053110", + "___id": "T000002R053101", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717696,14 +720578,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053111", + "___id": "T000002R053102", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -717717,7 +720599,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053112", + "___id": "T000002R053103", "___s": true }, { @@ -717747,7 +720629,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#loader", "inherited": true, - "___id": "T000002R053113", + "___id": "T000002R053104", "___s": true }, { @@ -717777,7 +720659,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#type", "inherited": true, - "___id": "T000002R053114", + "___id": "T000002R053105", "___s": true }, { @@ -717807,7 +720689,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#key", "inherited": true, - "___id": "T000002R053115", + "___id": "T000002R053106", "___s": true }, { @@ -717846,7 +720728,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#files", "inherited": true, - "___id": "T000002R053117", + "___id": "T000002R053108", "___s": true }, { @@ -717876,7 +720758,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#state", "inherited": true, - "___id": "T000002R053118", + "___id": "T000002R053109", "___s": true }, { @@ -717907,7 +720789,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#complete", "inherited": true, - "___id": "T000002R053119", + "___id": "T000002R053110", "___s": true }, { @@ -717937,7 +720819,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pending", "inherited": true, - "___id": "T000002R053120", + "___id": "T000002R053111", "___s": true }, { @@ -717968,7 +720850,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#failed", "inherited": true, - "___id": "T000002R053121", + "___id": "T000002R053112", "___s": true }, { @@ -717998,7 +720880,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#config", "inherited": true, - "___id": "T000002R053122", + "___id": "T000002R053113", "___s": true }, { @@ -718028,7 +720910,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#baseURL", "inherited": true, - "___id": "T000002R053123", + "___id": "T000002R053114", "___s": true }, { @@ -718058,7 +720940,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#path", "inherited": true, - "___id": "T000002R053124", + "___id": "T000002R053115", "___s": true }, { @@ -718088,7 +720970,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#prefix", "inherited": true, - "___id": "T000002R053125", + "___id": "T000002R053116", "___s": true }, { @@ -718123,7 +721005,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#isReadyToProcess", "inherited": true, - "___id": "T000002R053126", + "___id": "T000002R053117", "___s": true }, { @@ -718173,7 +721055,7 @@ ], "inherits": "Phaser.Loader.MultiFile#addToMultiFile", "inherited": true, - "___id": "T000002R053127", + "___id": "T000002R053118", "___s": true }, { @@ -718209,7 +721091,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileFailed", "inherited": true, - "___id": "T000002R053128", + "___id": "T000002R053119", "___s": true }, { @@ -718234,7 +721116,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pendingDestroy", "inherited": true, - "___id": "T000002R053129", + "___id": "T000002R053120", "___s": true }, { @@ -718255,7 +721137,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#destroy", "inherited": true, - "___id": "T000002R053130", + "___id": "T000002R053121", "___s": true }, { @@ -718285,7 +721167,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#loader", "inherited": true, - "___id": "T000002R053131", + "___id": "T000002R053122", "___s": true }, { @@ -718315,7 +721197,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#type", "inherited": true, - "___id": "T000002R053132", + "___id": "T000002R053123", "___s": true }, { @@ -718345,7 +721227,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#key", "inherited": true, - "___id": "T000002R053133", + "___id": "T000002R053124", "___s": true }, { @@ -718384,7 +721266,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#files", "inherited": true, - "___id": "T000002R053135", + "___id": "T000002R053126", "___s": true }, { @@ -718414,7 +721296,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#state", "inherited": true, - "___id": "T000002R053136", + "___id": "T000002R053127", "___s": true }, { @@ -718445,7 +721327,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#complete", "inherited": true, - "___id": "T000002R053137", + "___id": "T000002R053128", "___s": true }, { @@ -718475,7 +721357,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pending", "inherited": true, - "___id": "T000002R053138", + "___id": "T000002R053129", "___s": true }, { @@ -718506,7 +721388,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#failed", "inherited": true, - "___id": "T000002R053139", + "___id": "T000002R053130", "___s": true }, { @@ -718536,7 +721418,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#config", "inherited": true, - "___id": "T000002R053140", + "___id": "T000002R053131", "___s": true }, { @@ -718566,7 +721448,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#baseURL", "inherited": true, - "___id": "T000002R053141", + "___id": "T000002R053132", "___s": true }, { @@ -718596,7 +721478,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#path", "inherited": true, - "___id": "T000002R053142", + "___id": "T000002R053133", "___s": true }, { @@ -718626,7 +721508,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#prefix", "inherited": true, - "___id": "T000002R053143", + "___id": "T000002R053134", "___s": true }, { @@ -718661,7 +721543,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#isReadyToProcess", "inherited": true, - "___id": "T000002R053144", + "___id": "T000002R053135", "___s": true }, { @@ -718711,7 +721593,7 @@ ], "inherits": "Phaser.Loader.MultiFile#addToMultiFile", "inherited": true, - "___id": "T000002R053145", + "___id": "T000002R053136", "___s": true }, { @@ -718747,7 +721629,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileComplete", "inherited": true, - "___id": "T000002R053146", + "___id": "T000002R053137", "___s": true }, { @@ -718783,7 +721665,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileFailed", "inherited": true, - "___id": "T000002R053147", + "___id": "T000002R053138", "___s": true }, { @@ -718808,7 +721690,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pendingDestroy", "inherited": true, - "___id": "T000002R053148", + "___id": "T000002R053139", "___s": true }, { @@ -718829,7 +721711,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#destroy", "inherited": true, - "___id": "T000002R053149", + "___id": "T000002R053140", "___s": true }, { @@ -718859,7 +721741,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#loader", "inherited": true, - "___id": "T000002R053150", + "___id": "T000002R053141", "___s": true }, { @@ -718889,7 +721771,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#type", "inherited": true, - "___id": "T000002R053151", + "___id": "T000002R053142", "___s": true }, { @@ -718919,7 +721801,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#key", "inherited": true, - "___id": "T000002R053152", + "___id": "T000002R053143", "___s": true }, { @@ -718958,7 +721840,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#files", "inherited": true, - "___id": "T000002R053154", + "___id": "T000002R053145", "___s": true }, { @@ -718988,7 +721870,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#state", "inherited": true, - "___id": "T000002R053155", + "___id": "T000002R053146", "___s": true }, { @@ -719019,7 +721901,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#complete", "inherited": true, - "___id": "T000002R053156", + "___id": "T000002R053147", "___s": true }, { @@ -719049,7 +721931,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pending", "inherited": true, - "___id": "T000002R053157", + "___id": "T000002R053148", "___s": true }, { @@ -719080,7 +721962,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#failed", "inherited": true, - "___id": "T000002R053158", + "___id": "T000002R053149", "___s": true }, { @@ -719110,7 +721992,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#config", "inherited": true, - "___id": "T000002R053159", + "___id": "T000002R053150", "___s": true }, { @@ -719140,7 +722022,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#baseURL", "inherited": true, - "___id": "T000002R053160", + "___id": "T000002R053151", "___s": true }, { @@ -719170,7 +722052,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#path", "inherited": true, - "___id": "T000002R053161", + "___id": "T000002R053152", "___s": true }, { @@ -719200,7 +722082,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#prefix", "inherited": true, - "___id": "T000002R053162", + "___id": "T000002R053153", "___s": true }, { @@ -719235,7 +722117,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#isReadyToProcess", "inherited": true, - "___id": "T000002R053163", + "___id": "T000002R053154", "___s": true }, { @@ -719285,7 +722167,7 @@ ], "inherits": "Phaser.Loader.MultiFile#addToMultiFile", "inherited": true, - "___id": "T000002R053164", + "___id": "T000002R053155", "___s": true }, { @@ -719321,7 +722203,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileComplete", "inherited": true, - "___id": "T000002R053165", + "___id": "T000002R053156", "___s": true }, { @@ -719357,7 +722239,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileFailed", "inherited": true, - "___id": "T000002R053166", + "___id": "T000002R053157", "___s": true }, { @@ -719382,7 +722264,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pendingDestroy", "inherited": true, - "___id": "T000002R053167", + "___id": "T000002R053158", "___s": true }, { @@ -719403,7 +722285,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#destroy", "inherited": true, - "___id": "T000002R053168", + "___id": "T000002R053159", "___s": true }, { @@ -719433,7 +722315,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053169", + "___id": "T000002R053160", "___s": true }, { @@ -719473,7 +722355,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053170", + "___id": "T000002R053161", "___s": true }, { @@ -719503,7 +722385,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053171", + "___id": "T000002R053162", "___s": true }, { @@ -719533,7 +722415,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053172", + "___id": "T000002R053163", "___s": true }, { @@ -719573,7 +722455,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053173", + "___id": "T000002R053164", "___s": true }, { @@ -719603,7 +722485,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053174", + "___id": "T000002R053165", "___s": true }, { @@ -719633,7 +722515,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053175", + "___id": "T000002R053166", "___s": true }, { @@ -719665,7 +722547,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053176", + "___id": "T000002R053167", "___s": true }, { @@ -719695,7 +722577,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053177", + "___id": "T000002R053168", "___s": true }, { @@ -719726,7 +722608,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053178", + "___id": "T000002R053169", "___s": true }, { @@ -719757,7 +722639,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053179", + "___id": "T000002R053170", "___s": true }, { @@ -719788,7 +722670,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053180", + "___id": "T000002R053171", "___s": true }, { @@ -719827,7 +722709,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053181", + "___id": "T000002R053172", "___s": true }, { @@ -719856,7 +722738,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053182", + "___id": "T000002R053173", "___s": true }, { @@ -719885,7 +722767,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053183", + "___id": "T000002R053174", "___s": true }, { @@ -719917,7 +722799,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053184", + "___id": "T000002R053175", "___s": true }, { @@ -719949,7 +722831,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053185", + "___id": "T000002R053176", "___s": true }, { @@ -719979,14 +722861,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053186", + "___id": "T000002R053177", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.PackFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.PackFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053178", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720015,14 +722928,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053187", + "___id": "T000002R053179", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720036,14 +722949,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053188", + "___id": "T000002R053180", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720057,14 +722970,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053189", + "___id": "T000002R053181", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720106,14 +723019,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053190", + "___id": "T000002R053182", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720142,14 +723055,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053191", + "___id": "T000002R053183", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720191,14 +723104,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053192", + "___id": "T000002R053184", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720230,14 +723143,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053193", + "___id": "T000002R053185", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720251,14 +723164,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053194", + "___id": "T000002R053186", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720272,14 +723185,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053195", + "___id": "T000002R053187", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720307,14 +723220,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053196", + "___id": "T000002R053188", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720328,14 +723241,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R053197", + "___id": "T000002R053189", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720353,14 +723266,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053198", + "___id": "T000002R053190", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720374,7 +723287,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053199", + "___id": "T000002R053191", "___s": true }, { @@ -720404,7 +723317,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053200", + "___id": "T000002R053192", "___s": true }, { @@ -720444,7 +723357,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053201", + "___id": "T000002R053193", "___s": true }, { @@ -720474,7 +723387,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053202", + "___id": "T000002R053194", "___s": true }, { @@ -720504,7 +723417,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053203", + "___id": "T000002R053195", "___s": true }, { @@ -720544,7 +723457,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053204", + "___id": "T000002R053196", "___s": true }, { @@ -720574,7 +723487,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053205", + "___id": "T000002R053197", "___s": true }, { @@ -720604,7 +723517,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053206", + "___id": "T000002R053198", "___s": true }, { @@ -720636,7 +723549,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053207", + "___id": "T000002R053199", "___s": true }, { @@ -720666,7 +723579,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053208", + "___id": "T000002R053200", "___s": true }, { @@ -720697,7 +723610,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053209", + "___id": "T000002R053201", "___s": true }, { @@ -720728,7 +723641,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053210", + "___id": "T000002R053202", "___s": true }, { @@ -720759,7 +723672,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053211", + "___id": "T000002R053203", "___s": true }, { @@ -720798,7 +723711,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053212", + "___id": "T000002R053204", "___s": true }, { @@ -720827,7 +723740,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053213", + "___id": "T000002R053205", "___s": true }, { @@ -720856,7 +723769,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053214", + "___id": "T000002R053206", "___s": true }, { @@ -720888,7 +723801,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053215", + "___id": "T000002R053207", "___s": true }, { @@ -720920,7 +723833,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053216", + "___id": "T000002R053208", "___s": true }, { @@ -720950,14 +723863,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053217", + "___id": "T000002R053209", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.PluginFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.PluginFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053210", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -720986,14 +723930,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053218", + "___id": "T000002R053211", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721007,14 +723951,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053219", + "___id": "T000002R053212", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721028,14 +723972,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053220", + "___id": "T000002R053213", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721077,14 +724021,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053221", + "___id": "T000002R053214", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721113,14 +724057,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053222", + "___id": "T000002R053215", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721162,14 +724106,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053223", + "___id": "T000002R053216", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721201,14 +724145,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053224", + "___id": "T000002R053217", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721222,14 +724166,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053225", + "___id": "T000002R053218", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721243,14 +724187,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053226", + "___id": "T000002R053219", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721278,14 +724222,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053227", + "___id": "T000002R053220", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721299,14 +724243,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R053228", + "___id": "T000002R053221", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721324,14 +724268,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053229", + "___id": "T000002R053222", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721345,7 +724289,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053230", + "___id": "T000002R053223", "___s": true }, { @@ -721375,7 +724319,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053231", + "___id": "T000002R053224", "___s": true }, { @@ -721415,7 +724359,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053232", + "___id": "T000002R053225", "___s": true }, { @@ -721445,7 +724389,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053233", + "___id": "T000002R053226", "___s": true }, { @@ -721475,7 +724419,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053234", + "___id": "T000002R053227", "___s": true }, { @@ -721515,7 +724459,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053235", + "___id": "T000002R053228", "___s": true }, { @@ -721545,7 +724489,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053236", + "___id": "T000002R053229", "___s": true }, { @@ -721575,7 +724519,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053237", + "___id": "T000002R053230", "___s": true }, { @@ -721607,7 +724551,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053238", + "___id": "T000002R053231", "___s": true }, { @@ -721637,7 +724581,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053239", + "___id": "T000002R053232", "___s": true }, { @@ -721668,7 +724612,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053240", + "___id": "T000002R053233", "___s": true }, { @@ -721699,7 +724643,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053241", + "___id": "T000002R053234", "___s": true }, { @@ -721730,7 +724674,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053242", + "___id": "T000002R053235", "___s": true }, { @@ -721769,7 +724713,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053243", + "___id": "T000002R053236", "___s": true }, { @@ -721798,7 +724742,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053244", + "___id": "T000002R053237", "___s": true }, { @@ -721827,7 +724771,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053245", + "___id": "T000002R053238", "___s": true }, { @@ -721859,7 +724803,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053246", + "___id": "T000002R053239", "___s": true }, { @@ -721891,7 +724835,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053247", + "___id": "T000002R053240", "___s": true }, { @@ -721921,14 +724865,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053248", + "___id": "T000002R053241", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.SceneFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.SceneFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053242", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721957,14 +724932,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053249", + "___id": "T000002R053243", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721978,14 +724953,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053250", + "___id": "T000002R053244", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -721999,14 +724974,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053251", + "___id": "T000002R053245", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722048,14 +725023,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053252", + "___id": "T000002R053246", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722084,14 +725059,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053253", + "___id": "T000002R053247", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722133,14 +725108,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053254", + "___id": "T000002R053248", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722172,14 +725147,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053255", + "___id": "T000002R053249", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722193,14 +725168,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053256", + "___id": "T000002R053250", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722214,14 +725189,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053257", + "___id": "T000002R053251", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722249,14 +725224,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053258", + "___id": "T000002R053252", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722274,14 +725249,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053259", + "___id": "T000002R053253", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722295,7 +725270,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053260", + "___id": "T000002R053254", "___s": true }, { @@ -722325,7 +725300,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053261", + "___id": "T000002R053255", "___s": true }, { @@ -722365,7 +725340,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053262", + "___id": "T000002R053256", "___s": true }, { @@ -722395,7 +725370,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053263", + "___id": "T000002R053257", "___s": true }, { @@ -722425,7 +725400,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053264", + "___id": "T000002R053258", "___s": true }, { @@ -722465,7 +725440,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053265", + "___id": "T000002R053259", "___s": true }, { @@ -722495,7 +725470,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053266", + "___id": "T000002R053260", "___s": true }, { @@ -722525,7 +725500,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053267", + "___id": "T000002R053261", "___s": true }, { @@ -722557,7 +725532,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053268", + "___id": "T000002R053262", "___s": true }, { @@ -722587,7 +725562,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053269", + "___id": "T000002R053263", "___s": true }, { @@ -722618,7 +725593,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053270", + "___id": "T000002R053264", "___s": true }, { @@ -722649,7 +725624,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053271", + "___id": "T000002R053265", "___s": true }, { @@ -722680,7 +725655,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053272", + "___id": "T000002R053266", "___s": true }, { @@ -722719,7 +725694,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053273", + "___id": "T000002R053267", "___s": true }, { @@ -722748,7 +725723,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053274", + "___id": "T000002R053268", "___s": true }, { @@ -722777,7 +725752,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053275", + "___id": "T000002R053269", "___s": true }, { @@ -722809,7 +725784,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053276", + "___id": "T000002R053270", "___s": true }, { @@ -722841,7 +725816,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053277", + "___id": "T000002R053271", "___s": true }, { @@ -722871,14 +725846,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053278", + "___id": "T000002R053272", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.ScenePluginFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.ScenePluginFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053273", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722907,14 +725913,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053279", + "___id": "T000002R053274", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722928,14 +725934,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053280", + "___id": "T000002R053275", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722949,14 +725955,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053281", + "___id": "T000002R053276", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -722998,14 +726004,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053282", + "___id": "T000002R053277", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723034,14 +726040,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053283", + "___id": "T000002R053278", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723083,14 +726089,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053284", + "___id": "T000002R053279", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723122,14 +726128,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053285", + "___id": "T000002R053280", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723143,14 +726149,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053286", + "___id": "T000002R053281", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723164,14 +726170,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053287", + "___id": "T000002R053282", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723199,14 +726205,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053288", + "___id": "T000002R053283", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723220,14 +726226,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R053289", + "___id": "T000002R053284", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723245,14 +726251,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053290", + "___id": "T000002R053285", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723266,7 +726272,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053291", + "___id": "T000002R053286", "___s": true }, { @@ -723296,7 +726302,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053292", + "___id": "T000002R053287", "___s": true }, { @@ -723336,7 +726342,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053293", + "___id": "T000002R053288", "___s": true }, { @@ -723366,7 +726372,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053294", + "___id": "T000002R053289", "___s": true }, { @@ -723396,7 +726402,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053295", + "___id": "T000002R053290", "___s": true }, { @@ -723436,7 +726442,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053296", + "___id": "T000002R053291", "___s": true }, { @@ -723466,7 +726472,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053297", + "___id": "T000002R053292", "___s": true }, { @@ -723496,7 +726502,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053298", + "___id": "T000002R053293", "___s": true }, { @@ -723528,7 +726534,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053299", + "___id": "T000002R053294", "___s": true }, { @@ -723558,7 +726564,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053300", + "___id": "T000002R053295", "___s": true }, { @@ -723589,7 +726595,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053301", + "___id": "T000002R053296", "___s": true }, { @@ -723620,7 +726626,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053302", + "___id": "T000002R053297", "___s": true }, { @@ -723651,7 +726657,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053303", + "___id": "T000002R053298", "___s": true }, { @@ -723690,7 +726696,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053304", + "___id": "T000002R053299", "___s": true }, { @@ -723719,7 +726725,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053305", + "___id": "T000002R053300", "___s": true }, { @@ -723748,7 +726754,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053306", + "___id": "T000002R053301", "___s": true }, { @@ -723780,7 +726786,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053307", + "___id": "T000002R053302", "___s": true }, { @@ -723812,7 +726818,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053308", + "___id": "T000002R053303", "___s": true }, { @@ -723842,14 +726848,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053309", + "___id": "T000002R053304", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.ScriptFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.ScriptFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053305", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723878,14 +726915,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053310", + "___id": "T000002R053306", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723899,14 +726936,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053311", + "___id": "T000002R053307", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723920,14 +726957,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053312", + "___id": "T000002R053308", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -723969,14 +727006,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053313", + "___id": "T000002R053309", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724005,14 +727042,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053314", + "___id": "T000002R053310", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724054,14 +727091,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053315", + "___id": "T000002R053311", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724093,14 +727130,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053316", + "___id": "T000002R053312", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724114,14 +727151,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053317", + "___id": "T000002R053313", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724135,14 +727172,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053318", + "___id": "T000002R053314", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724170,14 +727207,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053319", + "___id": "T000002R053315", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724191,14 +727228,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R053320", + "___id": "T000002R053316", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724216,14 +727253,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053321", + "___id": "T000002R053317", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724237,7 +727274,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053322", + "___id": "T000002R053318", "___s": true }, { @@ -724267,7 +727304,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053323", + "___id": "T000002R053319", "___s": true }, { @@ -724307,7 +727344,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053324", + "___id": "T000002R053320", "___s": true }, { @@ -724337,7 +727374,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053325", + "___id": "T000002R053321", "___s": true }, { @@ -724367,7 +727404,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053326", + "___id": "T000002R053322", "___s": true }, { @@ -724407,7 +727444,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053327", + "___id": "T000002R053323", "___s": true }, { @@ -724437,7 +727474,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053328", + "___id": "T000002R053324", "___s": true }, { @@ -724467,7 +727504,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053329", + "___id": "T000002R053325", "___s": true }, { @@ -724499,7 +727536,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053330", + "___id": "T000002R053326", "___s": true }, { @@ -724529,7 +727566,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053331", + "___id": "T000002R053327", "___s": true }, { @@ -724560,7 +727597,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053332", + "___id": "T000002R053328", "___s": true }, { @@ -724591,7 +727628,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053333", + "___id": "T000002R053329", "___s": true }, { @@ -724622,7 +727659,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053334", + "___id": "T000002R053330", "___s": true }, { @@ -724661,7 +727698,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053335", + "___id": "T000002R053331", "___s": true }, { @@ -724690,7 +727727,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053336", + "___id": "T000002R053332", "___s": true }, { @@ -724719,7 +727756,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053337", + "___id": "T000002R053333", "___s": true }, { @@ -724751,7 +727788,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053338", + "___id": "T000002R053334", "___s": true }, { @@ -724783,7 +727820,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053339", + "___id": "T000002R053335", "___s": true }, { @@ -724813,14 +727850,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053340", + "___id": "T000002R053336", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.SpriteSheetFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.SpriteSheetFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053337", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724849,14 +727917,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053341", + "___id": "T000002R053338", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724870,14 +727938,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053342", + "___id": "T000002R053339", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724891,14 +727959,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053343", + "___id": "T000002R053340", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724940,14 +728008,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053344", + "___id": "T000002R053341", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -724976,14 +728044,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053345", + "___id": "T000002R053342", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725025,14 +728093,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053346", + "___id": "T000002R053343", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725064,14 +728132,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053347", + "___id": "T000002R053344", "___s": true }, { "comment": "/**\r\n * Usually overridden by the FileTypes and is called by Loader.nextFile.\r\n * This method controls what extra work this File does with its loaded data, for example a JSON file will parse itself during this stage.\r\n *\r\n * @method Phaser.Loader.File#onProcess\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 404, + "lineno": 432, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725085,14 +728153,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcess", "inherited": true, - "___id": "T000002R053348", + "___id": "T000002R053345", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725106,14 +728174,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053349", + "___id": "T000002R053346", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725127,14 +728195,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053350", + "___id": "T000002R053347", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725162,14 +728230,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053351", + "___id": "T000002R053348", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725187,14 +728255,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053352", + "___id": "T000002R053349", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725208,7 +728276,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053353", + "___id": "T000002R053350", "___s": true }, { @@ -725238,7 +728306,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053354", + "___id": "T000002R053351", "___s": true }, { @@ -725278,7 +728346,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053355", + "___id": "T000002R053352", "___s": true }, { @@ -725308,7 +728376,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053356", + "___id": "T000002R053353", "___s": true }, { @@ -725338,7 +728406,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053357", + "___id": "T000002R053354", "___s": true }, { @@ -725378,7 +728446,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053358", + "___id": "T000002R053355", "___s": true }, { @@ -725408,7 +728476,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053359", + "___id": "T000002R053356", "___s": true }, { @@ -725438,7 +728506,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053360", + "___id": "T000002R053357", "___s": true }, { @@ -725470,7 +728538,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053361", + "___id": "T000002R053358", "___s": true }, { @@ -725500,7 +728568,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053362", + "___id": "T000002R053359", "___s": true }, { @@ -725531,7 +728599,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053363", + "___id": "T000002R053360", "___s": true }, { @@ -725562,7 +728630,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053364", + "___id": "T000002R053361", "___s": true }, { @@ -725593,7 +728661,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053365", + "___id": "T000002R053362", "___s": true }, { @@ -725632,7 +728700,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053366", + "___id": "T000002R053363", "___s": true }, { @@ -725661,7 +728729,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053367", + "___id": "T000002R053364", "___s": true }, { @@ -725690,7 +728758,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053368", + "___id": "T000002R053365", "___s": true }, { @@ -725722,7 +728790,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053369", + "___id": "T000002R053366", "___s": true }, { @@ -725754,7 +728822,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053370", + "___id": "T000002R053367", "___s": true }, { @@ -725784,14 +728852,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053371", + "___id": "T000002R053368", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.SVGFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.SVGFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053369", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725820,14 +728919,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053372", + "___id": "T000002R053370", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725841,14 +728940,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053373", + "___id": "T000002R053371", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725862,14 +728961,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053374", + "___id": "T000002R053372", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725911,14 +729010,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053375", + "___id": "T000002R053373", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725947,14 +729046,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053376", + "___id": "T000002R053374", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -725996,14 +729095,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053377", + "___id": "T000002R053375", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726035,14 +729134,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053378", + "___id": "T000002R053376", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726056,14 +729155,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053379", + "___id": "T000002R053377", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726077,14 +729176,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053380", + "___id": "T000002R053378", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726112,14 +729211,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053381", + "___id": "T000002R053379", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726137,14 +729236,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053382", + "___id": "T000002R053380", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726158,7 +729257,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053383", + "___id": "T000002R053381", "___s": true }, { @@ -726188,7 +729287,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053384", + "___id": "T000002R053382", "___s": true }, { @@ -726228,7 +729327,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053385", + "___id": "T000002R053383", "___s": true }, { @@ -726258,7 +729357,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053386", + "___id": "T000002R053384", "___s": true }, { @@ -726288,7 +729387,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053387", + "___id": "T000002R053385", "___s": true }, { @@ -726328,7 +729427,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053388", + "___id": "T000002R053386", "___s": true }, { @@ -726358,7 +729457,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053389", + "___id": "T000002R053387", "___s": true }, { @@ -726388,7 +729487,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053390", + "___id": "T000002R053388", "___s": true }, { @@ -726420,7 +729519,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053391", + "___id": "T000002R053389", "___s": true }, { @@ -726450,7 +729549,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053392", + "___id": "T000002R053390", "___s": true }, { @@ -726481,7 +729580,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053393", + "___id": "T000002R053391", "___s": true }, { @@ -726512,7 +729611,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053394", + "___id": "T000002R053392", "___s": true }, { @@ -726543,7 +729642,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053395", + "___id": "T000002R053393", "___s": true }, { @@ -726582,7 +729681,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053396", + "___id": "T000002R053394", "___s": true }, { @@ -726611,7 +729710,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053397", + "___id": "T000002R053395", "___s": true }, { @@ -726640,7 +729739,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053398", + "___id": "T000002R053396", "___s": true }, { @@ -726672,7 +729771,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053399", + "___id": "T000002R053397", "___s": true }, { @@ -726704,7 +729803,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053400", + "___id": "T000002R053398", "___s": true }, { @@ -726734,14 +729833,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053401", + "___id": "T000002R053399", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.TextFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.TextFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053400", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726770,14 +729900,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053402", + "___id": "T000002R053401", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726791,14 +729921,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053403", + "___id": "T000002R053402", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726812,14 +729942,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053404", + "___id": "T000002R053403", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726861,14 +729991,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053405", + "___id": "T000002R053404", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726897,14 +730027,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053406", + "___id": "T000002R053405", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726946,14 +730076,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053407", + "___id": "T000002R053406", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -726985,14 +730115,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053408", + "___id": "T000002R053407", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727006,14 +730136,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053409", + "___id": "T000002R053408", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727027,14 +730157,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053410", + "___id": "T000002R053409", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727062,14 +730192,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053411", + "___id": "T000002R053410", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727083,14 +730213,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R053412", + "___id": "T000002R053411", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727108,14 +730238,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053413", + "___id": "T000002R053412", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727129,7 +730259,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053414", + "___id": "T000002R053413", "___s": true }, { @@ -727159,7 +730289,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053415", + "___id": "T000002R053414", "___s": true }, { @@ -727199,7 +730329,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053416", + "___id": "T000002R053415", "___s": true }, { @@ -727229,7 +730359,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053417", + "___id": "T000002R053416", "___s": true }, { @@ -727259,7 +730389,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053418", + "___id": "T000002R053417", "___s": true }, { @@ -727299,7 +730429,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053419", + "___id": "T000002R053418", "___s": true }, { @@ -727329,7 +730459,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053420", + "___id": "T000002R053419", "___s": true }, { @@ -727359,7 +730489,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053421", + "___id": "T000002R053420", "___s": true }, { @@ -727391,7 +730521,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053422", + "___id": "T000002R053421", "___s": true }, { @@ -727421,7 +730551,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053423", + "___id": "T000002R053422", "___s": true }, { @@ -727452,7 +730582,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053424", + "___id": "T000002R053423", "___s": true }, { @@ -727483,7 +730613,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053425", + "___id": "T000002R053424", "___s": true }, { @@ -727514,7 +730644,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053426", + "___id": "T000002R053425", "___s": true }, { @@ -727553,7 +730683,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053427", + "___id": "T000002R053426", "___s": true }, { @@ -727582,7 +730712,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053428", + "___id": "T000002R053427", "___s": true }, { @@ -727611,7 +730741,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053429", + "___id": "T000002R053428", "___s": true }, { @@ -727643,7 +730773,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053430", + "___id": "T000002R053429", "___s": true }, { @@ -727675,7 +730805,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053431", + "___id": "T000002R053430", "___s": true }, { @@ -727705,6 +730835,37 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, + "___id": "T000002R053431", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.TilemapCSVFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.TilemapCSVFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, "___id": "T000002R053432", "___s": true }, @@ -727712,7 +730873,7 @@ "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727748,7 +730909,7 @@ "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727769,7 +730930,7 @@ "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727790,7 +730951,7 @@ "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727839,7 +731000,7 @@ "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727875,7 +731036,7 @@ "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727924,7 +731085,7 @@ "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727963,7 +731124,7 @@ "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -727984,7 +731145,7 @@ "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728005,7 +731166,7 @@ "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728040,7 +731201,7 @@ "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728065,7 +731226,7 @@ "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728658,11 +731819,42 @@ "___id": "T000002R053462", "___s": true }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.TilemapImpactFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.TilemapImpactFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053463", + "___s": true + }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728691,14 +731883,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053463", + "___id": "T000002R053464", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728712,14 +731904,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053464", + "___id": "T000002R053465", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728733,14 +731925,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053465", + "___id": "T000002R053466", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728782,14 +731974,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053466", + "___id": "T000002R053467", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728818,14 +732010,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053467", + "___id": "T000002R053468", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728867,14 +732059,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053468", + "___id": "T000002R053469", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728906,14 +732098,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053469", + "___id": "T000002R053470", "___s": true }, { "comment": "/**\r\n * Usually overridden by the FileTypes and is called by Loader.nextFile.\r\n * This method controls what extra work this File does with its loaded data, for example a JSON file will parse itself during this stage.\r\n *\r\n * @method Phaser.Loader.File#onProcess\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 404, + "lineno": 432, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728927,14 +732119,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcess", "inherited": true, - "___id": "T000002R053470", + "___id": "T000002R053471", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728948,14 +732140,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053471", + "___id": "T000002R053472", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -728969,14 +732161,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053472", + "___id": "T000002R053473", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729004,14 +732196,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053473", + "___id": "T000002R053474", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729029,14 +732221,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053474", + "___id": "T000002R053475", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729050,7 +732242,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053475", + "___id": "T000002R053476", "___s": true }, { @@ -729071,7 +732263,7 @@ "scope": "instance", "inherits": "Phaser.Loader.FileTypes.JSONFile#onProcess", "inherited": true, - "___id": "T000002R053476", + "___id": "T000002R053477", "___s": true }, { @@ -729101,7 +732293,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053477", + "___id": "T000002R053478", "___s": true }, { @@ -729141,7 +732333,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053478", + "___id": "T000002R053479", "___s": true }, { @@ -729171,7 +732363,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053479", + "___id": "T000002R053480", "___s": true }, { @@ -729201,7 +732393,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053480", + "___id": "T000002R053481", "___s": true }, { @@ -729241,7 +732433,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053481", + "___id": "T000002R053482", "___s": true }, { @@ -729271,7 +732463,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053482", + "___id": "T000002R053483", "___s": true }, { @@ -729301,7 +732493,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053483", + "___id": "T000002R053484", "___s": true }, { @@ -729333,7 +732525,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053484", + "___id": "T000002R053485", "___s": true }, { @@ -729363,7 +732555,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053485", + "___id": "T000002R053486", "___s": true }, { @@ -729394,7 +732586,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053486", + "___id": "T000002R053487", "___s": true }, { @@ -729425,7 +732617,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053487", + "___id": "T000002R053488", "___s": true }, { @@ -729456,7 +732648,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053488", + "___id": "T000002R053489", "___s": true }, { @@ -729495,7 +732687,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053489", + "___id": "T000002R053490", "___s": true }, { @@ -729524,7 +732716,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053490", + "___id": "T000002R053491", "___s": true }, { @@ -729553,7 +732745,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053491", + "___id": "T000002R053492", "___s": true }, { @@ -729585,7 +732777,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053492", + "___id": "T000002R053493", "___s": true }, { @@ -729617,7 +732809,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053493", + "___id": "T000002R053494", "___s": true }, { @@ -729647,14 +732839,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053494", + "___id": "T000002R053495", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.TilemapJSONFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.TilemapJSONFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053496", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729683,14 +732906,14 @@ "name": "fileB" } ], - "___id": "T000002R053495", + "___id": "T000002R053497", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729704,14 +732927,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053496", + "___id": "T000002R053498", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729725,14 +732948,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053497", + "___id": "T000002R053499", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729774,14 +732997,14 @@ "name": "event" } ], - "___id": "T000002R053498", + "___id": "T000002R053500", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729810,14 +733033,14 @@ "name": "xhr" } ], - "___id": "T000002R053499", + "___id": "T000002R053501", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729859,14 +733082,14 @@ "name": "event" } ], - "___id": "T000002R053500", + "___id": "T000002R053502", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729898,14 +733121,14 @@ "name": "event" } ], - "___id": "T000002R053501", + "___id": "T000002R053503", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729919,14 +733142,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053502", + "___id": "T000002R053504", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729940,14 +733163,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053503", + "___id": "T000002R053505", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -729975,14 +733198,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053504", + "___id": "T000002R053506", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -730000,14 +733223,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053505", + "___id": "T000002R053507", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -730021,7 +733244,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053506", + "___id": "T000002R053508", "___s": true }, { @@ -730051,7 +733274,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#loader", "inherited": true, - "___id": "T000002R053507", + "___id": "T000002R053509", "___s": true }, { @@ -730081,7 +733304,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#type", "inherited": true, - "___id": "T000002R053508", + "___id": "T000002R053510", "___s": true }, { @@ -730111,7 +733334,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#key", "inherited": true, - "___id": "T000002R053509", + "___id": "T000002R053511", "___s": true }, { @@ -730150,7 +733373,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#files", "inherited": true, - "___id": "T000002R053511", + "___id": "T000002R053513", "___s": true }, { @@ -730180,7 +733403,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#state", "inherited": true, - "___id": "T000002R053512", + "___id": "T000002R053514", "___s": true }, { @@ -730211,7 +733434,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#complete", "inherited": true, - "___id": "T000002R053513", + "___id": "T000002R053515", "___s": true }, { @@ -730241,7 +733464,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pending", "inherited": true, - "___id": "T000002R053514", + "___id": "T000002R053516", "___s": true }, { @@ -730272,7 +733495,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#failed", "inherited": true, - "___id": "T000002R053515", + "___id": "T000002R053517", "___s": true }, { @@ -730302,7 +733525,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#config", "inherited": true, - "___id": "T000002R053516", + "___id": "T000002R053518", "___s": true }, { @@ -730332,7 +733555,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#baseURL", "inherited": true, - "___id": "T000002R053517", + "___id": "T000002R053519", "___s": true }, { @@ -730362,7 +733585,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#path", "inherited": true, - "___id": "T000002R053518", + "___id": "T000002R053520", "___s": true }, { @@ -730392,7 +733615,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#prefix", "inherited": true, - "___id": "T000002R053519", + "___id": "T000002R053521", "___s": true }, { @@ -730427,7 +733650,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#isReadyToProcess", "inherited": true, - "___id": "T000002R053520", + "___id": "T000002R053522", "___s": true }, { @@ -730477,7 +733700,7 @@ ], "inherits": "Phaser.Loader.MultiFile#addToMultiFile", "inherited": true, - "___id": "T000002R053521", + "___id": "T000002R053523", "___s": true }, { @@ -730513,7 +733736,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileComplete", "inherited": true, - "___id": "T000002R053522", + "___id": "T000002R053524", "___s": true }, { @@ -730549,7 +733772,7 @@ ], "inherits": "Phaser.Loader.MultiFile#onFileFailed", "inherited": true, - "___id": "T000002R053523", + "___id": "T000002R053525", "___s": true }, { @@ -730574,7 +733797,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#pendingDestroy", "inherited": true, - "___id": "T000002R053524", + "___id": "T000002R053526", "___s": true }, { @@ -730595,7 +733818,7 @@ "scope": "instance", "inherits": "Phaser.Loader.MultiFile#destroy", "inherited": true, - "___id": "T000002R053525", + "___id": "T000002R053527", "___s": true }, { @@ -730625,7 +733848,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053526", + "___id": "T000002R053528", "___s": true }, { @@ -730665,7 +733888,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053527", + "___id": "T000002R053529", "___s": true }, { @@ -730695,7 +733918,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053528", + "___id": "T000002R053530", "___s": true }, { @@ -730725,7 +733948,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053529", + "___id": "T000002R053531", "___s": true }, { @@ -730765,7 +733988,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053530", + "___id": "T000002R053532", "___s": true }, { @@ -730795,7 +734018,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053531", + "___id": "T000002R053533", "___s": true }, { @@ -730825,7 +734048,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053532", + "___id": "T000002R053534", "___s": true }, { @@ -730857,7 +734080,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053533", + "___id": "T000002R053535", "___s": true }, { @@ -730887,7 +734110,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053534", + "___id": "T000002R053536", "___s": true }, { @@ -730918,7 +734141,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053535", + "___id": "T000002R053537", "___s": true }, { @@ -730949,7 +734172,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053536", + "___id": "T000002R053538", "___s": true }, { @@ -730980,7 +734203,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053537", + "___id": "T000002R053539", "___s": true }, { @@ -731019,7 +734242,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053538", + "___id": "T000002R053540", "___s": true }, { @@ -731048,7 +734271,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053539", + "___id": "T000002R053541", "___s": true }, { @@ -731077,7 +734300,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053540", + "___id": "T000002R053542", "___s": true }, { @@ -731109,7 +734332,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053541", + "___id": "T000002R053543", "___s": true }, { @@ -731141,7 +734364,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053542", + "___id": "T000002R053544", "___s": true }, { @@ -731171,14 +734394,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053543", + "___id": "T000002R053545", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.VideoFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.VideoFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053546", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -731207,14 +734461,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053544", + "___id": "T000002R053547", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -731228,14 +734482,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053545", + "___id": "T000002R053548", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -731277,14 +734531,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053546", + "___id": "T000002R053549", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -731313,14 +734567,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053547", + "___id": "T000002R053550", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -731362,14 +734616,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053548", + "___id": "T000002R053551", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -731401,14 +734655,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053549", + "___id": "T000002R053552", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -731422,14 +734676,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053550", + "___id": "T000002R053553", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -731443,14 +734697,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053551", + "___id": "T000002R053554", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -731478,14 +734732,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053552", + "___id": "T000002R053555", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -731499,14 +734753,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R053553", + "___id": "T000002R053556", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -731524,14 +734778,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053554", + "___id": "T000002R053557", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -731545,7 +734799,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053555", + "___id": "T000002R053558", "___s": true }, { @@ -731575,7 +734829,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#loader", "inherited": true, - "___id": "T000002R053556", + "___id": "T000002R053559", "___s": true }, { @@ -731615,7 +734869,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#cache", "inherited": true, - "___id": "T000002R053557", + "___id": "T000002R053560", "___s": true }, { @@ -731645,7 +734899,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#type", "inherited": true, - "___id": "T000002R053558", + "___id": "T000002R053561", "___s": true }, { @@ -731675,7 +734929,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#key", "inherited": true, - "___id": "T000002R053559", + "___id": "T000002R053562", "___s": true }, { @@ -731715,7 +734969,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#url", "inherited": true, - "___id": "T000002R053560", + "___id": "T000002R053563", "___s": true }, { @@ -731745,7 +734999,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#src", "inherited": true, - "___id": "T000002R053561", + "___id": "T000002R053564", "___s": true }, { @@ -731775,7 +735029,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrSettings", "inherited": true, - "___id": "T000002R053562", + "___id": "T000002R053565", "___s": true }, { @@ -731807,7 +735061,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#xhrLoader", "inherited": true, - "___id": "T000002R053563", + "___id": "T000002R053566", "___s": true }, { @@ -731837,7 +735091,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#state", "inherited": true, - "___id": "T000002R053564", + "___id": "T000002R053567", "___s": true }, { @@ -731868,7 +735122,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesTotal", "inherited": true, - "___id": "T000002R053565", + "___id": "T000002R053568", "___s": true }, { @@ -731899,7 +735153,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#bytesLoaded", "inherited": true, - "___id": "T000002R053566", + "___id": "T000002R053569", "___s": true }, { @@ -731930,7 +735184,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#percentComplete", "inherited": true, - "___id": "T000002R053567", + "___id": "T000002R053570", "___s": true }, { @@ -731969,7 +735223,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#crossOrigin", "inherited": true, - "___id": "T000002R053568", + "___id": "T000002R053571", "___s": true }, { @@ -731998,7 +735252,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#data", "inherited": true, - "___id": "T000002R053569", + "___id": "T000002R053572", "___s": true }, { @@ -732027,7 +735281,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#config", "inherited": true, - "___id": "T000002R053570", + "___id": "T000002R053573", "___s": true }, { @@ -732059,7 +735313,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#multiFile", "inherited": true, - "___id": "T000002R053571", + "___id": "T000002R053574", "___s": true }, { @@ -732091,7 +735345,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#linkFile", "inherited": true, - "___id": "T000002R053572", + "___id": "T000002R053575", "___s": true }, { @@ -732121,14 +735375,45 @@ "scope": "instance", "inherits": "Phaser.Loader.File#base64", "inherited": true, - "___id": "T000002R053573", + "___id": "T000002R053576", + "___s": true + }, + { + "comment": "/**\r\n * The counter for the number of times to retry loading this file before it fails.\r\n * \r\n * You can set this property value in the FileConfig object. If not present,\r\n * this property is read from the `LoaderPlugin.maxRetries` property when\r\n * this File instance is created.\r\n * \r\n * You can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\r\n * at any point after the Loader has started. However, it will not apply to files\r\n * that have already been added to the Loader, only those added after this value\r\n * is changed.\r\n *\r\n * @name Phaser.Loader.File#retryAttempts\r\n * @type {number}\r\n * @default 2\r\n * @since 3.85.0\r\n */", + "meta": { + "filename": "File.js", + "lineno": 245, + "columnno": 8, + "path": "D:\\wamp\\www\\phaser\\src\\loader", + "code": {} + }, + "name": "retryAttempts", + "longname": "Phaser.Loader.FileTypes.XMLFile#retryAttempts", + "kind": "member", + "description": "The counter for the number of times to retry loading this file before it fails.\r\rYou can set this property value in the FileConfig object. If not present,\rthis property is read from the `LoaderPlugin.maxRetries` property when\rthis File instance is created.\r\rYou can set this value via the Game Config, or you can adjust the `LoaderPlugin` property\rat any point after the Loader has started. However, it will not apply to files\rthat have already been added to the Loader, only those added after this value\ris changed.", + "type": { + "names": [ + "number" + ], + "parsedType": { + "type": "NameExpression", + "name": "number" + } + }, + "defaultvalue": "2", + "since": "3.85.0", + "memberof": "Phaser.Loader.FileTypes.XMLFile", + "scope": "instance", + "inherits": "Phaser.Loader.File#retryAttempts", + "inherited": true, + "___id": "T000002R053577", "___s": true }, { "comment": "/**\r\n * Links this File with another, so they depend upon each other for loading and processing.\r\n *\r\n * @method Phaser.Loader.File#setLink\r\n * @since 3.7.0\r\n *\r\n * @param {Phaser.Loader.File} fileB - The file to link to this one.\r\n */", "meta": { "filename": "File.js", - "lineno": 246, + "lineno": 265, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732157,14 +735442,14 @@ ], "inherits": "Phaser.Loader.File#setLink", "inherited": true, - "___id": "T000002R053574", + "___id": "T000002R053578", "___s": true }, { "comment": "/**\r\n * Resets the XHRLoader instance this file is using.\r\n *\r\n * @method Phaser.Loader.File#resetXHR\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 261, + "lineno": 280, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732178,14 +735463,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#resetXHR", "inherited": true, - "___id": "T000002R053575", + "___id": "T000002R053579", "___s": true }, { "comment": "/**\r\n * Called by the Loader, starts the actual file downloading.\r\n * During the load the methods onLoad, onError and onProgress are called, based on the XHR events.\r\n * You shouldn't normally call this method directly, it's meant to be invoked by the Loader.\r\n *\r\n * @method Phaser.Loader.File#load\r\n * @since 3.0.0\r\n */", "meta": { "filename": "File.js", - "lineno": 277, + "lineno": 296, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732199,14 +735484,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#load", "inherited": true, - "___id": "T000002R053576", + "___id": "T000002R053580", "___s": true }, { "comment": "/**\r\n * Called when the file finishes loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onLoad\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this load.\r\n */", "meta": { "filename": "File.js", - "lineno": 312, + "lineno": 331, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732248,14 +735533,14 @@ ], "inherits": "Phaser.Loader.File#onLoad", "inherited": true, - "___id": "T000002R053577", + "___id": "T000002R053581", "___s": true }, { "comment": "/**\r\n * Called by the XHRLoader if it was given a File with base64 data to load.\r\n *\r\n * @method Phaser.Loader.File#onBase64Load\r\n * @since 3.80.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The FakeXHR object containing the decoded base64 data.\r\n */", "meta": { "filename": "File.js", - "lineno": 345, + "lineno": 364, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732284,14 +735569,14 @@ ], "inherits": "Phaser.Loader.File#onBase64Load", "inherited": true, - "___id": "T000002R053578", + "___id": "T000002R053582", "___s": true }, { "comment": "/**\r\n * Called if the file errors while loading, is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onError\r\n * @since 3.0.0\r\n *\r\n * @param {XMLHttpRequest} xhr - The XMLHttpRequest that caused this onload event.\r\n * @param {ProgressEvent} event - The DOM ProgressEvent that resulted from this error.\r\n */", "meta": { "filename": "File.js", - "lineno": 366, + "lineno": 385, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732333,14 +735618,14 @@ ], "inherits": "Phaser.Loader.File#onError", "inherited": true, - "___id": "T000002R053579", + "___id": "T000002R053583", "___s": true }, { "comment": "/**\r\n * Called during the file load progress. Is sent a DOM ProgressEvent.\r\n *\r\n * @method Phaser.Loader.File#onProgress\r\n * @fires Phaser.Loader.Events#FILE_PROGRESS\r\n * @since 3.0.0\r\n *\r\n * @param {ProgressEvent} event - The DOM ProgressEvent.\r\n */", "meta": { "filename": "File.js", - "lineno": 382, + "lineno": 410, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732372,14 +735657,14 @@ ], "inherits": "Phaser.Loader.File#onProgress", "inherited": true, - "___id": "T000002R053580", + "___id": "T000002R053584", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessComplete\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 418, + "lineno": 446, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732393,14 +735678,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessComplete", "inherited": true, - "___id": "T000002R053581", + "___id": "T000002R053585", "___s": true }, { "comment": "/**\r\n * Called when the File has completed processing but it generated an error.\r\n * Checks on the state of its multifile, if set.\r\n *\r\n * @method Phaser.Loader.File#onProcessError\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 437, + "lineno": 465, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732414,14 +735699,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#onProcessError", "inherited": true, - "___id": "T000002R053582", + "___id": "T000002R053586", "___s": true }, { "comment": "/**\r\n * Checks if a key matching the one used by this file exists in the target Cache or not.\r\n * This is called automatically by the LoaderPlugin to decide if the file can be safely\r\n * loaded or will conflict.\r\n *\r\n * @method Phaser.Loader.File#hasCacheConflict\r\n * @since 3.7.0\r\n *\r\n * @return {boolean} `true` if adding this file will cause a conflict, otherwise `false`.\r\n */", "meta": { "filename": "File.js", - "lineno": 459, + "lineno": 487, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732449,14 +735734,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#hasCacheConflict", "inherited": true, - "___id": "T000002R053583", + "___id": "T000002R053587", "___s": true }, { "comment": "/**\r\n * Adds this file to its target cache upon successful loading and processing.\r\n * This method is often overridden by specific file types.\r\n *\r\n * @method Phaser.Loader.File#addToCache\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 474, + "lineno": 502, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732470,14 +735755,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#addToCache", "inherited": true, - "___id": "T000002R053584", + "___id": "T000002R053588", "___s": true }, { "comment": "/**\r\n * Called once the file has been added to its cache and is now ready for deletion from the Loader.\r\n * It will emit a `filecomplete` event from the LoaderPlugin.\r\n *\r\n * @method Phaser.Loader.File#pendingDestroy\r\n * @fires Phaser.Loader.Events#FILE_COMPLETE\r\n * @fires Phaser.Loader.Events#FILE_KEY_COMPLETE\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 489, + "lineno": 517, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732495,14 +735780,14 @@ "scope": "instance", "inherits": "Phaser.Loader.File#pendingDestroy", "inherited": true, - "___id": "T000002R053585", + "___id": "T000002R053589", "___s": true }, { "comment": "/**\r\n * Destroy this File and any references it holds.\r\n *\r\n * @method Phaser.Loader.File#destroy\r\n * @since 3.7.0\r\n */", "meta": { "filename": "File.js", - "lineno": 518, + "lineno": 546, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\loader", "code": {} @@ -732516,7 +735801,7 @@ "scope": "instance", "inherits": "Phaser.Loader.File#destroy", "inherited": true, - "___id": "T000002R053586", + "___id": "T000002R053590", "___s": true }, { @@ -732568,7 +735853,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R053587", + "___id": "T000002R053591", "___s": true }, { @@ -732637,7 +735922,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R053588", + "___id": "T000002R053592", "___s": true }, { @@ -732697,7 +735982,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R053589", + "___id": "T000002R053593", "___s": true }, { @@ -732772,7 +736057,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R053590", + "___id": "T000002R053594", "___s": true }, { @@ -732860,7 +736145,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R053591", + "___id": "T000002R053595", "___s": true }, { @@ -732948,7 +736233,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R053592", + "___id": "T000002R053596", "___s": true }, { @@ -733036,7 +736321,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R053593", + "___id": "T000002R053597", "___s": true }, { @@ -733138,7 +736423,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R053594", + "___id": "T000002R053598", "___s": true }, { @@ -733240,7 +736525,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R053595", + "___id": "T000002R053599", "___s": true }, { @@ -733302,7 +736587,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R053596", + "___id": "T000002R053600", "___s": true }, { @@ -733323,7 +736608,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R053597", + "___id": "T000002R053601", "___s": true }, { @@ -733375,7 +736660,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R053598", + "___id": "T000002R053602", "___s": true }, { @@ -733444,7 +736729,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R053599", + "___id": "T000002R053603", "___s": true }, { @@ -733504,7 +736789,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R053600", + "___id": "T000002R053604", "___s": true }, { @@ -733579,7 +736864,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R053601", + "___id": "T000002R053605", "___s": true }, { @@ -733667,7 +736952,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R053602", + "___id": "T000002R053606", "___s": true }, { @@ -733755,7 +737040,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R053603", + "___id": "T000002R053607", "___s": true }, { @@ -733843,7 +737128,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R053604", + "___id": "T000002R053608", "___s": true }, { @@ -733945,7 +737230,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R053605", + "___id": "T000002R053609", "___s": true }, { @@ -734047,7 +737332,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R053606", + "___id": "T000002R053610", "___s": true }, { @@ -734109,7 +737394,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R053607", + "___id": "T000002R053611", "___s": true }, { @@ -734139,7 +737424,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R053611", + "___id": "T000002R053615", "___s": true }, { @@ -734180,7 +737465,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R053612", + "___id": "T000002R053616", "___s": true }, { @@ -734210,7 +737495,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R053613", + "___id": "T000002R053617", "___s": true }, { @@ -734250,7 +737535,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R053614", + "___id": "T000002R053618", "___s": true }, { @@ -734280,7 +737565,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R053615", + "___id": "T000002R053619", "___s": true }, { @@ -734311,7 +737596,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R053616", + "___id": "T000002R053620", "___s": true }, { @@ -734342,7 +737627,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R053617", + "___id": "T000002R053621", "___s": true }, { @@ -734373,7 +737658,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R053618", + "___id": "T000002R053622", "___s": true }, { @@ -734404,7 +737689,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R053619", + "___id": "T000002R053623", "___s": true }, { @@ -734435,7 +737720,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R053620", + "___id": "T000002R053624", "___s": true }, { @@ -734469,7 +737754,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R053621", + "___id": "T000002R053625", "___s": true }, { @@ -734502,7 +737787,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R053622", + "___id": "T000002R053626", "___s": true }, { @@ -734533,7 +737818,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R053623", + "___id": "T000002R053627", "___s": true }, { @@ -734584,7 +737869,7 @@ "name": "value" } ], - "___id": "T000002R053624", + "___id": "T000002R053628", "___s": true }, { @@ -734635,7 +737920,7 @@ "name": "value" } ], - "___id": "T000002R053625", + "___id": "T000002R053629", "___s": true }, { @@ -734696,7 +737981,7 @@ "name": "value" } ], - "___id": "T000002R053626", + "___id": "T000002R053630", "___s": true }, { @@ -734735,7 +738020,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R053627", + "___id": "T000002R053631", "___s": true }, { @@ -734823,7 +738108,7 @@ "name": "data" } ], - "___id": "T000002R053628", + "___id": "T000002R053632", "___s": true }, { @@ -734889,7 +738174,7 @@ "name": "amount" } ], - "___id": "T000002R053629", + "___id": "T000002R053633", "___s": true }, { @@ -734940,7 +738225,7 @@ "name": "key" } ], - "___id": "T000002R053630", + "___id": "T000002R053634", "___s": true }, { @@ -735008,7 +738293,7 @@ "name": "key" } ], - "___id": "T000002R053631", + "___id": "T000002R053635", "___s": true }, { @@ -735104,11 +738389,11 @@ "name": "dropZone" } ], - "___id": "T000002R053632", + "___id": "T000002R053636", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -735140,14 +738425,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R053633", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R053637", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -735176,14 +738478,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R053634", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R053638", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -735197,14 +738516,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R053635", + "___id": "T000002R053639", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -735218,14 +738537,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R053636", + "___id": "T000002R053640", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -735256,14 +738575,14 @@ "name": "args" } ], - "___id": "T000002R053637", + "___id": "T000002R053641", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -735291,14 +738610,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R053638", + "___id": "T000002R053642", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -735341,14 +738660,14 @@ "name": "camera" } ], - "___id": "T000002R053639", + "___id": "T000002R053643", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -735385,14 +738704,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R053640", + "___id": "T000002R053644", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -735451,14 +738770,14 @@ "name": "displayList" } ], - "___id": "T000002R053641", + "___id": "T000002R053645", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -735487,14 +738806,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R053642", + "___id": "T000002R053646", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -735527,14 +738846,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R053643", + "___id": "T000002R053647", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -735563,14 +738882,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R053644", + "___id": "T000002R053648", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -735604,7 +738923,7 @@ "name": "fromScene" } ], - "___id": "T000002R053645", + "___id": "T000002R053649", "___s": true }, { @@ -735625,7 +738944,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R053646", + "___id": "T000002R053650", "___s": true }, { @@ -735677,7 +738996,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R053647", + "___id": "T000002R053651", "___s": true }, { @@ -735746,7 +739065,7 @@ "name": "event" } ], - "___id": "T000002R053648", + "___id": "T000002R053652", "___s": true }, { @@ -735806,7 +739125,7 @@ "name": "event" } ], - "___id": "T000002R053649", + "___id": "T000002R053653", "___s": true }, { @@ -735881,7 +739200,7 @@ "name": "args" } ], - "___id": "T000002R053650", + "___id": "T000002R053654", "___s": true }, { @@ -735969,7 +739288,7 @@ "name": "context" } ], - "___id": "T000002R053651", + "___id": "T000002R053655", "___s": true }, { @@ -736057,7 +739376,7 @@ "name": "context" } ], - "___id": "T000002R053652", + "___id": "T000002R053656", "___s": true }, { @@ -736145,7 +739464,7 @@ "name": "context" } ], - "___id": "T000002R053653", + "___id": "T000002R053657", "___s": true }, { @@ -736247,7 +739566,7 @@ "name": "once" } ], - "___id": "T000002R053654", + "___id": "T000002R053658", "___s": true }, { @@ -736349,7 +739668,7 @@ "name": "once" } ], - "___id": "T000002R053655", + "___id": "T000002R053659", "___s": true }, { @@ -736411,7 +739730,7 @@ "name": "event" } ], - "___id": "T000002R053656", + "___id": "T000002R053660", "___s": true }, { @@ -736448,7 +739767,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#clearAlpha", - "___id": "T000002R053662", + "___id": "T000002R053666", "___s": true }, { @@ -736544,7 +739863,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Alpha#setAlpha", - "___id": "T000002R053663", + "___id": "T000002R053667", "___s": true }, { @@ -736575,7 +739894,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alpha", - "___id": "T000002R053664", + "___id": "T000002R053668", "___s": true }, { @@ -736613,7 +739932,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", - "___id": "T000002R053665", + "___id": "T000002R053669", "___s": true }, { @@ -736651,7 +739970,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaTopRight", - "___id": "T000002R053666", + "___id": "T000002R053670", "___s": true }, { @@ -736689,7 +740008,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", - "___id": "T000002R053667", + "___id": "T000002R053671", "___s": true }, { @@ -736727,7 +740046,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", - "___id": "T000002R053668", + "___id": "T000002R053672", "___s": true }, { @@ -736773,7 +740092,7 @@ "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, "overrides": "Phaser.GameObjects.Components.BlendMode#blendMode", - "___id": "T000002R053670", + "___id": "T000002R053674", "___s": true }, { @@ -736840,7 +740159,7 @@ } ], "overrides": "Phaser.GameObjects.Components.BlendMode#setBlendMode", - "___id": "T000002R053671", + "___id": "T000002R053675", "___s": true }, { @@ -736871,7 +740190,7 @@ "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, "overrides": "Phaser.GameObjects.Components.Depth#depth", - "___id": "T000002R053673", + "___id": "T000002R053677", "___s": true }, { @@ -736923,7 +740242,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Depth#setDepth", - "___id": "T000002R053674", + "___id": "T000002R053678", "___s": true }, { @@ -736960,7 +740279,7 @@ "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, "overrides": "Phaser.GameObjects.Components.Depth#bringMeToTop", - "___id": "T000002R053675", + "___id": "T000002R053679", "___s": true }, { @@ -736997,7 +740316,7 @@ "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, "overrides": "Phaser.GameObjects.Components.Depth#sendMeToBack", - "___id": "T000002R053676", + "___id": "T000002R053680", "___s": true }, { @@ -737049,7 +740368,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", - "___id": "T000002R053677", + "___id": "T000002R053681", "___s": true }, { @@ -737101,7 +740420,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", - "___id": "T000002R053678", + "___id": "T000002R053682", "___s": true }, { @@ -737133,7 +740452,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#flipX", - "___id": "T000002R053679", + "___id": "T000002R053683", "___s": true }, { @@ -737165,7 +740484,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#flipY", - "___id": "T000002R053680", + "___id": "T000002R053684", "___s": true }, { @@ -737202,7 +740521,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#toggleFlipX", - "___id": "T000002R053681", + "___id": "T000002R053685", "___s": true }, { @@ -737239,7 +740558,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#toggleFlipY", - "___id": "T000002R053682", + "___id": "T000002R053686", "___s": true }, { @@ -737291,7 +740610,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Flip#setFlipX", - "___id": "T000002R053683", + "___id": "T000002R053687", "___s": true }, { @@ -737343,7 +740662,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Flip#setFlipY", - "___id": "T000002R053684", + "___id": "T000002R053688", "___s": true }, { @@ -737408,7 +740727,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Flip#setFlip", - "___id": "T000002R053685", + "___id": "T000002R053689", "___s": true }, { @@ -737445,7 +740764,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#resetFlip", - "___id": "T000002R053686", + "___id": "T000002R053690", "___s": true }, { @@ -737520,7 +740839,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getCenter", - "___id": "T000002R053688", + "___id": "T000002R053692", "___s": true }, { @@ -737595,7 +740914,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getTopLeft", - "___id": "T000002R053689", + "___id": "T000002R053693", "___s": true }, { @@ -737670,7 +740989,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getTopCenter", - "___id": "T000002R053690", + "___id": "T000002R053694", "___s": true }, { @@ -737745,7 +741064,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getTopRight", - "___id": "T000002R053691", + "___id": "T000002R053695", "___s": true }, { @@ -737820,7 +741139,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", - "___id": "T000002R053692", + "___id": "T000002R053696", "___s": true }, { @@ -737895,7 +741214,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getRightCenter", - "___id": "T000002R053693", + "___id": "T000002R053697", "___s": true }, { @@ -737970,7 +741289,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", - "___id": "T000002R053694", + "___id": "T000002R053698", "___s": true }, { @@ -738045,7 +741364,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", - "___id": "T000002R053695", + "___id": "T000002R053699", "___s": true }, { @@ -738120,7 +741439,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBottomRight", - "___id": "T000002R053696", + "___id": "T000002R053700", "___s": true }, { @@ -738200,7 +741519,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBounds", - "___id": "T000002R053697", + "___id": "T000002R053701", "___s": true }, { @@ -738241,7 +741560,7 @@ "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, "overrides": "Phaser.GameObjects.Components.Mask#mask", - "___id": "T000002R053698", + "___id": "T000002R053702", "___s": true }, { @@ -738303,7 +741622,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#setMask", - "___id": "T000002R053699", + "___id": "T000002R053703", "___s": true }, { @@ -738357,7 +741676,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#clearMask", - "___id": "T000002R053700", + "___id": "T000002R053704", "___s": true }, { @@ -738520,7 +741839,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#createBitmapMask", - "___id": "T000002R053701", + "___id": "T000002R053705", "___s": true }, { @@ -738602,7 +741921,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#createGeometryMask", - "___id": "T000002R053702", + "___id": "T000002R053706", "___s": true }, { @@ -738635,7 +741954,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#originX", - "___id": "T000002R053704", + "___id": "T000002R053708", "___s": true }, { @@ -738668,7 +741987,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#originY", - "___id": "T000002R053705", + "___id": "T000002R053709", "___s": true }, { @@ -738699,7 +742018,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#displayOriginX", - "___id": "T000002R053706", + "___id": "T000002R053710", "___s": true }, { @@ -738730,7 +742049,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#displayOriginY", - "___id": "T000002R053707", + "___id": "T000002R053711", "___s": true }, { @@ -738799,7 +742118,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Origin#setOrigin", - "___id": "T000002R053708", + "___id": "T000002R053712", "___s": true }, { @@ -738836,7 +742155,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", - "___id": "T000002R053709", + "___id": "T000002R053713", "___s": true }, { @@ -738905,7 +742224,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", - "___id": "T000002R053710", + "___id": "T000002R053714", "___s": true }, { @@ -738942,7 +742261,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", - "___id": "T000002R053711", + "___id": "T000002R053715", "___s": true }, { @@ -738981,7 +742300,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", - "___id": "T000002R053712", + "___id": "T000002R053716", "___s": true }, { @@ -739020,7 +742339,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#pipeline", - "___id": "T000002R053713", + "___id": "T000002R053717", "___s": true }, { @@ -739058,7 +742377,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#pipelineData", - "___id": "T000002R053714", + "___id": "T000002R053718", "___s": true }, { @@ -739127,7 +742446,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#initPipeline", - "___id": "T000002R053715", + "___id": "T000002R053719", "___s": true }, { @@ -739225,7 +742544,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#setPipeline", - "___id": "T000002R053716", + "___id": "T000002R053720", "___s": true }, { @@ -739298,7 +742617,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#setPipelineData", - "___id": "T000002R053717", + "___id": "T000002R053721", "___s": true }, { @@ -739358,7 +742677,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#resetPipeline", - "___id": "T000002R053718", + "___id": "T000002R053722", "___s": true }, { @@ -739403,7 +742722,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#getPipelineName", - "___id": "T000002R053719", + "___id": "T000002R053723", "___s": true }, { @@ -739441,7 +742760,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", - "___id": "T000002R053720", + "___id": "T000002R053724", "___s": true }, { @@ -739488,7 +742807,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#postPipelines", - "___id": "T000002R053721", + "___id": "T000002R053725", "___s": true }, { @@ -739526,7 +742845,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", - "___id": "T000002R053722", + "___id": "T000002R053726", "___s": true }, { @@ -739566,7 +742885,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#preFX", - "___id": "T000002R053723", + "___id": "T000002R053727", "___s": true }, { @@ -739604,7 +742923,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#postFX", - "___id": "T000002R053724", + "___id": "T000002R053728", "___s": true }, { @@ -739650,7 +742969,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", - "___id": "T000002R053725", + "___id": "T000002R053729", "___s": true }, { @@ -739795,7 +743114,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", - "___id": "T000002R053726", + "___id": "T000002R053730", "___s": true }, { @@ -739868,7 +743187,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", - "___id": "T000002R053727", + "___id": "T000002R053731", "___s": true }, { @@ -739960,7 +743279,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", - "___id": "T000002R053728", + "___id": "T000002R053732", "___s": true }, { @@ -740006,7 +743325,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", - "___id": "T000002R053729", + "___id": "T000002R053733", "___s": true }, { @@ -740075,7 +743394,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", - "___id": "T000002R053730", + "___id": "T000002R053734", "___s": true }, { @@ -740119,7 +743438,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#clearFX", - "___id": "T000002R053731", + "___id": "T000002R053735", "___s": true }, { @@ -740151,7 +743470,7 @@ "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, "overrides": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", - "___id": "T000002R053732", + "___id": "T000002R053736", "___s": true }, { @@ -740183,7 +743502,7 @@ "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, "overrides": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", - "___id": "T000002R053733", + "___id": "T000002R053737", "___s": true }, { @@ -740250,7 +743569,7 @@ } ], "overrides": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", - "___id": "T000002R053734", + "___id": "T000002R053738", "___s": true }, { @@ -740281,7 +743600,7 @@ "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#width", - "___id": "T000002R053736", + "___id": "T000002R053740", "___s": true }, { @@ -740312,7 +743631,7 @@ "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#height", - "___id": "T000002R053737", + "___id": "T000002R053741", "___s": true }, { @@ -740343,7 +743662,7 @@ "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#displayWidth", - "___id": "T000002R053738", + "___id": "T000002R053742", "___s": true }, { @@ -740374,7 +743693,7 @@ "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#displayHeight", - "___id": "T000002R053739", + "___id": "T000002R053743", "___s": true }, { @@ -740437,7 +743756,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Size#setSizeToFrame", - "___id": "T000002R053740", + "___id": "T000002R053744", "___s": true }, { @@ -740502,7 +743821,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Size#setSize", - "___id": "T000002R053741", + "___id": "T000002R053745", "___s": true }, { @@ -740567,7 +743886,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Size#setDisplaySize", - "___id": "T000002R053742", + "___id": "T000002R053746", "___s": true }, { @@ -740608,7 +743927,7 @@ "inherits": "Phaser.GameObjects.Components.TextureCrop#texture", "inherited": true, "overrides": "Phaser.GameObjects.Components.Texture#texture", - "___id": "T000002R053743", + "___id": "T000002R053747", "___s": true }, { @@ -740639,7 +743958,7 @@ "inherits": "Phaser.GameObjects.Components.TextureCrop#frame", "inherited": true, "overrides": "Phaser.GameObjects.Components.Texture#frame", - "___id": "T000002R053744", + "___id": "T000002R053748", "___s": true }, { @@ -740670,7 +743989,7 @@ "inherits": "Phaser.GameObjects.Components.TextureCrop#isCropped", "inherited": true, "overrides": "Phaser.GameObjects.Components.Texture#isCropped", - "___id": "T000002R053745", + "___id": "T000002R053749", "___s": true }, { @@ -740774,7 +744093,7 @@ "name": "height" } ], - "___id": "T000002R053746", + "___id": "T000002R053750", "___s": true }, { @@ -740850,7 +744169,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Texture#setTexture", - "___id": "T000002R053747", + "___id": "T000002R053751", "___s": true }, { @@ -740947,7 +744266,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Texture#setFrame", - "___id": "T000002R053748", + "___id": "T000002R053752", "___s": true }, { @@ -740979,7 +744298,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintTopLeft", - "___id": "T000002R053750", + "___id": "T000002R053754", "___s": true }, { @@ -741011,7 +744330,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintTopRight", - "___id": "T000002R053751", + "___id": "T000002R053755", "___s": true }, { @@ -741043,7 +744362,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintBottomLeft", - "___id": "T000002R053752", + "___id": "T000002R053756", "___s": true }, { @@ -741075,7 +744394,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintBottomRight", - "___id": "T000002R053753", + "___id": "T000002R053757", "___s": true }, { @@ -741107,7 +744426,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintFill", - "___id": "T000002R053754", + "___id": "T000002R053758", "___s": true }, { @@ -741151,7 +744470,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#clearTint", - "___id": "T000002R053755", + "___id": "T000002R053759", "___s": true }, { @@ -741254,7 +744573,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Tint#setTint", - "___id": "T000002R053756", + "___id": "T000002R053760", "___s": true }, { @@ -741357,7 +744676,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Tint#setTintFill", - "___id": "T000002R053757", + "___id": "T000002R053761", "___s": true }, { @@ -741395,7 +744714,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tint", - "___id": "T000002R053758", + "___id": "T000002R053762", "___s": true }, { @@ -741434,7 +744753,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#isTinted", - "___id": "T000002R053759", + "___id": "T000002R053763", "___s": true }, { @@ -741467,7 +744786,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#hasTransformComponent", - "___id": "T000002R053760", + "___id": "T000002R053764", "___s": true }, { @@ -741499,7 +744818,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#x", - "___id": "T000002R053764", + "___id": "T000002R053768", "___s": true }, { @@ -741531,7 +744850,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#y", - "___id": "T000002R053765", + "___id": "T000002R053769", "___s": true }, { @@ -741563,7 +744882,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#z", - "___id": "T000002R053766", + "___id": "T000002R053770", "___s": true }, { @@ -741595,7 +744914,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#w", - "___id": "T000002R053767", + "___id": "T000002R053771", "___s": true }, { @@ -741627,7 +744946,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#scale", - "___id": "T000002R053768", + "___id": "T000002R053772", "___s": true }, { @@ -741659,7 +744978,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#scaleX", - "___id": "T000002R053769", + "___id": "T000002R053773", "___s": true }, { @@ -741691,7 +745010,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#scaleY", - "___id": "T000002R053770", + "___id": "T000002R053774", "___s": true }, { @@ -741723,7 +745042,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#angle", - "___id": "T000002R053771", + "___id": "T000002R053775", "___s": true }, { @@ -741755,7 +745074,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#rotation", - "___id": "T000002R053772", + "___id": "T000002R053776", "___s": true }, { @@ -741854,7 +745173,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setPosition", - "___id": "T000002R053773", + "___id": "T000002R053777", "___s": true }, { @@ -741921,7 +745240,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#copyPosition", - "___id": "T000002R053774", + "___id": "T000002R053778", "___s": true }, { @@ -742018,7 +745337,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setRandomPosition", - "___id": "T000002R053775", + "___id": "T000002R053779", "___s": true }, { @@ -742072,7 +745391,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setRotation", - "___id": "T000002R053776", + "___id": "T000002R053780", "___s": true }, { @@ -742126,7 +745445,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setAngle", - "___id": "T000002R053777", + "___id": "T000002R053781", "___s": true }, { @@ -742195,7 +745514,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setScale", - "___id": "T000002R053778", + "___id": "T000002R053782", "___s": true }, { @@ -742249,7 +745568,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setX", - "___id": "T000002R053779", + "___id": "T000002R053783", "___s": true }, { @@ -742303,7 +745622,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setY", - "___id": "T000002R053780", + "___id": "T000002R053784", "___s": true }, { @@ -742357,7 +745676,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setZ", - "___id": "T000002R053781", + "___id": "T000002R053785", "___s": true }, { @@ -742411,7 +745730,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setW", - "___id": "T000002R053782", + "___id": "T000002R053786", "___s": true }, { @@ -742463,7 +745782,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", - "___id": "T000002R053783", + "___id": "T000002R053787", "___s": true }, { @@ -742529,7 +745848,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", - "___id": "T000002R053784", + "___id": "T000002R053788", "___s": true }, { @@ -742621,7 +745940,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#getLocalPoint", - "___id": "T000002R053785", + "___id": "T000002R053789", "___s": true }, { @@ -742657,7 +745976,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#getParentRotation", - "___id": "T000002R053786", + "___id": "T000002R053790", "___s": true }, { @@ -742688,7 +746007,7 @@ "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, "overrides": "Phaser.GameObjects.Components.Visible#visible", - "___id": "T000002R053788", + "___id": "T000002R053792", "___s": true }, { @@ -742740,7 +746059,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Visible#setVisible", - "___id": "T000002R053789", + "___id": "T000002R053793", "___s": true }, { @@ -742806,7 +746125,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Acceleration#setAcceleration", "inherited": true, - "___id": "T000002R053790", + "___id": "T000002R053794", "___s": true }, { @@ -742857,7 +746176,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Acceleration#setAccelerationX", "inherited": true, - "___id": "T000002R053791", + "___id": "T000002R053795", "___s": true }, { @@ -742908,7 +746227,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Acceleration#setAccelerationY", "inherited": true, - "___id": "T000002R053792", + "___id": "T000002R053796", "___s": true }, { @@ -742959,7 +746278,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Angular#setAngularVelocity", "inherited": true, - "___id": "T000002R053793", + "___id": "T000002R053797", "___s": true }, { @@ -743010,7 +746329,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Angular#setAngularAcceleration", "inherited": true, - "___id": "T000002R053794", + "___id": "T000002R053798", "___s": true }, { @@ -743061,7 +746380,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Angular#setAngularDrag", "inherited": true, - "___id": "T000002R053795", + "___id": "T000002R053799", "___s": true }, { @@ -743127,7 +746446,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Bounce#setBounce", "inherited": true, - "___id": "T000002R053796", + "___id": "T000002R053800", "___s": true }, { @@ -743178,7 +746497,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Bounce#setBounceX", "inherited": true, - "___id": "T000002R053797", + "___id": "T000002R053801", "___s": true }, { @@ -743229,7 +746548,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Bounce#setBounceY", "inherited": true, - "___id": "T000002R053798", + "___id": "T000002R053802", "___s": true }, { @@ -743324,7 +746643,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Bounce#setCollideWorldBounds", "inherited": true, - "___id": "T000002R053799", + "___id": "T000002R053803", "___s": true }, { @@ -743375,7 +746694,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollisionCategory", "inherited": true, - "___id": "T000002R053800", + "___id": "T000002R053804", "___s": true }, { @@ -743425,7 +746744,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#willCollideWith", "inherited": true, - "___id": "T000002R053801", + "___id": "T000002R053805", "___s": true }, { @@ -743476,7 +746795,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#addCollidesWith", "inherited": true, - "___id": "T000002R053802", + "___id": "T000002R053806", "___s": true }, { @@ -743527,7 +746846,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#removeCollidesWith", "inherited": true, - "___id": "T000002R053803", + "___id": "T000002R053807", "___s": true }, { @@ -743597,7 +746916,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollidesWith", "inherited": true, - "___id": "T000002R053804", + "___id": "T000002R053808", "___s": true }, { @@ -743633,7 +746952,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Collision#resetCollisionCategory", "inherited": true, - "___id": "T000002R053805", + "___id": "T000002R053809", "___s": true }, { @@ -743710,7 +747029,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Debug#setDebug", "inherited": true, - "___id": "T000002R053806", + "___id": "T000002R053810", "___s": true }, { @@ -743761,7 +747080,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Debug#setDebugBodyColor", "inherited": true, - "___id": "T000002R053807", + "___id": "T000002R053811", "___s": true }, { @@ -743791,7 +747110,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Debug#debugShowBody", "inherited": true, - "___id": "T000002R053808", + "___id": "T000002R053812", "___s": true }, { @@ -743821,7 +747140,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Debug#debugShowVelocity", "inherited": true, - "___id": "T000002R053809", + "___id": "T000002R053813", "___s": true }, { @@ -743851,7 +747170,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Debug#debugBodyColor", "inherited": true, - "___id": "T000002R053810", + "___id": "T000002R053814", "___s": true }, { @@ -743917,7 +747236,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Drag#setDrag", "inherited": true, - "___id": "T000002R053811", + "___id": "T000002R053815", "___s": true }, { @@ -743968,7 +747287,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Drag#setDragX", "inherited": true, - "___id": "T000002R053812", + "___id": "T000002R053816", "___s": true }, { @@ -744019,7 +747338,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Drag#setDragY", "inherited": true, - "___id": "T000002R053813", + "___id": "T000002R053817", "___s": true }, { @@ -744070,7 +747389,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Drag#setDamping", "inherited": true, - "___id": "T000002R053814", + "___id": "T000002R053818", "___s": true }, { @@ -744123,7 +747442,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Enable#setDirectControl", "inherited": true, - "___id": "T000002R053815", + "___id": "T000002R053819", "___s": true }, { @@ -744239,7 +747558,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Enable#enableBody", "inherited": true, - "___id": "T000002R053816", + "___id": "T000002R053820", "___s": true }, { @@ -744313,7 +747632,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Enable#disableBody", "inherited": true, - "___id": "T000002R053817", + "___id": "T000002R053821", "___s": true }, { @@ -744352,7 +747671,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Enable#refreshBody", "inherited": true, - "___id": "T000002R053818", + "___id": "T000002R053822", "___s": true }, { @@ -744421,7 +747740,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Friction#setFriction", "inherited": true, - "___id": "T000002R053819", + "___id": "T000002R053823", "___s": true }, { @@ -744475,7 +747794,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Friction#setFrictionX", "inherited": true, - "___id": "T000002R053820", + "___id": "T000002R053824", "___s": true }, { @@ -744529,7 +747848,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Friction#setFrictionY", "inherited": true, - "___id": "T000002R053821", + "___id": "T000002R053825", "___s": true }, { @@ -744595,7 +747914,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Gravity#setGravity", "inherited": true, - "___id": "T000002R053822", + "___id": "T000002R053826", "___s": true }, { @@ -744646,7 +747965,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Gravity#setGravityX", "inherited": true, - "___id": "T000002R053823", + "___id": "T000002R053827", "___s": true }, { @@ -744697,7 +748016,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Gravity#setGravityY", "inherited": true, - "___id": "T000002R053824", + "___id": "T000002R053828", "___s": true }, { @@ -744750,7 +748069,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Immovable#setImmovable", "inherited": true, - "___id": "T000002R053825", + "___id": "T000002R053829", "___s": true }, { @@ -744801,7 +748120,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Mass#setMass", "inherited": true, - "___id": "T000002R053826", + "___id": "T000002R053830", "___s": true }, { @@ -744854,7 +748173,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Pushable#setPushable", "inherited": true, - "___id": "T000002R053827", + "___id": "T000002R053831", "___s": true }, { @@ -744920,7 +748239,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Size#setOffset", "inherited": true, - "___id": "T000002R053828", + "___id": "T000002R053832", "___s": true }, { @@ -744999,7 +748318,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Size#setBodySize", "inherited": true, - "___id": "T000002R053829", + "___id": "T000002R053833", "___s": true }, { @@ -745078,7 +748397,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Size#setCircle", "inherited": true, - "___id": "T000002R053830", + "___id": "T000002R053834", "___s": true }, { @@ -745144,7 +748463,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Velocity#setVelocity", "inherited": true, - "___id": "T000002R053831", + "___id": "T000002R053835", "___s": true }, { @@ -745195,7 +748514,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Velocity#setVelocityX", "inherited": true, - "___id": "T000002R053832", + "___id": "T000002R053836", "___s": true }, { @@ -745246,7 +748565,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Velocity#setVelocityY", "inherited": true, - "___id": "T000002R053833", + "___id": "T000002R053837", "___s": true }, { @@ -745312,7 +748631,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Velocity#setMaxVelocity", "inherited": true, - "___id": "T000002R053834", + "___id": "T000002R053838", "___s": true }, { @@ -745342,7 +748661,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Sprite#anims", "inherited": true, - "___id": "T000002R053836", + "___id": "T000002R053840", "___s": true }, { @@ -745392,7 +748711,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#preUpdate", "inherited": true, - "___id": "T000002R053837", + "___id": "T000002R053841", "___s": true }, { @@ -745476,7 +748795,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#play", "inherited": true, - "___id": "T000002R053838", + "___id": "T000002R053842", "___s": true }, { @@ -745560,7 +748879,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#playReverse", "inherited": true, - "___id": "T000002R053839", + "___id": "T000002R053843", "___s": true }, { @@ -745642,7 +748961,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#playAfterDelay", "inherited": true, - "___id": "T000002R053840", + "___id": "T000002R053844", "___s": true }, { @@ -745726,7 +749045,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#playAfterRepeat", "inherited": true, - "___id": "T000002R053841", + "___id": "T000002R053845", "___s": true }, { @@ -745835,7 +749154,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#chain", "inherited": true, - "___id": "T000002R053842", + "___id": "T000002R053846", "___s": true }, { @@ -745874,7 +749193,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Sprite#stop", "inherited": true, - "___id": "T000002R053843", + "___id": "T000002R053847", "___s": true }, { @@ -745928,7 +749247,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#stopAfterDelay", "inherited": true, - "___id": "T000002R053844", + "___id": "T000002R053848", "___s": true }, { @@ -745984,7 +749303,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#stopAfterRepeat", "inherited": true, - "___id": "T000002R053845", + "___id": "T000002R053849", "___s": true }, { @@ -746038,7 +749357,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#stopOnFrame", "inherited": true, - "___id": "T000002R053846", + "___id": "T000002R053850", "___s": true }, { @@ -746073,7 +749392,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Sprite#toJSON", "inherited": true, - "___id": "T000002R053847", + "___id": "T000002R053851", "___s": true }, { @@ -746103,7 +749422,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R053851", + "___id": "T000002R053855", "___s": true }, { @@ -746144,7 +749463,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R053852", + "___id": "T000002R053856", "___s": true }, { @@ -746174,7 +749493,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R053853", + "___id": "T000002R053857", "___s": true }, { @@ -746214,7 +749533,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R053854", + "___id": "T000002R053858", "___s": true }, { @@ -746244,7 +749563,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R053855", + "___id": "T000002R053859", "___s": true }, { @@ -746275,7 +749594,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R053856", + "___id": "T000002R053860", "___s": true }, { @@ -746306,7 +749625,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R053857", + "___id": "T000002R053861", "___s": true }, { @@ -746337,7 +749656,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R053858", + "___id": "T000002R053862", "___s": true }, { @@ -746368,7 +749687,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R053859", + "___id": "T000002R053863", "___s": true }, { @@ -746399,7 +749718,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R053860", + "___id": "T000002R053864", "___s": true }, { @@ -746433,7 +749752,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R053861", + "___id": "T000002R053865", "___s": true }, { @@ -746466,7 +749785,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R053862", + "___id": "T000002R053866", "___s": true }, { @@ -746497,7 +749816,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R053863", + "___id": "T000002R053867", "___s": true }, { @@ -746548,7 +749867,7 @@ "name": "value" } ], - "___id": "T000002R053864", + "___id": "T000002R053868", "___s": true }, { @@ -746599,7 +749918,7 @@ "name": "value" } ], - "___id": "T000002R053865", + "___id": "T000002R053869", "___s": true }, { @@ -746660,7 +749979,7 @@ "name": "value" } ], - "___id": "T000002R053866", + "___id": "T000002R053870", "___s": true }, { @@ -746699,7 +750018,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R053867", + "___id": "T000002R053871", "___s": true }, { @@ -746787,7 +750106,7 @@ "name": "data" } ], - "___id": "T000002R053868", + "___id": "T000002R053872", "___s": true }, { @@ -746853,7 +750172,7 @@ "name": "amount" } ], - "___id": "T000002R053869", + "___id": "T000002R053873", "___s": true }, { @@ -746904,7 +750223,7 @@ "name": "key" } ], - "___id": "T000002R053870", + "___id": "T000002R053874", "___s": true }, { @@ -746972,7 +750291,7 @@ "name": "key" } ], - "___id": "T000002R053871", + "___id": "T000002R053875", "___s": true }, { @@ -747068,11 +750387,11 @@ "name": "dropZone" } ], - "___id": "T000002R053872", + "___id": "T000002R053876", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -747104,14 +750423,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R053873", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R053877", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -747140,14 +750476,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R053874", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R053878", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -747161,14 +750514,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R053875", + "___id": "T000002R053879", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -747182,14 +750535,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R053876", + "___id": "T000002R053880", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -747220,14 +750573,14 @@ "name": "args" } ], - "___id": "T000002R053877", + "___id": "T000002R053881", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -747270,14 +750623,14 @@ "name": "camera" } ], - "___id": "T000002R053878", + "___id": "T000002R053882", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -747314,14 +750667,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R053879", + "___id": "T000002R053883", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -747380,14 +750733,14 @@ "name": "displayList" } ], - "___id": "T000002R053880", + "___id": "T000002R053884", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -747416,14 +750769,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R053881", + "___id": "T000002R053885", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -747456,14 +750809,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R053882", + "___id": "T000002R053886", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -747492,14 +750845,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R053883", + "___id": "T000002R053887", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -747533,7 +750886,7 @@ "name": "fromScene" } ], - "___id": "T000002R053884", + "___id": "T000002R053888", "___s": true }, { @@ -747554,7 +750907,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R053885", + "___id": "T000002R053889", "___s": true }, { @@ -747606,7 +750959,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R053886", + "___id": "T000002R053890", "___s": true }, { @@ -747675,7 +751028,7 @@ "name": "event" } ], - "___id": "T000002R053887", + "___id": "T000002R053891", "___s": true }, { @@ -747735,7 +751088,7 @@ "name": "event" } ], - "___id": "T000002R053888", + "___id": "T000002R053892", "___s": true }, { @@ -747810,7 +751163,7 @@ "name": "args" } ], - "___id": "T000002R053889", + "___id": "T000002R053893", "___s": true }, { @@ -747898,7 +751251,7 @@ "name": "context" } ], - "___id": "T000002R053890", + "___id": "T000002R053894", "___s": true }, { @@ -747986,7 +751339,7 @@ "name": "context" } ], - "___id": "T000002R053891", + "___id": "T000002R053895", "___s": true }, { @@ -748074,7 +751427,7 @@ "name": "context" } ], - "___id": "T000002R053892", + "___id": "T000002R053896", "___s": true }, { @@ -748176,7 +751529,7 @@ "name": "once" } ], - "___id": "T000002R053893", + "___id": "T000002R053897", "___s": true }, { @@ -748278,7 +751631,7 @@ "name": "once" } ], - "___id": "T000002R053894", + "___id": "T000002R053898", "___s": true }, { @@ -748340,7 +751693,7 @@ "name": "event" } ], - "___id": "T000002R053895", + "___id": "T000002R053899", "___s": true }, { @@ -748377,7 +751730,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#clearAlpha", - "___id": "T000002R053901", + "___id": "T000002R053905", "___s": true }, { @@ -748473,7 +751826,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Alpha#setAlpha", - "___id": "T000002R053902", + "___id": "T000002R053906", "___s": true }, { @@ -748504,7 +751857,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alpha", - "___id": "T000002R053903", + "___id": "T000002R053907", "___s": true }, { @@ -748542,7 +751895,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", - "___id": "T000002R053904", + "___id": "T000002R053908", "___s": true }, { @@ -748580,7 +751933,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaTopRight", - "___id": "T000002R053905", + "___id": "T000002R053909", "___s": true }, { @@ -748618,7 +751971,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", - "___id": "T000002R053906", + "___id": "T000002R053910", "___s": true }, { @@ -748656,7 +752009,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", - "___id": "T000002R053907", + "___id": "T000002R053911", "___s": true }, { @@ -748702,7 +752055,7 @@ "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, "overrides": "Phaser.GameObjects.Components.BlendMode#blendMode", - "___id": "T000002R053909", + "___id": "T000002R053913", "___s": true }, { @@ -748769,7 +752122,7 @@ } ], "overrides": "Phaser.GameObjects.Components.BlendMode#setBlendMode", - "___id": "T000002R053910", + "___id": "T000002R053914", "___s": true }, { @@ -748800,7 +752153,7 @@ "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, "overrides": "Phaser.GameObjects.Components.Depth#depth", - "___id": "T000002R053912", + "___id": "T000002R053916", "___s": true }, { @@ -748852,7 +752205,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Depth#setDepth", - "___id": "T000002R053913", + "___id": "T000002R053917", "___s": true }, { @@ -748889,7 +752242,7 @@ "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, "overrides": "Phaser.GameObjects.Components.Depth#bringMeToTop", - "___id": "T000002R053914", + "___id": "T000002R053918", "___s": true }, { @@ -748926,7 +752279,7 @@ "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, "overrides": "Phaser.GameObjects.Components.Depth#sendMeToBack", - "___id": "T000002R053915", + "___id": "T000002R053919", "___s": true }, { @@ -748978,7 +752331,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", - "___id": "T000002R053916", + "___id": "T000002R053920", "___s": true }, { @@ -749030,7 +752383,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", - "___id": "T000002R053917", + "___id": "T000002R053921", "___s": true }, { @@ -749062,7 +752415,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#flipX", - "___id": "T000002R053918", + "___id": "T000002R053922", "___s": true }, { @@ -749094,7 +752447,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#flipY", - "___id": "T000002R053919", + "___id": "T000002R053923", "___s": true }, { @@ -749131,7 +752484,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#toggleFlipX", - "___id": "T000002R053920", + "___id": "T000002R053924", "___s": true }, { @@ -749168,7 +752521,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#toggleFlipY", - "___id": "T000002R053921", + "___id": "T000002R053925", "___s": true }, { @@ -749220,7 +752573,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Flip#setFlipX", - "___id": "T000002R053922", + "___id": "T000002R053926", "___s": true }, { @@ -749272,7 +752625,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Flip#setFlipY", - "___id": "T000002R053923", + "___id": "T000002R053927", "___s": true }, { @@ -749337,7 +752690,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Flip#setFlip", - "___id": "T000002R053924", + "___id": "T000002R053928", "___s": true }, { @@ -749374,7 +752727,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#resetFlip", - "___id": "T000002R053925", + "___id": "T000002R053929", "___s": true }, { @@ -749449,7 +752802,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getCenter", - "___id": "T000002R053927", + "___id": "T000002R053931", "___s": true }, { @@ -749524,7 +752877,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getTopLeft", - "___id": "T000002R053928", + "___id": "T000002R053932", "___s": true }, { @@ -749599,7 +752952,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getTopCenter", - "___id": "T000002R053929", + "___id": "T000002R053933", "___s": true }, { @@ -749674,7 +753027,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getTopRight", - "___id": "T000002R053930", + "___id": "T000002R053934", "___s": true }, { @@ -749749,7 +753102,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", - "___id": "T000002R053931", + "___id": "T000002R053935", "___s": true }, { @@ -749824,7 +753177,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getRightCenter", - "___id": "T000002R053932", + "___id": "T000002R053936", "___s": true }, { @@ -749899,7 +753252,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", - "___id": "T000002R053933", + "___id": "T000002R053937", "___s": true }, { @@ -749974,7 +753327,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", - "___id": "T000002R053934", + "___id": "T000002R053938", "___s": true }, { @@ -750049,7 +753402,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBottomRight", - "___id": "T000002R053935", + "___id": "T000002R053939", "___s": true }, { @@ -750129,7 +753482,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBounds", - "___id": "T000002R053936", + "___id": "T000002R053940", "___s": true }, { @@ -750170,7 +753523,7 @@ "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, "overrides": "Phaser.GameObjects.Components.Mask#mask", - "___id": "T000002R053937", + "___id": "T000002R053941", "___s": true }, { @@ -750232,7 +753585,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#setMask", - "___id": "T000002R053938", + "___id": "T000002R053942", "___s": true }, { @@ -750286,7 +753639,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#clearMask", - "___id": "T000002R053939", + "___id": "T000002R053943", "___s": true }, { @@ -750449,7 +753802,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#createBitmapMask", - "___id": "T000002R053940", + "___id": "T000002R053944", "___s": true }, { @@ -750531,7 +753884,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#createGeometryMask", - "___id": "T000002R053941", + "___id": "T000002R053945", "___s": true }, { @@ -750564,7 +753917,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#originX", - "___id": "T000002R053943", + "___id": "T000002R053947", "___s": true }, { @@ -750597,7 +753950,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#originY", - "___id": "T000002R053944", + "___id": "T000002R053948", "___s": true }, { @@ -750628,7 +753981,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#displayOriginX", - "___id": "T000002R053945", + "___id": "T000002R053949", "___s": true }, { @@ -750659,7 +754012,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#displayOriginY", - "___id": "T000002R053946", + "___id": "T000002R053950", "___s": true }, { @@ -750728,7 +754081,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Origin#setOrigin", - "___id": "T000002R053947", + "___id": "T000002R053951", "___s": true }, { @@ -750765,7 +754118,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", - "___id": "T000002R053948", + "___id": "T000002R053952", "___s": true }, { @@ -750834,7 +754187,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", - "___id": "T000002R053949", + "___id": "T000002R053953", "___s": true }, { @@ -750871,7 +754224,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", - "___id": "T000002R053950", + "___id": "T000002R053954", "___s": true }, { @@ -750910,7 +754263,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", - "___id": "T000002R053951", + "___id": "T000002R053955", "___s": true }, { @@ -750949,7 +754302,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#pipeline", - "___id": "T000002R053952", + "___id": "T000002R053956", "___s": true }, { @@ -750987,7 +754340,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#pipelineData", - "___id": "T000002R053953", + "___id": "T000002R053957", "___s": true }, { @@ -751056,7 +754409,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#initPipeline", - "___id": "T000002R053954", + "___id": "T000002R053958", "___s": true }, { @@ -751154,7 +754507,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#setPipeline", - "___id": "T000002R053955", + "___id": "T000002R053959", "___s": true }, { @@ -751227,7 +754580,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#setPipelineData", - "___id": "T000002R053956", + "___id": "T000002R053960", "___s": true }, { @@ -751287,7 +754640,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#resetPipeline", - "___id": "T000002R053957", + "___id": "T000002R053961", "___s": true }, { @@ -751332,7 +754685,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#getPipelineName", - "___id": "T000002R053958", + "___id": "T000002R053962", "___s": true }, { @@ -751370,7 +754723,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", - "___id": "T000002R053959", + "___id": "T000002R053963", "___s": true }, { @@ -751417,7 +754770,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#postPipelines", - "___id": "T000002R053960", + "___id": "T000002R053964", "___s": true }, { @@ -751455,7 +754808,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", - "___id": "T000002R053961", + "___id": "T000002R053965", "___s": true }, { @@ -751495,7 +754848,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#preFX", - "___id": "T000002R053962", + "___id": "T000002R053966", "___s": true }, { @@ -751533,7 +754886,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#postFX", - "___id": "T000002R053963", + "___id": "T000002R053967", "___s": true }, { @@ -751579,7 +754932,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", - "___id": "T000002R053964", + "___id": "T000002R053968", "___s": true }, { @@ -751724,7 +755077,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", - "___id": "T000002R053965", + "___id": "T000002R053969", "___s": true }, { @@ -751797,7 +755150,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", - "___id": "T000002R053966", + "___id": "T000002R053970", "___s": true }, { @@ -751889,7 +755242,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", - "___id": "T000002R053967", + "___id": "T000002R053971", "___s": true }, { @@ -751935,7 +755288,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", - "___id": "T000002R053968", + "___id": "T000002R053972", "___s": true }, { @@ -752004,7 +755357,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", - "___id": "T000002R053969", + "___id": "T000002R053973", "___s": true }, { @@ -752048,7 +755401,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#clearFX", - "___id": "T000002R053970", + "___id": "T000002R053974", "___s": true }, { @@ -752080,7 +755433,7 @@ "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, "overrides": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", - "___id": "T000002R053971", + "___id": "T000002R053975", "___s": true }, { @@ -752112,7 +755465,7 @@ "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, "overrides": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", - "___id": "T000002R053972", + "___id": "T000002R053976", "___s": true }, { @@ -752179,7 +755532,7 @@ } ], "overrides": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", - "___id": "T000002R053973", + "___id": "T000002R053977", "___s": true }, { @@ -752210,7 +755563,7 @@ "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#width", - "___id": "T000002R053975", + "___id": "T000002R053979", "___s": true }, { @@ -752241,7 +755594,7 @@ "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#height", - "___id": "T000002R053976", + "___id": "T000002R053980", "___s": true }, { @@ -752272,7 +755625,7 @@ "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#displayWidth", - "___id": "T000002R053977", + "___id": "T000002R053981", "___s": true }, { @@ -752303,7 +755656,7 @@ "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#displayHeight", - "___id": "T000002R053978", + "___id": "T000002R053982", "___s": true }, { @@ -752366,7 +755719,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Size#setSizeToFrame", - "___id": "T000002R053979", + "___id": "T000002R053983", "___s": true }, { @@ -752431,7 +755784,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Size#setSize", - "___id": "T000002R053980", + "___id": "T000002R053984", "___s": true }, { @@ -752496,7 +755849,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Size#setDisplaySize", - "___id": "T000002R053981", + "___id": "T000002R053985", "___s": true }, { @@ -752537,7 +755890,7 @@ "inherits": "Phaser.GameObjects.Components.TextureCrop#texture", "inherited": true, "overrides": "Phaser.GameObjects.Components.Texture#texture", - "___id": "T000002R053982", + "___id": "T000002R053986", "___s": true }, { @@ -752568,7 +755921,7 @@ "inherits": "Phaser.GameObjects.Components.TextureCrop#frame", "inherited": true, "overrides": "Phaser.GameObjects.Components.Texture#frame", - "___id": "T000002R053983", + "___id": "T000002R053987", "___s": true }, { @@ -752599,7 +755952,7 @@ "inherits": "Phaser.GameObjects.Components.TextureCrop#isCropped", "inherited": true, "overrides": "Phaser.GameObjects.Components.Texture#isCropped", - "___id": "T000002R053984", + "___id": "T000002R053988", "___s": true }, { @@ -752703,7 +756056,7 @@ "name": "height" } ], - "___id": "T000002R053985", + "___id": "T000002R053989", "___s": true }, { @@ -752779,7 +756132,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Texture#setTexture", - "___id": "T000002R053986", + "___id": "T000002R053990", "___s": true }, { @@ -752876,7 +756229,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Texture#setFrame", - "___id": "T000002R053987", + "___id": "T000002R053991", "___s": true }, { @@ -752908,7 +756261,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintTopLeft", - "___id": "T000002R053989", + "___id": "T000002R053993", "___s": true }, { @@ -752940,7 +756293,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintTopRight", - "___id": "T000002R053990", + "___id": "T000002R053994", "___s": true }, { @@ -752972,7 +756325,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintBottomLeft", - "___id": "T000002R053991", + "___id": "T000002R053995", "___s": true }, { @@ -753004,7 +756357,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintBottomRight", - "___id": "T000002R053992", + "___id": "T000002R053996", "___s": true }, { @@ -753036,7 +756389,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintFill", - "___id": "T000002R053993", + "___id": "T000002R053997", "___s": true }, { @@ -753080,7 +756433,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#clearTint", - "___id": "T000002R053994", + "___id": "T000002R053998", "___s": true }, { @@ -753183,7 +756536,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Tint#setTint", - "___id": "T000002R053995", + "___id": "T000002R053999", "___s": true }, { @@ -753286,7 +756639,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Tint#setTintFill", - "___id": "T000002R053996", + "___id": "T000002R054000", "___s": true }, { @@ -753324,7 +756677,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tint", - "___id": "T000002R053997", + "___id": "T000002R054001", "___s": true }, { @@ -753363,7 +756716,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#isTinted", - "___id": "T000002R053998", + "___id": "T000002R054002", "___s": true }, { @@ -753396,7 +756749,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#hasTransformComponent", - "___id": "T000002R053999", + "___id": "T000002R054003", "___s": true }, { @@ -753428,7 +756781,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#x", - "___id": "T000002R054003", + "___id": "T000002R054007", "___s": true }, { @@ -753460,7 +756813,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#y", - "___id": "T000002R054004", + "___id": "T000002R054008", "___s": true }, { @@ -753492,7 +756845,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#z", - "___id": "T000002R054005", + "___id": "T000002R054009", "___s": true }, { @@ -753524,7 +756877,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#w", - "___id": "T000002R054006", + "___id": "T000002R054010", "___s": true }, { @@ -753556,7 +756909,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#scale", - "___id": "T000002R054007", + "___id": "T000002R054011", "___s": true }, { @@ -753588,7 +756941,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#scaleX", - "___id": "T000002R054008", + "___id": "T000002R054012", "___s": true }, { @@ -753620,7 +756973,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#scaleY", - "___id": "T000002R054009", + "___id": "T000002R054013", "___s": true }, { @@ -753652,7 +757005,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#angle", - "___id": "T000002R054010", + "___id": "T000002R054014", "___s": true }, { @@ -753684,7 +757037,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#rotation", - "___id": "T000002R054011", + "___id": "T000002R054015", "___s": true }, { @@ -753783,7 +757136,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setPosition", - "___id": "T000002R054012", + "___id": "T000002R054016", "___s": true }, { @@ -753850,7 +757203,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#copyPosition", - "___id": "T000002R054013", + "___id": "T000002R054017", "___s": true }, { @@ -753947,7 +757300,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setRandomPosition", - "___id": "T000002R054014", + "___id": "T000002R054018", "___s": true }, { @@ -754001,7 +757354,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setRotation", - "___id": "T000002R054015", + "___id": "T000002R054019", "___s": true }, { @@ -754055,7 +757408,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setAngle", - "___id": "T000002R054016", + "___id": "T000002R054020", "___s": true }, { @@ -754124,7 +757477,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setScale", - "___id": "T000002R054017", + "___id": "T000002R054021", "___s": true }, { @@ -754178,7 +757531,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setX", - "___id": "T000002R054018", + "___id": "T000002R054022", "___s": true }, { @@ -754232,7 +757585,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setY", - "___id": "T000002R054019", + "___id": "T000002R054023", "___s": true }, { @@ -754286,7 +757639,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setZ", - "___id": "T000002R054020", + "___id": "T000002R054024", "___s": true }, { @@ -754340,7 +757693,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setW", - "___id": "T000002R054021", + "___id": "T000002R054025", "___s": true }, { @@ -754392,7 +757745,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", - "___id": "T000002R054022", + "___id": "T000002R054026", "___s": true }, { @@ -754458,7 +757811,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", - "___id": "T000002R054023", + "___id": "T000002R054027", "___s": true }, { @@ -754550,7 +757903,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#getLocalPoint", - "___id": "T000002R054024", + "___id": "T000002R054028", "___s": true }, { @@ -754586,7 +757939,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#getParentRotation", - "___id": "T000002R054025", + "___id": "T000002R054029", "___s": true }, { @@ -754617,7 +757970,7 @@ "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, "overrides": "Phaser.GameObjects.Components.Visible#visible", - "___id": "T000002R054027", + "___id": "T000002R054031", "___s": true }, { @@ -754669,7 +758022,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Visible#setVisible", - "___id": "T000002R054028", + "___id": "T000002R054032", "___s": true }, { @@ -754735,7 +758088,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Acceleration#setAcceleration", "inherited": true, - "___id": "T000002R054029", + "___id": "T000002R054033", "___s": true }, { @@ -754786,7 +758139,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Acceleration#setAccelerationX", "inherited": true, - "___id": "T000002R054030", + "___id": "T000002R054034", "___s": true }, { @@ -754837,7 +758190,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Acceleration#setAccelerationY", "inherited": true, - "___id": "T000002R054031", + "___id": "T000002R054035", "___s": true }, { @@ -754888,7 +758241,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Angular#setAngularVelocity", "inherited": true, - "___id": "T000002R054032", + "___id": "T000002R054036", "___s": true }, { @@ -754939,7 +758292,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Angular#setAngularAcceleration", "inherited": true, - "___id": "T000002R054033", + "___id": "T000002R054037", "___s": true }, { @@ -754990,7 +758343,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Angular#setAngularDrag", "inherited": true, - "___id": "T000002R054034", + "___id": "T000002R054038", "___s": true }, { @@ -755056,7 +758409,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Bounce#setBounce", "inherited": true, - "___id": "T000002R054035", + "___id": "T000002R054039", "___s": true }, { @@ -755107,7 +758460,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Bounce#setBounceX", "inherited": true, - "___id": "T000002R054036", + "___id": "T000002R054040", "___s": true }, { @@ -755158,7 +758511,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Bounce#setBounceY", "inherited": true, - "___id": "T000002R054037", + "___id": "T000002R054041", "___s": true }, { @@ -755253,7 +758606,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Bounce#setCollideWorldBounds", "inherited": true, - "___id": "T000002R054038", + "___id": "T000002R054042", "___s": true }, { @@ -755304,7 +758657,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollisionCategory", "inherited": true, - "___id": "T000002R054039", + "___id": "T000002R054043", "___s": true }, { @@ -755354,7 +758707,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#willCollideWith", "inherited": true, - "___id": "T000002R054040", + "___id": "T000002R054044", "___s": true }, { @@ -755405,7 +758758,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#addCollidesWith", "inherited": true, - "___id": "T000002R054041", + "___id": "T000002R054045", "___s": true }, { @@ -755456,7 +758809,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#removeCollidesWith", "inherited": true, - "___id": "T000002R054042", + "___id": "T000002R054046", "___s": true }, { @@ -755526,7 +758879,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollidesWith", "inherited": true, - "___id": "T000002R054043", + "___id": "T000002R054047", "___s": true }, { @@ -755562,7 +758915,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Collision#resetCollisionCategory", "inherited": true, - "___id": "T000002R054044", + "___id": "T000002R054048", "___s": true }, { @@ -755639,7 +758992,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Debug#setDebug", "inherited": true, - "___id": "T000002R054045", + "___id": "T000002R054049", "___s": true }, { @@ -755690,7 +759043,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Debug#setDebugBodyColor", "inherited": true, - "___id": "T000002R054046", + "___id": "T000002R054050", "___s": true }, { @@ -755720,7 +759073,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Debug#debugShowBody", "inherited": true, - "___id": "T000002R054047", + "___id": "T000002R054051", "___s": true }, { @@ -755750,7 +759103,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Debug#debugShowVelocity", "inherited": true, - "___id": "T000002R054048", + "___id": "T000002R054052", "___s": true }, { @@ -755780,7 +759133,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Debug#debugBodyColor", "inherited": true, - "___id": "T000002R054049", + "___id": "T000002R054053", "___s": true }, { @@ -755846,7 +759199,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Drag#setDrag", "inherited": true, - "___id": "T000002R054050", + "___id": "T000002R054054", "___s": true }, { @@ -755897,7 +759250,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Drag#setDragX", "inherited": true, - "___id": "T000002R054051", + "___id": "T000002R054055", "___s": true }, { @@ -755948,7 +759301,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Drag#setDragY", "inherited": true, - "___id": "T000002R054052", + "___id": "T000002R054056", "___s": true }, { @@ -755999,7 +759352,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Drag#setDamping", "inherited": true, - "___id": "T000002R054053", + "___id": "T000002R054057", "___s": true }, { @@ -756052,7 +759405,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Enable#setDirectControl", "inherited": true, - "___id": "T000002R054054", + "___id": "T000002R054058", "___s": true }, { @@ -756168,7 +759521,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Enable#enableBody", "inherited": true, - "___id": "T000002R054055", + "___id": "T000002R054059", "___s": true }, { @@ -756242,7 +759595,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Enable#disableBody", "inherited": true, - "___id": "T000002R054056", + "___id": "T000002R054060", "___s": true }, { @@ -756281,7 +759634,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Enable#refreshBody", "inherited": true, - "___id": "T000002R054057", + "___id": "T000002R054061", "___s": true }, { @@ -756350,7 +759703,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Friction#setFriction", "inherited": true, - "___id": "T000002R054058", + "___id": "T000002R054062", "___s": true }, { @@ -756404,7 +759757,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Friction#setFrictionX", "inherited": true, - "___id": "T000002R054059", + "___id": "T000002R054063", "___s": true }, { @@ -756458,7 +759811,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Friction#setFrictionY", "inherited": true, - "___id": "T000002R054060", + "___id": "T000002R054064", "___s": true }, { @@ -756524,7 +759877,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Gravity#setGravity", "inherited": true, - "___id": "T000002R054061", + "___id": "T000002R054065", "___s": true }, { @@ -756575,7 +759928,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Gravity#setGravityX", "inherited": true, - "___id": "T000002R054062", + "___id": "T000002R054066", "___s": true }, { @@ -756626,7 +759979,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Gravity#setGravityY", "inherited": true, - "___id": "T000002R054063", + "___id": "T000002R054067", "___s": true }, { @@ -756679,7 +760032,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Immovable#setImmovable", "inherited": true, - "___id": "T000002R054064", + "___id": "T000002R054068", "___s": true }, { @@ -756730,7 +760083,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Mass#setMass", "inherited": true, - "___id": "T000002R054065", + "___id": "T000002R054069", "___s": true }, { @@ -756783,7 +760136,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Pushable#setPushable", "inherited": true, - "___id": "T000002R054066", + "___id": "T000002R054070", "___s": true }, { @@ -756849,7 +760202,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Size#setOffset", "inherited": true, - "___id": "T000002R054067", + "___id": "T000002R054071", "___s": true }, { @@ -756928,7 +760281,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Size#setBodySize", "inherited": true, - "___id": "T000002R054068", + "___id": "T000002R054072", "___s": true }, { @@ -757007,7 +760360,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Size#setCircle", "inherited": true, - "___id": "T000002R054069", + "___id": "T000002R054073", "___s": true }, { @@ -757073,7 +760426,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Velocity#setVelocity", "inherited": true, - "___id": "T000002R054070", + "___id": "T000002R054074", "___s": true }, { @@ -757124,7 +760477,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Velocity#setVelocityX", "inherited": true, - "___id": "T000002R054071", + "___id": "T000002R054075", "___s": true }, { @@ -757175,7 +760528,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Velocity#setVelocityY", "inherited": true, - "___id": "T000002R054072", + "___id": "T000002R054076", "___s": true }, { @@ -757241,7 +760594,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Velocity#setMaxVelocity", "inherited": true, - "___id": "T000002R054073", + "___id": "T000002R054077", "___s": true }, { @@ -757292,7 +760645,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollisionCategory", "inherited": true, - "___id": "T000002R054074", + "___id": "T000002R054078", "___s": true }, { @@ -757342,7 +760695,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#willCollideWith", "inherited": true, - "___id": "T000002R054075", + "___id": "T000002R054079", "___s": true }, { @@ -757393,7 +760746,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#addCollidesWith", "inherited": true, - "___id": "T000002R054076", + "___id": "T000002R054080", "___s": true }, { @@ -757444,7 +760797,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#removeCollidesWith", "inherited": true, - "___id": "T000002R054077", + "___id": "T000002R054081", "___s": true }, { @@ -757514,7 +760867,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollidesWith", "inherited": true, - "___id": "T000002R054078", + "___id": "T000002R054082", "___s": true }, { @@ -757550,7 +760903,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Collision#resetCollisionCategory", "inherited": true, - "___id": "T000002R054079", + "___id": "T000002R054083", "___s": true }, { @@ -757580,7 +760933,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#scene", "inherited": true, - "___id": "T000002R054080", + "___id": "T000002R054084", "___s": true }, { @@ -757619,7 +760972,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#children", "inherited": true, - "___id": "T000002R054081", + "___id": "T000002R054085", "___s": true }, { @@ -757650,7 +761003,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#isParent", "inherited": true, - "___id": "T000002R054082", + "___id": "T000002R054086", "___s": true }, { @@ -757681,7 +761034,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#name", "inherited": true, - "___id": "T000002R054083", + "___id": "T000002R054087", "___s": true }, { @@ -757711,7 +761064,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#active", "inherited": true, - "___id": "T000002R054084", + "___id": "T000002R054088", "___s": true }, { @@ -757742,7 +761095,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#maxSize", "inherited": true, - "___id": "T000002R054085", + "___id": "T000002R054089", "___s": true }, { @@ -757772,7 +761125,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#defaultKey", "inherited": true, - "___id": "T000002R054086", + "___id": "T000002R054090", "___s": true }, { @@ -757812,7 +761165,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#defaultFrame", "inherited": true, - "___id": "T000002R054087", + "___id": "T000002R054091", "___s": true }, { @@ -757846,7 +761199,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#runChildUpdate", "inherited": true, - "___id": "T000002R054088", + "___id": "T000002R054092", "___s": true }, { @@ -757878,7 +761231,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#createCallback", "inherited": true, - "___id": "T000002R054089", + "___id": "T000002R054093", "___s": true }, { @@ -757910,7 +761263,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#removeCallback", "inherited": true, - "___id": "T000002R054090", + "___id": "T000002R054094", "___s": true }, { @@ -757942,7 +761295,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#createMultipleCallback", "inherited": true, - "___id": "T000002R054091", + "___id": "T000002R054095", "___s": true }, { @@ -758079,7 +761432,7 @@ ], "inherits": "Phaser.GameObjects.Group#create", "inherited": true, - "___id": "T000002R054094", + "___id": "T000002R054098", "___s": true }, { @@ -758157,7 +761510,7 @@ ], "inherits": "Phaser.GameObjects.Group#createMultiple", "inherited": true, - "___id": "T000002R054095", + "___id": "T000002R054099", "___s": true }, { @@ -758216,7 +761569,7 @@ ], "inherits": "Phaser.GameObjects.Group#createFromConfig", "inherited": true, - "___id": "T000002R054096", + "___id": "T000002R054100", "___s": true }, { @@ -758265,7 +761618,7 @@ ], "inherits": "Phaser.GameObjects.Group#preUpdate", "inherited": true, - "___id": "T000002R054097", + "___id": "T000002R054101", "___s": true }, { @@ -758331,7 +761684,7 @@ ], "inherits": "Phaser.GameObjects.Group#add", "inherited": true, - "___id": "T000002R054098", + "___id": "T000002R054102", "___s": true }, { @@ -758406,7 +761759,7 @@ ], "inherits": "Phaser.GameObjects.Group#addMultiple", "inherited": true, - "___id": "T000002R054099", + "___id": "T000002R054103", "___s": true }, { @@ -758487,7 +761840,7 @@ ], "inherits": "Phaser.GameObjects.Group#remove", "inherited": true, - "___id": "T000002R054100", + "___id": "T000002R054104", "___s": true }, { @@ -758555,7 +761908,7 @@ ], "inherits": "Phaser.GameObjects.Group#clear", "inherited": true, - "___id": "T000002R054101", + "___id": "T000002R054105", "___s": true }, { @@ -758605,7 +761958,7 @@ ], "inherits": "Phaser.GameObjects.Group#contains", "inherited": true, - "___id": "T000002R054102", + "___id": "T000002R054106", "___s": true }, { @@ -758649,7 +762002,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#getChildren", "inherited": true, - "___id": "T000002R054103", + "___id": "T000002R054107", "___s": true }, { @@ -758683,7 +762036,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#getLength", "inherited": true, - "___id": "T000002R054104", + "___id": "T000002R054108", "___s": true }, { @@ -758784,7 +762137,7 @@ ], "inherits": "Phaser.GameObjects.Group#getMatching", "inherited": true, - "___id": "T000002R054105", + "___id": "T000002R054109", "___s": true }, { @@ -758936,7 +762289,7 @@ ], "inherits": "Phaser.GameObjects.Group#getFirst", "inherited": true, - "___id": "T000002R054106", + "___id": "T000002R054110", "___s": true }, { @@ -759101,7 +762454,7 @@ ], "inherits": "Phaser.GameObjects.Group#getFirstNth", "inherited": true, - "___id": "T000002R054107", + "___id": "T000002R054111", "___s": true }, { @@ -759253,7 +762606,7 @@ ], "inherits": "Phaser.GameObjects.Group#getLast", "inherited": true, - "___id": "T000002R054108", + "___id": "T000002R054112", "___s": true }, { @@ -759418,7 +762771,7 @@ ], "inherits": "Phaser.GameObjects.Group#getLastNth", "inherited": true, - "___id": "T000002R054109", + "___id": "T000002R054113", "___s": true }, { @@ -759540,7 +762893,7 @@ ], "inherits": "Phaser.GameObjects.Group#get", "inherited": true, - "___id": "T000002R054111", + "___id": "T000002R054115", "___s": true }, { @@ -759675,7 +763028,7 @@ ], "inherits": "Phaser.GameObjects.Group#getFirstAlive", "inherited": true, - "___id": "T000002R054112", + "___id": "T000002R054116", "___s": true }, { @@ -759810,7 +763163,7 @@ ], "inherits": "Phaser.GameObjects.Group#getFirstDead", "inherited": true, - "___id": "T000002R054113", + "___id": "T000002R054117", "___s": true }, { @@ -759876,7 +763229,7 @@ ], "inherits": "Phaser.GameObjects.Group#playAnimation", "inherited": true, - "___id": "T000002R054114", + "___id": "T000002R054118", "___s": true }, { @@ -759911,7 +763264,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#isFull", "inherited": true, - "___id": "T000002R054115", + "___id": "T000002R054119", "___s": true }, { @@ -759963,7 +763316,7 @@ ], "inherits": "Phaser.GameObjects.Group#countActive", "inherited": true, - "___id": "T000002R054116", + "___id": "T000002R054120", "___s": true }, { @@ -759998,7 +763351,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#getTotalUsed", "inherited": true, - "___id": "T000002R054117", + "___id": "T000002R054121", "___s": true }, { @@ -760033,7 +763386,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#getTotalFree", "inherited": true, - "___id": "T000002R054118", + "___id": "T000002R054122", "___s": true }, { @@ -760084,7 +763437,7 @@ ], "inherits": "Phaser.GameObjects.Group#setActive", "inherited": true, - "___id": "T000002R054119", + "___id": "T000002R054123", "___s": true }, { @@ -760135,7 +763488,7 @@ ], "inherits": "Phaser.GameObjects.Group#setName", "inherited": true, - "___id": "T000002R054120", + "___id": "T000002R054124", "___s": true }, { @@ -760244,7 +763597,7 @@ ], "inherits": "Phaser.GameObjects.Group#propertyValueSet", "inherited": true, - "___id": "T000002R054121", + "___id": "T000002R054125", "___s": true }, { @@ -760353,7 +763706,7 @@ ], "inherits": "Phaser.GameObjects.Group#propertyValueInc", "inherited": true, - "___id": "T000002R054122", + "___id": "T000002R054126", "___s": true }, { @@ -760419,7 +763772,7 @@ ], "inherits": "Phaser.GameObjects.Group#setX", "inherited": true, - "___id": "T000002R054123", + "___id": "T000002R054127", "___s": true }, { @@ -760485,7 +763838,7 @@ ], "inherits": "Phaser.GameObjects.Group#setY", "inherited": true, - "___id": "T000002R054124", + "___id": "T000002R054128", "___s": true }, { @@ -760581,7 +763934,7 @@ ], "inherits": "Phaser.GameObjects.Group#setXY", "inherited": true, - "___id": "T000002R054125", + "___id": "T000002R054129", "___s": true }, { @@ -760647,7 +764000,7 @@ ], "inherits": "Phaser.GameObjects.Group#incX", "inherited": true, - "___id": "T000002R054126", + "___id": "T000002R054130", "___s": true }, { @@ -760713,7 +764066,7 @@ ], "inherits": "Phaser.GameObjects.Group#incY", "inherited": true, - "___id": "T000002R054127", + "___id": "T000002R054131", "___s": true }, { @@ -760809,7 +764162,7 @@ ], "inherits": "Phaser.GameObjects.Group#incXY", "inherited": true, - "___id": "T000002R054128", + "___id": "T000002R054132", "___s": true }, { @@ -760888,7 +764241,7 @@ ], "inherits": "Phaser.GameObjects.Group#shiftPosition", "inherited": true, - "___id": "T000002R054129", + "___id": "T000002R054133", "___s": true }, { @@ -760954,7 +764307,7 @@ ], "inherits": "Phaser.GameObjects.Group#angle", "inherited": true, - "___id": "T000002R054130", + "___id": "T000002R054134", "___s": true }, { @@ -761020,7 +764373,7 @@ ], "inherits": "Phaser.GameObjects.Group#rotate", "inherited": true, - "___id": "T000002R054131", + "___id": "T000002R054135", "___s": true }, { @@ -761084,7 +764437,7 @@ ], "inherits": "Phaser.GameObjects.Group#rotateAround", "inherited": true, - "___id": "T000002R054132", + "___id": "T000002R054136", "___s": true }, { @@ -761161,7 +764514,7 @@ ], "inherits": "Phaser.GameObjects.Group#rotateAroundDistance", "inherited": true, - "___id": "T000002R054133", + "___id": "T000002R054137", "___s": true }, { @@ -761227,7 +764580,7 @@ ], "inherits": "Phaser.GameObjects.Group#setAlpha", "inherited": true, - "___id": "T000002R054134", + "___id": "T000002R054138", "___s": true }, { @@ -761320,7 +764673,7 @@ ], "inherits": "Phaser.GameObjects.Group#setTint", "inherited": true, - "___id": "T000002R054135", + "___id": "T000002R054139", "___s": true }, { @@ -761415,7 +764768,7 @@ ], "inherits": "Phaser.GameObjects.Group#setOrigin", "inherited": true, - "___id": "T000002R054136", + "___id": "T000002R054140", "___s": true }, { @@ -761481,7 +764834,7 @@ ], "inherits": "Phaser.GameObjects.Group#scaleX", "inherited": true, - "___id": "T000002R054137", + "___id": "T000002R054141", "___s": true }, { @@ -761547,7 +764900,7 @@ ], "inherits": "Phaser.GameObjects.Group#scaleY", "inherited": true, - "___id": "T000002R054138", + "___id": "T000002R054142", "___s": true }, { @@ -761642,7 +764995,7 @@ ], "inherits": "Phaser.GameObjects.Group#scaleXY", "inherited": true, - "___id": "T000002R054139", + "___id": "T000002R054143", "___s": true }, { @@ -761708,7 +765061,7 @@ ], "inherits": "Phaser.GameObjects.Group#setDepth", "inherited": true, - "___id": "T000002R054140", + "___id": "T000002R054144", "___s": true }, { @@ -761759,7 +765112,7 @@ ], "inherits": "Phaser.GameObjects.Group#setBlendMode", "inherited": true, - "___id": "T000002R054141", + "___id": "T000002R054145", "___s": true }, { @@ -761822,7 +765175,7 @@ ], "inherits": "Phaser.GameObjects.Group#setHitArea", "inherited": true, - "___id": "T000002R054142", + "___id": "T000002R054146", "___s": true }, { @@ -761858,7 +765211,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#shuffle", "inherited": true, - "___id": "T000002R054143", + "___id": "T000002R054147", "___s": true }, { @@ -761894,7 +765247,7 @@ ], "inherits": "Phaser.GameObjects.Group#kill", "inherited": true, - "___id": "T000002R054144", + "___id": "T000002R054148", "___s": true }, { @@ -761930,7 +765283,7 @@ ], "inherits": "Phaser.GameObjects.Group#killAndHide", "inherited": true, - "___id": "T000002R054145", + "___id": "T000002R054149", "___s": true }, { @@ -762011,7 +765364,7 @@ ], "inherits": "Phaser.GameObjects.Group#setVisible", "inherited": true, - "___id": "T000002R054146", + "___id": "T000002R054150", "___s": true }, { @@ -762047,7 +765400,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#toggleVisible", "inherited": true, - "___id": "T000002R054147", + "___id": "T000002R054151", "___s": true }, { @@ -762100,7 +765453,7 @@ ], "inherits": "Phaser.GameObjects.Group#destroy", "inherited": true, - "___id": "T000002R054148", + "___id": "T000002R054152", "___s": true }, { @@ -762121,7 +765474,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R054149", + "___id": "T000002R054153", "___s": true }, { @@ -762173,7 +765526,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R054150", + "___id": "T000002R054154", "___s": true }, { @@ -762242,7 +765595,7 @@ "name": "event" } ], - "___id": "T000002R054151", + "___id": "T000002R054155", "___s": true }, { @@ -762302,7 +765655,7 @@ "name": "event" } ], - "___id": "T000002R054152", + "___id": "T000002R054156", "___s": true }, { @@ -762377,7 +765730,7 @@ "name": "args" } ], - "___id": "T000002R054153", + "___id": "T000002R054157", "___s": true }, { @@ -762465,7 +765818,7 @@ "name": "context" } ], - "___id": "T000002R054154", + "___id": "T000002R054158", "___s": true }, { @@ -762553,7 +765906,7 @@ "name": "context" } ], - "___id": "T000002R054155", + "___id": "T000002R054159", "___s": true }, { @@ -762641,7 +765994,7 @@ "name": "context" } ], - "___id": "T000002R054156", + "___id": "T000002R054160", "___s": true }, { @@ -762743,7 +766096,7 @@ "name": "once" } ], - "___id": "T000002R054157", + "___id": "T000002R054161", "___s": true }, { @@ -762845,7 +766198,7 @@ "name": "once" } ], - "___id": "T000002R054158", + "___id": "T000002R054162", "___s": true }, { @@ -762907,7 +766260,7 @@ "name": "event" } ], - "___id": "T000002R054159", + "___id": "T000002R054163", "___s": true }, { @@ -762958,7 +766311,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollisionCategory", "inherited": true, - "___id": "T000002R054160", + "___id": "T000002R054164", "___s": true }, { @@ -763008,7 +766361,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#willCollideWith", "inherited": true, - "___id": "T000002R054161", + "___id": "T000002R054165", "___s": true }, { @@ -763059,7 +766412,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#addCollidesWith", "inherited": true, - "___id": "T000002R054162", + "___id": "T000002R054166", "___s": true }, { @@ -763110,7 +766463,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#removeCollidesWith", "inherited": true, - "___id": "T000002R054163", + "___id": "T000002R054167", "___s": true }, { @@ -763180,7 +766533,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollidesWith", "inherited": true, - "___id": "T000002R054164", + "___id": "T000002R054168", "___s": true }, { @@ -763216,7 +766569,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Collision#resetCollisionCategory", "inherited": true, - "___id": "T000002R054165", + "___id": "T000002R054169", "___s": true }, { @@ -763267,7 +766620,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollisionCategory", "inherited": true, - "___id": "T000002R054166", + "___id": "T000002R054170", "___s": true }, { @@ -763317,7 +766670,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#willCollideWith", "inherited": true, - "___id": "T000002R054167", + "___id": "T000002R054171", "___s": true }, { @@ -763368,7 +766721,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#addCollidesWith", "inherited": true, - "___id": "T000002R054168", + "___id": "T000002R054172", "___s": true }, { @@ -763419,7 +766772,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#removeCollidesWith", "inherited": true, - "___id": "T000002R054169", + "___id": "T000002R054173", "___s": true }, { @@ -763489,7 +766842,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollidesWith", "inherited": true, - "___id": "T000002R054170", + "___id": "T000002R054174", "___s": true }, { @@ -763525,7 +766878,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Collision#resetCollisionCategory", "inherited": true, - "___id": "T000002R054171", + "___id": "T000002R054175", "___s": true }, { @@ -763555,7 +766908,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#scene", "inherited": true, - "___id": "T000002R054172", + "___id": "T000002R054176", "___s": true }, { @@ -763594,7 +766947,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#children", "inherited": true, - "___id": "T000002R054173", + "___id": "T000002R054177", "___s": true }, { @@ -763625,7 +766978,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#isParent", "inherited": true, - "___id": "T000002R054174", + "___id": "T000002R054178", "___s": true }, { @@ -763659,7 +767012,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#classType", "inherited": true, - "___id": "T000002R054175", + "___id": "T000002R054179", "___s": true }, { @@ -763690,7 +767043,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#name", "inherited": true, - "___id": "T000002R054176", + "___id": "T000002R054180", "___s": true }, { @@ -763720,7 +767073,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#active", "inherited": true, - "___id": "T000002R054177", + "___id": "T000002R054181", "___s": true }, { @@ -763751,7 +767104,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#maxSize", "inherited": true, - "___id": "T000002R054178", + "___id": "T000002R054182", "___s": true }, { @@ -763781,7 +767134,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#defaultKey", "inherited": true, - "___id": "T000002R054179", + "___id": "T000002R054183", "___s": true }, { @@ -763821,7 +767174,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#defaultFrame", "inherited": true, - "___id": "T000002R054180", + "___id": "T000002R054184", "___s": true }, { @@ -763855,7 +767208,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#runChildUpdate", "inherited": true, - "___id": "T000002R054181", + "___id": "T000002R054185", "___s": true }, { @@ -763887,7 +767240,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#createCallback", "inherited": true, - "___id": "T000002R054182", + "___id": "T000002R054186", "___s": true }, { @@ -763919,7 +767272,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#removeCallback", "inherited": true, - "___id": "T000002R054183", + "___id": "T000002R054187", "___s": true }, { @@ -763951,7 +767304,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#createMultipleCallback", "inherited": true, - "___id": "T000002R054184", + "___id": "T000002R054188", "___s": true }, { @@ -764088,7 +767441,7 @@ ], "inherits": "Phaser.GameObjects.Group#create", "inherited": true, - "___id": "T000002R054187", + "___id": "T000002R054191", "___s": true }, { @@ -764166,7 +767519,7 @@ ], "inherits": "Phaser.GameObjects.Group#createMultiple", "inherited": true, - "___id": "T000002R054188", + "___id": "T000002R054192", "___s": true }, { @@ -764225,7 +767578,7 @@ ], "inherits": "Phaser.GameObjects.Group#createFromConfig", "inherited": true, - "___id": "T000002R054189", + "___id": "T000002R054193", "___s": true }, { @@ -764274,7 +767627,7 @@ ], "inherits": "Phaser.GameObjects.Group#preUpdate", "inherited": true, - "___id": "T000002R054190", + "___id": "T000002R054194", "___s": true }, { @@ -764340,7 +767693,7 @@ ], "inherits": "Phaser.GameObjects.Group#add", "inherited": true, - "___id": "T000002R054191", + "___id": "T000002R054195", "___s": true }, { @@ -764415,7 +767768,7 @@ ], "inherits": "Phaser.GameObjects.Group#addMultiple", "inherited": true, - "___id": "T000002R054192", + "___id": "T000002R054196", "___s": true }, { @@ -764496,7 +767849,7 @@ ], "inherits": "Phaser.GameObjects.Group#remove", "inherited": true, - "___id": "T000002R054193", + "___id": "T000002R054197", "___s": true }, { @@ -764564,7 +767917,7 @@ ], "inherits": "Phaser.GameObjects.Group#clear", "inherited": true, - "___id": "T000002R054194", + "___id": "T000002R054198", "___s": true }, { @@ -764614,7 +767967,7 @@ ], "inherits": "Phaser.GameObjects.Group#contains", "inherited": true, - "___id": "T000002R054195", + "___id": "T000002R054199", "___s": true }, { @@ -764658,7 +768011,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#getChildren", "inherited": true, - "___id": "T000002R054196", + "___id": "T000002R054200", "___s": true }, { @@ -764692,7 +768045,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#getLength", "inherited": true, - "___id": "T000002R054197", + "___id": "T000002R054201", "___s": true }, { @@ -764793,7 +768146,7 @@ ], "inherits": "Phaser.GameObjects.Group#getMatching", "inherited": true, - "___id": "T000002R054198", + "___id": "T000002R054202", "___s": true }, { @@ -764945,7 +768298,7 @@ ], "inherits": "Phaser.GameObjects.Group#getFirst", "inherited": true, - "___id": "T000002R054199", + "___id": "T000002R054203", "___s": true }, { @@ -765110,7 +768463,7 @@ ], "inherits": "Phaser.GameObjects.Group#getFirstNth", "inherited": true, - "___id": "T000002R054200", + "___id": "T000002R054204", "___s": true }, { @@ -765262,7 +768615,7 @@ ], "inherits": "Phaser.GameObjects.Group#getLast", "inherited": true, - "___id": "T000002R054201", + "___id": "T000002R054205", "___s": true }, { @@ -765427,7 +768780,7 @@ ], "inherits": "Phaser.GameObjects.Group#getLastNth", "inherited": true, - "___id": "T000002R054202", + "___id": "T000002R054206", "___s": true }, { @@ -765549,7 +768902,7 @@ ], "inherits": "Phaser.GameObjects.Group#get", "inherited": true, - "___id": "T000002R054204", + "___id": "T000002R054208", "___s": true }, { @@ -765684,7 +769037,7 @@ ], "inherits": "Phaser.GameObjects.Group#getFirstAlive", "inherited": true, - "___id": "T000002R054205", + "___id": "T000002R054209", "___s": true }, { @@ -765819,7 +769172,7 @@ ], "inherits": "Phaser.GameObjects.Group#getFirstDead", "inherited": true, - "___id": "T000002R054206", + "___id": "T000002R054210", "___s": true }, { @@ -765885,7 +769238,7 @@ ], "inherits": "Phaser.GameObjects.Group#playAnimation", "inherited": true, - "___id": "T000002R054207", + "___id": "T000002R054211", "___s": true }, { @@ -765920,7 +769273,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#isFull", "inherited": true, - "___id": "T000002R054208", + "___id": "T000002R054212", "___s": true }, { @@ -765972,7 +769325,7 @@ ], "inherits": "Phaser.GameObjects.Group#countActive", "inherited": true, - "___id": "T000002R054209", + "___id": "T000002R054213", "___s": true }, { @@ -766007,7 +769360,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#getTotalUsed", "inherited": true, - "___id": "T000002R054210", + "___id": "T000002R054214", "___s": true }, { @@ -766042,7 +769395,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#getTotalFree", "inherited": true, - "___id": "T000002R054211", + "___id": "T000002R054215", "___s": true }, { @@ -766093,7 +769446,7 @@ ], "inherits": "Phaser.GameObjects.Group#setActive", "inherited": true, - "___id": "T000002R054212", + "___id": "T000002R054216", "___s": true }, { @@ -766144,7 +769497,7 @@ ], "inherits": "Phaser.GameObjects.Group#setName", "inherited": true, - "___id": "T000002R054213", + "___id": "T000002R054217", "___s": true }, { @@ -766253,7 +769606,7 @@ ], "inherits": "Phaser.GameObjects.Group#propertyValueSet", "inherited": true, - "___id": "T000002R054214", + "___id": "T000002R054218", "___s": true }, { @@ -766362,7 +769715,7 @@ ], "inherits": "Phaser.GameObjects.Group#propertyValueInc", "inherited": true, - "___id": "T000002R054215", + "___id": "T000002R054219", "___s": true }, { @@ -766428,7 +769781,7 @@ ], "inherits": "Phaser.GameObjects.Group#setX", "inherited": true, - "___id": "T000002R054216", + "___id": "T000002R054220", "___s": true }, { @@ -766494,7 +769847,7 @@ ], "inherits": "Phaser.GameObjects.Group#setY", "inherited": true, - "___id": "T000002R054217", + "___id": "T000002R054221", "___s": true }, { @@ -766590,7 +769943,7 @@ ], "inherits": "Phaser.GameObjects.Group#setXY", "inherited": true, - "___id": "T000002R054218", + "___id": "T000002R054222", "___s": true }, { @@ -766656,7 +770009,7 @@ ], "inherits": "Phaser.GameObjects.Group#incX", "inherited": true, - "___id": "T000002R054219", + "___id": "T000002R054223", "___s": true }, { @@ -766722,7 +770075,7 @@ ], "inherits": "Phaser.GameObjects.Group#incY", "inherited": true, - "___id": "T000002R054220", + "___id": "T000002R054224", "___s": true }, { @@ -766818,7 +770171,7 @@ ], "inherits": "Phaser.GameObjects.Group#incXY", "inherited": true, - "___id": "T000002R054221", + "___id": "T000002R054225", "___s": true }, { @@ -766897,7 +770250,7 @@ ], "inherits": "Phaser.GameObjects.Group#shiftPosition", "inherited": true, - "___id": "T000002R054222", + "___id": "T000002R054226", "___s": true }, { @@ -766963,7 +770316,7 @@ ], "inherits": "Phaser.GameObjects.Group#angle", "inherited": true, - "___id": "T000002R054223", + "___id": "T000002R054227", "___s": true }, { @@ -767029,7 +770382,7 @@ ], "inherits": "Phaser.GameObjects.Group#rotate", "inherited": true, - "___id": "T000002R054224", + "___id": "T000002R054228", "___s": true }, { @@ -767093,7 +770446,7 @@ ], "inherits": "Phaser.GameObjects.Group#rotateAround", "inherited": true, - "___id": "T000002R054225", + "___id": "T000002R054229", "___s": true }, { @@ -767170,7 +770523,7 @@ ], "inherits": "Phaser.GameObjects.Group#rotateAroundDistance", "inherited": true, - "___id": "T000002R054226", + "___id": "T000002R054230", "___s": true }, { @@ -767236,7 +770589,7 @@ ], "inherits": "Phaser.GameObjects.Group#setAlpha", "inherited": true, - "___id": "T000002R054227", + "___id": "T000002R054231", "___s": true }, { @@ -767329,7 +770682,7 @@ ], "inherits": "Phaser.GameObjects.Group#setTint", "inherited": true, - "___id": "T000002R054228", + "___id": "T000002R054232", "___s": true }, { @@ -767424,7 +770777,7 @@ ], "inherits": "Phaser.GameObjects.Group#setOrigin", "inherited": true, - "___id": "T000002R054229", + "___id": "T000002R054233", "___s": true }, { @@ -767490,7 +770843,7 @@ ], "inherits": "Phaser.GameObjects.Group#scaleX", "inherited": true, - "___id": "T000002R054230", + "___id": "T000002R054234", "___s": true }, { @@ -767556,7 +770909,7 @@ ], "inherits": "Phaser.GameObjects.Group#scaleY", "inherited": true, - "___id": "T000002R054231", + "___id": "T000002R054235", "___s": true }, { @@ -767651,7 +771004,7 @@ ], "inherits": "Phaser.GameObjects.Group#scaleXY", "inherited": true, - "___id": "T000002R054232", + "___id": "T000002R054236", "___s": true }, { @@ -767717,7 +771070,7 @@ ], "inherits": "Phaser.GameObjects.Group#setDepth", "inherited": true, - "___id": "T000002R054233", + "___id": "T000002R054237", "___s": true }, { @@ -767768,7 +771121,7 @@ ], "inherits": "Phaser.GameObjects.Group#setBlendMode", "inherited": true, - "___id": "T000002R054234", + "___id": "T000002R054238", "___s": true }, { @@ -767831,7 +771184,7 @@ ], "inherits": "Phaser.GameObjects.Group#setHitArea", "inherited": true, - "___id": "T000002R054235", + "___id": "T000002R054239", "___s": true }, { @@ -767867,7 +771220,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#shuffle", "inherited": true, - "___id": "T000002R054236", + "___id": "T000002R054240", "___s": true }, { @@ -767903,7 +771256,7 @@ ], "inherits": "Phaser.GameObjects.Group#kill", "inherited": true, - "___id": "T000002R054237", + "___id": "T000002R054241", "___s": true }, { @@ -767939,7 +771292,7 @@ ], "inherits": "Phaser.GameObjects.Group#killAndHide", "inherited": true, - "___id": "T000002R054238", + "___id": "T000002R054242", "___s": true }, { @@ -768020,7 +771373,7 @@ ], "inherits": "Phaser.GameObjects.Group#setVisible", "inherited": true, - "___id": "T000002R054239", + "___id": "T000002R054243", "___s": true }, { @@ -768056,7 +771409,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Group#toggleVisible", "inherited": true, - "___id": "T000002R054240", + "___id": "T000002R054244", "___s": true }, { @@ -768109,7 +771462,7 @@ ], "inherits": "Phaser.GameObjects.Group#destroy", "inherited": true, - "___id": "T000002R054241", + "___id": "T000002R054245", "___s": true }, { @@ -768130,7 +771483,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R054242", + "___id": "T000002R054246", "___s": true }, { @@ -768182,7 +771535,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R054243", + "___id": "T000002R054247", "___s": true }, { @@ -768251,7 +771604,7 @@ "name": "event" } ], - "___id": "T000002R054244", + "___id": "T000002R054248", "___s": true }, { @@ -768311,7 +771664,7 @@ "name": "event" } ], - "___id": "T000002R054245", + "___id": "T000002R054249", "___s": true }, { @@ -768386,7 +771739,7 @@ "name": "args" } ], - "___id": "T000002R054246", + "___id": "T000002R054250", "___s": true }, { @@ -768474,7 +771827,7 @@ "name": "context" } ], - "___id": "T000002R054247", + "___id": "T000002R054251", "___s": true }, { @@ -768562,7 +771915,7 @@ "name": "context" } ], - "___id": "T000002R054248", + "___id": "T000002R054252", "___s": true }, { @@ -768650,7 +772003,7 @@ "name": "context" } ], - "___id": "T000002R054249", + "___id": "T000002R054253", "___s": true }, { @@ -768752,7 +772105,7 @@ "name": "once" } ], - "___id": "T000002R054250", + "___id": "T000002R054254", "___s": true }, { @@ -768854,7 +772207,7 @@ "name": "once" } ], - "___id": "T000002R054251", + "___id": "T000002R054255", "___s": true }, { @@ -768916,7 +772269,7 @@ "name": "event" } ], - "___id": "T000002R054252", + "___id": "T000002R054256", "___s": true }, { @@ -768967,7 +772320,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollisionCategory", "inherited": true, - "___id": "T000002R054253", + "___id": "T000002R054257", "___s": true }, { @@ -769017,7 +772370,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#willCollideWith", "inherited": true, - "___id": "T000002R054254", + "___id": "T000002R054258", "___s": true }, { @@ -769068,7 +772421,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#addCollidesWith", "inherited": true, - "___id": "T000002R054255", + "___id": "T000002R054259", "___s": true }, { @@ -769119,7 +772472,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#removeCollidesWith", "inherited": true, - "___id": "T000002R054256", + "___id": "T000002R054260", "___s": true }, { @@ -769189,7 +772542,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollidesWith", "inherited": true, - "___id": "T000002R054257", + "___id": "T000002R054261", "___s": true }, { @@ -769225,7 +772578,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Collision#resetCollisionCategory", "inherited": true, - "___id": "T000002R054258", + "___id": "T000002R054262", "___s": true }, { @@ -769277,7 +772630,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R054259", + "___id": "T000002R054263", "___s": true }, { @@ -769346,7 +772699,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R054260", + "___id": "T000002R054264", "___s": true }, { @@ -769406,7 +772759,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R054261", + "___id": "T000002R054265", "___s": true }, { @@ -769481,7 +772834,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R054262", + "___id": "T000002R054266", "___s": true }, { @@ -769569,7 +772922,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R054263", + "___id": "T000002R054267", "___s": true }, { @@ -769657,7 +773010,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R054264", + "___id": "T000002R054268", "___s": true }, { @@ -769745,7 +773098,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R054265", + "___id": "T000002R054269", "___s": true }, { @@ -769847,7 +773200,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R054266", + "___id": "T000002R054270", "___s": true }, { @@ -769949,7 +773302,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R054267", + "___id": "T000002R054271", "___s": true }, { @@ -770011,7 +773364,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R054268", + "___id": "T000002R054272", "___s": true }, { @@ -770041,7 +773394,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R054271", + "___id": "T000002R054275", "___s": true }, { @@ -770082,7 +773435,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R054272", + "___id": "T000002R054276", "___s": true }, { @@ -770112,7 +773465,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R054273", + "___id": "T000002R054277", "___s": true }, { @@ -770152,7 +773505,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R054274", + "___id": "T000002R054278", "___s": true }, { @@ -770182,7 +773535,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R054275", + "___id": "T000002R054279", "___s": true }, { @@ -770213,7 +773566,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R054276", + "___id": "T000002R054280", "___s": true }, { @@ -770244,7 +773597,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R054277", + "___id": "T000002R054281", "___s": true }, { @@ -770275,7 +773628,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R054278", + "___id": "T000002R054282", "___s": true }, { @@ -770306,7 +773659,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R054279", + "___id": "T000002R054283", "___s": true }, { @@ -770337,7 +773690,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R054280", + "___id": "T000002R054284", "___s": true }, { @@ -770371,7 +773724,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R054281", + "___id": "T000002R054285", "___s": true }, { @@ -770404,7 +773757,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R054282", + "___id": "T000002R054286", "___s": true }, { @@ -770452,7 +773805,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R054283", + "___id": "T000002R054287", "___s": true }, { @@ -770483,7 +773836,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R054284", + "___id": "T000002R054288", "___s": true }, { @@ -770534,7 +773887,7 @@ "name": "value" } ], - "___id": "T000002R054285", + "___id": "T000002R054289", "___s": true }, { @@ -770585,7 +773938,7 @@ "name": "value" } ], - "___id": "T000002R054286", + "___id": "T000002R054290", "___s": true }, { @@ -770646,7 +773999,7 @@ "name": "value" } ], - "___id": "T000002R054287", + "___id": "T000002R054291", "___s": true }, { @@ -770685,7 +774038,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R054288", + "___id": "T000002R054292", "___s": true }, { @@ -770773,7 +774126,7 @@ "name": "data" } ], - "___id": "T000002R054289", + "___id": "T000002R054293", "___s": true }, { @@ -770839,7 +774192,7 @@ "name": "amount" } ], - "___id": "T000002R054290", + "___id": "T000002R054294", "___s": true }, { @@ -770890,7 +774243,7 @@ "name": "key" } ], - "___id": "T000002R054291", + "___id": "T000002R054295", "___s": true }, { @@ -770958,7 +774311,7 @@ "name": "key" } ], - "___id": "T000002R054292", + "___id": "T000002R054296", "___s": true }, { @@ -771054,11 +774407,11 @@ "name": "dropZone" } ], - "___id": "T000002R054293", + "___id": "T000002R054297", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -771090,14 +774443,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R054294", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R054298", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -771126,14 +774496,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R054295", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R054299", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -771147,14 +774534,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R054296", + "___id": "T000002R054300", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -771168,14 +774555,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R054297", + "___id": "T000002R054301", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -771206,14 +774593,14 @@ "name": "args" } ], - "___id": "T000002R054298", + "___id": "T000002R054302", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -771241,14 +774628,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R054299", + "___id": "T000002R054303", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -771291,14 +774678,14 @@ "name": "camera" } ], - "___id": "T000002R054300", + "___id": "T000002R054304", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -771335,14 +774722,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R054301", + "___id": "T000002R054305", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -771401,14 +774788,14 @@ "name": "displayList" } ], - "___id": "T000002R054302", + "___id": "T000002R054306", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -771437,14 +774824,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R054303", + "___id": "T000002R054307", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -771477,14 +774864,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R054304", + "___id": "T000002R054308", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -771513,14 +774900,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R054305", + "___id": "T000002R054309", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -771554,7 +774941,7 @@ "name": "fromScene" } ], - "___id": "T000002R054306", + "___id": "T000002R054310", "___s": true }, { @@ -771575,7 +774962,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R054307", + "___id": "T000002R054311", "___s": true }, { @@ -771627,7 +775014,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R054308", + "___id": "T000002R054312", "___s": true }, { @@ -771696,7 +775083,7 @@ "name": "event" } ], - "___id": "T000002R054309", + "___id": "T000002R054313", "___s": true }, { @@ -771756,7 +775143,7 @@ "name": "event" } ], - "___id": "T000002R054310", + "___id": "T000002R054314", "___s": true }, { @@ -771831,7 +775218,7 @@ "name": "args" } ], - "___id": "T000002R054311", + "___id": "T000002R054315", "___s": true }, { @@ -771919,7 +775306,7 @@ "name": "context" } ], - "___id": "T000002R054312", + "___id": "T000002R054316", "___s": true }, { @@ -772007,7 +775394,7 @@ "name": "context" } ], - "___id": "T000002R054313", + "___id": "T000002R054317", "___s": true }, { @@ -772095,7 +775482,7 @@ "name": "context" } ], - "___id": "T000002R054314", + "___id": "T000002R054318", "___s": true }, { @@ -772197,7 +775584,7 @@ "name": "once" } ], - "___id": "T000002R054315", + "___id": "T000002R054319", "___s": true }, { @@ -772299,7 +775686,7 @@ "name": "once" } ], - "___id": "T000002R054316", + "___id": "T000002R054320", "___s": true }, { @@ -772361,7 +775748,7 @@ "name": "event" } ], - "___id": "T000002R054317", + "___id": "T000002R054321", "___s": true }, { @@ -772398,7 +775785,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#clearAlpha", - "___id": "T000002R054323", + "___id": "T000002R054327", "___s": true }, { @@ -772494,7 +775881,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Alpha#setAlpha", - "___id": "T000002R054324", + "___id": "T000002R054328", "___s": true }, { @@ -772525,7 +775912,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alpha", - "___id": "T000002R054325", + "___id": "T000002R054329", "___s": true }, { @@ -772563,7 +775950,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", - "___id": "T000002R054326", + "___id": "T000002R054330", "___s": true }, { @@ -772601,7 +775988,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaTopRight", - "___id": "T000002R054327", + "___id": "T000002R054331", "___s": true }, { @@ -772639,7 +776026,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", - "___id": "T000002R054328", + "___id": "T000002R054332", "___s": true }, { @@ -772677,7 +776064,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", - "___id": "T000002R054329", + "___id": "T000002R054333", "___s": true }, { @@ -772723,7 +776110,7 @@ "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, "overrides": "Phaser.GameObjects.Components.BlendMode#blendMode", - "___id": "T000002R054331", + "___id": "T000002R054335", "___s": true }, { @@ -772790,7 +776177,7 @@ } ], "overrides": "Phaser.GameObjects.Components.BlendMode#setBlendMode", - "___id": "T000002R054332", + "___id": "T000002R054336", "___s": true }, { @@ -772821,7 +776208,7 @@ "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, "overrides": "Phaser.GameObjects.Components.Depth#depth", - "___id": "T000002R054334", + "___id": "T000002R054338", "___s": true }, { @@ -772873,7 +776260,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Depth#setDepth", - "___id": "T000002R054335", + "___id": "T000002R054339", "___s": true }, { @@ -772910,7 +776297,7 @@ "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, "overrides": "Phaser.GameObjects.Components.Depth#bringMeToTop", - "___id": "T000002R054336", + "___id": "T000002R054340", "___s": true }, { @@ -772947,7 +776334,7 @@ "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, "overrides": "Phaser.GameObjects.Components.Depth#sendMeToBack", - "___id": "T000002R054337", + "___id": "T000002R054341", "___s": true }, { @@ -772999,7 +776386,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", - "___id": "T000002R054338", + "___id": "T000002R054342", "___s": true }, { @@ -773051,7 +776438,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", - "___id": "T000002R054339", + "___id": "T000002R054343", "___s": true }, { @@ -773083,7 +776470,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#flipX", - "___id": "T000002R054340", + "___id": "T000002R054344", "___s": true }, { @@ -773115,7 +776502,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#flipY", - "___id": "T000002R054341", + "___id": "T000002R054345", "___s": true }, { @@ -773152,7 +776539,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#toggleFlipX", - "___id": "T000002R054342", + "___id": "T000002R054346", "___s": true }, { @@ -773189,7 +776576,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#toggleFlipY", - "___id": "T000002R054343", + "___id": "T000002R054347", "___s": true }, { @@ -773241,7 +776628,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Flip#setFlipX", - "___id": "T000002R054344", + "___id": "T000002R054348", "___s": true }, { @@ -773293,7 +776680,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Flip#setFlipY", - "___id": "T000002R054345", + "___id": "T000002R054349", "___s": true }, { @@ -773358,7 +776745,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Flip#setFlip", - "___id": "T000002R054346", + "___id": "T000002R054350", "___s": true }, { @@ -773395,7 +776782,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#resetFlip", - "___id": "T000002R054347", + "___id": "T000002R054351", "___s": true }, { @@ -773470,7 +776857,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getCenter", - "___id": "T000002R054349", + "___id": "T000002R054353", "___s": true }, { @@ -773545,7 +776932,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getTopLeft", - "___id": "T000002R054350", + "___id": "T000002R054354", "___s": true }, { @@ -773620,7 +777007,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getTopCenter", - "___id": "T000002R054351", + "___id": "T000002R054355", "___s": true }, { @@ -773695,7 +777082,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getTopRight", - "___id": "T000002R054352", + "___id": "T000002R054356", "___s": true }, { @@ -773770,7 +777157,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", - "___id": "T000002R054353", + "___id": "T000002R054357", "___s": true }, { @@ -773845,7 +777232,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getRightCenter", - "___id": "T000002R054354", + "___id": "T000002R054358", "___s": true }, { @@ -773920,7 +777307,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", - "___id": "T000002R054355", + "___id": "T000002R054359", "___s": true }, { @@ -773995,7 +777382,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", - "___id": "T000002R054356", + "___id": "T000002R054360", "___s": true }, { @@ -774070,7 +777457,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBottomRight", - "___id": "T000002R054357", + "___id": "T000002R054361", "___s": true }, { @@ -774150,7 +777537,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBounds", - "___id": "T000002R054358", + "___id": "T000002R054362", "___s": true }, { @@ -774191,7 +777578,7 @@ "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, "overrides": "Phaser.GameObjects.Components.Mask#mask", - "___id": "T000002R054359", + "___id": "T000002R054363", "___s": true }, { @@ -774253,7 +777640,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#setMask", - "___id": "T000002R054360", + "___id": "T000002R054364", "___s": true }, { @@ -774307,7 +777694,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#clearMask", - "___id": "T000002R054361", + "___id": "T000002R054365", "___s": true }, { @@ -774470,7 +777857,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#createBitmapMask", - "___id": "T000002R054362", + "___id": "T000002R054366", "___s": true }, { @@ -774552,7 +777939,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#createGeometryMask", - "___id": "T000002R054363", + "___id": "T000002R054367", "___s": true }, { @@ -774585,7 +777972,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#originX", - "___id": "T000002R054365", + "___id": "T000002R054369", "___s": true }, { @@ -774618,7 +778005,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#originY", - "___id": "T000002R054366", + "___id": "T000002R054370", "___s": true }, { @@ -774649,7 +778036,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#displayOriginX", - "___id": "T000002R054367", + "___id": "T000002R054371", "___s": true }, { @@ -774680,7 +778067,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#displayOriginY", - "___id": "T000002R054368", + "___id": "T000002R054372", "___s": true }, { @@ -774749,7 +778136,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Origin#setOrigin", - "___id": "T000002R054369", + "___id": "T000002R054373", "___s": true }, { @@ -774786,7 +778173,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", - "___id": "T000002R054370", + "___id": "T000002R054374", "___s": true }, { @@ -774855,7 +778242,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", - "___id": "T000002R054371", + "___id": "T000002R054375", "___s": true }, { @@ -774892,7 +778279,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", - "___id": "T000002R054372", + "___id": "T000002R054376", "___s": true }, { @@ -774931,7 +778318,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", - "___id": "T000002R054373", + "___id": "T000002R054377", "___s": true }, { @@ -774970,7 +778357,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#pipeline", - "___id": "T000002R054374", + "___id": "T000002R054378", "___s": true }, { @@ -775008,7 +778395,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#pipelineData", - "___id": "T000002R054375", + "___id": "T000002R054379", "___s": true }, { @@ -775077,7 +778464,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#initPipeline", - "___id": "T000002R054376", + "___id": "T000002R054380", "___s": true }, { @@ -775175,7 +778562,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#setPipeline", - "___id": "T000002R054377", + "___id": "T000002R054381", "___s": true }, { @@ -775248,7 +778635,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#setPipelineData", - "___id": "T000002R054378", + "___id": "T000002R054382", "___s": true }, { @@ -775308,7 +778695,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#resetPipeline", - "___id": "T000002R054379", + "___id": "T000002R054383", "___s": true }, { @@ -775353,7 +778740,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#getPipelineName", - "___id": "T000002R054380", + "___id": "T000002R054384", "___s": true }, { @@ -775391,7 +778778,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", - "___id": "T000002R054381", + "___id": "T000002R054385", "___s": true }, { @@ -775438,7 +778825,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#postPipelines", - "___id": "T000002R054382", + "___id": "T000002R054386", "___s": true }, { @@ -775476,7 +778863,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", - "___id": "T000002R054383", + "___id": "T000002R054387", "___s": true }, { @@ -775516,7 +778903,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#preFX", - "___id": "T000002R054384", + "___id": "T000002R054388", "___s": true }, { @@ -775554,7 +778941,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#postFX", - "___id": "T000002R054385", + "___id": "T000002R054389", "___s": true }, { @@ -775600,7 +778987,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", - "___id": "T000002R054386", + "___id": "T000002R054390", "___s": true }, { @@ -775745,7 +779132,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", - "___id": "T000002R054387", + "___id": "T000002R054391", "___s": true }, { @@ -775818,7 +779205,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", - "___id": "T000002R054388", + "___id": "T000002R054392", "___s": true }, { @@ -775910,7 +779297,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", - "___id": "T000002R054389", + "___id": "T000002R054393", "___s": true }, { @@ -775956,7 +779343,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", - "___id": "T000002R054390", + "___id": "T000002R054394", "___s": true }, { @@ -776025,7 +779412,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", - "___id": "T000002R054391", + "___id": "T000002R054395", "___s": true }, { @@ -776069,7 +779456,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#clearFX", - "___id": "T000002R054392", + "___id": "T000002R054396", "___s": true }, { @@ -776101,7 +779488,7 @@ "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, "overrides": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", - "___id": "T000002R054393", + "___id": "T000002R054397", "___s": true }, { @@ -776133,7 +779520,7 @@ "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, "overrides": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", - "___id": "T000002R054394", + "___id": "T000002R054398", "___s": true }, { @@ -776200,7 +779587,7 @@ } ], "overrides": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", - "___id": "T000002R054395", + "___id": "T000002R054399", "___s": true }, { @@ -776231,7 +779618,7 @@ "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#width", - "___id": "T000002R054397", + "___id": "T000002R054401", "___s": true }, { @@ -776262,7 +779649,7 @@ "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#height", - "___id": "T000002R054398", + "___id": "T000002R054402", "___s": true }, { @@ -776293,7 +779680,7 @@ "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#displayWidth", - "___id": "T000002R054399", + "___id": "T000002R054403", "___s": true }, { @@ -776324,7 +779711,7 @@ "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#displayHeight", - "___id": "T000002R054400", + "___id": "T000002R054404", "___s": true }, { @@ -776387,7 +779774,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Size#setSizeToFrame", - "___id": "T000002R054401", + "___id": "T000002R054405", "___s": true }, { @@ -776452,7 +779839,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Size#setSize", - "___id": "T000002R054402", + "___id": "T000002R054406", "___s": true }, { @@ -776517,7 +779904,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Size#setDisplaySize", - "___id": "T000002R054403", + "___id": "T000002R054407", "___s": true }, { @@ -776558,7 +779945,7 @@ "inherits": "Phaser.GameObjects.Components.TextureCrop#texture", "inherited": true, "overrides": "Phaser.GameObjects.Components.Texture#texture", - "___id": "T000002R054404", + "___id": "T000002R054408", "___s": true }, { @@ -776589,7 +779976,7 @@ "inherits": "Phaser.GameObjects.Components.TextureCrop#frame", "inherited": true, "overrides": "Phaser.GameObjects.Components.Texture#frame", - "___id": "T000002R054405", + "___id": "T000002R054409", "___s": true }, { @@ -776620,7 +780007,7 @@ "inherits": "Phaser.GameObjects.Components.TextureCrop#isCropped", "inherited": true, "overrides": "Phaser.GameObjects.Components.Texture#isCropped", - "___id": "T000002R054406", + "___id": "T000002R054410", "___s": true }, { @@ -776724,7 +780111,7 @@ "name": "height" } ], - "___id": "T000002R054407", + "___id": "T000002R054411", "___s": true }, { @@ -776800,7 +780187,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Texture#setTexture", - "___id": "T000002R054408", + "___id": "T000002R054412", "___s": true }, { @@ -776897,7 +780284,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Texture#setFrame", - "___id": "T000002R054409", + "___id": "T000002R054413", "___s": true }, { @@ -776929,7 +780316,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintTopLeft", - "___id": "T000002R054411", + "___id": "T000002R054415", "___s": true }, { @@ -776961,7 +780348,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintTopRight", - "___id": "T000002R054412", + "___id": "T000002R054416", "___s": true }, { @@ -776993,7 +780380,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintBottomLeft", - "___id": "T000002R054413", + "___id": "T000002R054417", "___s": true }, { @@ -777025,7 +780412,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintBottomRight", - "___id": "T000002R054414", + "___id": "T000002R054418", "___s": true }, { @@ -777057,7 +780444,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintFill", - "___id": "T000002R054415", + "___id": "T000002R054419", "___s": true }, { @@ -777101,7 +780488,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#clearTint", - "___id": "T000002R054416", + "___id": "T000002R054420", "___s": true }, { @@ -777204,7 +780591,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Tint#setTint", - "___id": "T000002R054417", + "___id": "T000002R054421", "___s": true }, { @@ -777307,7 +780694,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Tint#setTintFill", - "___id": "T000002R054418", + "___id": "T000002R054422", "___s": true }, { @@ -777345,7 +780732,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tint", - "___id": "T000002R054419", + "___id": "T000002R054423", "___s": true }, { @@ -777384,7 +780771,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#isTinted", - "___id": "T000002R054420", + "___id": "T000002R054424", "___s": true }, { @@ -777417,7 +780804,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#hasTransformComponent", - "___id": "T000002R054421", + "___id": "T000002R054425", "___s": true }, { @@ -777449,7 +780836,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#x", - "___id": "T000002R054425", + "___id": "T000002R054429", "___s": true }, { @@ -777481,7 +780868,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#y", - "___id": "T000002R054426", + "___id": "T000002R054430", "___s": true }, { @@ -777513,7 +780900,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#z", - "___id": "T000002R054427", + "___id": "T000002R054431", "___s": true }, { @@ -777545,7 +780932,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#w", - "___id": "T000002R054428", + "___id": "T000002R054432", "___s": true }, { @@ -777577,7 +780964,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#scale", - "___id": "T000002R054429", + "___id": "T000002R054433", "___s": true }, { @@ -777609,7 +780996,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#scaleX", - "___id": "T000002R054430", + "___id": "T000002R054434", "___s": true }, { @@ -777641,7 +781028,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#scaleY", - "___id": "T000002R054431", + "___id": "T000002R054435", "___s": true }, { @@ -777673,7 +781060,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#angle", - "___id": "T000002R054432", + "___id": "T000002R054436", "___s": true }, { @@ -777705,7 +781092,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#rotation", - "___id": "T000002R054433", + "___id": "T000002R054437", "___s": true }, { @@ -777804,7 +781191,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setPosition", - "___id": "T000002R054434", + "___id": "T000002R054438", "___s": true }, { @@ -777871,7 +781258,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#copyPosition", - "___id": "T000002R054435", + "___id": "T000002R054439", "___s": true }, { @@ -777968,7 +781355,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setRandomPosition", - "___id": "T000002R054436", + "___id": "T000002R054440", "___s": true }, { @@ -778022,7 +781409,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setRotation", - "___id": "T000002R054437", + "___id": "T000002R054441", "___s": true }, { @@ -778076,7 +781463,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setAngle", - "___id": "T000002R054438", + "___id": "T000002R054442", "___s": true }, { @@ -778145,7 +781532,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setScale", - "___id": "T000002R054439", + "___id": "T000002R054443", "___s": true }, { @@ -778199,7 +781586,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setX", - "___id": "T000002R054440", + "___id": "T000002R054444", "___s": true }, { @@ -778253,7 +781640,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setY", - "___id": "T000002R054441", + "___id": "T000002R054445", "___s": true }, { @@ -778307,7 +781694,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setZ", - "___id": "T000002R054442", + "___id": "T000002R054446", "___s": true }, { @@ -778361,7 +781748,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setW", - "___id": "T000002R054443", + "___id": "T000002R054447", "___s": true }, { @@ -778413,7 +781800,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", - "___id": "T000002R054444", + "___id": "T000002R054448", "___s": true }, { @@ -778479,7 +781866,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", - "___id": "T000002R054445", + "___id": "T000002R054449", "___s": true }, { @@ -778571,7 +781958,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#getLocalPoint", - "___id": "T000002R054446", + "___id": "T000002R054450", "___s": true }, { @@ -778607,7 +781994,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#getParentRotation", - "___id": "T000002R054447", + "___id": "T000002R054451", "___s": true }, { @@ -778638,7 +782025,7 @@ "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, "overrides": "Phaser.GameObjects.Components.Visible#visible", - "___id": "T000002R054449", + "___id": "T000002R054453", "___s": true }, { @@ -778690,7 +782077,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Visible#setVisible", - "___id": "T000002R054450", + "___id": "T000002R054454", "___s": true }, { @@ -778741,7 +782128,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Bounce#setBounce", "inherited": true, - "___id": "T000002R054451", + "___id": "T000002R054455", "___s": true }, { @@ -778792,7 +782179,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setCollisionCategory", "inherited": true, - "___id": "T000002R054452", + "___id": "T000002R054456", "___s": true }, { @@ -778843,7 +782230,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setCollisionGroup", "inherited": true, - "___id": "T000002R054453", + "___id": "T000002R054457", "___s": true }, { @@ -778913,7 +782300,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setCollidesWith", "inherited": true, - "___id": "T000002R054454", + "___id": "T000002R054458", "___s": true }, { @@ -778964,7 +782351,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setOnCollide", "inherited": true, - "___id": "T000002R054455", + "___id": "T000002R054459", "___s": true }, { @@ -779015,7 +782402,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setOnCollideEnd", "inherited": true, - "___id": "T000002R054456", + "___id": "T000002R054460", "___s": true }, { @@ -779066,7 +782453,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setOnCollideActive", "inherited": true, - "___id": "T000002R054457", + "___id": "T000002R054461", "___s": true }, { @@ -779149,7 +782536,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setOnCollideWith", "inherited": true, - "___id": "T000002R054458", + "___id": "T000002R054462", "___s": true }, { @@ -779200,7 +782587,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Force#applyForce", "inherited": true, - "___id": "T000002R054459", + "___id": "T000002R054463", "___s": true }, { @@ -779264,7 +782651,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Force#applyForceFrom", "inherited": true, - "___id": "T000002R054460", + "___id": "T000002R054464", "___s": true }, { @@ -779315,7 +782702,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Force#thrust", "inherited": true, - "___id": "T000002R054461", + "___id": "T000002R054465", "___s": true }, { @@ -779366,7 +782753,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Force#thrustLeft", "inherited": true, - "___id": "T000002R054462", + "___id": "T000002R054466", "___s": true }, { @@ -779417,7 +782804,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Force#thrustRight", "inherited": true, - "___id": "T000002R054463", + "___id": "T000002R054467", "___s": true }, { @@ -779468,7 +782855,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Force#thrustBack", "inherited": true, - "___id": "T000002R054464", + "___id": "T000002R054468", "___s": true }, { @@ -779547,7 +782934,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Friction#setFriction", "inherited": true, - "___id": "T000002R054465", + "___id": "T000002R054469", "___s": true }, { @@ -779598,7 +782985,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Friction#setFrictionAir", "inherited": true, - "___id": "T000002R054466", + "___id": "T000002R054470", "___s": true }, { @@ -779649,7 +783036,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Friction#setFrictionStatic", "inherited": true, - "___id": "T000002R054467", + "___id": "T000002R054471", "___s": true }, { @@ -779700,7 +783087,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Gravity#setIgnoreGravity", "inherited": true, - "___id": "T000002R054468", + "___id": "T000002R054472", "___s": true }, { @@ -779751,7 +783138,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Mass#setMass", "inherited": true, - "___id": "T000002R054469", + "___id": "T000002R054473", "___s": true }, { @@ -779802,7 +783189,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Mass#setDensity", "inherited": true, - "___id": "T000002R054470", + "___id": "T000002R054474", "___s": true }, { @@ -779847,7 +783234,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Mass#centerOfMass", "inherited": true, - "___id": "T000002R054471", + "___id": "T000002R054475", "___s": true }, { @@ -779898,7 +783285,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sensor#setSensor", "inherited": true, - "___id": "T000002R054472", + "___id": "T000002R054476", "___s": true }, { @@ -779933,7 +783320,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Sensor#isSensor", "inherited": true, - "___id": "T000002R054473", + "___id": "T000002R054477", "___s": true }, { @@ -780011,7 +783398,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.SetBody#setRectangle", "inherited": true, - "___id": "T000002R054474", + "___id": "T000002R054478", "___s": true }, { @@ -780076,7 +783463,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.SetBody#setCircle", "inherited": true, - "___id": "T000002R054475", + "___id": "T000002R054479", "___s": true }, { @@ -780154,7 +783541,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.SetBody#setPolygon", "inherited": true, - "___id": "T000002R054476", + "___id": "T000002R054480", "___s": true }, { @@ -780245,7 +783632,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.SetBody#setTrapezoid", "inherited": true, - "___id": "T000002R054477", + "___id": "T000002R054481", "___s": true }, { @@ -780311,7 +783698,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.SetBody#setExistingBody", "inherited": true, - "___id": "T000002R054478", + "___id": "T000002R054482", "___s": true }, { @@ -780386,7 +783773,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.SetBody#setBody", "inherited": true, - "___id": "T000002R054479", + "___id": "T000002R054483", "___s": true }, { @@ -780422,7 +783809,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Sleep#setToSleep", "inherited": true, - "___id": "T000002R054480", + "___id": "T000002R054484", "___s": true }, { @@ -780458,7 +783845,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Sleep#setAwake", "inherited": true, - "___id": "T000002R054481", + "___id": "T000002R054485", "___s": true }, { @@ -780511,7 +783898,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sleep#setSleepThreshold", "inherited": true, - "___id": "T000002R054482", + "___id": "T000002R054486", "___s": true }, { @@ -780575,7 +783962,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sleep#setSleepEvents", "inherited": true, - "___id": "T000002R054483", + "___id": "T000002R054487", "___s": true }, { @@ -780626,7 +784013,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sleep#setSleepStartEvent", "inherited": true, - "___id": "T000002R054484", + "___id": "T000002R054488", "___s": true }, { @@ -780677,7 +784064,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sleep#setSleepEndEvent", "inherited": true, - "___id": "T000002R054485", + "___id": "T000002R054489", "___s": true }, { @@ -780728,7 +784115,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Static#setStatic", "inherited": true, - "___id": "T000002R054486", + "___id": "T000002R054490", "___s": true }, { @@ -780763,7 +784150,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Static#isStatic", "inherited": true, - "___id": "T000002R054487", + "___id": "T000002R054491", "___s": true }, { @@ -780799,7 +784186,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Transform#setFixedRotation", "inherited": true, - "___id": "T000002R054488", + "___id": "T000002R054492", "___s": true }, { @@ -780850,7 +784237,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Velocity#setVelocityX", "inherited": true, - "___id": "T000002R054489", + "___id": "T000002R054493", "___s": true }, { @@ -780901,7 +784288,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Velocity#setVelocityY", "inherited": true, - "___id": "T000002R054490", + "___id": "T000002R054494", "___s": true }, { @@ -780967,7 +784354,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Velocity#setVelocity", "inherited": true, - "___id": "T000002R054491", + "___id": "T000002R054495", "___s": true }, { @@ -781002,7 +784389,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Velocity#getVelocity", "inherited": true, - "___id": "T000002R054492", + "___id": "T000002R054496", "___s": true }, { @@ -781053,7 +784440,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Velocity#setAngularVelocity", "inherited": true, - "___id": "T000002R054493", + "___id": "T000002R054497", "___s": true }, { @@ -781088,7 +784475,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Velocity#getAngularVelocity", "inherited": true, - "___id": "T000002R054494", + "___id": "T000002R054498", "___s": true }, { @@ -781139,7 +784526,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Velocity#setAngularSpeed", "inherited": true, - "___id": "T000002R054495", + "___id": "T000002R054499", "___s": true }, { @@ -781174,7 +784561,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Velocity#getAngularSpeed", "inherited": true, - "___id": "T000002R054496", + "___id": "T000002R054500", "___s": true }, { @@ -781204,7 +784591,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Sprite#anims", "inherited": true, - "___id": "T000002R054497", + "___id": "T000002R054501", "___s": true }, { @@ -781254,7 +784641,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#preUpdate", "inherited": true, - "___id": "T000002R054498", + "___id": "T000002R054502", "___s": true }, { @@ -781338,7 +784725,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#play", "inherited": true, - "___id": "T000002R054499", + "___id": "T000002R054503", "___s": true }, { @@ -781422,7 +784809,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#playReverse", "inherited": true, - "___id": "T000002R054500", + "___id": "T000002R054504", "___s": true }, { @@ -781504,7 +784891,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#playAfterDelay", "inherited": true, - "___id": "T000002R054501", + "___id": "T000002R054505", "___s": true }, { @@ -781588,7 +784975,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#playAfterRepeat", "inherited": true, - "___id": "T000002R054502", + "___id": "T000002R054506", "___s": true }, { @@ -781697,7 +785084,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#chain", "inherited": true, - "___id": "T000002R054503", + "___id": "T000002R054507", "___s": true }, { @@ -781736,7 +785123,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Sprite#stop", "inherited": true, - "___id": "T000002R054504", + "___id": "T000002R054508", "___s": true }, { @@ -781790,7 +785177,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#stopAfterDelay", "inherited": true, - "___id": "T000002R054505", + "___id": "T000002R054509", "___s": true }, { @@ -781846,7 +785233,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#stopAfterRepeat", "inherited": true, - "___id": "T000002R054506", + "___id": "T000002R054510", "___s": true }, { @@ -781900,7 +785287,7 @@ ], "inherits": "Phaser.GameObjects.Sprite#stopOnFrame", "inherited": true, - "___id": "T000002R054507", + "___id": "T000002R054511", "___s": true }, { @@ -781935,7 +785322,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Sprite#toJSON", "inherited": true, - "___id": "T000002R054508", + "___id": "T000002R054512", "___s": true }, { @@ -781965,7 +785352,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R054512", + "___id": "T000002R054516", "___s": true }, { @@ -782006,7 +785393,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R054513", + "___id": "T000002R054517", "___s": true }, { @@ -782036,7 +785423,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R054514", + "___id": "T000002R054518", "___s": true }, { @@ -782076,7 +785463,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R054515", + "___id": "T000002R054519", "___s": true }, { @@ -782106,7 +785493,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R054516", + "___id": "T000002R054520", "___s": true }, { @@ -782137,7 +785524,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R054517", + "___id": "T000002R054521", "___s": true }, { @@ -782168,7 +785555,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R054518", + "___id": "T000002R054522", "___s": true }, { @@ -782199,7 +785586,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R054519", + "___id": "T000002R054523", "___s": true }, { @@ -782230,7 +785617,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R054520", + "___id": "T000002R054524", "___s": true }, { @@ -782261,7 +785648,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R054521", + "___id": "T000002R054525", "___s": true }, { @@ -782295,7 +785682,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R054522", + "___id": "T000002R054526", "___s": true }, { @@ -782328,7 +785715,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R054523", + "___id": "T000002R054527", "___s": true }, { @@ -782376,7 +785763,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R054524", + "___id": "T000002R054528", "___s": true }, { @@ -782407,7 +785794,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R054525", + "___id": "T000002R054529", "___s": true }, { @@ -782458,7 +785845,7 @@ "name": "value" } ], - "___id": "T000002R054526", + "___id": "T000002R054530", "___s": true }, { @@ -782509,7 +785896,7 @@ "name": "value" } ], - "___id": "T000002R054527", + "___id": "T000002R054531", "___s": true }, { @@ -782570,7 +785957,7 @@ "name": "value" } ], - "___id": "T000002R054528", + "___id": "T000002R054532", "___s": true }, { @@ -782609,7 +785996,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R054529", + "___id": "T000002R054533", "___s": true }, { @@ -782697,7 +786084,7 @@ "name": "data" } ], - "___id": "T000002R054530", + "___id": "T000002R054534", "___s": true }, { @@ -782763,7 +786150,7 @@ "name": "amount" } ], - "___id": "T000002R054531", + "___id": "T000002R054535", "___s": true }, { @@ -782814,7 +786201,7 @@ "name": "key" } ], - "___id": "T000002R054532", + "___id": "T000002R054536", "___s": true }, { @@ -782882,7 +786269,7 @@ "name": "key" } ], - "___id": "T000002R054533", + "___id": "T000002R054537", "___s": true }, { @@ -782978,11 +786365,11 @@ "name": "dropZone" } ], - "___id": "T000002R054534", + "___id": "T000002R054538", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -783014,14 +786401,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R054535", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R054539", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -783050,14 +786454,31 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R054536", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], + "___id": "T000002R054540", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -783071,14 +786492,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R054537", + "___id": "T000002R054541", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -783092,14 +786513,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R054538", + "___id": "T000002R054542", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -783130,14 +786551,14 @@ "name": "args" } ], - "___id": "T000002R054539", + "___id": "T000002R054543", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -783180,14 +786601,14 @@ "name": "camera" } ], - "___id": "T000002R054540", + "___id": "T000002R054544", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -783224,14 +786645,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R054541", + "___id": "T000002R054545", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -783290,14 +786711,14 @@ "name": "displayList" } ], - "___id": "T000002R054542", + "___id": "T000002R054546", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -783326,14 +786747,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R054543", + "___id": "T000002R054547", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -783366,14 +786787,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R054544", + "___id": "T000002R054548", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -783402,14 +786823,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R054545", + "___id": "T000002R054549", "___s": true }, { "comment": "/**\r\n * Destroys this Game Object removing it from the Display List and Update List and\r\n * severing all ties to parent resources.\r\n *\r\n * Also removes itself from the Input Manager and Physics Manager if previously enabled.\r\n *\r\n * Use this to remove a Game Object from your game if you don't ever plan to use it again.\r\n * As long as no reference to it exists within your own code it should become free for\r\n * garbage collection by the browser.\r\n *\r\n * If you just want to temporarily disable an object then look at using the\r\n * Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.\r\n *\r\n * @method Phaser.GameObjects.GameObject#destroy\r\n * @fires Phaser.GameObjects.Events#DESTROY\r\n * @since 3.0.0\r\n *\r\n * @param {boolean} [fromScene=false] - `True` if this Game Object is being destroyed by the Scene, `false` if not.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 810, + "lineno": 823, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -783443,7 +786864,7 @@ "name": "fromScene" } ], - "___id": "T000002R054546", + "___id": "T000002R054550", "___s": true }, { @@ -783464,7 +786885,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R054547", + "___id": "T000002R054551", "___s": true }, { @@ -783516,7 +786937,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R054548", + "___id": "T000002R054552", "___s": true }, { @@ -783585,7 +787006,7 @@ "name": "event" } ], - "___id": "T000002R054549", + "___id": "T000002R054553", "___s": true }, { @@ -783645,7 +787066,7 @@ "name": "event" } ], - "___id": "T000002R054550", + "___id": "T000002R054554", "___s": true }, { @@ -783720,7 +787141,7 @@ "name": "args" } ], - "___id": "T000002R054551", + "___id": "T000002R054555", "___s": true }, { @@ -783808,7 +787229,7 @@ "name": "context" } ], - "___id": "T000002R054552", + "___id": "T000002R054556", "___s": true }, { @@ -783896,7 +787317,7 @@ "name": "context" } ], - "___id": "T000002R054553", + "___id": "T000002R054557", "___s": true }, { @@ -783984,7 +787405,7 @@ "name": "context" } ], - "___id": "T000002R054554", + "___id": "T000002R054558", "___s": true }, { @@ -784086,7 +787507,7 @@ "name": "once" } ], - "___id": "T000002R054555", + "___id": "T000002R054559", "___s": true }, { @@ -784188,7 +787609,7 @@ "name": "once" } ], - "___id": "T000002R054556", + "___id": "T000002R054560", "___s": true }, { @@ -784250,7 +787671,7 @@ "name": "event" } ], - "___id": "T000002R054557", + "___id": "T000002R054561", "___s": true }, { @@ -784287,7 +787708,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#clearAlpha", - "___id": "T000002R054563", + "___id": "T000002R054567", "___s": true }, { @@ -784383,7 +787804,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Alpha#setAlpha", - "___id": "T000002R054564", + "___id": "T000002R054568", "___s": true }, { @@ -784414,7 +787835,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alpha", - "___id": "T000002R054565", + "___id": "T000002R054569", "___s": true }, { @@ -784452,7 +787873,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", - "___id": "T000002R054566", + "___id": "T000002R054570", "___s": true }, { @@ -784490,7 +787911,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaTopRight", - "___id": "T000002R054567", + "___id": "T000002R054571", "___s": true }, { @@ -784528,7 +787949,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", - "___id": "T000002R054568", + "___id": "T000002R054572", "___s": true }, { @@ -784566,7 +787987,7 @@ "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", - "___id": "T000002R054569", + "___id": "T000002R054573", "___s": true }, { @@ -784612,7 +788033,7 @@ "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, "overrides": "Phaser.GameObjects.Components.BlendMode#blendMode", - "___id": "T000002R054571", + "___id": "T000002R054575", "___s": true }, { @@ -784679,7 +788100,7 @@ } ], "overrides": "Phaser.GameObjects.Components.BlendMode#setBlendMode", - "___id": "T000002R054572", + "___id": "T000002R054576", "___s": true }, { @@ -784710,7 +788131,7 @@ "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, "overrides": "Phaser.GameObjects.Components.Depth#depth", - "___id": "T000002R054574", + "___id": "T000002R054578", "___s": true }, { @@ -784762,7 +788183,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Depth#setDepth", - "___id": "T000002R054575", + "___id": "T000002R054579", "___s": true }, { @@ -784799,7 +788220,7 @@ "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, "overrides": "Phaser.GameObjects.Components.Depth#bringMeToTop", - "___id": "T000002R054576", + "___id": "T000002R054580", "___s": true }, { @@ -784836,7 +788257,7 @@ "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, "overrides": "Phaser.GameObjects.Components.Depth#sendMeToBack", - "___id": "T000002R054577", + "___id": "T000002R054581", "___s": true }, { @@ -784888,7 +788309,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", - "___id": "T000002R054578", + "___id": "T000002R054582", "___s": true }, { @@ -784940,7 +788361,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", - "___id": "T000002R054579", + "___id": "T000002R054583", "___s": true }, { @@ -784972,7 +788393,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#flipX", - "___id": "T000002R054580", + "___id": "T000002R054584", "___s": true }, { @@ -785004,7 +788425,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#flipY", - "___id": "T000002R054581", + "___id": "T000002R054585", "___s": true }, { @@ -785041,7 +788462,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#toggleFlipX", - "___id": "T000002R054582", + "___id": "T000002R054586", "___s": true }, { @@ -785078,7 +788499,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#toggleFlipY", - "___id": "T000002R054583", + "___id": "T000002R054587", "___s": true }, { @@ -785130,7 +788551,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Flip#setFlipX", - "___id": "T000002R054584", + "___id": "T000002R054588", "___s": true }, { @@ -785182,7 +788603,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Flip#setFlipY", - "___id": "T000002R054585", + "___id": "T000002R054589", "___s": true }, { @@ -785247,7 +788668,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Flip#setFlip", - "___id": "T000002R054586", + "___id": "T000002R054590", "___s": true }, { @@ -785284,7 +788705,7 @@ "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, "overrides": "Phaser.GameObjects.Components.Flip#resetFlip", - "___id": "T000002R054587", + "___id": "T000002R054591", "___s": true }, { @@ -785359,7 +788780,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getCenter", - "___id": "T000002R054589", + "___id": "T000002R054593", "___s": true }, { @@ -785434,7 +788855,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getTopLeft", - "___id": "T000002R054590", + "___id": "T000002R054594", "___s": true }, { @@ -785509,7 +788930,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getTopCenter", - "___id": "T000002R054591", + "___id": "T000002R054595", "___s": true }, { @@ -785584,7 +789005,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getTopRight", - "___id": "T000002R054592", + "___id": "T000002R054596", "___s": true }, { @@ -785659,7 +789080,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", - "___id": "T000002R054593", + "___id": "T000002R054597", "___s": true }, { @@ -785734,7 +789155,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getRightCenter", - "___id": "T000002R054594", + "___id": "T000002R054598", "___s": true }, { @@ -785809,7 +789230,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", - "___id": "T000002R054595", + "___id": "T000002R054599", "___s": true }, { @@ -785884,7 +789305,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", - "___id": "T000002R054596", + "___id": "T000002R054600", "___s": true }, { @@ -785959,7 +789380,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBottomRight", - "___id": "T000002R054597", + "___id": "T000002R054601", "___s": true }, { @@ -786039,7 +789460,7 @@ } ], "overrides": "Phaser.GameObjects.Components.GetBounds#getBounds", - "___id": "T000002R054598", + "___id": "T000002R054602", "___s": true }, { @@ -786080,7 +789501,7 @@ "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, "overrides": "Phaser.GameObjects.Components.Mask#mask", - "___id": "T000002R054599", + "___id": "T000002R054603", "___s": true }, { @@ -786142,7 +789563,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#setMask", - "___id": "T000002R054600", + "___id": "T000002R054604", "___s": true }, { @@ -786196,7 +789617,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#clearMask", - "___id": "T000002R054601", + "___id": "T000002R054605", "___s": true }, { @@ -786359,7 +789780,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#createBitmapMask", - "___id": "T000002R054602", + "___id": "T000002R054606", "___s": true }, { @@ -786441,7 +789862,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Mask#createGeometryMask", - "___id": "T000002R054603", + "___id": "T000002R054607", "___s": true }, { @@ -786474,7 +789895,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#originX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#originX", - "___id": "T000002R054605", + "___id": "T000002R054609", "___s": true }, { @@ -786507,7 +789928,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#originY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#originY", - "___id": "T000002R054606", + "___id": "T000002R054610", "___s": true }, { @@ -786538,7 +789959,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#displayOriginX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#displayOriginX", - "___id": "T000002R054607", + "___id": "T000002R054611", "___s": true }, { @@ -786569,7 +789990,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#displayOriginY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#displayOriginY", - "___id": "T000002R054608", + "___id": "T000002R054612", "___s": true }, { @@ -786638,7 +790059,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Origin#setOrigin", - "___id": "T000002R054609", + "___id": "T000002R054613", "___s": true }, { @@ -786675,7 +790096,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", - "___id": "T000002R054610", + "___id": "T000002R054614", "___s": true }, { @@ -786744,7 +790165,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", - "___id": "T000002R054611", + "___id": "T000002R054615", "___s": true }, { @@ -786781,7 +790202,7 @@ "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, "overrides": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", - "___id": "T000002R054612", + "___id": "T000002R054616", "___s": true }, { @@ -786820,7 +790241,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", - "___id": "T000002R054613", + "___id": "T000002R054617", "___s": true }, { @@ -786859,7 +790280,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#pipeline", - "___id": "T000002R054614", + "___id": "T000002R054618", "___s": true }, { @@ -786897,7 +790318,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#pipelineData", - "___id": "T000002R054615", + "___id": "T000002R054619", "___s": true }, { @@ -786966,7 +790387,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#initPipeline", - "___id": "T000002R054616", + "___id": "T000002R054620", "___s": true }, { @@ -787064,7 +790485,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#setPipeline", - "___id": "T000002R054617", + "___id": "T000002R054621", "___s": true }, { @@ -787137,7 +790558,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#setPipelineData", - "___id": "T000002R054618", + "___id": "T000002R054622", "___s": true }, { @@ -787197,7 +790618,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Pipeline#resetPipeline", - "___id": "T000002R054619", + "___id": "T000002R054623", "___s": true }, { @@ -787242,7 +790663,7 @@ "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, "overrides": "Phaser.GameObjects.Components.Pipeline#getPipelineName", - "___id": "T000002R054620", + "___id": "T000002R054624", "___s": true }, { @@ -787280,7 +790701,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", - "___id": "T000002R054621", + "___id": "T000002R054625", "___s": true }, { @@ -787327,7 +790748,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#postPipelines", - "___id": "T000002R054622", + "___id": "T000002R054626", "___s": true }, { @@ -787365,7 +790786,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", - "___id": "T000002R054623", + "___id": "T000002R054627", "___s": true }, { @@ -787405,7 +790826,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#preFX", - "___id": "T000002R054624", + "___id": "T000002R054628", "___s": true }, { @@ -787443,7 +790864,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#postFX", - "___id": "T000002R054625", + "___id": "T000002R054629", "___s": true }, { @@ -787489,7 +790910,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", - "___id": "T000002R054626", + "___id": "T000002R054630", "___s": true }, { @@ -787634,7 +791055,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", - "___id": "T000002R054627", + "___id": "T000002R054631", "___s": true }, { @@ -787707,7 +791128,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", - "___id": "T000002R054628", + "___id": "T000002R054632", "___s": true }, { @@ -787799,7 +791220,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", - "___id": "T000002R054629", + "___id": "T000002R054633", "___s": true }, { @@ -787845,7 +791266,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", - "___id": "T000002R054630", + "___id": "T000002R054634", "___s": true }, { @@ -787914,7 +791335,7 @@ } ], "overrides": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", - "___id": "T000002R054631", + "___id": "T000002R054635", "___s": true }, { @@ -787958,7 +791379,7 @@ "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, "overrides": "Phaser.GameObjects.Components.PostPipeline#clearFX", - "___id": "T000002R054632", + "___id": "T000002R054636", "___s": true }, { @@ -787990,7 +791411,7 @@ "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, "overrides": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", - "___id": "T000002R054633", + "___id": "T000002R054637", "___s": true }, { @@ -788022,7 +791443,7 @@ "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, "overrides": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", - "___id": "T000002R054634", + "___id": "T000002R054638", "___s": true }, { @@ -788089,7 +791510,7 @@ } ], "overrides": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", - "___id": "T000002R054635", + "___id": "T000002R054639", "___s": true }, { @@ -788120,7 +791541,7 @@ "inherits": "Phaser.GameObjects.Components.Size#width", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#width", - "___id": "T000002R054637", + "___id": "T000002R054641", "___s": true }, { @@ -788151,7 +791572,7 @@ "inherits": "Phaser.GameObjects.Components.Size#height", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#height", - "___id": "T000002R054638", + "___id": "T000002R054642", "___s": true }, { @@ -788182,7 +791603,7 @@ "inherits": "Phaser.GameObjects.Components.Size#displayWidth", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#displayWidth", - "___id": "T000002R054639", + "___id": "T000002R054643", "___s": true }, { @@ -788213,7 +791634,7 @@ "inherits": "Phaser.GameObjects.Components.Size#displayHeight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Size#displayHeight", - "___id": "T000002R054640", + "___id": "T000002R054644", "___s": true }, { @@ -788276,7 +791697,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Size#setSizeToFrame", - "___id": "T000002R054641", + "___id": "T000002R054645", "___s": true }, { @@ -788341,7 +791762,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Size#setSize", - "___id": "T000002R054642", + "___id": "T000002R054646", "___s": true }, { @@ -788406,7 +791827,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Size#setDisplaySize", - "___id": "T000002R054643", + "___id": "T000002R054647", "___s": true }, { @@ -788447,7 +791868,7 @@ "inherits": "Phaser.GameObjects.Components.TextureCrop#texture", "inherited": true, "overrides": "Phaser.GameObjects.Components.Texture#texture", - "___id": "T000002R054644", + "___id": "T000002R054648", "___s": true }, { @@ -788478,7 +791899,7 @@ "inherits": "Phaser.GameObjects.Components.TextureCrop#frame", "inherited": true, "overrides": "Phaser.GameObjects.Components.Texture#frame", - "___id": "T000002R054645", + "___id": "T000002R054649", "___s": true }, { @@ -788509,7 +791930,7 @@ "inherits": "Phaser.GameObjects.Components.TextureCrop#isCropped", "inherited": true, "overrides": "Phaser.GameObjects.Components.Texture#isCropped", - "___id": "T000002R054646", + "___id": "T000002R054650", "___s": true }, { @@ -788613,7 +792034,7 @@ "name": "height" } ], - "___id": "T000002R054647", + "___id": "T000002R054651", "___s": true }, { @@ -788689,7 +792110,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Texture#setTexture", - "___id": "T000002R054648", + "___id": "T000002R054652", "___s": true }, { @@ -788786,7 +792207,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Texture#setFrame", - "___id": "T000002R054649", + "___id": "T000002R054653", "___s": true }, { @@ -788818,7 +792239,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintTopLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintTopLeft", - "___id": "T000002R054651", + "___id": "T000002R054655", "___s": true }, { @@ -788850,7 +792271,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintTopRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintTopRight", - "___id": "T000002R054652", + "___id": "T000002R054656", "___s": true }, { @@ -788882,7 +792303,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintBottomLeft", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintBottomLeft", - "___id": "T000002R054653", + "___id": "T000002R054657", "___s": true }, { @@ -788914,7 +792335,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintBottomRight", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintBottomRight", - "___id": "T000002R054654", + "___id": "T000002R054658", "___s": true }, { @@ -788946,7 +792367,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tintFill", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tintFill", - "___id": "T000002R054655", + "___id": "T000002R054659", "___s": true }, { @@ -788990,7 +792411,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#clearTint", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#clearTint", - "___id": "T000002R054656", + "___id": "T000002R054660", "___s": true }, { @@ -789093,7 +792514,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Tint#setTint", - "___id": "T000002R054657", + "___id": "T000002R054661", "___s": true }, { @@ -789196,7 +792617,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Tint#setTintFill", - "___id": "T000002R054658", + "___id": "T000002R054662", "___s": true }, { @@ -789234,7 +792655,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#tint", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#tint", - "___id": "T000002R054659", + "___id": "T000002R054663", "___s": true }, { @@ -789273,7 +792694,7 @@ "inherits": "Phaser.GameObjects.Components.Tint#isTinted", "inherited": true, "overrides": "Phaser.GameObjects.Components.Tint#isTinted", - "___id": "T000002R054660", + "___id": "T000002R054664", "___s": true }, { @@ -789306,7 +792727,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#hasTransformComponent", - "___id": "T000002R054661", + "___id": "T000002R054665", "___s": true }, { @@ -789338,7 +792759,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#x", - "___id": "T000002R054665", + "___id": "T000002R054669", "___s": true }, { @@ -789370,7 +792791,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#y", - "___id": "T000002R054666", + "___id": "T000002R054670", "___s": true }, { @@ -789402,7 +792823,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#z", - "___id": "T000002R054667", + "___id": "T000002R054671", "___s": true }, { @@ -789434,7 +792855,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#w", - "___id": "T000002R054668", + "___id": "T000002R054672", "___s": true }, { @@ -789466,7 +792887,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#scale", - "___id": "T000002R054669", + "___id": "T000002R054673", "___s": true }, { @@ -789498,7 +792919,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#scaleX", - "___id": "T000002R054670", + "___id": "T000002R054674", "___s": true }, { @@ -789530,7 +792951,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#scaleY", - "___id": "T000002R054671", + "___id": "T000002R054675", "___s": true }, { @@ -789562,7 +792983,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#angle", - "___id": "T000002R054672", + "___id": "T000002R054676", "___s": true }, { @@ -789594,7 +793015,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#rotation", - "___id": "T000002R054673", + "___id": "T000002R054677", "___s": true }, { @@ -789693,7 +793114,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setPosition", - "___id": "T000002R054674", + "___id": "T000002R054678", "___s": true }, { @@ -789760,7 +793181,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#copyPosition", - "___id": "T000002R054675", + "___id": "T000002R054679", "___s": true }, { @@ -789857,7 +793278,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setRandomPosition", - "___id": "T000002R054676", + "___id": "T000002R054680", "___s": true }, { @@ -789911,7 +793332,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setRotation", - "___id": "T000002R054677", + "___id": "T000002R054681", "___s": true }, { @@ -789965,7 +793386,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setAngle", - "___id": "T000002R054678", + "___id": "T000002R054682", "___s": true }, { @@ -790034,7 +793455,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setScale", - "___id": "T000002R054679", + "___id": "T000002R054683", "___s": true }, { @@ -790088,7 +793509,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setX", - "___id": "T000002R054680", + "___id": "T000002R054684", "___s": true }, { @@ -790142,7 +793563,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setY", - "___id": "T000002R054681", + "___id": "T000002R054685", "___s": true }, { @@ -790196,7 +793617,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setZ", - "___id": "T000002R054682", + "___id": "T000002R054686", "___s": true }, { @@ -790250,7 +793671,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#setW", - "___id": "T000002R054683", + "___id": "T000002R054687", "___s": true }, { @@ -790302,7 +793723,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", - "___id": "T000002R054684", + "___id": "T000002R054688", "___s": true }, { @@ -790368,7 +793789,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", - "___id": "T000002R054685", + "___id": "T000002R054689", "___s": true }, { @@ -790460,7 +793881,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Transform#getLocalPoint", - "___id": "T000002R054686", + "___id": "T000002R054690", "___s": true }, { @@ -790496,7 +793917,7 @@ "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, "overrides": "Phaser.GameObjects.Components.Transform#getParentRotation", - "___id": "T000002R054687", + "___id": "T000002R054691", "___s": true }, { @@ -790527,7 +793948,7 @@ "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, "overrides": "Phaser.GameObjects.Components.Visible#visible", - "___id": "T000002R054689", + "___id": "T000002R054693", "___s": true }, { @@ -790579,7 +794000,7 @@ } ], "overrides": "Phaser.GameObjects.Components.Visible#setVisible", - "___id": "T000002R054690", + "___id": "T000002R054694", "___s": true }, { @@ -790630,7 +794051,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Bounce#setBounce", "inherited": true, - "___id": "T000002R054691", + "___id": "T000002R054695", "___s": true }, { @@ -790681,7 +794102,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setCollisionCategory", "inherited": true, - "___id": "T000002R054692", + "___id": "T000002R054696", "___s": true }, { @@ -790732,7 +794153,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setCollisionGroup", "inherited": true, - "___id": "T000002R054693", + "___id": "T000002R054697", "___s": true }, { @@ -790802,7 +794223,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setCollidesWith", "inherited": true, - "___id": "T000002R054694", + "___id": "T000002R054698", "___s": true }, { @@ -790853,7 +794274,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setOnCollide", "inherited": true, - "___id": "T000002R054695", + "___id": "T000002R054699", "___s": true }, { @@ -790904,7 +794325,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setOnCollideEnd", "inherited": true, - "___id": "T000002R054696", + "___id": "T000002R054700", "___s": true }, { @@ -790955,7 +794376,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setOnCollideActive", "inherited": true, - "___id": "T000002R054697", + "___id": "T000002R054701", "___s": true }, { @@ -791038,7 +794459,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setOnCollideWith", "inherited": true, - "___id": "T000002R054698", + "___id": "T000002R054702", "___s": true }, { @@ -791089,7 +794510,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Force#applyForce", "inherited": true, - "___id": "T000002R054699", + "___id": "T000002R054703", "___s": true }, { @@ -791153,7 +794574,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Force#applyForceFrom", "inherited": true, - "___id": "T000002R054700", + "___id": "T000002R054704", "___s": true }, { @@ -791204,7 +794625,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Force#thrust", "inherited": true, - "___id": "T000002R054701", + "___id": "T000002R054705", "___s": true }, { @@ -791255,7 +794676,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Force#thrustLeft", "inherited": true, - "___id": "T000002R054702", + "___id": "T000002R054706", "___s": true }, { @@ -791306,7 +794727,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Force#thrustRight", "inherited": true, - "___id": "T000002R054703", + "___id": "T000002R054707", "___s": true }, { @@ -791357,7 +794778,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Force#thrustBack", "inherited": true, - "___id": "T000002R054704", + "___id": "T000002R054708", "___s": true }, { @@ -791436,7 +794857,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Friction#setFriction", "inherited": true, - "___id": "T000002R054705", + "___id": "T000002R054709", "___s": true }, { @@ -791487,7 +794908,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Friction#setFrictionAir", "inherited": true, - "___id": "T000002R054706", + "___id": "T000002R054710", "___s": true }, { @@ -791538,7 +794959,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Friction#setFrictionStatic", "inherited": true, - "___id": "T000002R054707", + "___id": "T000002R054711", "___s": true }, { @@ -791589,7 +795010,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Gravity#setIgnoreGravity", "inherited": true, - "___id": "T000002R054708", + "___id": "T000002R054712", "___s": true }, { @@ -791640,7 +795061,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Mass#setMass", "inherited": true, - "___id": "T000002R054709", + "___id": "T000002R054713", "___s": true }, { @@ -791691,7 +795112,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Mass#setDensity", "inherited": true, - "___id": "T000002R054710", + "___id": "T000002R054714", "___s": true }, { @@ -791736,7 +795157,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Mass#centerOfMass", "inherited": true, - "___id": "T000002R054711", + "___id": "T000002R054715", "___s": true }, { @@ -791787,7 +795208,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sensor#setSensor", "inherited": true, - "___id": "T000002R054712", + "___id": "T000002R054716", "___s": true }, { @@ -791822,7 +795243,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Sensor#isSensor", "inherited": true, - "___id": "T000002R054713", + "___id": "T000002R054717", "___s": true }, { @@ -791900,7 +795321,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.SetBody#setRectangle", "inherited": true, - "___id": "T000002R054714", + "___id": "T000002R054718", "___s": true }, { @@ -791965,7 +795386,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.SetBody#setCircle", "inherited": true, - "___id": "T000002R054715", + "___id": "T000002R054719", "___s": true }, { @@ -792043,7 +795464,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.SetBody#setPolygon", "inherited": true, - "___id": "T000002R054716", + "___id": "T000002R054720", "___s": true }, { @@ -792134,7 +795555,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.SetBody#setTrapezoid", "inherited": true, - "___id": "T000002R054717", + "___id": "T000002R054721", "___s": true }, { @@ -792200,7 +795621,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.SetBody#setExistingBody", "inherited": true, - "___id": "T000002R054718", + "___id": "T000002R054722", "___s": true }, { @@ -792275,7 +795696,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.SetBody#setBody", "inherited": true, - "___id": "T000002R054719", + "___id": "T000002R054723", "___s": true }, { @@ -792311,7 +795732,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Sleep#setToSleep", "inherited": true, - "___id": "T000002R054720", + "___id": "T000002R054724", "___s": true }, { @@ -792347,7 +795768,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Sleep#setAwake", "inherited": true, - "___id": "T000002R054721", + "___id": "T000002R054725", "___s": true }, { @@ -792400,7 +795821,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sleep#setSleepThreshold", "inherited": true, - "___id": "T000002R054722", + "___id": "T000002R054726", "___s": true }, { @@ -792464,7 +795885,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sleep#setSleepEvents", "inherited": true, - "___id": "T000002R054723", + "___id": "T000002R054727", "___s": true }, { @@ -792515,7 +795936,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sleep#setSleepStartEvent", "inherited": true, - "___id": "T000002R054724", + "___id": "T000002R054728", "___s": true }, { @@ -792566,7 +795987,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sleep#setSleepEndEvent", "inherited": true, - "___id": "T000002R054725", + "___id": "T000002R054729", "___s": true }, { @@ -792617,7 +796038,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Static#setStatic", "inherited": true, - "___id": "T000002R054726", + "___id": "T000002R054730", "___s": true }, { @@ -792652,7 +796073,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Static#isStatic", "inherited": true, - "___id": "T000002R054727", + "___id": "T000002R054731", "___s": true }, { @@ -792688,7 +796109,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Transform#setFixedRotation", "inherited": true, - "___id": "T000002R054728", + "___id": "T000002R054732", "___s": true }, { @@ -792739,7 +796160,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Velocity#setVelocityX", "inherited": true, - "___id": "T000002R054729", + "___id": "T000002R054733", "___s": true }, { @@ -792790,7 +796211,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Velocity#setVelocityY", "inherited": true, - "___id": "T000002R054730", + "___id": "T000002R054734", "___s": true }, { @@ -792856,7 +796277,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Velocity#setVelocity", "inherited": true, - "___id": "T000002R054731", + "___id": "T000002R054735", "___s": true }, { @@ -792891,7 +796312,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Velocity#getVelocity", "inherited": true, - "___id": "T000002R054732", + "___id": "T000002R054736", "___s": true }, { @@ -792942,7 +796363,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Velocity#setAngularVelocity", "inherited": true, - "___id": "T000002R054733", + "___id": "T000002R054737", "___s": true }, { @@ -792977,7 +796398,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Velocity#getAngularVelocity", "inherited": true, - "___id": "T000002R054734", + "___id": "T000002R054738", "___s": true }, { @@ -793028,7 +796449,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Velocity#setAngularSpeed", "inherited": true, - "___id": "T000002R054735", + "___id": "T000002R054739", "___s": true }, { @@ -793063,7 +796484,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Velocity#getAngularSpeed", "inherited": true, - "___id": "T000002R054736", + "___id": "T000002R054740", "___s": true }, { @@ -793084,7 +796505,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R054737", + "___id": "T000002R054741", "___s": true }, { @@ -793136,7 +796557,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R054738", + "___id": "T000002R054742", "___s": true }, { @@ -793205,7 +796626,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R054739", + "___id": "T000002R054743", "___s": true }, { @@ -793265,7 +796686,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R054740", + "___id": "T000002R054744", "___s": true }, { @@ -793340,7 +796761,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R054741", + "___id": "T000002R054745", "___s": true }, { @@ -793428,7 +796849,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R054742", + "___id": "T000002R054746", "___s": true }, { @@ -793516,7 +796937,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R054743", + "___id": "T000002R054747", "___s": true }, { @@ -793604,7 +797025,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R054744", + "___id": "T000002R054748", "___s": true }, { @@ -793706,7 +797127,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R054745", + "___id": "T000002R054749", "___s": true }, { @@ -793808,7 +797229,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R054746", + "___id": "T000002R054750", "___s": true }, { @@ -793870,7 +797291,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R054747", + "___id": "T000002R054751", "___s": true }, { @@ -793921,7 +797342,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Bounce#setBounce", "inherited": true, - "___id": "T000002R054748", + "___id": "T000002R054752", "___s": true }, { @@ -793972,7 +797393,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setCollisionCategory", "inherited": true, - "___id": "T000002R054749", + "___id": "T000002R054753", "___s": true }, { @@ -794023,7 +797444,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setCollisionGroup", "inherited": true, - "___id": "T000002R054750", + "___id": "T000002R054754", "___s": true }, { @@ -794093,7 +797514,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setCollidesWith", "inherited": true, - "___id": "T000002R054751", + "___id": "T000002R054755", "___s": true }, { @@ -794144,7 +797565,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setOnCollide", "inherited": true, - "___id": "T000002R054752", + "___id": "T000002R054756", "___s": true }, { @@ -794195,7 +797616,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setOnCollideEnd", "inherited": true, - "___id": "T000002R054753", + "___id": "T000002R054757", "___s": true }, { @@ -794246,7 +797667,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setOnCollideActive", "inherited": true, - "___id": "T000002R054754", + "___id": "T000002R054758", "___s": true }, { @@ -794329,7 +797750,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Collision#setOnCollideWith", "inherited": true, - "___id": "T000002R054755", + "___id": "T000002R054759", "___s": true }, { @@ -794408,7 +797829,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Friction#setFriction", "inherited": true, - "___id": "T000002R054756", + "___id": "T000002R054760", "___s": true }, { @@ -794459,7 +797880,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Friction#setFrictionAir", "inherited": true, - "___id": "T000002R054757", + "___id": "T000002R054761", "___s": true }, { @@ -794510,7 +797931,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Friction#setFrictionStatic", "inherited": true, - "___id": "T000002R054758", + "___id": "T000002R054762", "___s": true }, { @@ -794561,7 +797982,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Gravity#setIgnoreGravity", "inherited": true, - "___id": "T000002R054759", + "___id": "T000002R054763", "___s": true }, { @@ -794612,7 +798033,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Mass#setMass", "inherited": true, - "___id": "T000002R054760", + "___id": "T000002R054764", "___s": true }, { @@ -794663,7 +798084,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Mass#setDensity", "inherited": true, - "___id": "T000002R054761", + "___id": "T000002R054765", "___s": true }, { @@ -794708,7 +798129,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Mass#centerOfMass", "inherited": true, - "___id": "T000002R054762", + "___id": "T000002R054766", "___s": true }, { @@ -794759,7 +798180,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sensor#setSensor", "inherited": true, - "___id": "T000002R054763", + "___id": "T000002R054767", "___s": true }, { @@ -794794,7 +798215,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Sensor#isSensor", "inherited": true, - "___id": "T000002R054764", + "___id": "T000002R054768", "___s": true }, { @@ -794830,7 +798251,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Sleep#setToSleep", "inherited": true, - "___id": "T000002R054765", + "___id": "T000002R054769", "___s": true }, { @@ -794866,7 +798287,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Sleep#setAwake", "inherited": true, - "___id": "T000002R054766", + "___id": "T000002R054770", "___s": true }, { @@ -794919,7 +798340,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sleep#setSleepThreshold", "inherited": true, - "___id": "T000002R054767", + "___id": "T000002R054771", "___s": true }, { @@ -794983,7 +798404,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sleep#setSleepEvents", "inherited": true, - "___id": "T000002R054768", + "___id": "T000002R054772", "___s": true }, { @@ -795034,7 +798455,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sleep#setSleepStartEvent", "inherited": true, - "___id": "T000002R054769", + "___id": "T000002R054773", "___s": true }, { @@ -795085,7 +798506,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Sleep#setSleepEndEvent", "inherited": true, - "___id": "T000002R054770", + "___id": "T000002R054774", "___s": true }, { @@ -795136,7 +798557,7 @@ ], "inherits": "Phaser.Physics.Matter.Components.Static#setStatic", "inherited": true, - "___id": "T000002R054771", + "___id": "T000002R054775", "___s": true }, { @@ -795171,7 +798592,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Matter.Components.Static#isStatic", "inherited": true, - "___id": "T000002R054772", + "___id": "T000002R054776", "___s": true }, { @@ -795223,7 +798644,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R054773", + "___id": "T000002R054777", "___s": true }, { @@ -795292,7 +798713,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R054774", + "___id": "T000002R054778", "___s": true }, { @@ -795352,7 +798773,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R054775", + "___id": "T000002R054779", "___s": true }, { @@ -795427,7 +798848,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R054776", + "___id": "T000002R054780", "___s": true }, { @@ -795515,7 +798936,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R054777", + "___id": "T000002R054781", "___s": true }, { @@ -795603,7 +799024,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R054778", + "___id": "T000002R054782", "___s": true }, { @@ -795691,7 +799112,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R054779", + "___id": "T000002R054783", "___s": true }, { @@ -795793,7 +799214,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R054780", + "___id": "T000002R054784", "___s": true }, { @@ -795895,7 +799316,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R054781", + "___id": "T000002R054785", "___s": true }, { @@ -795957,7 +799378,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R054782", + "___id": "T000002R054786", "___s": true }, { @@ -795988,7 +799409,7 @@ "scope": "instance", "inherits": "Phaser.Plugins.BasePlugin#pluginManager", "inherited": true, - "___id": "T000002R054783", + "___id": "T000002R054787", "___s": true }, { @@ -796019,7 +799440,7 @@ "scope": "instance", "inherits": "Phaser.Plugins.BasePlugin#game", "inherited": true, - "___id": "T000002R054784", + "___id": "T000002R054788", "___s": true }, { @@ -796058,7 +799479,7 @@ ], "inherits": "Phaser.Plugins.BasePlugin#init", "inherited": true, - "___id": "T000002R054785", + "___id": "T000002R054789", "___s": true }, { @@ -796079,7 +799500,7 @@ "scope": "instance", "inherits": "Phaser.Plugins.BasePlugin#start", "inherited": true, - "___id": "T000002R054786", + "___id": "T000002R054790", "___s": true }, { @@ -796100,7 +799521,7 @@ "scope": "instance", "inherits": "Phaser.Plugins.BasePlugin#stop", "inherited": true, - "___id": "T000002R054787", + "___id": "T000002R054791", "___s": true }, { @@ -796121,7 +799542,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R054788", + "___id": "T000002R054792", "___s": true }, { @@ -796173,7 +799594,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R054789", + "___id": "T000002R054793", "___s": true }, { @@ -796242,7 +799663,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R054790", + "___id": "T000002R054794", "___s": true }, { @@ -796302,7 +799723,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R054791", + "___id": "T000002R054795", "___s": true }, { @@ -796377,7 +799798,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R054792", + "___id": "T000002R054796", "___s": true }, { @@ -796465,7 +799886,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R054793", + "___id": "T000002R054797", "___s": true }, { @@ -796553,7 +799974,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R054794", + "___id": "T000002R054798", "___s": true }, { @@ -796641,7 +800062,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R054795", + "___id": "T000002R054799", "___s": true }, { @@ -796743,7 +800164,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R054796", + "___id": "T000002R054800", "___s": true }, { @@ -796845,7 +800266,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R054797", + "___id": "T000002R054801", "___s": true }, { @@ -796907,7 +800328,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R054798", + "___id": "T000002R054802", "___s": true }, { @@ -796928,7 +800349,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R054799", + "___id": "T000002R054803", "___s": true }, { @@ -796980,7 +800401,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R054800", + "___id": "T000002R054804", "___s": true }, { @@ -797049,7 +800470,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R054801", + "___id": "T000002R054805", "___s": true }, { @@ -797109,7 +800530,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R054802", + "___id": "T000002R054806", "___s": true }, { @@ -797184,7 +800605,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R054803", + "___id": "T000002R054807", "___s": true }, { @@ -797272,7 +800693,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R054804", + "___id": "T000002R054808", "___s": true }, { @@ -797360,7 +800781,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R054805", + "___id": "T000002R054809", "___s": true }, { @@ -797448,7 +800869,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R054806", + "___id": "T000002R054810", "___s": true }, { @@ -797550,7 +800971,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R054807", + "___id": "T000002R054811", "___s": true }, { @@ -797652,7 +801073,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R054808", + "___id": "T000002R054812", "___s": true }, { @@ -797714,7 +801135,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R054809", + "___id": "T000002R054813", "___s": true }, { @@ -797744,7 +801165,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R054810", + "___id": "T000002R054814", "___s": true }, { @@ -797774,7 +801195,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R054811", + "___id": "T000002R054815", "___s": true }, { @@ -797804,7 +801225,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R054812", + "___id": "T000002R054816", "___s": true }, { @@ -797836,7 +801257,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R054813", + "___id": "T000002R054817", "___s": true }, { @@ -797866,7 +801287,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R054814", + "___id": "T000002R054818", "___s": true }, { @@ -797896,7 +801317,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R054815", + "___id": "T000002R054819", "___s": true }, { @@ -797926,7 +801347,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R054816", + "___id": "T000002R054820", "___s": true }, { @@ -797956,7 +801377,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R054817", + "___id": "T000002R054821", "___s": true }, { @@ -797987,7 +801408,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R054818", + "___id": "T000002R054822", "___s": true }, { @@ -798017,7 +801438,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R054819", + "___id": "T000002R054823", "___s": true }, { @@ -798048,7 +801469,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R054820", + "___id": "T000002R054824", "___s": true }, { @@ -798079,7 +801500,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R054821", + "___id": "T000002R054825", "___s": true }, { @@ -798109,7 +801530,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R054822", + "___id": "T000002R054826", "___s": true }, { @@ -798139,7 +801560,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R054823", + "___id": "T000002R054827", "___s": true }, { @@ -798169,7 +801590,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R054824", + "___id": "T000002R054828", "___s": true }, { @@ -798199,7 +801620,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R054825", + "___id": "T000002R054829", "___s": true }, { @@ -798229,7 +801650,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R054826", + "___id": "T000002R054830", "___s": true }, { @@ -798259,7 +801680,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R054827", + "___id": "T000002R054831", "___s": true }, { @@ -798289,7 +801710,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R054828", + "___id": "T000002R054832", "___s": true }, { @@ -798320,7 +801741,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R054829", + "___id": "T000002R054833", "___s": true }, { @@ -798351,7 +801772,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R054830", + "___id": "T000002R054834", "___s": true }, { @@ -798382,7 +801803,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R054831", + "___id": "T000002R054835", "___s": true }, { @@ -798421,7 +801842,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R054832", + "___id": "T000002R054836", "___s": true }, { @@ -798451,7 +801872,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R054833", + "___id": "T000002R054837", "___s": true }, { @@ -798490,7 +801911,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R054834", + "___id": "T000002R054838", "___s": true }, { @@ -798520,7 +801941,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R054835", + "___id": "T000002R054839", "___s": true }, { @@ -798550,7 +801971,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R054836", + "___id": "T000002R054840", "___s": true }, { @@ -798580,7 +802001,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R054837", + "___id": "T000002R054841", "___s": true }, { @@ -798610,7 +802031,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R054838", + "___id": "T000002R054842", "___s": true }, { @@ -798640,7 +802061,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R054839", + "___id": "T000002R054843", "___s": true }, { @@ -798670,7 +802091,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R054840", + "___id": "T000002R054844", "___s": true }, { @@ -798709,7 +802130,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R054841", + "___id": "T000002R054845", "___s": true }, { @@ -798741,7 +802162,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R054842", + "___id": "T000002R054846", "___s": true }, { @@ -798773,7 +802194,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R054843", + "___id": "T000002R054847", "___s": true }, { @@ -798803,7 +802224,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R054844", + "___id": "T000002R054848", "___s": true }, { @@ -798842,7 +802263,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R054845", + "___id": "T000002R054849", "___s": true }, { @@ -798872,7 +802293,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R054846", + "___id": "T000002R054850", "___s": true }, { @@ -798896,7 +802317,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R054847", + "___id": "T000002R054851", "___s": true }, { @@ -798917,7 +802338,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R054848", + "___id": "T000002R054852", "___s": true }, { @@ -798966,7 +802387,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onResize", "inherited": true, - "___id": "T000002R054849", + "___id": "T000002R054853", "___s": true }, { @@ -799046,7 +802467,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setShader", "inherited": true, - "___id": "T000002R054850", + "___id": "T000002R054854", "___s": true }, { @@ -799096,7 +802517,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#getShaderByName", "inherited": true, - "___id": "T000002R054851", + "___id": "T000002R054855", "___s": true }, { @@ -799147,7 +802568,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setShadersFromConfig", "inherited": true, - "___id": "T000002R054852", + "___id": "T000002R054856", "___s": true }, { @@ -799197,7 +802618,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#createBatch", "inherited": true, - "___id": "T000002R054853", + "___id": "T000002R054857", "___s": true }, { @@ -799233,7 +802654,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#addTextureToBatch", "inherited": true, - "___id": "T000002R054854", + "___id": "T000002R054858", "___s": true }, { @@ -799283,7 +802704,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#pushBatch", "inherited": true, - "___id": "T000002R054855", + "___id": "T000002R054859", "___s": true }, { @@ -799347,7 +802768,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setGameObject", "inherited": true, - "___id": "T000002R054856", + "___id": "T000002R054860", "___s": true }, { @@ -799399,7 +802820,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shouldFlush", "inherited": true, - "___id": "T000002R054857", + "___id": "T000002R054861", "___s": true }, { @@ -799434,7 +802855,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R054858", + "___id": "T000002R054862", "___s": true }, { @@ -799501,7 +802922,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resize", "inherited": true, - "___id": "T000002R054859", + "___id": "T000002R054863", "___s": true }, { @@ -799565,7 +802986,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setProjectionMatrix", "inherited": true, - "___id": "T000002R054860", + "___id": "T000002R054864", "___s": true }, { @@ -799603,7 +803024,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#flipProjectionMatrix", "inherited": true, - "___id": "T000002R054861", + "___id": "T000002R054865", "___s": true }, { @@ -799624,7 +803045,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R054862", + "___id": "T000002R054866", "___s": true }, { @@ -799679,7 +803100,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bind", "inherited": true, - "___id": "T000002R054863", + "___id": "T000002R054867", "___s": true }, { @@ -799734,7 +803155,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#rebind", "inherited": true, - "___id": "T000002R054864", + "___id": "T000002R054868", "___s": true }, { @@ -799755,7 +803176,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R054865", + "___id": "T000002R054869", "___s": true }, { @@ -799806,7 +803227,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setVertexBuffer", "inherited": true, - "___id": "T000002R054866", + "___id": "T000002R054870", "___s": true }, { @@ -799868,7 +803289,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#preBatch", "inherited": true, - "___id": "T000002R054867", + "___id": "T000002R054871", "___s": true }, { @@ -799930,7 +803351,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#postBatch", "inherited": true, - "___id": "T000002R054868", + "___id": "T000002R054872", "___s": true }, { @@ -799980,7 +803401,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onDraw", "inherited": true, - "___id": "T000002R054869", + "___id": "T000002R054873", "___s": true }, { @@ -800001,7 +803422,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R054870", + "___id": "T000002R054874", "___s": true }, { @@ -800058,7 +803479,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#flush", "inherited": true, - "___id": "T000002R054871", + "___id": "T000002R054875", "___s": true }, { @@ -800094,7 +803515,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onActive", "inherited": true, - "___id": "T000002R054872", + "___id": "T000002R054876", "___s": true }, { @@ -800131,7 +803552,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBind", "inherited": true, - "___id": "T000002R054873", + "___id": "T000002R054877", "___s": true }, { @@ -800152,7 +803573,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R054874", + "___id": "T000002R054878", "___s": true }, { @@ -800189,7 +803610,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBatch", "inherited": true, - "___id": "T000002R054875", + "___id": "T000002R054879", "___s": true }, { @@ -800226,7 +803647,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreBatch", "inherited": true, - "___id": "T000002R054876", + "___id": "T000002R054880", "___s": true }, { @@ -800263,7 +803684,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostBatch", "inherited": true, - "___id": "T000002R054877", + "___id": "T000002R054881", "___s": true }, { @@ -800284,7 +803705,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R054878", + "___id": "T000002R054882", "___s": true }, { @@ -800333,7 +803754,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRender", "inherited": true, - "___id": "T000002R054879", + "___id": "T000002R054883", "___s": true }, { @@ -800354,7 +803775,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R054880", + "___id": "T000002R054884", "___s": true }, { @@ -800392,7 +803813,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBeforeFlush", "inherited": true, - "___id": "T000002R054881", + "___id": "T000002R054885", "___s": true }, { @@ -800430,7 +803851,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onAfterFlush", "inherited": true, - "___id": "T000002R054882", + "___id": "T000002R054886", "___s": true }, { @@ -800554,7 +803975,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchVert", "inherited": true, - "___id": "T000002R054883", + "___id": "T000002R054887", "___s": true }, { @@ -800873,7 +804294,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchQuad", "inherited": true, - "___id": "T000002R054884", + "___id": "T000002R054888", "___s": true }, { @@ -801153,7 +804574,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchTri", "inherited": true, - "___id": "T000002R054885", + "___id": "T000002R054889", "___s": true }, { @@ -801283,7 +804704,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#drawFillRect", "inherited": true, - "___id": "T000002R054886", + "___id": "T000002R054890", "___s": true }, { @@ -801334,7 +804755,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setTexture2D", "inherited": true, - "___id": "T000002R054887", + "___id": "T000002R054891", "___s": true }, { @@ -801401,7 +804822,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bindTexture", "inherited": true, - "___id": "T000002R054888", + "___id": "T000002R054892", "___s": true }, { @@ -801468,7 +804889,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bindRenderTarget", "inherited": true, - "___id": "T000002R054889", + "___id": "T000002R054893", "___s": true }, { @@ -801533,7 +804954,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setTime", "inherited": true, - "___id": "T000002R054890", + "___id": "T000002R054894", "___s": true }, { @@ -801611,7 +805032,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setBoolean", "inherited": true, - "___id": "T000002R054891", + "___id": "T000002R054895", "___s": true }, { @@ -801689,7 +805110,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1f", "inherited": true, - "___id": "T000002R054892", + "___id": "T000002R054896", "___s": true }, { @@ -801780,7 +805201,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2f", "inherited": true, - "___id": "T000002R054893", + "___id": "T000002R054897", "___s": true }, { @@ -801884,7 +805305,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3f", "inherited": true, - "___id": "T000002R054894", + "___id": "T000002R054898", "___s": true }, { @@ -802001,7 +805422,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4f", "inherited": true, - "___id": "T000002R054895", + "___id": "T000002R054899", "___s": true }, { @@ -802098,7 +805519,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1fv", "inherited": true, - "___id": "T000002R054896", + "___id": "T000002R054900", "___s": true }, { @@ -802195,7 +805616,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2fv", "inherited": true, - "___id": "T000002R054897", + "___id": "T000002R054901", "___s": true }, { @@ -802292,7 +805713,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3fv", "inherited": true, - "___id": "T000002R054898", + "___id": "T000002R054902", "___s": true }, { @@ -802389,7 +805810,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4fv", "inherited": true, - "___id": "T000002R054899", + "___id": "T000002R054903", "___s": true }, { @@ -802486,7 +805907,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1iv", "inherited": true, - "___id": "T000002R054900", + "___id": "T000002R054904", "___s": true }, { @@ -802583,7 +806004,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2iv", "inherited": true, - "___id": "T000002R054901", + "___id": "T000002R054905", "___s": true }, { @@ -802680,7 +806101,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3iv", "inherited": true, - "___id": "T000002R054902", + "___id": "T000002R054906", "___s": true }, { @@ -802777,7 +806198,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4iv", "inherited": true, - "___id": "T000002R054903", + "___id": "T000002R054907", "___s": true }, { @@ -802855,7 +806276,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1i", "inherited": true, - "___id": "T000002R054904", + "___id": "T000002R054908", "___s": true }, { @@ -802946,7 +806367,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2i", "inherited": true, - "___id": "T000002R054905", + "___id": "T000002R054909", "___s": true }, { @@ -803050,7 +806471,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3i", "inherited": true, - "___id": "T000002R054906", + "___id": "T000002R054910", "___s": true }, { @@ -803167,7 +806588,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4i", "inherited": true, - "___id": "T000002R054907", + "___id": "T000002R054911", "___s": true }, { @@ -803277,7 +806698,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix2fv", "inherited": true, - "___id": "T000002R054908", + "___id": "T000002R054912", "___s": true }, { @@ -803368,7 +806789,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix3fv", "inherited": true, - "___id": "T000002R054909", + "___id": "T000002R054913", "___s": true }, { @@ -803459,7 +806880,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix4fv", "inherited": true, - "___id": "T000002R054910", + "___id": "T000002R054914", "___s": true }, { @@ -803498,7 +806919,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#destroy", "inherited": true, - "___id": "T000002R054911", + "___id": "T000002R054915", "___s": true }, { @@ -803519,7 +806940,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R054912", + "___id": "T000002R054916", "___s": true }, { @@ -803571,7 +806992,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R054913", + "___id": "T000002R054917", "___s": true }, { @@ -803640,7 +807061,7 @@ "name": "event" } ], - "___id": "T000002R054914", + "___id": "T000002R054918", "___s": true }, { @@ -803700,7 +807121,7 @@ "name": "event" } ], - "___id": "T000002R054915", + "___id": "T000002R054919", "___s": true }, { @@ -803775,7 +807196,7 @@ "name": "args" } ], - "___id": "T000002R054916", + "___id": "T000002R054920", "___s": true }, { @@ -803863,7 +807284,7 @@ "name": "context" } ], - "___id": "T000002R054917", + "___id": "T000002R054921", "___s": true }, { @@ -803951,7 +807372,7 @@ "name": "context" } ], - "___id": "T000002R054918", + "___id": "T000002R054922", "___s": true }, { @@ -804039,7 +807460,7 @@ "name": "context" } ], - "___id": "T000002R054919", + "___id": "T000002R054923", "___s": true }, { @@ -804141,7 +807562,7 @@ "name": "once" } ], - "___id": "T000002R054920", + "___id": "T000002R054924", "___s": true }, { @@ -804243,7 +807664,7 @@ "name": "once" } ], - "___id": "T000002R054921", + "___id": "T000002R054925", "___s": true }, { @@ -804305,7 +807726,7 @@ "name": "event" } ], - "___id": "T000002R054922", + "___id": "T000002R054926", "___s": true }, { @@ -804335,7 +807756,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R054923", + "___id": "T000002R054927", "___s": true }, { @@ -804365,7 +807786,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R054924", + "___id": "T000002R054928", "___s": true }, { @@ -804395,7 +807816,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R054925", + "___id": "T000002R054929", "___s": true }, { @@ -804427,7 +807848,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R054926", + "___id": "T000002R054930", "___s": true }, { @@ -804457,7 +807878,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R054927", + "___id": "T000002R054931", "___s": true }, { @@ -804487,7 +807908,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R054928", + "___id": "T000002R054932", "___s": true }, { @@ -804517,7 +807938,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R054929", + "___id": "T000002R054933", "___s": true }, { @@ -804547,7 +807968,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R054930", + "___id": "T000002R054934", "___s": true }, { @@ -804578,7 +807999,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R054931", + "___id": "T000002R054935", "___s": true }, { @@ -804608,7 +808029,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R054932", + "___id": "T000002R054936", "___s": true }, { @@ -804639,7 +808060,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R054933", + "___id": "T000002R054937", "___s": true }, { @@ -804670,7 +808091,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R054934", + "___id": "T000002R054938", "___s": true }, { @@ -804700,7 +808121,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R054935", + "___id": "T000002R054939", "___s": true }, { @@ -804730,7 +808151,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R054936", + "___id": "T000002R054940", "___s": true }, { @@ -804760,7 +808181,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R054937", + "___id": "T000002R054941", "___s": true }, { @@ -804790,7 +808211,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R054938", + "___id": "T000002R054942", "___s": true }, { @@ -804820,7 +808241,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R054939", + "___id": "T000002R054943", "___s": true }, { @@ -804850,7 +808271,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R054940", + "___id": "T000002R054944", "___s": true }, { @@ -804880,7 +808301,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R054941", + "___id": "T000002R054945", "___s": true }, { @@ -804911,7 +808332,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R054942", + "___id": "T000002R054946", "___s": true }, { @@ -804942,7 +808363,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R054943", + "___id": "T000002R054947", "___s": true }, { @@ -804973,7 +808394,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R054944", + "___id": "T000002R054948", "___s": true }, { @@ -805012,7 +808433,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R054945", + "___id": "T000002R054949", "___s": true }, { @@ -805042,7 +808463,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R054946", + "___id": "T000002R054950", "___s": true }, { @@ -805081,7 +808502,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R054947", + "___id": "T000002R054951", "___s": true }, { @@ -805111,7 +808532,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R054948", + "___id": "T000002R054952", "___s": true }, { @@ -805141,7 +808562,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R054949", + "___id": "T000002R054953", "___s": true }, { @@ -805171,7 +808592,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R054950", + "___id": "T000002R054954", "___s": true }, { @@ -805201,7 +808622,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R054951", + "___id": "T000002R054955", "___s": true }, { @@ -805231,7 +808652,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R054952", + "___id": "T000002R054956", "___s": true }, { @@ -805261,7 +808682,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R054953", + "___id": "T000002R054957", "___s": true }, { @@ -805300,7 +808721,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R054954", + "___id": "T000002R054958", "___s": true }, { @@ -805332,7 +808753,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R054955", + "___id": "T000002R054959", "___s": true }, { @@ -805364,7 +808785,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R054956", + "___id": "T000002R054960", "___s": true }, { @@ -805394,7 +808815,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R054957", + "___id": "T000002R054961", "___s": true }, { @@ -805433,7 +808854,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R054958", + "___id": "T000002R054962", "___s": true }, { @@ -805463,7 +808884,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R054959", + "___id": "T000002R054963", "___s": true }, { @@ -805487,7 +808908,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R054960", + "___id": "T000002R054964", "___s": true }, { @@ -805508,7 +808929,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R054961", + "___id": "T000002R054965", "___s": true }, { @@ -805557,7 +808978,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onResize", "inherited": true, - "___id": "T000002R054962", + "___id": "T000002R054966", "___s": true }, { @@ -805637,7 +809058,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setShader", "inherited": true, - "___id": "T000002R054963", + "___id": "T000002R054967", "___s": true }, { @@ -805687,7 +809108,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#getShaderByName", "inherited": true, - "___id": "T000002R054964", + "___id": "T000002R054968", "___s": true }, { @@ -805738,7 +809159,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setShadersFromConfig", "inherited": true, - "___id": "T000002R054965", + "___id": "T000002R054969", "___s": true }, { @@ -805788,7 +809209,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#createBatch", "inherited": true, - "___id": "T000002R054966", + "___id": "T000002R054970", "___s": true }, { @@ -805824,7 +809245,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#addTextureToBatch", "inherited": true, - "___id": "T000002R054967", + "___id": "T000002R054971", "___s": true }, { @@ -805874,7 +809295,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#pushBatch", "inherited": true, - "___id": "T000002R054968", + "___id": "T000002R054972", "___s": true }, { @@ -805938,7 +809359,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setGameObject", "inherited": true, - "___id": "T000002R054969", + "___id": "T000002R054973", "___s": true }, { @@ -805990,7 +809411,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shouldFlush", "inherited": true, - "___id": "T000002R054970", + "___id": "T000002R054974", "___s": true }, { @@ -806025,7 +809446,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R054971", + "___id": "T000002R054975", "___s": true }, { @@ -806092,7 +809513,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resize", "inherited": true, - "___id": "T000002R054972", + "___id": "T000002R054976", "___s": true }, { @@ -806156,7 +809577,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setProjectionMatrix", "inherited": true, - "___id": "T000002R054973", + "___id": "T000002R054977", "___s": true }, { @@ -806194,7 +809615,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#flipProjectionMatrix", "inherited": true, - "___id": "T000002R054974", + "___id": "T000002R054978", "___s": true }, { @@ -806215,7 +809636,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R054975", + "___id": "T000002R054979", "___s": true }, { @@ -806270,7 +809691,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bind", "inherited": true, - "___id": "T000002R054976", + "___id": "T000002R054980", "___s": true }, { @@ -806325,7 +809746,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#rebind", "inherited": true, - "___id": "T000002R054977", + "___id": "T000002R054981", "___s": true }, { @@ -806346,7 +809767,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R054978", + "___id": "T000002R054982", "___s": true }, { @@ -806397,7 +809818,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setVertexBuffer", "inherited": true, - "___id": "T000002R054979", + "___id": "T000002R054983", "___s": true }, { @@ -806459,7 +809880,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#preBatch", "inherited": true, - "___id": "T000002R054980", + "___id": "T000002R054984", "___s": true }, { @@ -806509,7 +809930,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onDraw", "inherited": true, - "___id": "T000002R054981", + "___id": "T000002R054985", "___s": true }, { @@ -806530,7 +809951,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R054982", + "___id": "T000002R054986", "___s": true }, { @@ -806587,7 +810008,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#flush", "inherited": true, - "___id": "T000002R054983", + "___id": "T000002R054987", "___s": true }, { @@ -806623,7 +810044,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onActive", "inherited": true, - "___id": "T000002R054984", + "___id": "T000002R054988", "___s": true }, { @@ -806660,7 +810081,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBind", "inherited": true, - "___id": "T000002R054985", + "___id": "T000002R054989", "___s": true }, { @@ -806681,7 +810102,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R054986", + "___id": "T000002R054990", "___s": true }, { @@ -806718,7 +810139,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBatch", "inherited": true, - "___id": "T000002R054987", + "___id": "T000002R054991", "___s": true }, { @@ -806755,7 +810176,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreBatch", "inherited": true, - "___id": "T000002R054988", + "___id": "T000002R054992", "___s": true }, { @@ -806792,7 +810213,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostBatch", "inherited": true, - "___id": "T000002R054989", + "___id": "T000002R054993", "___s": true }, { @@ -806813,7 +810234,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R054990", + "___id": "T000002R054994", "___s": true }, { @@ -806862,7 +810283,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRender", "inherited": true, - "___id": "T000002R054991", + "___id": "T000002R054995", "___s": true }, { @@ -806883,7 +810304,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R054992", + "___id": "T000002R054996", "___s": true }, { @@ -806921,7 +810342,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBeforeFlush", "inherited": true, - "___id": "T000002R054993", + "___id": "T000002R054997", "___s": true }, { @@ -806959,7 +810380,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onAfterFlush", "inherited": true, - "___id": "T000002R054994", + "___id": "T000002R054998", "___s": true }, { @@ -807083,7 +810504,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchVert", "inherited": true, - "___id": "T000002R054995", + "___id": "T000002R054999", "___s": true }, { @@ -807402,7 +810823,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchQuad", "inherited": true, - "___id": "T000002R054996", + "___id": "T000002R055000", "___s": true }, { @@ -807682,7 +811103,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchTri", "inherited": true, - "___id": "T000002R054997", + "___id": "T000002R055001", "___s": true }, { @@ -807812,7 +811233,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#drawFillRect", "inherited": true, - "___id": "T000002R054998", + "___id": "T000002R055002", "___s": true }, { @@ -807863,7 +811284,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setTexture2D", "inherited": true, - "___id": "T000002R054999", + "___id": "T000002R055003", "___s": true }, { @@ -807930,7 +811351,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bindTexture", "inherited": true, - "___id": "T000002R055000", + "___id": "T000002R055004", "___s": true }, { @@ -807997,7 +811418,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bindRenderTarget", "inherited": true, - "___id": "T000002R055001", + "___id": "T000002R055005", "___s": true }, { @@ -808062,7 +811483,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setTime", "inherited": true, - "___id": "T000002R055002", + "___id": "T000002R055006", "___s": true }, { @@ -808140,7 +811561,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setBoolean", "inherited": true, - "___id": "T000002R055003", + "___id": "T000002R055007", "___s": true }, { @@ -808218,7 +811639,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1f", "inherited": true, - "___id": "T000002R055004", + "___id": "T000002R055008", "___s": true }, { @@ -808309,7 +811730,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2f", "inherited": true, - "___id": "T000002R055005", + "___id": "T000002R055009", "___s": true }, { @@ -808413,7 +811834,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3f", "inherited": true, - "___id": "T000002R055006", + "___id": "T000002R055010", "___s": true }, { @@ -808530,7 +811951,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4f", "inherited": true, - "___id": "T000002R055007", + "___id": "T000002R055011", "___s": true }, { @@ -808627,7 +812048,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1fv", "inherited": true, - "___id": "T000002R055008", + "___id": "T000002R055012", "___s": true }, { @@ -808724,7 +812145,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2fv", "inherited": true, - "___id": "T000002R055009", + "___id": "T000002R055013", "___s": true }, { @@ -808821,7 +812242,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3fv", "inherited": true, - "___id": "T000002R055010", + "___id": "T000002R055014", "___s": true }, { @@ -808918,7 +812339,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4fv", "inherited": true, - "___id": "T000002R055011", + "___id": "T000002R055015", "___s": true }, { @@ -809015,7 +812436,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1iv", "inherited": true, - "___id": "T000002R055012", + "___id": "T000002R055016", "___s": true }, { @@ -809112,7 +812533,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2iv", "inherited": true, - "___id": "T000002R055013", + "___id": "T000002R055017", "___s": true }, { @@ -809209,7 +812630,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3iv", "inherited": true, - "___id": "T000002R055014", + "___id": "T000002R055018", "___s": true }, { @@ -809306,7 +812727,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4iv", "inherited": true, - "___id": "T000002R055015", + "___id": "T000002R055019", "___s": true }, { @@ -809384,7 +812805,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1i", "inherited": true, - "___id": "T000002R055016", + "___id": "T000002R055020", "___s": true }, { @@ -809475,7 +812896,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2i", "inherited": true, - "___id": "T000002R055017", + "___id": "T000002R055021", "___s": true }, { @@ -809579,7 +813000,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3i", "inherited": true, - "___id": "T000002R055018", + "___id": "T000002R055022", "___s": true }, { @@ -809696,7 +813117,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4i", "inherited": true, - "___id": "T000002R055019", + "___id": "T000002R055023", "___s": true }, { @@ -809806,7 +813227,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix2fv", "inherited": true, - "___id": "T000002R055020", + "___id": "T000002R055024", "___s": true }, { @@ -809897,7 +813318,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix3fv", "inherited": true, - "___id": "T000002R055021", + "___id": "T000002R055025", "___s": true }, { @@ -809988,7 +813409,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix4fv", "inherited": true, - "___id": "T000002R055022", + "___id": "T000002R055026", "___s": true }, { @@ -810009,7 +813430,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R055023", + "___id": "T000002R055027", "___s": true }, { @@ -810061,7 +813482,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R055024", + "___id": "T000002R055028", "___s": true }, { @@ -810130,7 +813551,7 @@ "name": "event" } ], - "___id": "T000002R055025", + "___id": "T000002R055029", "___s": true }, { @@ -810190,7 +813611,7 @@ "name": "event" } ], - "___id": "T000002R055026", + "___id": "T000002R055030", "___s": true }, { @@ -810265,7 +813686,7 @@ "name": "args" } ], - "___id": "T000002R055027", + "___id": "T000002R055031", "___s": true }, { @@ -810353,7 +813774,7 @@ "name": "context" } ], - "___id": "T000002R055028", + "___id": "T000002R055032", "___s": true }, { @@ -810441,7 +813862,7 @@ "name": "context" } ], - "___id": "T000002R055029", + "___id": "T000002R055033", "___s": true }, { @@ -810529,7 +813950,7 @@ "name": "context" } ], - "___id": "T000002R055030", + "___id": "T000002R055034", "___s": true }, { @@ -810631,7 +814052,7 @@ "name": "once" } ], - "___id": "T000002R055031", + "___id": "T000002R055035", "___s": true }, { @@ -810733,7 +814154,7 @@ "name": "once" } ], - "___id": "T000002R055032", + "___id": "T000002R055036", "___s": true }, { @@ -810795,7 +814216,7 @@ "name": "event" } ], - "___id": "T000002R055033", + "___id": "T000002R055037", "___s": true }, { @@ -810835,7 +814256,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R055034", + "___id": "T000002R055038", "___s": true }, { @@ -810865,7 +814286,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R055035", + "___id": "T000002R055039", "___s": true }, { @@ -810895,7 +814316,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R055036", + "___id": "T000002R055040", "___s": true }, { @@ -810926,7 +814347,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R055037", + "___id": "T000002R055041", "___s": true }, { @@ -810957,7 +814378,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R055038", + "___id": "T000002R055042", "___s": true }, { @@ -810988,7 +814409,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R055039", + "___id": "T000002R055043", "___s": true }, { @@ -811019,7 +814440,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R055040", + "___id": "T000002R055044", "___s": true }, { @@ -811040,7 +814461,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R055041", + "___id": "T000002R055045", "___s": true }, { @@ -811102,7 +814523,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R055042", + "___id": "T000002R055046", "___s": true }, { @@ -811163,7 +814584,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R055043", + "___id": "T000002R055047", "___s": true }, { @@ -811212,7 +814633,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R055044", + "___id": "T000002R055048", "___s": true }, { @@ -811307,7 +814728,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R055045", + "___id": "T000002R055049", "___s": true }, { @@ -811343,7 +814764,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R055046", + "___id": "T000002R055050", "___s": true }, { @@ -811408,7 +814829,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R055047", + "___id": "T000002R055051", "___s": true }, { @@ -811501,7 +814922,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R055048", + "___id": "T000002R055052", "___s": true }, { @@ -811594,7 +815015,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R055049", + "___id": "T000002R055053", "___s": true }, { @@ -811645,7 +815066,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R055050", + "___id": "T000002R055054", "___s": true }, { @@ -811754,7 +815175,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R055051", + "___id": "T000002R055055", "___s": true }, { @@ -811885,7 +815306,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R055052", + "___id": "T000002R055056", "___s": true }, { @@ -811979,7 +815400,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R055053", + "___id": "T000002R055057", "___s": true }, { @@ -812015,7 +815436,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R055054", + "___id": "T000002R055058", "___s": true }, { @@ -812045,7 +815466,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R055055", + "___id": "T000002R055059", "___s": true }, { @@ -812075,7 +815496,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R055056", + "___id": "T000002R055060", "___s": true }, { @@ -812105,7 +815526,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R055057", + "___id": "T000002R055061", "___s": true }, { @@ -812137,7 +815558,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R055058", + "___id": "T000002R055062", "___s": true }, { @@ -812167,7 +815588,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R055059", + "___id": "T000002R055063", "___s": true }, { @@ -812197,7 +815618,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R055060", + "___id": "T000002R055064", "___s": true }, { @@ -812227,7 +815648,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R055061", + "___id": "T000002R055065", "___s": true }, { @@ -812257,7 +815678,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R055062", + "___id": "T000002R055066", "___s": true }, { @@ -812288,7 +815709,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R055063", + "___id": "T000002R055067", "___s": true }, { @@ -812318,7 +815739,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R055064", + "___id": "T000002R055068", "___s": true }, { @@ -812349,7 +815770,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R055065", + "___id": "T000002R055069", "___s": true }, { @@ -812380,7 +815801,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R055066", + "___id": "T000002R055070", "___s": true }, { @@ -812410,7 +815831,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R055067", + "___id": "T000002R055071", "___s": true }, { @@ -812440,7 +815861,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R055068", + "___id": "T000002R055072", "___s": true }, { @@ -812470,7 +815891,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R055069", + "___id": "T000002R055073", "___s": true }, { @@ -812500,7 +815921,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R055070", + "___id": "T000002R055074", "___s": true }, { @@ -812530,7 +815951,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R055071", + "___id": "T000002R055075", "___s": true }, { @@ -812560,7 +815981,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R055072", + "___id": "T000002R055076", "___s": true }, { @@ -812590,7 +816011,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R055073", + "___id": "T000002R055077", "___s": true }, { @@ -812621,7 +816042,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R055074", + "___id": "T000002R055078", "___s": true }, { @@ -812652,7 +816073,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R055075", + "___id": "T000002R055079", "___s": true }, { @@ -812683,7 +816104,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R055076", + "___id": "T000002R055080", "___s": true }, { @@ -812722,7 +816143,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R055077", + "___id": "T000002R055081", "___s": true }, { @@ -812752,7 +816173,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R055078", + "___id": "T000002R055082", "___s": true }, { @@ -812791,7 +816212,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R055079", + "___id": "T000002R055083", "___s": true }, { @@ -812821,7 +816242,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R055080", + "___id": "T000002R055084", "___s": true }, { @@ -812851,7 +816272,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R055081", + "___id": "T000002R055085", "___s": true }, { @@ -812881,7 +816302,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R055082", + "___id": "T000002R055086", "___s": true }, { @@ -812911,7 +816332,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R055083", + "___id": "T000002R055087", "___s": true }, { @@ -812941,7 +816362,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R055084", + "___id": "T000002R055088", "___s": true }, { @@ -812971,7 +816392,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R055085", + "___id": "T000002R055089", "___s": true }, { @@ -813010,7 +816431,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R055086", + "___id": "T000002R055090", "___s": true }, { @@ -813042,7 +816463,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R055087", + "___id": "T000002R055091", "___s": true }, { @@ -813074,7 +816495,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R055088", + "___id": "T000002R055092", "___s": true }, { @@ -813104,7 +816525,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R055089", + "___id": "T000002R055093", "___s": true }, { @@ -813143,7 +816564,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R055090", + "___id": "T000002R055094", "___s": true }, { @@ -813173,7 +816594,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R055091", + "___id": "T000002R055095", "___s": true }, { @@ -813197,7 +816618,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R055092", + "___id": "T000002R055096", "___s": true }, { @@ -813218,7 +816639,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R055093", + "___id": "T000002R055097", "___s": true }, { @@ -813267,7 +816688,7 @@ "name": "height" } ], - "___id": "T000002R055094", + "___id": "T000002R055098", "___s": true }, { @@ -813347,7 +816768,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R055095", + "___id": "T000002R055099", "___s": true }, { @@ -813397,7 +816818,7 @@ "name": "name" } ], - "___id": "T000002R055096", + "___id": "T000002R055100", "___s": true }, { @@ -813448,7 +816869,7 @@ "name": "config" } ], - "___id": "T000002R055097", + "___id": "T000002R055101", "___s": true }, { @@ -813498,7 +816919,7 @@ "name": "texture" } ], - "___id": "T000002R055098", + "___id": "T000002R055102", "___s": true }, { @@ -813534,7 +816955,7 @@ "name": "texture" } ], - "___id": "T000002R055099", + "___id": "T000002R055103", "___s": true }, { @@ -813584,7 +817005,7 @@ "name": "texture" } ], - "___id": "T000002R055100", + "___id": "T000002R055104", "___s": true }, { @@ -813648,7 +817069,7 @@ "name": "frame" } ], - "___id": "T000002R055101", + "___id": "T000002R055105", "___s": true }, { @@ -813700,7 +817121,7 @@ "name": "amount" } ], - "___id": "T000002R055102", + "___id": "T000002R055106", "___s": true }, { @@ -813735,7 +817156,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R055103", + "___id": "T000002R055107", "___s": true }, { @@ -813802,7 +817223,7 @@ "name": "height" } ], - "___id": "T000002R055104", + "___id": "T000002R055108", "___s": true }, { @@ -813866,7 +817287,7 @@ "name": "height" } ], - "___id": "T000002R055105", + "___id": "T000002R055109", "___s": true }, { @@ -813904,7 +817325,7 @@ "name": "flipY" } ], - "___id": "T000002R055106", + "___id": "T000002R055110", "___s": true }, { @@ -813925,7 +817346,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R055107", + "___id": "T000002R055111", "___s": true }, { @@ -813980,7 +817401,7 @@ "name": "currentShader" } ], - "___id": "T000002R055108", + "___id": "T000002R055112", "___s": true }, { @@ -814035,7 +817456,7 @@ "name": "currentShader" } ], - "___id": "T000002R055109", + "___id": "T000002R055113", "___s": true }, { @@ -814056,7 +817477,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R055110", + "___id": "T000002R055114", "___s": true }, { @@ -814107,7 +817528,7 @@ "name": "buffer" } ], - "___id": "T000002R055111", + "___id": "T000002R055115", "___s": true }, { @@ -814169,7 +817590,7 @@ "name": "gameObject" } ], - "___id": "T000002R055112", + "___id": "T000002R055116", "___s": true }, { @@ -814219,7 +817640,7 @@ "name": "swapTarget" } ], - "___id": "T000002R055113", + "___id": "T000002R055117", "___s": true }, { @@ -814240,7 +817661,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R055114", + "___id": "T000002R055118", "___s": true }, { @@ -814297,7 +817718,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055115", + "___id": "T000002R055119", "___s": true }, { @@ -814333,7 +817754,7 @@ "name": "currentShader" } ], - "___id": "T000002R055116", + "___id": "T000002R055120", "___s": true }, { @@ -814370,7 +817791,7 @@ "name": "gameObject" } ], - "___id": "T000002R055117", + "___id": "T000002R055121", "___s": true }, { @@ -814391,7 +817812,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R055118", + "___id": "T000002R055122", "___s": true }, { @@ -814428,7 +817849,7 @@ "name": "gameObject" } ], - "___id": "T000002R055119", + "___id": "T000002R055123", "___s": true }, { @@ -814465,7 +817886,7 @@ "name": "gameObject" } ], - "___id": "T000002R055120", + "___id": "T000002R055124", "___s": true }, { @@ -814502,7 +817923,7 @@ "name": "gameObject" } ], - "___id": "T000002R055121", + "___id": "T000002R055125", "___s": true }, { @@ -814523,7 +817944,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R055122", + "___id": "T000002R055126", "___s": true }, { @@ -814572,7 +817993,7 @@ "name": "camera" } ], - "___id": "T000002R055123", + "___id": "T000002R055127", "___s": true }, { @@ -814593,7 +818014,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R055124", + "___id": "T000002R055128", "___s": true }, { @@ -814631,7 +818052,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055125", + "___id": "T000002R055129", "___s": true }, { @@ -814669,7 +818090,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055126", + "___id": "T000002R055130", "___s": true }, { @@ -814793,7 +818214,7 @@ "name": "tint" } ], - "___id": "T000002R055127", + "___id": "T000002R055131", "___s": true }, { @@ -815112,7 +818533,7 @@ "name": "unit" } ], - "___id": "T000002R055128", + "___id": "T000002R055132", "___s": true }, { @@ -815392,7 +818813,7 @@ "name": "unit" } ], - "___id": "T000002R055129", + "___id": "T000002R055133", "___s": true }, { @@ -815522,7 +818943,7 @@ "name": "flipUV" } ], - "___id": "T000002R055130", + "___id": "T000002R055134", "___s": true }, { @@ -815573,7 +818994,7 @@ "name": "texture" } ], - "___id": "T000002R055131", + "___id": "T000002R055135", "___s": true }, { @@ -815640,7 +819061,7 @@ "name": "unit" } ], - "___id": "T000002R055132", + "___id": "T000002R055136", "___s": true }, { @@ -815707,7 +819128,7 @@ "name": "unit" } ], - "___id": "T000002R055133", + "___id": "T000002R055137", "___s": true }, { @@ -815772,7 +819193,7 @@ "name": "shader" } ], - "___id": "T000002R055134", + "___id": "T000002R055138", "___s": true }, { @@ -815850,7 +819271,7 @@ "name": "shader" } ], - "___id": "T000002R055135", + "___id": "T000002R055139", "___s": true }, { @@ -815928,7 +819349,7 @@ "name": "shader" } ], - "___id": "T000002R055136", + "___id": "T000002R055140", "___s": true }, { @@ -816019,7 +819440,7 @@ "name": "shader" } ], - "___id": "T000002R055137", + "___id": "T000002R055141", "___s": true }, { @@ -816123,7 +819544,7 @@ "name": "shader" } ], - "___id": "T000002R055138", + "___id": "T000002R055142", "___s": true }, { @@ -816240,7 +819661,7 @@ "name": "shader" } ], - "___id": "T000002R055139", + "___id": "T000002R055143", "___s": true }, { @@ -816337,7 +819758,7 @@ "name": "shader" } ], - "___id": "T000002R055140", + "___id": "T000002R055144", "___s": true }, { @@ -816434,7 +819855,7 @@ "name": "shader" } ], - "___id": "T000002R055141", + "___id": "T000002R055145", "___s": true }, { @@ -816531,7 +819952,7 @@ "name": "shader" } ], - "___id": "T000002R055142", + "___id": "T000002R055146", "___s": true }, { @@ -816628,7 +820049,7 @@ "name": "shader" } ], - "___id": "T000002R055143", + "___id": "T000002R055147", "___s": true }, { @@ -816725,7 +820146,7 @@ "name": "shader" } ], - "___id": "T000002R055144", + "___id": "T000002R055148", "___s": true }, { @@ -816822,7 +820243,7 @@ "name": "shader" } ], - "___id": "T000002R055145", + "___id": "T000002R055149", "___s": true }, { @@ -816919,7 +820340,7 @@ "name": "shader" } ], - "___id": "T000002R055146", + "___id": "T000002R055150", "___s": true }, { @@ -817016,7 +820437,7 @@ "name": "shader" } ], - "___id": "T000002R055147", + "___id": "T000002R055151", "___s": true }, { @@ -817094,7 +820515,7 @@ "name": "shader" } ], - "___id": "T000002R055148", + "___id": "T000002R055152", "___s": true }, { @@ -817185,7 +820606,7 @@ "name": "shader" } ], - "___id": "T000002R055149", + "___id": "T000002R055153", "___s": true }, { @@ -817289,7 +820710,7 @@ "name": "shader" } ], - "___id": "T000002R055150", + "___id": "T000002R055154", "___s": true }, { @@ -817406,7 +820827,7 @@ "name": "shader" } ], - "___id": "T000002R055151", + "___id": "T000002R055155", "___s": true }, { @@ -817516,7 +820937,7 @@ "name": "shader" } ], - "___id": "T000002R055152", + "___id": "T000002R055156", "___s": true }, { @@ -817607,7 +821028,7 @@ "name": "shader" } ], - "___id": "T000002R055153", + "___id": "T000002R055157", "___s": true }, { @@ -817698,7 +821119,7 @@ "name": "shader" } ], - "___id": "T000002R055154", + "___id": "T000002R055158", "___s": true }, { @@ -817719,7 +821140,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R055155", + "___id": "T000002R055159", "___s": true }, { @@ -817771,7 +821192,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R055156", + "___id": "T000002R055160", "___s": true }, { @@ -817840,7 +821261,7 @@ "name": "event" } ], - "___id": "T000002R055157", + "___id": "T000002R055161", "___s": true }, { @@ -817900,7 +821321,7 @@ "name": "event" } ], - "___id": "T000002R055158", + "___id": "T000002R055162", "___s": true }, { @@ -817975,7 +821396,7 @@ "name": "args" } ], - "___id": "T000002R055159", + "___id": "T000002R055163", "___s": true }, { @@ -818063,7 +821484,7 @@ "name": "context" } ], - "___id": "T000002R055160", + "___id": "T000002R055164", "___s": true }, { @@ -818151,7 +821572,7 @@ "name": "context" } ], - "___id": "T000002R055161", + "___id": "T000002R055165", "___s": true }, { @@ -818239,7 +821660,7 @@ "name": "context" } ], - "___id": "T000002R055162", + "___id": "T000002R055166", "___s": true }, { @@ -818341,7 +821762,7 @@ "name": "once" } ], - "___id": "T000002R055163", + "___id": "T000002R055167", "___s": true }, { @@ -818443,7 +821864,7 @@ "name": "once" } ], - "___id": "T000002R055164", + "___id": "T000002R055168", "___s": true }, { @@ -818505,7 +821926,7 @@ "name": "event" } ], - "___id": "T000002R055165", + "___id": "T000002R055169", "___s": true }, { @@ -818545,7 +821966,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R055166", + "___id": "T000002R055170", "___s": true }, { @@ -818575,7 +821996,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R055167", + "___id": "T000002R055171", "___s": true }, { @@ -818605,7 +822026,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R055168", + "___id": "T000002R055172", "___s": true }, { @@ -818636,7 +822057,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R055169", + "___id": "T000002R055173", "___s": true }, { @@ -818667,7 +822088,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R055170", + "___id": "T000002R055174", "___s": true }, { @@ -818698,7 +822119,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R055171", + "___id": "T000002R055175", "___s": true }, { @@ -818729,7 +822150,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R055172", + "___id": "T000002R055176", "___s": true }, { @@ -818750,7 +822171,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R055173", + "___id": "T000002R055177", "___s": true }, { @@ -818812,7 +822233,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R055174", + "___id": "T000002R055178", "___s": true }, { @@ -818873,7 +822294,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R055175", + "___id": "T000002R055179", "___s": true }, { @@ -818922,7 +822343,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R055176", + "___id": "T000002R055180", "___s": true }, { @@ -819017,7 +822438,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R055177", + "___id": "T000002R055181", "___s": true }, { @@ -819053,7 +822474,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R055178", + "___id": "T000002R055182", "___s": true }, { @@ -819118,7 +822539,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R055179", + "___id": "T000002R055183", "___s": true }, { @@ -819211,7 +822632,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R055180", + "___id": "T000002R055184", "___s": true }, { @@ -819304,7 +822725,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R055181", + "___id": "T000002R055185", "___s": true }, { @@ -819355,7 +822776,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R055182", + "___id": "T000002R055186", "___s": true }, { @@ -819464,7 +822885,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R055183", + "___id": "T000002R055187", "___s": true }, { @@ -819595,7 +823016,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R055184", + "___id": "T000002R055188", "___s": true }, { @@ -819689,7 +823110,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R055185", + "___id": "T000002R055189", "___s": true }, { @@ -819725,7 +823146,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R055186", + "___id": "T000002R055190", "___s": true }, { @@ -819755,7 +823176,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R055187", + "___id": "T000002R055191", "___s": true }, { @@ -819785,7 +823206,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R055188", + "___id": "T000002R055192", "___s": true }, { @@ -819815,7 +823236,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R055189", + "___id": "T000002R055193", "___s": true }, { @@ -819847,7 +823268,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R055190", + "___id": "T000002R055194", "___s": true }, { @@ -819877,7 +823298,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R055191", + "___id": "T000002R055195", "___s": true }, { @@ -819907,7 +823328,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R055192", + "___id": "T000002R055196", "___s": true }, { @@ -819937,7 +823358,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R055193", + "___id": "T000002R055197", "___s": true }, { @@ -819967,7 +823388,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R055194", + "___id": "T000002R055198", "___s": true }, { @@ -819998,7 +823419,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R055195", + "___id": "T000002R055199", "___s": true }, { @@ -820028,7 +823449,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R055196", + "___id": "T000002R055200", "___s": true }, { @@ -820059,7 +823480,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R055197", + "___id": "T000002R055201", "___s": true }, { @@ -820090,7 +823511,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R055198", + "___id": "T000002R055202", "___s": true }, { @@ -820120,7 +823541,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R055199", + "___id": "T000002R055203", "___s": true }, { @@ -820150,7 +823571,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R055200", + "___id": "T000002R055204", "___s": true }, { @@ -820180,7 +823601,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R055201", + "___id": "T000002R055205", "___s": true }, { @@ -820210,7 +823631,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R055202", + "___id": "T000002R055206", "___s": true }, { @@ -820240,7 +823661,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R055203", + "___id": "T000002R055207", "___s": true }, { @@ -820270,7 +823691,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R055204", + "___id": "T000002R055208", "___s": true }, { @@ -820300,7 +823721,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R055205", + "___id": "T000002R055209", "___s": true }, { @@ -820331,7 +823752,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R055206", + "___id": "T000002R055210", "___s": true }, { @@ -820362,7 +823783,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R055207", + "___id": "T000002R055211", "___s": true }, { @@ -820393,7 +823814,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R055208", + "___id": "T000002R055212", "___s": true }, { @@ -820432,7 +823853,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R055209", + "___id": "T000002R055213", "___s": true }, { @@ -820462,7 +823883,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R055210", + "___id": "T000002R055214", "___s": true }, { @@ -820501,7 +823922,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R055211", + "___id": "T000002R055215", "___s": true }, { @@ -820531,7 +823952,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R055212", + "___id": "T000002R055216", "___s": true }, { @@ -820561,7 +823982,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R055213", + "___id": "T000002R055217", "___s": true }, { @@ -820591,7 +824012,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R055214", + "___id": "T000002R055218", "___s": true }, { @@ -820621,7 +824042,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R055215", + "___id": "T000002R055219", "___s": true }, { @@ -820651,7 +824072,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R055216", + "___id": "T000002R055220", "___s": true }, { @@ -820681,7 +824102,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R055217", + "___id": "T000002R055221", "___s": true }, { @@ -820720,7 +824141,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R055218", + "___id": "T000002R055222", "___s": true }, { @@ -820752,7 +824173,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R055219", + "___id": "T000002R055223", "___s": true }, { @@ -820784,7 +824205,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R055220", + "___id": "T000002R055224", "___s": true }, { @@ -820814,7 +824235,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R055221", + "___id": "T000002R055225", "___s": true }, { @@ -820853,7 +824274,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R055222", + "___id": "T000002R055226", "___s": true }, { @@ -820883,7 +824304,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R055223", + "___id": "T000002R055227", "___s": true }, { @@ -820907,7 +824328,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R055224", + "___id": "T000002R055228", "___s": true }, { @@ -820928,7 +824349,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R055225", + "___id": "T000002R055229", "___s": true }, { @@ -820977,7 +824398,7 @@ "name": "height" } ], - "___id": "T000002R055226", + "___id": "T000002R055230", "___s": true }, { @@ -821057,7 +824478,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R055227", + "___id": "T000002R055231", "___s": true }, { @@ -821107,7 +824528,7 @@ "name": "name" } ], - "___id": "T000002R055228", + "___id": "T000002R055232", "___s": true }, { @@ -821158,7 +824579,7 @@ "name": "config" } ], - "___id": "T000002R055229", + "___id": "T000002R055233", "___s": true }, { @@ -821208,7 +824629,7 @@ "name": "texture" } ], - "___id": "T000002R055230", + "___id": "T000002R055234", "___s": true }, { @@ -821244,7 +824665,7 @@ "name": "texture" } ], - "___id": "T000002R055231", + "___id": "T000002R055235", "___s": true }, { @@ -821294,7 +824715,7 @@ "name": "texture" } ], - "___id": "T000002R055232", + "___id": "T000002R055236", "___s": true }, { @@ -821358,7 +824779,7 @@ "name": "frame" } ], - "___id": "T000002R055233", + "___id": "T000002R055237", "___s": true }, { @@ -821410,7 +824831,7 @@ "name": "amount" } ], - "___id": "T000002R055234", + "___id": "T000002R055238", "___s": true }, { @@ -821445,7 +824866,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R055235", + "___id": "T000002R055239", "___s": true }, { @@ -821512,7 +824933,7 @@ "name": "height" } ], - "___id": "T000002R055236", + "___id": "T000002R055240", "___s": true }, { @@ -821576,7 +824997,7 @@ "name": "height" } ], - "___id": "T000002R055237", + "___id": "T000002R055241", "___s": true }, { @@ -821614,7 +825035,7 @@ "name": "flipY" } ], - "___id": "T000002R055238", + "___id": "T000002R055242", "___s": true }, { @@ -821635,7 +825056,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R055239", + "___id": "T000002R055243", "___s": true }, { @@ -821690,7 +825111,7 @@ "name": "currentShader" } ], - "___id": "T000002R055240", + "___id": "T000002R055244", "___s": true }, { @@ -821745,7 +825166,7 @@ "name": "currentShader" } ], - "___id": "T000002R055241", + "___id": "T000002R055245", "___s": true }, { @@ -821766,7 +825187,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R055242", + "___id": "T000002R055246", "___s": true }, { @@ -821817,7 +825238,7 @@ "name": "buffer" } ], - "___id": "T000002R055243", + "___id": "T000002R055247", "___s": true }, { @@ -821879,7 +825300,7 @@ "name": "gameObject" } ], - "___id": "T000002R055244", + "___id": "T000002R055248", "___s": true }, { @@ -821929,7 +825350,7 @@ "name": "swapTarget" } ], - "___id": "T000002R055245", + "___id": "T000002R055249", "___s": true }, { @@ -821950,7 +825371,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R055246", + "___id": "T000002R055250", "___s": true }, { @@ -822007,7 +825428,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055247", + "___id": "T000002R055251", "___s": true }, { @@ -822043,7 +825464,7 @@ "name": "currentShader" } ], - "___id": "T000002R055248", + "___id": "T000002R055252", "___s": true }, { @@ -822080,7 +825501,7 @@ "name": "gameObject" } ], - "___id": "T000002R055249", + "___id": "T000002R055253", "___s": true }, { @@ -822101,7 +825522,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R055250", + "___id": "T000002R055254", "___s": true }, { @@ -822138,7 +825559,7 @@ "name": "gameObject" } ], - "___id": "T000002R055251", + "___id": "T000002R055255", "___s": true }, { @@ -822175,7 +825596,7 @@ "name": "gameObject" } ], - "___id": "T000002R055252", + "___id": "T000002R055256", "___s": true }, { @@ -822212,7 +825633,7 @@ "name": "gameObject" } ], - "___id": "T000002R055253", + "___id": "T000002R055257", "___s": true }, { @@ -822233,7 +825654,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R055254", + "___id": "T000002R055258", "___s": true }, { @@ -822282,7 +825703,7 @@ "name": "camera" } ], - "___id": "T000002R055255", + "___id": "T000002R055259", "___s": true }, { @@ -822303,7 +825724,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R055256", + "___id": "T000002R055260", "___s": true }, { @@ -822341,7 +825762,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055257", + "___id": "T000002R055261", "___s": true }, { @@ -822379,7 +825800,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055258", + "___id": "T000002R055262", "___s": true }, { @@ -822503,7 +825924,7 @@ "name": "tint" } ], - "___id": "T000002R055259", + "___id": "T000002R055263", "___s": true }, { @@ -822822,7 +826243,7 @@ "name": "unit" } ], - "___id": "T000002R055260", + "___id": "T000002R055264", "___s": true }, { @@ -823102,7 +826523,7 @@ "name": "unit" } ], - "___id": "T000002R055261", + "___id": "T000002R055265", "___s": true }, { @@ -823232,7 +826653,7 @@ "name": "flipUV" } ], - "___id": "T000002R055262", + "___id": "T000002R055266", "___s": true }, { @@ -823283,7 +826704,7 @@ "name": "texture" } ], - "___id": "T000002R055263", + "___id": "T000002R055267", "___s": true }, { @@ -823350,7 +826771,7 @@ "name": "unit" } ], - "___id": "T000002R055264", + "___id": "T000002R055268", "___s": true }, { @@ -823417,7 +826838,7 @@ "name": "unit" } ], - "___id": "T000002R055265", + "___id": "T000002R055269", "___s": true }, { @@ -823482,7 +826903,7 @@ "name": "shader" } ], - "___id": "T000002R055266", + "___id": "T000002R055270", "___s": true }, { @@ -823560,7 +826981,7 @@ "name": "shader" } ], - "___id": "T000002R055267", + "___id": "T000002R055271", "___s": true }, { @@ -823638,7 +827059,7 @@ "name": "shader" } ], - "___id": "T000002R055268", + "___id": "T000002R055272", "___s": true }, { @@ -823729,7 +827150,7 @@ "name": "shader" } ], - "___id": "T000002R055269", + "___id": "T000002R055273", "___s": true }, { @@ -823833,7 +827254,7 @@ "name": "shader" } ], - "___id": "T000002R055270", + "___id": "T000002R055274", "___s": true }, { @@ -823950,7 +827371,7 @@ "name": "shader" } ], - "___id": "T000002R055271", + "___id": "T000002R055275", "___s": true }, { @@ -824047,7 +827468,7 @@ "name": "shader" } ], - "___id": "T000002R055272", + "___id": "T000002R055276", "___s": true }, { @@ -824144,7 +827565,7 @@ "name": "shader" } ], - "___id": "T000002R055273", + "___id": "T000002R055277", "___s": true }, { @@ -824241,7 +827662,7 @@ "name": "shader" } ], - "___id": "T000002R055274", + "___id": "T000002R055278", "___s": true }, { @@ -824338,7 +827759,7 @@ "name": "shader" } ], - "___id": "T000002R055275", + "___id": "T000002R055279", "___s": true }, { @@ -824435,7 +827856,7 @@ "name": "shader" } ], - "___id": "T000002R055276", + "___id": "T000002R055280", "___s": true }, { @@ -824532,7 +827953,7 @@ "name": "shader" } ], - "___id": "T000002R055277", + "___id": "T000002R055281", "___s": true }, { @@ -824629,7 +828050,7 @@ "name": "shader" } ], - "___id": "T000002R055278", + "___id": "T000002R055282", "___s": true }, { @@ -824726,7 +828147,7 @@ "name": "shader" } ], - "___id": "T000002R055279", + "___id": "T000002R055283", "___s": true }, { @@ -824804,7 +828225,7 @@ "name": "shader" } ], - "___id": "T000002R055280", + "___id": "T000002R055284", "___s": true }, { @@ -824895,7 +828316,7 @@ "name": "shader" } ], - "___id": "T000002R055281", + "___id": "T000002R055285", "___s": true }, { @@ -824999,7 +828420,7 @@ "name": "shader" } ], - "___id": "T000002R055282", + "___id": "T000002R055286", "___s": true }, { @@ -825116,7 +828537,7 @@ "name": "shader" } ], - "___id": "T000002R055283", + "___id": "T000002R055287", "___s": true }, { @@ -825226,7 +828647,7 @@ "name": "shader" } ], - "___id": "T000002R055284", + "___id": "T000002R055288", "___s": true }, { @@ -825317,7 +828738,7 @@ "name": "shader" } ], - "___id": "T000002R055285", + "___id": "T000002R055289", "___s": true }, { @@ -825408,7 +828829,7 @@ "name": "shader" } ], - "___id": "T000002R055286", + "___id": "T000002R055290", "___s": true }, { @@ -825429,7 +828850,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R055287", + "___id": "T000002R055291", "___s": true }, { @@ -825481,7 +828902,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R055288", + "___id": "T000002R055292", "___s": true }, { @@ -825550,7 +828971,7 @@ "name": "event" } ], - "___id": "T000002R055289", + "___id": "T000002R055293", "___s": true }, { @@ -825610,7 +829031,7 @@ "name": "event" } ], - "___id": "T000002R055290", + "___id": "T000002R055294", "___s": true }, { @@ -825685,7 +829106,7 @@ "name": "args" } ], - "___id": "T000002R055291", + "___id": "T000002R055295", "___s": true }, { @@ -825773,7 +829194,7 @@ "name": "context" } ], - "___id": "T000002R055292", + "___id": "T000002R055296", "___s": true }, { @@ -825861,7 +829282,7 @@ "name": "context" } ], - "___id": "T000002R055293", + "___id": "T000002R055297", "___s": true }, { @@ -825949,7 +829370,7 @@ "name": "context" } ], - "___id": "T000002R055294", + "___id": "T000002R055298", "___s": true }, { @@ -826051,7 +829472,7 @@ "name": "once" } ], - "___id": "T000002R055295", + "___id": "T000002R055299", "___s": true }, { @@ -826153,7 +829574,7 @@ "name": "once" } ], - "___id": "T000002R055296", + "___id": "T000002R055300", "___s": true }, { @@ -826215,7 +829636,7 @@ "name": "event" } ], - "___id": "T000002R055297", + "___id": "T000002R055301", "___s": true }, { @@ -826255,7 +829676,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R055298", + "___id": "T000002R055302", "___s": true }, { @@ -826285,7 +829706,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R055299", + "___id": "T000002R055303", "___s": true }, { @@ -826315,7 +829736,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R055300", + "___id": "T000002R055304", "___s": true }, { @@ -826346,7 +829767,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R055301", + "___id": "T000002R055305", "___s": true }, { @@ -826377,7 +829798,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R055302", + "___id": "T000002R055306", "___s": true }, { @@ -826408,7 +829829,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R055303", + "___id": "T000002R055307", "___s": true }, { @@ -826439,7 +829860,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R055304", + "___id": "T000002R055308", "___s": true }, { @@ -826460,7 +829881,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R055305", + "___id": "T000002R055309", "___s": true }, { @@ -826522,7 +829943,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R055306", + "___id": "T000002R055310", "___s": true }, { @@ -826583,7 +830004,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R055307", + "___id": "T000002R055311", "___s": true }, { @@ -826632,7 +830053,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R055308", + "___id": "T000002R055312", "___s": true }, { @@ -826727,7 +830148,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R055309", + "___id": "T000002R055313", "___s": true }, { @@ -826763,7 +830184,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R055310", + "___id": "T000002R055314", "___s": true }, { @@ -826828,7 +830249,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R055311", + "___id": "T000002R055315", "___s": true }, { @@ -826921,7 +830342,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R055312", + "___id": "T000002R055316", "___s": true }, { @@ -827014,7 +830435,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R055313", + "___id": "T000002R055317", "___s": true }, { @@ -827065,7 +830486,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R055314", + "___id": "T000002R055318", "___s": true }, { @@ -827174,7 +830595,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R055315", + "___id": "T000002R055319", "___s": true }, { @@ -827305,7 +830726,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R055316", + "___id": "T000002R055320", "___s": true }, { @@ -827399,7 +830820,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R055317", + "___id": "T000002R055321", "___s": true }, { @@ -827435,7 +830856,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R055318", + "___id": "T000002R055322", "___s": true }, { @@ -827465,7 +830886,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R055319", + "___id": "T000002R055323", "___s": true }, { @@ -827495,7 +830916,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R055320", + "___id": "T000002R055324", "___s": true }, { @@ -827525,7 +830946,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R055321", + "___id": "T000002R055325", "___s": true }, { @@ -827557,7 +830978,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R055322", + "___id": "T000002R055326", "___s": true }, { @@ -827587,7 +831008,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R055323", + "___id": "T000002R055327", "___s": true }, { @@ -827617,7 +831038,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R055324", + "___id": "T000002R055328", "___s": true }, { @@ -827647,7 +831068,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R055325", + "___id": "T000002R055329", "___s": true }, { @@ -827677,7 +831098,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R055326", + "___id": "T000002R055330", "___s": true }, { @@ -827708,7 +831129,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R055327", + "___id": "T000002R055331", "___s": true }, { @@ -827738,7 +831159,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R055328", + "___id": "T000002R055332", "___s": true }, { @@ -827769,7 +831190,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R055329", + "___id": "T000002R055333", "___s": true }, { @@ -827800,7 +831221,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R055330", + "___id": "T000002R055334", "___s": true }, { @@ -827830,7 +831251,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R055331", + "___id": "T000002R055335", "___s": true }, { @@ -827860,7 +831281,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R055332", + "___id": "T000002R055336", "___s": true }, { @@ -827890,7 +831311,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R055333", + "___id": "T000002R055337", "___s": true }, { @@ -827920,7 +831341,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R055334", + "___id": "T000002R055338", "___s": true }, { @@ -827950,7 +831371,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R055335", + "___id": "T000002R055339", "___s": true }, { @@ -827980,7 +831401,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R055336", + "___id": "T000002R055340", "___s": true }, { @@ -828010,7 +831431,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R055337", + "___id": "T000002R055341", "___s": true }, { @@ -828041,7 +831462,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R055338", + "___id": "T000002R055342", "___s": true }, { @@ -828072,7 +831493,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R055339", + "___id": "T000002R055343", "___s": true }, { @@ -828103,7 +831524,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R055340", + "___id": "T000002R055344", "___s": true }, { @@ -828142,7 +831563,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R055341", + "___id": "T000002R055345", "___s": true }, { @@ -828172,7 +831593,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R055342", + "___id": "T000002R055346", "___s": true }, { @@ -828211,7 +831632,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R055343", + "___id": "T000002R055347", "___s": true }, { @@ -828241,7 +831662,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R055344", + "___id": "T000002R055348", "___s": true }, { @@ -828271,7 +831692,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R055345", + "___id": "T000002R055349", "___s": true }, { @@ -828301,7 +831722,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R055346", + "___id": "T000002R055350", "___s": true }, { @@ -828331,7 +831752,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R055347", + "___id": "T000002R055351", "___s": true }, { @@ -828361,7 +831782,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R055348", + "___id": "T000002R055352", "___s": true }, { @@ -828391,7 +831812,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R055349", + "___id": "T000002R055353", "___s": true }, { @@ -828430,7 +831851,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R055350", + "___id": "T000002R055354", "___s": true }, { @@ -828462,7 +831883,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R055351", + "___id": "T000002R055355", "___s": true }, { @@ -828494,7 +831915,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R055352", + "___id": "T000002R055356", "___s": true }, { @@ -828524,7 +831945,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R055353", + "___id": "T000002R055357", "___s": true }, { @@ -828563,7 +831984,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R055354", + "___id": "T000002R055358", "___s": true }, { @@ -828593,7 +832014,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R055355", + "___id": "T000002R055359", "___s": true }, { @@ -828617,7 +832038,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R055356", + "___id": "T000002R055360", "___s": true }, { @@ -828638,7 +832059,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R055357", + "___id": "T000002R055361", "___s": true }, { @@ -828687,7 +832108,7 @@ "name": "height" } ], - "___id": "T000002R055358", + "___id": "T000002R055362", "___s": true }, { @@ -828767,7 +832188,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R055359", + "___id": "T000002R055363", "___s": true }, { @@ -828817,7 +832238,7 @@ "name": "name" } ], - "___id": "T000002R055360", + "___id": "T000002R055364", "___s": true }, { @@ -828868,7 +832289,7 @@ "name": "config" } ], - "___id": "T000002R055361", + "___id": "T000002R055365", "___s": true }, { @@ -828918,7 +832339,7 @@ "name": "texture" } ], - "___id": "T000002R055362", + "___id": "T000002R055366", "___s": true }, { @@ -828954,7 +832375,7 @@ "name": "texture" } ], - "___id": "T000002R055363", + "___id": "T000002R055367", "___s": true }, { @@ -829004,7 +832425,7 @@ "name": "texture" } ], - "___id": "T000002R055364", + "___id": "T000002R055368", "___s": true }, { @@ -829068,7 +832489,7 @@ "name": "frame" } ], - "___id": "T000002R055365", + "___id": "T000002R055369", "___s": true }, { @@ -829120,7 +832541,7 @@ "name": "amount" } ], - "___id": "T000002R055366", + "___id": "T000002R055370", "___s": true }, { @@ -829155,7 +832576,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R055367", + "___id": "T000002R055371", "___s": true }, { @@ -829222,7 +832643,7 @@ "name": "height" } ], - "___id": "T000002R055368", + "___id": "T000002R055372", "___s": true }, { @@ -829286,7 +832707,7 @@ "name": "height" } ], - "___id": "T000002R055369", + "___id": "T000002R055373", "___s": true }, { @@ -829324,7 +832745,7 @@ "name": "flipY" } ], - "___id": "T000002R055370", + "___id": "T000002R055374", "___s": true }, { @@ -829345,7 +832766,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R055371", + "___id": "T000002R055375", "___s": true }, { @@ -829400,7 +832821,7 @@ "name": "currentShader" } ], - "___id": "T000002R055372", + "___id": "T000002R055376", "___s": true }, { @@ -829455,7 +832876,7 @@ "name": "currentShader" } ], - "___id": "T000002R055373", + "___id": "T000002R055377", "___s": true }, { @@ -829476,7 +832897,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R055374", + "___id": "T000002R055378", "___s": true }, { @@ -829527,7 +832948,7 @@ "name": "buffer" } ], - "___id": "T000002R055375", + "___id": "T000002R055379", "___s": true }, { @@ -829589,7 +833010,7 @@ "name": "gameObject" } ], - "___id": "T000002R055376", + "___id": "T000002R055380", "___s": true }, { @@ -829639,7 +833060,7 @@ "name": "swapTarget" } ], - "___id": "T000002R055377", + "___id": "T000002R055381", "___s": true }, { @@ -829660,7 +833081,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R055378", + "___id": "T000002R055382", "___s": true }, { @@ -829717,7 +833138,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055379", + "___id": "T000002R055383", "___s": true }, { @@ -829753,7 +833174,7 @@ "name": "currentShader" } ], - "___id": "T000002R055380", + "___id": "T000002R055384", "___s": true }, { @@ -829790,7 +833211,7 @@ "name": "gameObject" } ], - "___id": "T000002R055381", + "___id": "T000002R055385", "___s": true }, { @@ -829811,7 +833232,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R055382", + "___id": "T000002R055386", "___s": true }, { @@ -829848,7 +833269,7 @@ "name": "gameObject" } ], - "___id": "T000002R055383", + "___id": "T000002R055387", "___s": true }, { @@ -829885,7 +833306,7 @@ "name": "gameObject" } ], - "___id": "T000002R055384", + "___id": "T000002R055388", "___s": true }, { @@ -829922,7 +833343,7 @@ "name": "gameObject" } ], - "___id": "T000002R055385", + "___id": "T000002R055389", "___s": true }, { @@ -829943,7 +833364,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R055386", + "___id": "T000002R055390", "___s": true }, { @@ -829992,7 +833413,7 @@ "name": "camera" } ], - "___id": "T000002R055387", + "___id": "T000002R055391", "___s": true }, { @@ -830013,7 +833434,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R055388", + "___id": "T000002R055392", "___s": true }, { @@ -830051,7 +833472,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055389", + "___id": "T000002R055393", "___s": true }, { @@ -830089,7 +833510,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055390", + "___id": "T000002R055394", "___s": true }, { @@ -830213,7 +833634,7 @@ "name": "tint" } ], - "___id": "T000002R055391", + "___id": "T000002R055395", "___s": true }, { @@ -830532,7 +833953,7 @@ "name": "unit" } ], - "___id": "T000002R055392", + "___id": "T000002R055396", "___s": true }, { @@ -830812,7 +834233,7 @@ "name": "unit" } ], - "___id": "T000002R055393", + "___id": "T000002R055397", "___s": true }, { @@ -830942,7 +834363,7 @@ "name": "flipUV" } ], - "___id": "T000002R055394", + "___id": "T000002R055398", "___s": true }, { @@ -830993,7 +834414,7 @@ "name": "texture" } ], - "___id": "T000002R055395", + "___id": "T000002R055399", "___s": true }, { @@ -831060,7 +834481,7 @@ "name": "unit" } ], - "___id": "T000002R055396", + "___id": "T000002R055400", "___s": true }, { @@ -831127,7 +834548,7 @@ "name": "unit" } ], - "___id": "T000002R055397", + "___id": "T000002R055401", "___s": true }, { @@ -831192,7 +834613,7 @@ "name": "shader" } ], - "___id": "T000002R055398", + "___id": "T000002R055402", "___s": true }, { @@ -831270,7 +834691,7 @@ "name": "shader" } ], - "___id": "T000002R055399", + "___id": "T000002R055403", "___s": true }, { @@ -831348,7 +834769,7 @@ "name": "shader" } ], - "___id": "T000002R055400", + "___id": "T000002R055404", "___s": true }, { @@ -831439,7 +834860,7 @@ "name": "shader" } ], - "___id": "T000002R055401", + "___id": "T000002R055405", "___s": true }, { @@ -831543,7 +834964,7 @@ "name": "shader" } ], - "___id": "T000002R055402", + "___id": "T000002R055406", "___s": true }, { @@ -831660,7 +835081,7 @@ "name": "shader" } ], - "___id": "T000002R055403", + "___id": "T000002R055407", "___s": true }, { @@ -831757,7 +835178,7 @@ "name": "shader" } ], - "___id": "T000002R055404", + "___id": "T000002R055408", "___s": true }, { @@ -831854,7 +835275,7 @@ "name": "shader" } ], - "___id": "T000002R055405", + "___id": "T000002R055409", "___s": true }, { @@ -831951,7 +835372,7 @@ "name": "shader" } ], - "___id": "T000002R055406", + "___id": "T000002R055410", "___s": true }, { @@ -832048,7 +835469,7 @@ "name": "shader" } ], - "___id": "T000002R055407", + "___id": "T000002R055411", "___s": true }, { @@ -832145,7 +835566,7 @@ "name": "shader" } ], - "___id": "T000002R055408", + "___id": "T000002R055412", "___s": true }, { @@ -832242,7 +835663,7 @@ "name": "shader" } ], - "___id": "T000002R055409", + "___id": "T000002R055413", "___s": true }, { @@ -832339,7 +835760,7 @@ "name": "shader" } ], - "___id": "T000002R055410", + "___id": "T000002R055414", "___s": true }, { @@ -832436,7 +835857,7 @@ "name": "shader" } ], - "___id": "T000002R055411", + "___id": "T000002R055415", "___s": true }, { @@ -832514,7 +835935,7 @@ "name": "shader" } ], - "___id": "T000002R055412", + "___id": "T000002R055416", "___s": true }, { @@ -832605,7 +836026,7 @@ "name": "shader" } ], - "___id": "T000002R055413", + "___id": "T000002R055417", "___s": true }, { @@ -832709,7 +836130,7 @@ "name": "shader" } ], - "___id": "T000002R055414", + "___id": "T000002R055418", "___s": true }, { @@ -832826,7 +836247,7 @@ "name": "shader" } ], - "___id": "T000002R055415", + "___id": "T000002R055419", "___s": true }, { @@ -832936,7 +836357,7 @@ "name": "shader" } ], - "___id": "T000002R055416", + "___id": "T000002R055420", "___s": true }, { @@ -833027,7 +836448,7 @@ "name": "shader" } ], - "___id": "T000002R055417", + "___id": "T000002R055421", "___s": true }, { @@ -833118,7 +836539,7 @@ "name": "shader" } ], - "___id": "T000002R055418", + "___id": "T000002R055422", "___s": true }, { @@ -833139,7 +836560,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R055419", + "___id": "T000002R055423", "___s": true }, { @@ -833191,7 +836612,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R055420", + "___id": "T000002R055424", "___s": true }, { @@ -833260,7 +836681,7 @@ "name": "event" } ], - "___id": "T000002R055421", + "___id": "T000002R055425", "___s": true }, { @@ -833320,7 +836741,7 @@ "name": "event" } ], - "___id": "T000002R055422", + "___id": "T000002R055426", "___s": true }, { @@ -833395,7 +836816,7 @@ "name": "args" } ], - "___id": "T000002R055423", + "___id": "T000002R055427", "___s": true }, { @@ -833483,7 +836904,7 @@ "name": "context" } ], - "___id": "T000002R055424", + "___id": "T000002R055428", "___s": true }, { @@ -833571,7 +836992,7 @@ "name": "context" } ], - "___id": "T000002R055425", + "___id": "T000002R055429", "___s": true }, { @@ -833659,7 +837080,7 @@ "name": "context" } ], - "___id": "T000002R055426", + "___id": "T000002R055430", "___s": true }, { @@ -833761,7 +837182,7 @@ "name": "once" } ], - "___id": "T000002R055427", + "___id": "T000002R055431", "___s": true }, { @@ -833863,7 +837284,7 @@ "name": "once" } ], - "___id": "T000002R055428", + "___id": "T000002R055432", "___s": true }, { @@ -833925,7 +837346,7 @@ "name": "event" } ], - "___id": "T000002R055429", + "___id": "T000002R055433", "___s": true }, { @@ -833965,7 +837386,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R055430", + "___id": "T000002R055434", "___s": true }, { @@ -833995,7 +837416,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R055431", + "___id": "T000002R055435", "___s": true }, { @@ -834025,7 +837446,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R055432", + "___id": "T000002R055436", "___s": true }, { @@ -834056,7 +837477,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R055433", + "___id": "T000002R055437", "___s": true }, { @@ -834087,7 +837508,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R055434", + "___id": "T000002R055438", "___s": true }, { @@ -834118,7 +837539,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R055435", + "___id": "T000002R055439", "___s": true }, { @@ -834149,7 +837570,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R055436", + "___id": "T000002R055440", "___s": true }, { @@ -834170,7 +837591,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R055437", + "___id": "T000002R055441", "___s": true }, { @@ -834232,7 +837653,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R055438", + "___id": "T000002R055442", "___s": true }, { @@ -834293,7 +837714,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R055439", + "___id": "T000002R055443", "___s": true }, { @@ -834342,7 +837763,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R055440", + "___id": "T000002R055444", "___s": true }, { @@ -834437,7 +837858,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R055441", + "___id": "T000002R055445", "___s": true }, { @@ -834473,7 +837894,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R055442", + "___id": "T000002R055446", "___s": true }, { @@ -834538,7 +837959,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R055443", + "___id": "T000002R055447", "___s": true }, { @@ -834631,7 +838052,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R055444", + "___id": "T000002R055448", "___s": true }, { @@ -834724,7 +838145,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R055445", + "___id": "T000002R055449", "___s": true }, { @@ -834775,7 +838196,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R055446", + "___id": "T000002R055450", "___s": true }, { @@ -834884,7 +838305,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R055447", + "___id": "T000002R055451", "___s": true }, { @@ -835015,7 +838436,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R055448", + "___id": "T000002R055452", "___s": true }, { @@ -835109,7 +838530,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R055449", + "___id": "T000002R055453", "___s": true }, { @@ -835145,7 +838566,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R055450", + "___id": "T000002R055454", "___s": true }, { @@ -835175,7 +838596,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R055451", + "___id": "T000002R055455", "___s": true }, { @@ -835205,7 +838626,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R055452", + "___id": "T000002R055456", "___s": true }, { @@ -835235,7 +838656,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R055453", + "___id": "T000002R055457", "___s": true }, { @@ -835267,7 +838688,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R055454", + "___id": "T000002R055458", "___s": true }, { @@ -835297,7 +838718,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R055455", + "___id": "T000002R055459", "___s": true }, { @@ -835327,7 +838748,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R055456", + "___id": "T000002R055460", "___s": true }, { @@ -835357,7 +838778,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R055457", + "___id": "T000002R055461", "___s": true }, { @@ -835387,7 +838808,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R055458", + "___id": "T000002R055462", "___s": true }, { @@ -835418,7 +838839,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R055459", + "___id": "T000002R055463", "___s": true }, { @@ -835448,7 +838869,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R055460", + "___id": "T000002R055464", "___s": true }, { @@ -835479,7 +838900,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R055461", + "___id": "T000002R055465", "___s": true }, { @@ -835510,7 +838931,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R055462", + "___id": "T000002R055466", "___s": true }, { @@ -835540,7 +838961,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R055463", + "___id": "T000002R055467", "___s": true }, { @@ -835570,7 +838991,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R055464", + "___id": "T000002R055468", "___s": true }, { @@ -835600,7 +839021,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R055465", + "___id": "T000002R055469", "___s": true }, { @@ -835630,7 +839051,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R055466", + "___id": "T000002R055470", "___s": true }, { @@ -835660,7 +839081,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R055467", + "___id": "T000002R055471", "___s": true }, { @@ -835690,7 +839111,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R055468", + "___id": "T000002R055472", "___s": true }, { @@ -835720,7 +839141,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R055469", + "___id": "T000002R055473", "___s": true }, { @@ -835751,7 +839172,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R055470", + "___id": "T000002R055474", "___s": true }, { @@ -835782,7 +839203,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R055471", + "___id": "T000002R055475", "___s": true }, { @@ -835813,7 +839234,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R055472", + "___id": "T000002R055476", "___s": true }, { @@ -835852,7 +839273,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R055473", + "___id": "T000002R055477", "___s": true }, { @@ -835882,7 +839303,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R055474", + "___id": "T000002R055478", "___s": true }, { @@ -835921,7 +839342,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R055475", + "___id": "T000002R055479", "___s": true }, { @@ -835951,7 +839372,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R055476", + "___id": "T000002R055480", "___s": true }, { @@ -835981,7 +839402,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R055477", + "___id": "T000002R055481", "___s": true }, { @@ -836011,7 +839432,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R055478", + "___id": "T000002R055482", "___s": true }, { @@ -836041,7 +839462,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R055479", + "___id": "T000002R055483", "___s": true }, { @@ -836071,7 +839492,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R055480", + "___id": "T000002R055484", "___s": true }, { @@ -836101,7 +839522,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R055481", + "___id": "T000002R055485", "___s": true }, { @@ -836140,7 +839561,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R055482", + "___id": "T000002R055486", "___s": true }, { @@ -836172,7 +839593,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R055483", + "___id": "T000002R055487", "___s": true }, { @@ -836204,7 +839625,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R055484", + "___id": "T000002R055488", "___s": true }, { @@ -836234,7 +839655,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R055485", + "___id": "T000002R055489", "___s": true }, { @@ -836273,7 +839694,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R055486", + "___id": "T000002R055490", "___s": true }, { @@ -836303,7 +839724,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R055487", + "___id": "T000002R055491", "___s": true }, { @@ -836327,7 +839748,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R055488", + "___id": "T000002R055492", "___s": true }, { @@ -836348,7 +839769,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R055489", + "___id": "T000002R055493", "___s": true }, { @@ -836397,7 +839818,7 @@ "name": "height" } ], - "___id": "T000002R055490", + "___id": "T000002R055494", "___s": true }, { @@ -836477,7 +839898,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R055491", + "___id": "T000002R055495", "___s": true }, { @@ -836527,7 +839948,7 @@ "name": "name" } ], - "___id": "T000002R055492", + "___id": "T000002R055496", "___s": true }, { @@ -836578,7 +839999,7 @@ "name": "config" } ], - "___id": "T000002R055493", + "___id": "T000002R055497", "___s": true }, { @@ -836628,7 +840049,7 @@ "name": "texture" } ], - "___id": "T000002R055494", + "___id": "T000002R055498", "___s": true }, { @@ -836664,7 +840085,7 @@ "name": "texture" } ], - "___id": "T000002R055495", + "___id": "T000002R055499", "___s": true }, { @@ -836714,7 +840135,7 @@ "name": "texture" } ], - "___id": "T000002R055496", + "___id": "T000002R055500", "___s": true }, { @@ -836778,7 +840199,7 @@ "name": "frame" } ], - "___id": "T000002R055497", + "___id": "T000002R055501", "___s": true }, { @@ -836830,7 +840251,7 @@ "name": "amount" } ], - "___id": "T000002R055498", + "___id": "T000002R055502", "___s": true }, { @@ -836865,7 +840286,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R055499", + "___id": "T000002R055503", "___s": true }, { @@ -836932,7 +840353,7 @@ "name": "height" } ], - "___id": "T000002R055500", + "___id": "T000002R055504", "___s": true }, { @@ -836996,7 +840417,7 @@ "name": "height" } ], - "___id": "T000002R055501", + "___id": "T000002R055505", "___s": true }, { @@ -837034,7 +840455,7 @@ "name": "flipY" } ], - "___id": "T000002R055502", + "___id": "T000002R055506", "___s": true }, { @@ -837055,7 +840476,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R055503", + "___id": "T000002R055507", "___s": true }, { @@ -837110,7 +840531,7 @@ "name": "currentShader" } ], - "___id": "T000002R055504", + "___id": "T000002R055508", "___s": true }, { @@ -837165,7 +840586,7 @@ "name": "currentShader" } ], - "___id": "T000002R055505", + "___id": "T000002R055509", "___s": true }, { @@ -837186,7 +840607,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R055506", + "___id": "T000002R055510", "___s": true }, { @@ -837237,7 +840658,7 @@ "name": "buffer" } ], - "___id": "T000002R055507", + "___id": "T000002R055511", "___s": true }, { @@ -837299,7 +840720,7 @@ "name": "gameObject" } ], - "___id": "T000002R055508", + "___id": "T000002R055512", "___s": true }, { @@ -837349,7 +840770,7 @@ "name": "swapTarget" } ], - "___id": "T000002R055509", + "___id": "T000002R055513", "___s": true }, { @@ -837370,7 +840791,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R055510", + "___id": "T000002R055514", "___s": true }, { @@ -837427,7 +840848,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055511", + "___id": "T000002R055515", "___s": true }, { @@ -837463,7 +840884,7 @@ "name": "currentShader" } ], - "___id": "T000002R055512", + "___id": "T000002R055516", "___s": true }, { @@ -837500,7 +840921,7 @@ "name": "gameObject" } ], - "___id": "T000002R055513", + "___id": "T000002R055517", "___s": true }, { @@ -837521,7 +840942,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R055514", + "___id": "T000002R055518", "___s": true }, { @@ -837558,7 +840979,7 @@ "name": "gameObject" } ], - "___id": "T000002R055515", + "___id": "T000002R055519", "___s": true }, { @@ -837595,7 +841016,7 @@ "name": "gameObject" } ], - "___id": "T000002R055516", + "___id": "T000002R055520", "___s": true }, { @@ -837632,7 +841053,7 @@ "name": "gameObject" } ], - "___id": "T000002R055517", + "___id": "T000002R055521", "___s": true }, { @@ -837653,7 +841074,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R055518", + "___id": "T000002R055522", "___s": true }, { @@ -837702,7 +841123,7 @@ "name": "camera" } ], - "___id": "T000002R055519", + "___id": "T000002R055523", "___s": true }, { @@ -837723,7 +841144,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R055520", + "___id": "T000002R055524", "___s": true }, { @@ -837761,7 +841182,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055521", + "___id": "T000002R055525", "___s": true }, { @@ -837799,7 +841220,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055522", + "___id": "T000002R055526", "___s": true }, { @@ -837923,7 +841344,7 @@ "name": "tint" } ], - "___id": "T000002R055523", + "___id": "T000002R055527", "___s": true }, { @@ -838242,7 +841663,7 @@ "name": "unit" } ], - "___id": "T000002R055524", + "___id": "T000002R055528", "___s": true }, { @@ -838522,7 +841943,7 @@ "name": "unit" } ], - "___id": "T000002R055525", + "___id": "T000002R055529", "___s": true }, { @@ -838652,7 +842073,7 @@ "name": "flipUV" } ], - "___id": "T000002R055526", + "___id": "T000002R055530", "___s": true }, { @@ -838703,7 +842124,7 @@ "name": "texture" } ], - "___id": "T000002R055527", + "___id": "T000002R055531", "___s": true }, { @@ -838770,7 +842191,7 @@ "name": "unit" } ], - "___id": "T000002R055528", + "___id": "T000002R055532", "___s": true }, { @@ -838837,7 +842258,7 @@ "name": "unit" } ], - "___id": "T000002R055529", + "___id": "T000002R055533", "___s": true }, { @@ -838902,7 +842323,7 @@ "name": "shader" } ], - "___id": "T000002R055530", + "___id": "T000002R055534", "___s": true }, { @@ -838980,7 +842401,7 @@ "name": "shader" } ], - "___id": "T000002R055531", + "___id": "T000002R055535", "___s": true }, { @@ -839058,7 +842479,7 @@ "name": "shader" } ], - "___id": "T000002R055532", + "___id": "T000002R055536", "___s": true }, { @@ -839149,7 +842570,7 @@ "name": "shader" } ], - "___id": "T000002R055533", + "___id": "T000002R055537", "___s": true }, { @@ -839253,7 +842674,7 @@ "name": "shader" } ], - "___id": "T000002R055534", + "___id": "T000002R055538", "___s": true }, { @@ -839370,7 +842791,7 @@ "name": "shader" } ], - "___id": "T000002R055535", + "___id": "T000002R055539", "___s": true }, { @@ -839467,7 +842888,7 @@ "name": "shader" } ], - "___id": "T000002R055536", + "___id": "T000002R055540", "___s": true }, { @@ -839564,7 +842985,7 @@ "name": "shader" } ], - "___id": "T000002R055537", + "___id": "T000002R055541", "___s": true }, { @@ -839661,7 +843082,7 @@ "name": "shader" } ], - "___id": "T000002R055538", + "___id": "T000002R055542", "___s": true }, { @@ -839758,7 +843179,7 @@ "name": "shader" } ], - "___id": "T000002R055539", + "___id": "T000002R055543", "___s": true }, { @@ -839855,7 +843276,7 @@ "name": "shader" } ], - "___id": "T000002R055540", + "___id": "T000002R055544", "___s": true }, { @@ -839952,7 +843373,7 @@ "name": "shader" } ], - "___id": "T000002R055541", + "___id": "T000002R055545", "___s": true }, { @@ -840049,7 +843470,7 @@ "name": "shader" } ], - "___id": "T000002R055542", + "___id": "T000002R055546", "___s": true }, { @@ -840146,7 +843567,7 @@ "name": "shader" } ], - "___id": "T000002R055543", + "___id": "T000002R055547", "___s": true }, { @@ -840224,7 +843645,7 @@ "name": "shader" } ], - "___id": "T000002R055544", + "___id": "T000002R055548", "___s": true }, { @@ -840315,7 +843736,7 @@ "name": "shader" } ], - "___id": "T000002R055545", + "___id": "T000002R055549", "___s": true }, { @@ -840419,7 +843840,7 @@ "name": "shader" } ], - "___id": "T000002R055546", + "___id": "T000002R055550", "___s": true }, { @@ -840536,7 +843957,7 @@ "name": "shader" } ], - "___id": "T000002R055547", + "___id": "T000002R055551", "___s": true }, { @@ -840646,7 +844067,7 @@ "name": "shader" } ], - "___id": "T000002R055548", + "___id": "T000002R055552", "___s": true }, { @@ -840737,7 +844158,7 @@ "name": "shader" } ], - "___id": "T000002R055549", + "___id": "T000002R055553", "___s": true }, { @@ -840828,7 +844249,7 @@ "name": "shader" } ], - "___id": "T000002R055550", + "___id": "T000002R055554", "___s": true }, { @@ -840849,7 +844270,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R055551", + "___id": "T000002R055555", "___s": true }, { @@ -840901,7 +844322,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R055552", + "___id": "T000002R055556", "___s": true }, { @@ -840970,7 +844391,7 @@ "name": "event" } ], - "___id": "T000002R055553", + "___id": "T000002R055557", "___s": true }, { @@ -841030,7 +844451,7 @@ "name": "event" } ], - "___id": "T000002R055554", + "___id": "T000002R055558", "___s": true }, { @@ -841105,7 +844526,7 @@ "name": "args" } ], - "___id": "T000002R055555", + "___id": "T000002R055559", "___s": true }, { @@ -841193,7 +844614,7 @@ "name": "context" } ], - "___id": "T000002R055556", + "___id": "T000002R055560", "___s": true }, { @@ -841281,7 +844702,7 @@ "name": "context" } ], - "___id": "T000002R055557", + "___id": "T000002R055561", "___s": true }, { @@ -841369,7 +844790,7 @@ "name": "context" } ], - "___id": "T000002R055558", + "___id": "T000002R055562", "___s": true }, { @@ -841471,7 +844892,7 @@ "name": "once" } ], - "___id": "T000002R055559", + "___id": "T000002R055563", "___s": true }, { @@ -841573,7 +844994,7 @@ "name": "once" } ], - "___id": "T000002R055560", + "___id": "T000002R055564", "___s": true }, { @@ -841635,7 +845056,7 @@ "name": "event" } ], - "___id": "T000002R055561", + "___id": "T000002R055565", "___s": true }, { @@ -841675,7 +845096,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R055562", + "___id": "T000002R055566", "___s": true }, { @@ -841705,7 +845126,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R055563", + "___id": "T000002R055567", "___s": true }, { @@ -841735,7 +845156,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R055564", + "___id": "T000002R055568", "___s": true }, { @@ -841766,7 +845187,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R055565", + "___id": "T000002R055569", "___s": true }, { @@ -841797,7 +845218,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R055566", + "___id": "T000002R055570", "___s": true }, { @@ -841828,7 +845249,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R055567", + "___id": "T000002R055571", "___s": true }, { @@ -841859,7 +845280,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R055568", + "___id": "T000002R055572", "___s": true }, { @@ -841880,7 +845301,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R055569", + "___id": "T000002R055573", "___s": true }, { @@ -841942,7 +845363,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R055570", + "___id": "T000002R055574", "___s": true }, { @@ -842003,7 +845424,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R055571", + "___id": "T000002R055575", "___s": true }, { @@ -842052,7 +845473,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R055572", + "___id": "T000002R055576", "___s": true }, { @@ -842147,7 +845568,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R055573", + "___id": "T000002R055577", "___s": true }, { @@ -842183,7 +845604,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R055574", + "___id": "T000002R055578", "___s": true }, { @@ -842248,7 +845669,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R055575", + "___id": "T000002R055579", "___s": true }, { @@ -842341,7 +845762,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R055576", + "___id": "T000002R055580", "___s": true }, { @@ -842434,7 +845855,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R055577", + "___id": "T000002R055581", "___s": true }, { @@ -842485,7 +845906,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R055578", + "___id": "T000002R055582", "___s": true }, { @@ -842594,7 +846015,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R055579", + "___id": "T000002R055583", "___s": true }, { @@ -842725,7 +846146,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R055580", + "___id": "T000002R055584", "___s": true }, { @@ -842819,7 +846240,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R055581", + "___id": "T000002R055585", "___s": true }, { @@ -842855,7 +846276,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R055582", + "___id": "T000002R055586", "___s": true }, { @@ -842885,7 +846306,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R055583", + "___id": "T000002R055587", "___s": true }, { @@ -842915,7 +846336,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R055584", + "___id": "T000002R055588", "___s": true }, { @@ -842945,7 +846366,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R055585", + "___id": "T000002R055589", "___s": true }, { @@ -842977,7 +846398,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R055586", + "___id": "T000002R055590", "___s": true }, { @@ -843007,7 +846428,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R055587", + "___id": "T000002R055591", "___s": true }, { @@ -843037,7 +846458,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R055588", + "___id": "T000002R055592", "___s": true }, { @@ -843067,7 +846488,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R055589", + "___id": "T000002R055593", "___s": true }, { @@ -843097,7 +846518,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R055590", + "___id": "T000002R055594", "___s": true }, { @@ -843128,7 +846549,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R055591", + "___id": "T000002R055595", "___s": true }, { @@ -843158,7 +846579,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R055592", + "___id": "T000002R055596", "___s": true }, { @@ -843189,7 +846610,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R055593", + "___id": "T000002R055597", "___s": true }, { @@ -843220,7 +846641,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R055594", + "___id": "T000002R055598", "___s": true }, { @@ -843250,7 +846671,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R055595", + "___id": "T000002R055599", "___s": true }, { @@ -843280,7 +846701,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R055596", + "___id": "T000002R055600", "___s": true }, { @@ -843310,7 +846731,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R055597", + "___id": "T000002R055601", "___s": true }, { @@ -843340,7 +846761,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R055598", + "___id": "T000002R055602", "___s": true }, { @@ -843370,7 +846791,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R055599", + "___id": "T000002R055603", "___s": true }, { @@ -843400,7 +846821,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R055600", + "___id": "T000002R055604", "___s": true }, { @@ -843430,7 +846851,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R055601", + "___id": "T000002R055605", "___s": true }, { @@ -843461,7 +846882,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R055602", + "___id": "T000002R055606", "___s": true }, { @@ -843492,7 +846913,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R055603", + "___id": "T000002R055607", "___s": true }, { @@ -843523,7 +846944,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R055604", + "___id": "T000002R055608", "___s": true }, { @@ -843562,7 +846983,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R055605", + "___id": "T000002R055609", "___s": true }, { @@ -843592,7 +847013,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R055606", + "___id": "T000002R055610", "___s": true }, { @@ -843631,7 +847052,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R055607", + "___id": "T000002R055611", "___s": true }, { @@ -843661,7 +847082,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R055608", + "___id": "T000002R055612", "___s": true }, { @@ -843691,7 +847112,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R055609", + "___id": "T000002R055613", "___s": true }, { @@ -843721,7 +847142,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R055610", + "___id": "T000002R055614", "___s": true }, { @@ -843751,7 +847172,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R055611", + "___id": "T000002R055615", "___s": true }, { @@ -843781,7 +847202,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R055612", + "___id": "T000002R055616", "___s": true }, { @@ -843811,7 +847232,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R055613", + "___id": "T000002R055617", "___s": true }, { @@ -843850,7 +847271,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R055614", + "___id": "T000002R055618", "___s": true }, { @@ -843882,7 +847303,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R055615", + "___id": "T000002R055619", "___s": true }, { @@ -843914,7 +847335,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R055616", + "___id": "T000002R055620", "___s": true }, { @@ -843944,7 +847365,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R055617", + "___id": "T000002R055621", "___s": true }, { @@ -843983,7 +847404,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R055618", + "___id": "T000002R055622", "___s": true }, { @@ -844013,7 +847434,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R055619", + "___id": "T000002R055623", "___s": true }, { @@ -844037,7 +847458,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R055620", + "___id": "T000002R055624", "___s": true }, { @@ -844058,7 +847479,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R055621", + "___id": "T000002R055625", "___s": true }, { @@ -844107,7 +847528,7 @@ "name": "height" } ], - "___id": "T000002R055622", + "___id": "T000002R055626", "___s": true }, { @@ -844187,7 +847608,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R055623", + "___id": "T000002R055627", "___s": true }, { @@ -844237,7 +847658,7 @@ "name": "name" } ], - "___id": "T000002R055624", + "___id": "T000002R055628", "___s": true }, { @@ -844288,7 +847709,7 @@ "name": "config" } ], - "___id": "T000002R055625", + "___id": "T000002R055629", "___s": true }, { @@ -844338,7 +847759,7 @@ "name": "texture" } ], - "___id": "T000002R055626", + "___id": "T000002R055630", "___s": true }, { @@ -844374,7 +847795,7 @@ "name": "texture" } ], - "___id": "T000002R055627", + "___id": "T000002R055631", "___s": true }, { @@ -844424,7 +847845,7 @@ "name": "texture" } ], - "___id": "T000002R055628", + "___id": "T000002R055632", "___s": true }, { @@ -844488,7 +847909,7 @@ "name": "frame" } ], - "___id": "T000002R055629", + "___id": "T000002R055633", "___s": true }, { @@ -844540,7 +847961,7 @@ "name": "amount" } ], - "___id": "T000002R055630", + "___id": "T000002R055634", "___s": true }, { @@ -844575,7 +847996,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R055631", + "___id": "T000002R055635", "___s": true }, { @@ -844642,7 +848063,7 @@ "name": "height" } ], - "___id": "T000002R055632", + "___id": "T000002R055636", "___s": true }, { @@ -844706,7 +848127,7 @@ "name": "height" } ], - "___id": "T000002R055633", + "___id": "T000002R055637", "___s": true }, { @@ -844744,7 +848165,7 @@ "name": "flipY" } ], - "___id": "T000002R055634", + "___id": "T000002R055638", "___s": true }, { @@ -844765,7 +848186,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R055635", + "___id": "T000002R055639", "___s": true }, { @@ -844820,7 +848241,7 @@ "name": "currentShader" } ], - "___id": "T000002R055636", + "___id": "T000002R055640", "___s": true }, { @@ -844875,7 +848296,7 @@ "name": "currentShader" } ], - "___id": "T000002R055637", + "___id": "T000002R055641", "___s": true }, { @@ -844896,7 +848317,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R055638", + "___id": "T000002R055642", "___s": true }, { @@ -844947,7 +848368,7 @@ "name": "buffer" } ], - "___id": "T000002R055639", + "___id": "T000002R055643", "___s": true }, { @@ -845009,7 +848430,7 @@ "name": "gameObject" } ], - "___id": "T000002R055640", + "___id": "T000002R055644", "___s": true }, { @@ -845059,7 +848480,7 @@ "name": "swapTarget" } ], - "___id": "T000002R055641", + "___id": "T000002R055645", "___s": true }, { @@ -845080,7 +848501,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R055642", + "___id": "T000002R055646", "___s": true }, { @@ -845137,7 +848558,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055643", + "___id": "T000002R055647", "___s": true }, { @@ -845173,7 +848594,7 @@ "name": "currentShader" } ], - "___id": "T000002R055644", + "___id": "T000002R055648", "___s": true }, { @@ -845210,7 +848631,7 @@ "name": "gameObject" } ], - "___id": "T000002R055645", + "___id": "T000002R055649", "___s": true }, { @@ -845231,7 +848652,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R055646", + "___id": "T000002R055650", "___s": true }, { @@ -845268,7 +848689,7 @@ "name": "gameObject" } ], - "___id": "T000002R055647", + "___id": "T000002R055651", "___s": true }, { @@ -845305,7 +848726,7 @@ "name": "gameObject" } ], - "___id": "T000002R055648", + "___id": "T000002R055652", "___s": true }, { @@ -845342,7 +848763,7 @@ "name": "gameObject" } ], - "___id": "T000002R055649", + "___id": "T000002R055653", "___s": true }, { @@ -845363,7 +848784,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R055650", + "___id": "T000002R055654", "___s": true }, { @@ -845412,7 +848833,7 @@ "name": "camera" } ], - "___id": "T000002R055651", + "___id": "T000002R055655", "___s": true }, { @@ -845433,7 +848854,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R055652", + "___id": "T000002R055656", "___s": true }, { @@ -845471,7 +848892,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055653", + "___id": "T000002R055657", "___s": true }, { @@ -845509,7 +848930,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055654", + "___id": "T000002R055658", "___s": true }, { @@ -845633,7 +849054,7 @@ "name": "tint" } ], - "___id": "T000002R055655", + "___id": "T000002R055659", "___s": true }, { @@ -845952,7 +849373,7 @@ "name": "unit" } ], - "___id": "T000002R055656", + "___id": "T000002R055660", "___s": true }, { @@ -846232,7 +849653,7 @@ "name": "unit" } ], - "___id": "T000002R055657", + "___id": "T000002R055661", "___s": true }, { @@ -846362,7 +849783,7 @@ "name": "flipUV" } ], - "___id": "T000002R055658", + "___id": "T000002R055662", "___s": true }, { @@ -846413,7 +849834,7 @@ "name": "texture" } ], - "___id": "T000002R055659", + "___id": "T000002R055663", "___s": true }, { @@ -846480,7 +849901,7 @@ "name": "unit" } ], - "___id": "T000002R055660", + "___id": "T000002R055664", "___s": true }, { @@ -846547,7 +849968,7 @@ "name": "unit" } ], - "___id": "T000002R055661", + "___id": "T000002R055665", "___s": true }, { @@ -846612,7 +850033,7 @@ "name": "shader" } ], - "___id": "T000002R055662", + "___id": "T000002R055666", "___s": true }, { @@ -846690,7 +850111,7 @@ "name": "shader" } ], - "___id": "T000002R055663", + "___id": "T000002R055667", "___s": true }, { @@ -846768,7 +850189,7 @@ "name": "shader" } ], - "___id": "T000002R055664", + "___id": "T000002R055668", "___s": true }, { @@ -846859,7 +850280,7 @@ "name": "shader" } ], - "___id": "T000002R055665", + "___id": "T000002R055669", "___s": true }, { @@ -846963,7 +850384,7 @@ "name": "shader" } ], - "___id": "T000002R055666", + "___id": "T000002R055670", "___s": true }, { @@ -847080,7 +850501,7 @@ "name": "shader" } ], - "___id": "T000002R055667", + "___id": "T000002R055671", "___s": true }, { @@ -847177,7 +850598,7 @@ "name": "shader" } ], - "___id": "T000002R055668", + "___id": "T000002R055672", "___s": true }, { @@ -847274,7 +850695,7 @@ "name": "shader" } ], - "___id": "T000002R055669", + "___id": "T000002R055673", "___s": true }, { @@ -847371,7 +850792,7 @@ "name": "shader" } ], - "___id": "T000002R055670", + "___id": "T000002R055674", "___s": true }, { @@ -847468,7 +850889,7 @@ "name": "shader" } ], - "___id": "T000002R055671", + "___id": "T000002R055675", "___s": true }, { @@ -847565,7 +850986,7 @@ "name": "shader" } ], - "___id": "T000002R055672", + "___id": "T000002R055676", "___s": true }, { @@ -847662,7 +851083,7 @@ "name": "shader" } ], - "___id": "T000002R055673", + "___id": "T000002R055677", "___s": true }, { @@ -847759,7 +851180,7 @@ "name": "shader" } ], - "___id": "T000002R055674", + "___id": "T000002R055678", "___s": true }, { @@ -847856,7 +851277,7 @@ "name": "shader" } ], - "___id": "T000002R055675", + "___id": "T000002R055679", "___s": true }, { @@ -847934,7 +851355,7 @@ "name": "shader" } ], - "___id": "T000002R055676", + "___id": "T000002R055680", "___s": true }, { @@ -848025,7 +851446,7 @@ "name": "shader" } ], - "___id": "T000002R055677", + "___id": "T000002R055681", "___s": true }, { @@ -848129,7 +851550,7 @@ "name": "shader" } ], - "___id": "T000002R055678", + "___id": "T000002R055682", "___s": true }, { @@ -848246,7 +851667,7 @@ "name": "shader" } ], - "___id": "T000002R055679", + "___id": "T000002R055683", "___s": true }, { @@ -848356,7 +851777,7 @@ "name": "shader" } ], - "___id": "T000002R055680", + "___id": "T000002R055684", "___s": true }, { @@ -848447,7 +851868,7 @@ "name": "shader" } ], - "___id": "T000002R055681", + "___id": "T000002R055685", "___s": true }, { @@ -848538,7 +851959,7 @@ "name": "shader" } ], - "___id": "T000002R055682", + "___id": "T000002R055686", "___s": true }, { @@ -848559,7 +851980,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R055683", + "___id": "T000002R055687", "___s": true }, { @@ -848611,7 +852032,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R055684", + "___id": "T000002R055688", "___s": true }, { @@ -848680,7 +852101,7 @@ "name": "event" } ], - "___id": "T000002R055685", + "___id": "T000002R055689", "___s": true }, { @@ -848740,7 +852161,7 @@ "name": "event" } ], - "___id": "T000002R055686", + "___id": "T000002R055690", "___s": true }, { @@ -848815,7 +852236,7 @@ "name": "args" } ], - "___id": "T000002R055687", + "___id": "T000002R055691", "___s": true }, { @@ -848903,7 +852324,7 @@ "name": "context" } ], - "___id": "T000002R055688", + "___id": "T000002R055692", "___s": true }, { @@ -848991,7 +852412,7 @@ "name": "context" } ], - "___id": "T000002R055689", + "___id": "T000002R055693", "___s": true }, { @@ -849079,7 +852500,7 @@ "name": "context" } ], - "___id": "T000002R055690", + "___id": "T000002R055694", "___s": true }, { @@ -849181,7 +852602,7 @@ "name": "once" } ], - "___id": "T000002R055691", + "___id": "T000002R055695", "___s": true }, { @@ -849283,7 +852704,7 @@ "name": "once" } ], - "___id": "T000002R055692", + "___id": "T000002R055696", "___s": true }, { @@ -849345,7 +852766,7 @@ "name": "event" } ], - "___id": "T000002R055693", + "___id": "T000002R055697", "___s": true }, { @@ -849385,7 +852806,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R055694", + "___id": "T000002R055698", "___s": true }, { @@ -849415,7 +852836,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R055695", + "___id": "T000002R055699", "___s": true }, { @@ -849445,7 +852866,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R055696", + "___id": "T000002R055700", "___s": true }, { @@ -849476,7 +852897,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R055697", + "___id": "T000002R055701", "___s": true }, { @@ -849507,7 +852928,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R055698", + "___id": "T000002R055702", "___s": true }, { @@ -849538,7 +852959,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R055699", + "___id": "T000002R055703", "___s": true }, { @@ -849569,7 +852990,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R055700", + "___id": "T000002R055704", "___s": true }, { @@ -849590,7 +853011,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R055701", + "___id": "T000002R055705", "___s": true }, { @@ -849652,7 +853073,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R055702", + "___id": "T000002R055706", "___s": true }, { @@ -849713,7 +853134,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R055703", + "___id": "T000002R055707", "___s": true }, { @@ -849762,7 +853183,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R055704", + "___id": "T000002R055708", "___s": true }, { @@ -849857,7 +853278,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R055705", + "___id": "T000002R055709", "___s": true }, { @@ -849893,7 +853314,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R055706", + "___id": "T000002R055710", "___s": true }, { @@ -849958,7 +853379,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R055707", + "___id": "T000002R055711", "___s": true }, { @@ -850051,7 +853472,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R055708", + "___id": "T000002R055712", "___s": true }, { @@ -850144,7 +853565,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R055709", + "___id": "T000002R055713", "___s": true }, { @@ -850195,7 +853616,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R055710", + "___id": "T000002R055714", "___s": true }, { @@ -850304,7 +853725,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R055711", + "___id": "T000002R055715", "___s": true }, { @@ -850435,7 +853856,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R055712", + "___id": "T000002R055716", "___s": true }, { @@ -850529,7 +853950,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R055713", + "___id": "T000002R055717", "___s": true }, { @@ -850565,7 +853986,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R055714", + "___id": "T000002R055718", "___s": true }, { @@ -850595,7 +854016,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R055715", + "___id": "T000002R055719", "___s": true }, { @@ -850625,7 +854046,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R055716", + "___id": "T000002R055720", "___s": true }, { @@ -850655,7 +854076,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R055717", + "___id": "T000002R055721", "___s": true }, { @@ -850687,7 +854108,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R055718", + "___id": "T000002R055722", "___s": true }, { @@ -850717,7 +854138,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R055719", + "___id": "T000002R055723", "___s": true }, { @@ -850747,7 +854168,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R055720", + "___id": "T000002R055724", "___s": true }, { @@ -850777,7 +854198,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R055721", + "___id": "T000002R055725", "___s": true }, { @@ -850807,7 +854228,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R055722", + "___id": "T000002R055726", "___s": true }, { @@ -850838,7 +854259,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R055723", + "___id": "T000002R055727", "___s": true }, { @@ -850868,7 +854289,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R055724", + "___id": "T000002R055728", "___s": true }, { @@ -850899,7 +854320,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R055725", + "___id": "T000002R055729", "___s": true }, { @@ -850930,7 +854351,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R055726", + "___id": "T000002R055730", "___s": true }, { @@ -850960,7 +854381,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R055727", + "___id": "T000002R055731", "___s": true }, { @@ -850990,7 +854411,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R055728", + "___id": "T000002R055732", "___s": true }, { @@ -851020,7 +854441,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R055729", + "___id": "T000002R055733", "___s": true }, { @@ -851050,7 +854471,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R055730", + "___id": "T000002R055734", "___s": true }, { @@ -851080,7 +854501,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R055731", + "___id": "T000002R055735", "___s": true }, { @@ -851110,7 +854531,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R055732", + "___id": "T000002R055736", "___s": true }, { @@ -851140,7 +854561,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R055733", + "___id": "T000002R055737", "___s": true }, { @@ -851171,7 +854592,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R055734", + "___id": "T000002R055738", "___s": true }, { @@ -851202,7 +854623,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R055735", + "___id": "T000002R055739", "___s": true }, { @@ -851233,7 +854654,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R055736", + "___id": "T000002R055740", "___s": true }, { @@ -851272,7 +854693,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R055737", + "___id": "T000002R055741", "___s": true }, { @@ -851302,7 +854723,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R055738", + "___id": "T000002R055742", "___s": true }, { @@ -851341,7 +854762,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R055739", + "___id": "T000002R055743", "___s": true }, { @@ -851371,7 +854792,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R055740", + "___id": "T000002R055744", "___s": true }, { @@ -851401,7 +854822,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R055741", + "___id": "T000002R055745", "___s": true }, { @@ -851431,7 +854852,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R055742", + "___id": "T000002R055746", "___s": true }, { @@ -851461,7 +854882,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R055743", + "___id": "T000002R055747", "___s": true }, { @@ -851491,7 +854912,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R055744", + "___id": "T000002R055748", "___s": true }, { @@ -851521,7 +854942,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R055745", + "___id": "T000002R055749", "___s": true }, { @@ -851560,7 +854981,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R055746", + "___id": "T000002R055750", "___s": true }, { @@ -851592,7 +855013,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R055747", + "___id": "T000002R055751", "___s": true }, { @@ -851624,7 +855045,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R055748", + "___id": "T000002R055752", "___s": true }, { @@ -851654,7 +855075,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R055749", + "___id": "T000002R055753", "___s": true }, { @@ -851693,7 +855114,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R055750", + "___id": "T000002R055754", "___s": true }, { @@ -851723,7 +855144,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R055751", + "___id": "T000002R055755", "___s": true }, { @@ -851747,7 +855168,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R055752", + "___id": "T000002R055756", "___s": true }, { @@ -851768,7 +855189,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R055753", + "___id": "T000002R055757", "___s": true }, { @@ -851817,7 +855238,7 @@ "name": "height" } ], - "___id": "T000002R055754", + "___id": "T000002R055758", "___s": true }, { @@ -851897,7 +855318,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R055755", + "___id": "T000002R055759", "___s": true }, { @@ -851947,7 +855368,7 @@ "name": "name" } ], - "___id": "T000002R055756", + "___id": "T000002R055760", "___s": true }, { @@ -851998,7 +855419,7 @@ "name": "config" } ], - "___id": "T000002R055757", + "___id": "T000002R055761", "___s": true }, { @@ -852048,7 +855469,7 @@ "name": "texture" } ], - "___id": "T000002R055758", + "___id": "T000002R055762", "___s": true }, { @@ -852084,7 +855505,7 @@ "name": "texture" } ], - "___id": "T000002R055759", + "___id": "T000002R055763", "___s": true }, { @@ -852134,7 +855555,7 @@ "name": "texture" } ], - "___id": "T000002R055760", + "___id": "T000002R055764", "___s": true }, { @@ -852198,7 +855619,7 @@ "name": "frame" } ], - "___id": "T000002R055761", + "___id": "T000002R055765", "___s": true }, { @@ -852250,7 +855671,7 @@ "name": "amount" } ], - "___id": "T000002R055762", + "___id": "T000002R055766", "___s": true }, { @@ -852285,7 +855706,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R055763", + "___id": "T000002R055767", "___s": true }, { @@ -852352,7 +855773,7 @@ "name": "height" } ], - "___id": "T000002R055764", + "___id": "T000002R055768", "___s": true }, { @@ -852416,7 +855837,7 @@ "name": "height" } ], - "___id": "T000002R055765", + "___id": "T000002R055769", "___s": true }, { @@ -852454,7 +855875,7 @@ "name": "flipY" } ], - "___id": "T000002R055766", + "___id": "T000002R055770", "___s": true }, { @@ -852475,7 +855896,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R055767", + "___id": "T000002R055771", "___s": true }, { @@ -852530,7 +855951,7 @@ "name": "currentShader" } ], - "___id": "T000002R055768", + "___id": "T000002R055772", "___s": true }, { @@ -852585,7 +856006,7 @@ "name": "currentShader" } ], - "___id": "T000002R055769", + "___id": "T000002R055773", "___s": true }, { @@ -852606,7 +856027,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R055770", + "___id": "T000002R055774", "___s": true }, { @@ -852657,7 +856078,7 @@ "name": "buffer" } ], - "___id": "T000002R055771", + "___id": "T000002R055775", "___s": true }, { @@ -852719,7 +856140,7 @@ "name": "gameObject" } ], - "___id": "T000002R055772", + "___id": "T000002R055776", "___s": true }, { @@ -852769,7 +856190,7 @@ "name": "swapTarget" } ], - "___id": "T000002R055773", + "___id": "T000002R055777", "___s": true }, { @@ -852790,7 +856211,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R055774", + "___id": "T000002R055778", "___s": true }, { @@ -852847,7 +856268,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055775", + "___id": "T000002R055779", "___s": true }, { @@ -852883,7 +856304,7 @@ "name": "currentShader" } ], - "___id": "T000002R055776", + "___id": "T000002R055780", "___s": true }, { @@ -852920,7 +856341,7 @@ "name": "gameObject" } ], - "___id": "T000002R055777", + "___id": "T000002R055781", "___s": true }, { @@ -852941,7 +856362,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R055778", + "___id": "T000002R055782", "___s": true }, { @@ -852978,7 +856399,7 @@ "name": "gameObject" } ], - "___id": "T000002R055779", + "___id": "T000002R055783", "___s": true }, { @@ -853015,7 +856436,7 @@ "name": "gameObject" } ], - "___id": "T000002R055780", + "___id": "T000002R055784", "___s": true }, { @@ -853052,7 +856473,7 @@ "name": "gameObject" } ], - "___id": "T000002R055781", + "___id": "T000002R055785", "___s": true }, { @@ -853073,7 +856494,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R055782", + "___id": "T000002R055786", "___s": true }, { @@ -853122,7 +856543,7 @@ "name": "camera" } ], - "___id": "T000002R055783", + "___id": "T000002R055787", "___s": true }, { @@ -853143,7 +856564,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R055784", + "___id": "T000002R055788", "___s": true }, { @@ -853181,7 +856602,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055785", + "___id": "T000002R055789", "___s": true }, { @@ -853219,7 +856640,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055786", + "___id": "T000002R055790", "___s": true }, { @@ -853343,7 +856764,7 @@ "name": "tint" } ], - "___id": "T000002R055787", + "___id": "T000002R055791", "___s": true }, { @@ -853662,7 +857083,7 @@ "name": "unit" } ], - "___id": "T000002R055788", + "___id": "T000002R055792", "___s": true }, { @@ -853942,7 +857363,7 @@ "name": "unit" } ], - "___id": "T000002R055789", + "___id": "T000002R055793", "___s": true }, { @@ -854072,7 +857493,7 @@ "name": "flipUV" } ], - "___id": "T000002R055790", + "___id": "T000002R055794", "___s": true }, { @@ -854123,7 +857544,7 @@ "name": "texture" } ], - "___id": "T000002R055791", + "___id": "T000002R055795", "___s": true }, { @@ -854190,7 +857611,7 @@ "name": "unit" } ], - "___id": "T000002R055792", + "___id": "T000002R055796", "___s": true }, { @@ -854257,7 +857678,7 @@ "name": "unit" } ], - "___id": "T000002R055793", + "___id": "T000002R055797", "___s": true }, { @@ -854322,7 +857743,7 @@ "name": "shader" } ], - "___id": "T000002R055794", + "___id": "T000002R055798", "___s": true }, { @@ -854400,7 +857821,7 @@ "name": "shader" } ], - "___id": "T000002R055795", + "___id": "T000002R055799", "___s": true }, { @@ -854478,7 +857899,7 @@ "name": "shader" } ], - "___id": "T000002R055796", + "___id": "T000002R055800", "___s": true }, { @@ -854569,7 +857990,7 @@ "name": "shader" } ], - "___id": "T000002R055797", + "___id": "T000002R055801", "___s": true }, { @@ -854673,7 +858094,7 @@ "name": "shader" } ], - "___id": "T000002R055798", + "___id": "T000002R055802", "___s": true }, { @@ -854790,7 +858211,7 @@ "name": "shader" } ], - "___id": "T000002R055799", + "___id": "T000002R055803", "___s": true }, { @@ -854887,7 +858308,7 @@ "name": "shader" } ], - "___id": "T000002R055800", + "___id": "T000002R055804", "___s": true }, { @@ -854984,7 +858405,7 @@ "name": "shader" } ], - "___id": "T000002R055801", + "___id": "T000002R055805", "___s": true }, { @@ -855081,7 +858502,7 @@ "name": "shader" } ], - "___id": "T000002R055802", + "___id": "T000002R055806", "___s": true }, { @@ -855178,7 +858599,7 @@ "name": "shader" } ], - "___id": "T000002R055803", + "___id": "T000002R055807", "___s": true }, { @@ -855275,7 +858696,7 @@ "name": "shader" } ], - "___id": "T000002R055804", + "___id": "T000002R055808", "___s": true }, { @@ -855372,7 +858793,7 @@ "name": "shader" } ], - "___id": "T000002R055805", + "___id": "T000002R055809", "___s": true }, { @@ -855469,7 +858890,7 @@ "name": "shader" } ], - "___id": "T000002R055806", + "___id": "T000002R055810", "___s": true }, { @@ -855566,7 +858987,7 @@ "name": "shader" } ], - "___id": "T000002R055807", + "___id": "T000002R055811", "___s": true }, { @@ -855644,7 +859065,7 @@ "name": "shader" } ], - "___id": "T000002R055808", + "___id": "T000002R055812", "___s": true }, { @@ -855735,7 +859156,7 @@ "name": "shader" } ], - "___id": "T000002R055809", + "___id": "T000002R055813", "___s": true }, { @@ -855839,7 +859260,7 @@ "name": "shader" } ], - "___id": "T000002R055810", + "___id": "T000002R055814", "___s": true }, { @@ -855956,7 +859377,7 @@ "name": "shader" } ], - "___id": "T000002R055811", + "___id": "T000002R055815", "___s": true }, { @@ -856066,7 +859487,7 @@ "name": "shader" } ], - "___id": "T000002R055812", + "___id": "T000002R055816", "___s": true }, { @@ -856157,7 +859578,7 @@ "name": "shader" } ], - "___id": "T000002R055813", + "___id": "T000002R055817", "___s": true }, { @@ -856248,7 +859669,7 @@ "name": "shader" } ], - "___id": "T000002R055814", + "___id": "T000002R055818", "___s": true }, { @@ -856269,7 +859690,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R055815", + "___id": "T000002R055819", "___s": true }, { @@ -856321,7 +859742,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R055816", + "___id": "T000002R055820", "___s": true }, { @@ -856390,7 +859811,7 @@ "name": "event" } ], - "___id": "T000002R055817", + "___id": "T000002R055821", "___s": true }, { @@ -856450,7 +859871,7 @@ "name": "event" } ], - "___id": "T000002R055818", + "___id": "T000002R055822", "___s": true }, { @@ -856525,7 +859946,7 @@ "name": "args" } ], - "___id": "T000002R055819", + "___id": "T000002R055823", "___s": true }, { @@ -856613,7 +860034,7 @@ "name": "context" } ], - "___id": "T000002R055820", + "___id": "T000002R055824", "___s": true }, { @@ -856701,7 +860122,7 @@ "name": "context" } ], - "___id": "T000002R055821", + "___id": "T000002R055825", "___s": true }, { @@ -856789,7 +860210,7 @@ "name": "context" } ], - "___id": "T000002R055822", + "___id": "T000002R055826", "___s": true }, { @@ -856891,7 +860312,7 @@ "name": "once" } ], - "___id": "T000002R055823", + "___id": "T000002R055827", "___s": true }, { @@ -856993,7 +860414,7 @@ "name": "once" } ], - "___id": "T000002R055824", + "___id": "T000002R055828", "___s": true }, { @@ -857055,7 +860476,7 @@ "name": "event" } ], - "___id": "T000002R055825", + "___id": "T000002R055829", "___s": true }, { @@ -857095,7 +860516,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R055826", + "___id": "T000002R055830", "___s": true }, { @@ -857125,7 +860546,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R055827", + "___id": "T000002R055831", "___s": true }, { @@ -857155,7 +860576,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R055828", + "___id": "T000002R055832", "___s": true }, { @@ -857186,7 +860607,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R055829", + "___id": "T000002R055833", "___s": true }, { @@ -857217,7 +860638,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R055830", + "___id": "T000002R055834", "___s": true }, { @@ -857248,7 +860669,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R055831", + "___id": "T000002R055835", "___s": true }, { @@ -857279,7 +860700,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R055832", + "___id": "T000002R055836", "___s": true }, { @@ -857300,7 +860721,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R055833", + "___id": "T000002R055837", "___s": true }, { @@ -857362,7 +860783,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R055834", + "___id": "T000002R055838", "___s": true }, { @@ -857423,7 +860844,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R055835", + "___id": "T000002R055839", "___s": true }, { @@ -857472,7 +860893,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R055836", + "___id": "T000002R055840", "___s": true }, { @@ -857567,7 +860988,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R055837", + "___id": "T000002R055841", "___s": true }, { @@ -857603,7 +861024,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R055838", + "___id": "T000002R055842", "___s": true }, { @@ -857668,7 +861089,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R055839", + "___id": "T000002R055843", "___s": true }, { @@ -857761,7 +861182,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R055840", + "___id": "T000002R055844", "___s": true }, { @@ -857854,7 +861275,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R055841", + "___id": "T000002R055845", "___s": true }, { @@ -857905,7 +861326,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R055842", + "___id": "T000002R055846", "___s": true }, { @@ -858014,7 +861435,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R055843", + "___id": "T000002R055847", "___s": true }, { @@ -858145,7 +861566,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R055844", + "___id": "T000002R055848", "___s": true }, { @@ -858239,7 +861660,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R055845", + "___id": "T000002R055849", "___s": true }, { @@ -858275,7 +861696,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R055846", + "___id": "T000002R055850", "___s": true }, { @@ -858305,7 +861726,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R055847", + "___id": "T000002R055851", "___s": true }, { @@ -858335,7 +861756,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R055848", + "___id": "T000002R055852", "___s": true }, { @@ -858365,7 +861786,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R055849", + "___id": "T000002R055853", "___s": true }, { @@ -858397,7 +861818,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R055850", + "___id": "T000002R055854", "___s": true }, { @@ -858427,7 +861848,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R055851", + "___id": "T000002R055855", "___s": true }, { @@ -858457,7 +861878,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R055852", + "___id": "T000002R055856", "___s": true }, { @@ -858487,7 +861908,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R055853", + "___id": "T000002R055857", "___s": true }, { @@ -858517,7 +861938,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R055854", + "___id": "T000002R055858", "___s": true }, { @@ -858548,7 +861969,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R055855", + "___id": "T000002R055859", "___s": true }, { @@ -858578,7 +861999,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R055856", + "___id": "T000002R055860", "___s": true }, { @@ -858609,7 +862030,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R055857", + "___id": "T000002R055861", "___s": true }, { @@ -858640,7 +862061,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R055858", + "___id": "T000002R055862", "___s": true }, { @@ -858670,7 +862091,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R055859", + "___id": "T000002R055863", "___s": true }, { @@ -858700,7 +862121,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R055860", + "___id": "T000002R055864", "___s": true }, { @@ -858730,7 +862151,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R055861", + "___id": "T000002R055865", "___s": true }, { @@ -858760,7 +862181,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R055862", + "___id": "T000002R055866", "___s": true }, { @@ -858790,7 +862211,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R055863", + "___id": "T000002R055867", "___s": true }, { @@ -858820,7 +862241,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R055864", + "___id": "T000002R055868", "___s": true }, { @@ -858850,7 +862271,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R055865", + "___id": "T000002R055869", "___s": true }, { @@ -858881,7 +862302,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R055866", + "___id": "T000002R055870", "___s": true }, { @@ -858912,7 +862333,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R055867", + "___id": "T000002R055871", "___s": true }, { @@ -858943,7 +862364,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R055868", + "___id": "T000002R055872", "___s": true }, { @@ -858982,7 +862403,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R055869", + "___id": "T000002R055873", "___s": true }, { @@ -859012,7 +862433,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R055870", + "___id": "T000002R055874", "___s": true }, { @@ -859051,7 +862472,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R055871", + "___id": "T000002R055875", "___s": true }, { @@ -859081,7 +862502,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R055872", + "___id": "T000002R055876", "___s": true }, { @@ -859111,7 +862532,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R055873", + "___id": "T000002R055877", "___s": true }, { @@ -859141,7 +862562,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R055874", + "___id": "T000002R055878", "___s": true }, { @@ -859171,7 +862592,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R055875", + "___id": "T000002R055879", "___s": true }, { @@ -859201,7 +862622,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R055876", + "___id": "T000002R055880", "___s": true }, { @@ -859231,7 +862652,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R055877", + "___id": "T000002R055881", "___s": true }, { @@ -859270,7 +862691,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R055878", + "___id": "T000002R055882", "___s": true }, { @@ -859302,7 +862723,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R055879", + "___id": "T000002R055883", "___s": true }, { @@ -859334,7 +862755,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R055880", + "___id": "T000002R055884", "___s": true }, { @@ -859364,7 +862785,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R055881", + "___id": "T000002R055885", "___s": true }, { @@ -859403,7 +862824,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R055882", + "___id": "T000002R055886", "___s": true }, { @@ -859433,7 +862854,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R055883", + "___id": "T000002R055887", "___s": true }, { @@ -859457,7 +862878,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R055884", + "___id": "T000002R055888", "___s": true }, { @@ -859478,7 +862899,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R055885", + "___id": "T000002R055889", "___s": true }, { @@ -859527,7 +862948,7 @@ "name": "height" } ], - "___id": "T000002R055886", + "___id": "T000002R055890", "___s": true }, { @@ -859607,7 +863028,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R055887", + "___id": "T000002R055891", "___s": true }, { @@ -859657,7 +863078,7 @@ "name": "name" } ], - "___id": "T000002R055888", + "___id": "T000002R055892", "___s": true }, { @@ -859708,7 +863129,7 @@ "name": "config" } ], - "___id": "T000002R055889", + "___id": "T000002R055893", "___s": true }, { @@ -859758,7 +863179,7 @@ "name": "texture" } ], - "___id": "T000002R055890", + "___id": "T000002R055894", "___s": true }, { @@ -859794,7 +863215,7 @@ "name": "texture" } ], - "___id": "T000002R055891", + "___id": "T000002R055895", "___s": true }, { @@ -859844,7 +863265,7 @@ "name": "texture" } ], - "___id": "T000002R055892", + "___id": "T000002R055896", "___s": true }, { @@ -859908,7 +863329,7 @@ "name": "frame" } ], - "___id": "T000002R055893", + "___id": "T000002R055897", "___s": true }, { @@ -859960,7 +863381,7 @@ "name": "amount" } ], - "___id": "T000002R055894", + "___id": "T000002R055898", "___s": true }, { @@ -859995,7 +863416,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R055895", + "___id": "T000002R055899", "___s": true }, { @@ -860062,7 +863483,7 @@ "name": "height" } ], - "___id": "T000002R055896", + "___id": "T000002R055900", "___s": true }, { @@ -860126,7 +863547,7 @@ "name": "height" } ], - "___id": "T000002R055897", + "___id": "T000002R055901", "___s": true }, { @@ -860164,7 +863585,7 @@ "name": "flipY" } ], - "___id": "T000002R055898", + "___id": "T000002R055902", "___s": true }, { @@ -860185,7 +863606,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R055899", + "___id": "T000002R055903", "___s": true }, { @@ -860240,7 +863661,7 @@ "name": "currentShader" } ], - "___id": "T000002R055900", + "___id": "T000002R055904", "___s": true }, { @@ -860295,7 +863716,7 @@ "name": "currentShader" } ], - "___id": "T000002R055901", + "___id": "T000002R055905", "___s": true }, { @@ -860316,7 +863737,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R055902", + "___id": "T000002R055906", "___s": true }, { @@ -860367,7 +863788,7 @@ "name": "buffer" } ], - "___id": "T000002R055903", + "___id": "T000002R055907", "___s": true }, { @@ -860429,7 +863850,7 @@ "name": "gameObject" } ], - "___id": "T000002R055904", + "___id": "T000002R055908", "___s": true }, { @@ -860479,7 +863900,7 @@ "name": "swapTarget" } ], - "___id": "T000002R055905", + "___id": "T000002R055909", "___s": true }, { @@ -860500,7 +863921,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R055906", + "___id": "T000002R055910", "___s": true }, { @@ -860557,7 +863978,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055907", + "___id": "T000002R055911", "___s": true }, { @@ -860593,7 +864014,7 @@ "name": "currentShader" } ], - "___id": "T000002R055908", + "___id": "T000002R055912", "___s": true }, { @@ -860630,7 +864051,7 @@ "name": "gameObject" } ], - "___id": "T000002R055909", + "___id": "T000002R055913", "___s": true }, { @@ -860651,7 +864072,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R055910", + "___id": "T000002R055914", "___s": true }, { @@ -860688,7 +864109,7 @@ "name": "gameObject" } ], - "___id": "T000002R055911", + "___id": "T000002R055915", "___s": true }, { @@ -860725,7 +864146,7 @@ "name": "gameObject" } ], - "___id": "T000002R055912", + "___id": "T000002R055916", "___s": true }, { @@ -860762,7 +864183,7 @@ "name": "gameObject" } ], - "___id": "T000002R055913", + "___id": "T000002R055917", "___s": true }, { @@ -860783,7 +864204,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R055914", + "___id": "T000002R055918", "___s": true }, { @@ -860832,7 +864253,7 @@ "name": "camera" } ], - "___id": "T000002R055915", + "___id": "T000002R055919", "___s": true }, { @@ -860853,7 +864274,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R055916", + "___id": "T000002R055920", "___s": true }, { @@ -860891,7 +864312,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055917", + "___id": "T000002R055921", "___s": true }, { @@ -860929,7 +864350,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R055918", + "___id": "T000002R055922", "___s": true }, { @@ -861053,7 +864474,7 @@ "name": "tint" } ], - "___id": "T000002R055919", + "___id": "T000002R055923", "___s": true }, { @@ -861372,7 +864793,7 @@ "name": "unit" } ], - "___id": "T000002R055920", + "___id": "T000002R055924", "___s": true }, { @@ -861652,7 +865073,7 @@ "name": "unit" } ], - "___id": "T000002R055921", + "___id": "T000002R055925", "___s": true }, { @@ -861782,7 +865203,7 @@ "name": "flipUV" } ], - "___id": "T000002R055922", + "___id": "T000002R055926", "___s": true }, { @@ -861833,7 +865254,7 @@ "name": "texture" } ], - "___id": "T000002R055923", + "___id": "T000002R055927", "___s": true }, { @@ -861900,7 +865321,7 @@ "name": "unit" } ], - "___id": "T000002R055924", + "___id": "T000002R055928", "___s": true }, { @@ -861967,7 +865388,7 @@ "name": "unit" } ], - "___id": "T000002R055925", + "___id": "T000002R055929", "___s": true }, { @@ -862032,7 +865453,7 @@ "name": "shader" } ], - "___id": "T000002R055926", + "___id": "T000002R055930", "___s": true }, { @@ -862110,7 +865531,7 @@ "name": "shader" } ], - "___id": "T000002R055927", + "___id": "T000002R055931", "___s": true }, { @@ -862188,7 +865609,7 @@ "name": "shader" } ], - "___id": "T000002R055928", + "___id": "T000002R055932", "___s": true }, { @@ -862279,7 +865700,7 @@ "name": "shader" } ], - "___id": "T000002R055929", + "___id": "T000002R055933", "___s": true }, { @@ -862383,7 +865804,7 @@ "name": "shader" } ], - "___id": "T000002R055930", + "___id": "T000002R055934", "___s": true }, { @@ -862500,7 +865921,7 @@ "name": "shader" } ], - "___id": "T000002R055931", + "___id": "T000002R055935", "___s": true }, { @@ -862597,7 +866018,7 @@ "name": "shader" } ], - "___id": "T000002R055932", + "___id": "T000002R055936", "___s": true }, { @@ -862694,7 +866115,7 @@ "name": "shader" } ], - "___id": "T000002R055933", + "___id": "T000002R055937", "___s": true }, { @@ -862791,7 +866212,7 @@ "name": "shader" } ], - "___id": "T000002R055934", + "___id": "T000002R055938", "___s": true }, { @@ -862888,7 +866309,7 @@ "name": "shader" } ], - "___id": "T000002R055935", + "___id": "T000002R055939", "___s": true }, { @@ -862985,7 +866406,7 @@ "name": "shader" } ], - "___id": "T000002R055936", + "___id": "T000002R055940", "___s": true }, { @@ -863082,7 +866503,7 @@ "name": "shader" } ], - "___id": "T000002R055937", + "___id": "T000002R055941", "___s": true }, { @@ -863179,7 +866600,7 @@ "name": "shader" } ], - "___id": "T000002R055938", + "___id": "T000002R055942", "___s": true }, { @@ -863276,7 +866697,7 @@ "name": "shader" } ], - "___id": "T000002R055939", + "___id": "T000002R055943", "___s": true }, { @@ -863354,7 +866775,7 @@ "name": "shader" } ], - "___id": "T000002R055940", + "___id": "T000002R055944", "___s": true }, { @@ -863445,7 +866866,7 @@ "name": "shader" } ], - "___id": "T000002R055941", + "___id": "T000002R055945", "___s": true }, { @@ -863549,7 +866970,7 @@ "name": "shader" } ], - "___id": "T000002R055942", + "___id": "T000002R055946", "___s": true }, { @@ -863666,7 +867087,7 @@ "name": "shader" } ], - "___id": "T000002R055943", + "___id": "T000002R055947", "___s": true }, { @@ -863776,7 +867197,7 @@ "name": "shader" } ], - "___id": "T000002R055944", + "___id": "T000002R055948", "___s": true }, { @@ -863867,7 +867288,7 @@ "name": "shader" } ], - "___id": "T000002R055945", + "___id": "T000002R055949", "___s": true }, { @@ -863958,7 +867379,7 @@ "name": "shader" } ], - "___id": "T000002R055946", + "___id": "T000002R055950", "___s": true }, { @@ -863979,7 +867400,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R055947", + "___id": "T000002R055951", "___s": true }, { @@ -864031,7 +867452,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R055948", + "___id": "T000002R055952", "___s": true }, { @@ -864100,7 +867521,7 @@ "name": "event" } ], - "___id": "T000002R055949", + "___id": "T000002R055953", "___s": true }, { @@ -864160,7 +867581,7 @@ "name": "event" } ], - "___id": "T000002R055950", + "___id": "T000002R055954", "___s": true }, { @@ -864235,7 +867656,7 @@ "name": "args" } ], - "___id": "T000002R055951", + "___id": "T000002R055955", "___s": true }, { @@ -864323,7 +867744,7 @@ "name": "context" } ], - "___id": "T000002R055952", + "___id": "T000002R055956", "___s": true }, { @@ -864411,7 +867832,7 @@ "name": "context" } ], - "___id": "T000002R055953", + "___id": "T000002R055957", "___s": true }, { @@ -864499,7 +867920,7 @@ "name": "context" } ], - "___id": "T000002R055954", + "___id": "T000002R055958", "___s": true }, { @@ -864601,7 +868022,7 @@ "name": "once" } ], - "___id": "T000002R055955", + "___id": "T000002R055959", "___s": true }, { @@ -864703,7 +868124,7 @@ "name": "once" } ], - "___id": "T000002R055956", + "___id": "T000002R055960", "___s": true }, { @@ -864765,7 +868186,7 @@ "name": "event" } ], - "___id": "T000002R055957", + "___id": "T000002R055961", "___s": true }, { @@ -864805,7 +868226,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R055958", + "___id": "T000002R055962", "___s": true }, { @@ -864835,7 +868256,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R055959", + "___id": "T000002R055963", "___s": true }, { @@ -864865,7 +868286,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R055960", + "___id": "T000002R055964", "___s": true }, { @@ -864896,7 +868317,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R055961", + "___id": "T000002R055965", "___s": true }, { @@ -864927,7 +868348,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R055962", + "___id": "T000002R055966", "___s": true }, { @@ -864958,7 +868379,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R055963", + "___id": "T000002R055967", "___s": true }, { @@ -864989,7 +868410,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R055964", + "___id": "T000002R055968", "___s": true }, { @@ -865010,7 +868431,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R055965", + "___id": "T000002R055969", "___s": true }, { @@ -865072,7 +868493,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R055966", + "___id": "T000002R055970", "___s": true }, { @@ -865133,7 +868554,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R055967", + "___id": "T000002R055971", "___s": true }, { @@ -865182,7 +868603,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R055968", + "___id": "T000002R055972", "___s": true }, { @@ -865277,7 +868698,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R055969", + "___id": "T000002R055973", "___s": true }, { @@ -865313,7 +868734,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R055970", + "___id": "T000002R055974", "___s": true }, { @@ -865378,7 +868799,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R055971", + "___id": "T000002R055975", "___s": true }, { @@ -865471,7 +868892,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R055972", + "___id": "T000002R055976", "___s": true }, { @@ -865564,7 +868985,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R055973", + "___id": "T000002R055977", "___s": true }, { @@ -865615,7 +869036,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R055974", + "___id": "T000002R055978", "___s": true }, { @@ -865724,7 +869145,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R055975", + "___id": "T000002R055979", "___s": true }, { @@ -865855,7 +869276,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R055976", + "___id": "T000002R055980", "___s": true }, { @@ -865949,7 +869370,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R055977", + "___id": "T000002R055981", "___s": true }, { @@ -865985,7 +869406,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R055978", + "___id": "T000002R055982", "___s": true }, { @@ -866015,7 +869436,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R055979", + "___id": "T000002R055983", "___s": true }, { @@ -866045,7 +869466,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R055980", + "___id": "T000002R055984", "___s": true }, { @@ -866075,7 +869496,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R055981", + "___id": "T000002R055985", "___s": true }, { @@ -866107,7 +869528,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R055982", + "___id": "T000002R055986", "___s": true }, { @@ -866137,7 +869558,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R055983", + "___id": "T000002R055987", "___s": true }, { @@ -866167,7 +869588,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R055984", + "___id": "T000002R055988", "___s": true }, { @@ -866197,7 +869618,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R055985", + "___id": "T000002R055989", "___s": true }, { @@ -866227,7 +869648,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R055986", + "___id": "T000002R055990", "___s": true }, { @@ -866258,7 +869679,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R055987", + "___id": "T000002R055991", "___s": true }, { @@ -866288,7 +869709,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R055988", + "___id": "T000002R055992", "___s": true }, { @@ -866319,7 +869740,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R055989", + "___id": "T000002R055993", "___s": true }, { @@ -866350,7 +869771,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R055990", + "___id": "T000002R055994", "___s": true }, { @@ -866380,7 +869801,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R055991", + "___id": "T000002R055995", "___s": true }, { @@ -866410,7 +869831,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R055992", + "___id": "T000002R055996", "___s": true }, { @@ -866440,7 +869861,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R055993", + "___id": "T000002R055997", "___s": true }, { @@ -866470,7 +869891,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R055994", + "___id": "T000002R055998", "___s": true }, { @@ -866500,7 +869921,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R055995", + "___id": "T000002R055999", "___s": true }, { @@ -866530,7 +869951,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R055996", + "___id": "T000002R056000", "___s": true }, { @@ -866560,7 +869981,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R055997", + "___id": "T000002R056001", "___s": true }, { @@ -866591,7 +870012,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R055998", + "___id": "T000002R056002", "___s": true }, { @@ -866622,7 +870043,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R055999", + "___id": "T000002R056003", "___s": true }, { @@ -866653,7 +870074,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R056000", + "___id": "T000002R056004", "___s": true }, { @@ -866692,7 +870113,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R056001", + "___id": "T000002R056005", "___s": true }, { @@ -866722,7 +870143,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R056002", + "___id": "T000002R056006", "___s": true }, { @@ -866761,7 +870182,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R056003", + "___id": "T000002R056007", "___s": true }, { @@ -866791,7 +870212,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R056004", + "___id": "T000002R056008", "___s": true }, { @@ -866821,7 +870242,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R056005", + "___id": "T000002R056009", "___s": true }, { @@ -866851,7 +870272,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R056006", + "___id": "T000002R056010", "___s": true }, { @@ -866881,7 +870302,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R056007", + "___id": "T000002R056011", "___s": true }, { @@ -866911,7 +870332,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R056008", + "___id": "T000002R056012", "___s": true }, { @@ -866941,7 +870362,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R056009", + "___id": "T000002R056013", "___s": true }, { @@ -866980,7 +870401,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R056010", + "___id": "T000002R056014", "___s": true }, { @@ -867012,7 +870433,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R056011", + "___id": "T000002R056015", "___s": true }, { @@ -867044,7 +870465,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R056012", + "___id": "T000002R056016", "___s": true }, { @@ -867074,7 +870495,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R056013", + "___id": "T000002R056017", "___s": true }, { @@ -867113,7 +870534,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R056014", + "___id": "T000002R056018", "___s": true }, { @@ -867143,7 +870564,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R056015", + "___id": "T000002R056019", "___s": true }, { @@ -867167,7 +870588,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R056016", + "___id": "T000002R056020", "___s": true }, { @@ -867188,7 +870609,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R056017", + "___id": "T000002R056021", "___s": true }, { @@ -867237,7 +870658,7 @@ "name": "height" } ], - "___id": "T000002R056018", + "___id": "T000002R056022", "___s": true }, { @@ -867317,7 +870738,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R056019", + "___id": "T000002R056023", "___s": true }, { @@ -867367,7 +870788,7 @@ "name": "name" } ], - "___id": "T000002R056020", + "___id": "T000002R056024", "___s": true }, { @@ -867418,7 +870839,7 @@ "name": "config" } ], - "___id": "T000002R056021", + "___id": "T000002R056025", "___s": true }, { @@ -867468,7 +870889,7 @@ "name": "texture" } ], - "___id": "T000002R056022", + "___id": "T000002R056026", "___s": true }, { @@ -867504,7 +870925,7 @@ "name": "texture" } ], - "___id": "T000002R056023", + "___id": "T000002R056027", "___s": true }, { @@ -867554,7 +870975,7 @@ "name": "texture" } ], - "___id": "T000002R056024", + "___id": "T000002R056028", "___s": true }, { @@ -867618,7 +871039,7 @@ "name": "frame" } ], - "___id": "T000002R056025", + "___id": "T000002R056029", "___s": true }, { @@ -867670,7 +871091,7 @@ "name": "amount" } ], - "___id": "T000002R056026", + "___id": "T000002R056030", "___s": true }, { @@ -867705,7 +871126,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R056027", + "___id": "T000002R056031", "___s": true }, { @@ -867772,7 +871193,7 @@ "name": "height" } ], - "___id": "T000002R056028", + "___id": "T000002R056032", "___s": true }, { @@ -867836,7 +871257,7 @@ "name": "height" } ], - "___id": "T000002R056029", + "___id": "T000002R056033", "___s": true }, { @@ -867874,7 +871295,7 @@ "name": "flipY" } ], - "___id": "T000002R056030", + "___id": "T000002R056034", "___s": true }, { @@ -867895,7 +871316,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R056031", + "___id": "T000002R056035", "___s": true }, { @@ -867950,7 +871371,7 @@ "name": "currentShader" } ], - "___id": "T000002R056032", + "___id": "T000002R056036", "___s": true }, { @@ -868005,7 +871426,7 @@ "name": "currentShader" } ], - "___id": "T000002R056033", + "___id": "T000002R056037", "___s": true }, { @@ -868026,7 +871447,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R056034", + "___id": "T000002R056038", "___s": true }, { @@ -868077,7 +871498,7 @@ "name": "buffer" } ], - "___id": "T000002R056035", + "___id": "T000002R056039", "___s": true }, { @@ -868139,7 +871560,7 @@ "name": "gameObject" } ], - "___id": "T000002R056036", + "___id": "T000002R056040", "___s": true }, { @@ -868189,7 +871610,7 @@ "name": "swapTarget" } ], - "___id": "T000002R056037", + "___id": "T000002R056041", "___s": true }, { @@ -868210,7 +871631,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R056038", + "___id": "T000002R056042", "___s": true }, { @@ -868267,7 +871688,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056039", + "___id": "T000002R056043", "___s": true }, { @@ -868303,7 +871724,7 @@ "name": "currentShader" } ], - "___id": "T000002R056040", + "___id": "T000002R056044", "___s": true }, { @@ -868340,7 +871761,7 @@ "name": "gameObject" } ], - "___id": "T000002R056041", + "___id": "T000002R056045", "___s": true }, { @@ -868361,7 +871782,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R056042", + "___id": "T000002R056046", "___s": true }, { @@ -868398,7 +871819,7 @@ "name": "gameObject" } ], - "___id": "T000002R056043", + "___id": "T000002R056047", "___s": true }, { @@ -868435,7 +871856,7 @@ "name": "gameObject" } ], - "___id": "T000002R056044", + "___id": "T000002R056048", "___s": true }, { @@ -868472,7 +871893,7 @@ "name": "gameObject" } ], - "___id": "T000002R056045", + "___id": "T000002R056049", "___s": true }, { @@ -868493,7 +871914,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R056046", + "___id": "T000002R056050", "___s": true }, { @@ -868542,7 +871963,7 @@ "name": "camera" } ], - "___id": "T000002R056047", + "___id": "T000002R056051", "___s": true }, { @@ -868563,7 +871984,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R056048", + "___id": "T000002R056052", "___s": true }, { @@ -868601,7 +872022,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056049", + "___id": "T000002R056053", "___s": true }, { @@ -868639,7 +872060,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056050", + "___id": "T000002R056054", "___s": true }, { @@ -868763,7 +872184,7 @@ "name": "tint" } ], - "___id": "T000002R056051", + "___id": "T000002R056055", "___s": true }, { @@ -869082,7 +872503,7 @@ "name": "unit" } ], - "___id": "T000002R056052", + "___id": "T000002R056056", "___s": true }, { @@ -869362,7 +872783,7 @@ "name": "unit" } ], - "___id": "T000002R056053", + "___id": "T000002R056057", "___s": true }, { @@ -869492,7 +872913,7 @@ "name": "flipUV" } ], - "___id": "T000002R056054", + "___id": "T000002R056058", "___s": true }, { @@ -869543,7 +872964,7 @@ "name": "texture" } ], - "___id": "T000002R056055", + "___id": "T000002R056059", "___s": true }, { @@ -869610,7 +873031,7 @@ "name": "unit" } ], - "___id": "T000002R056056", + "___id": "T000002R056060", "___s": true }, { @@ -869677,7 +873098,7 @@ "name": "unit" } ], - "___id": "T000002R056057", + "___id": "T000002R056061", "___s": true }, { @@ -869742,7 +873163,7 @@ "name": "shader" } ], - "___id": "T000002R056058", + "___id": "T000002R056062", "___s": true }, { @@ -869820,7 +873241,7 @@ "name": "shader" } ], - "___id": "T000002R056059", + "___id": "T000002R056063", "___s": true }, { @@ -869898,7 +873319,7 @@ "name": "shader" } ], - "___id": "T000002R056060", + "___id": "T000002R056064", "___s": true }, { @@ -869989,7 +873410,7 @@ "name": "shader" } ], - "___id": "T000002R056061", + "___id": "T000002R056065", "___s": true }, { @@ -870093,7 +873514,7 @@ "name": "shader" } ], - "___id": "T000002R056062", + "___id": "T000002R056066", "___s": true }, { @@ -870210,7 +873631,7 @@ "name": "shader" } ], - "___id": "T000002R056063", + "___id": "T000002R056067", "___s": true }, { @@ -870307,7 +873728,7 @@ "name": "shader" } ], - "___id": "T000002R056064", + "___id": "T000002R056068", "___s": true }, { @@ -870404,7 +873825,7 @@ "name": "shader" } ], - "___id": "T000002R056065", + "___id": "T000002R056069", "___s": true }, { @@ -870501,7 +873922,7 @@ "name": "shader" } ], - "___id": "T000002R056066", + "___id": "T000002R056070", "___s": true }, { @@ -870598,7 +874019,7 @@ "name": "shader" } ], - "___id": "T000002R056067", + "___id": "T000002R056071", "___s": true }, { @@ -870695,7 +874116,7 @@ "name": "shader" } ], - "___id": "T000002R056068", + "___id": "T000002R056072", "___s": true }, { @@ -870792,7 +874213,7 @@ "name": "shader" } ], - "___id": "T000002R056069", + "___id": "T000002R056073", "___s": true }, { @@ -870889,7 +874310,7 @@ "name": "shader" } ], - "___id": "T000002R056070", + "___id": "T000002R056074", "___s": true }, { @@ -870986,7 +874407,7 @@ "name": "shader" } ], - "___id": "T000002R056071", + "___id": "T000002R056075", "___s": true }, { @@ -871064,7 +874485,7 @@ "name": "shader" } ], - "___id": "T000002R056072", + "___id": "T000002R056076", "___s": true }, { @@ -871155,7 +874576,7 @@ "name": "shader" } ], - "___id": "T000002R056073", + "___id": "T000002R056077", "___s": true }, { @@ -871259,7 +874680,7 @@ "name": "shader" } ], - "___id": "T000002R056074", + "___id": "T000002R056078", "___s": true }, { @@ -871376,7 +874797,7 @@ "name": "shader" } ], - "___id": "T000002R056075", + "___id": "T000002R056079", "___s": true }, { @@ -871486,7 +874907,7 @@ "name": "shader" } ], - "___id": "T000002R056076", + "___id": "T000002R056080", "___s": true }, { @@ -871577,7 +874998,7 @@ "name": "shader" } ], - "___id": "T000002R056077", + "___id": "T000002R056081", "___s": true }, { @@ -871668,7 +875089,7 @@ "name": "shader" } ], - "___id": "T000002R056078", + "___id": "T000002R056082", "___s": true }, { @@ -871689,7 +875110,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R056079", + "___id": "T000002R056083", "___s": true }, { @@ -871741,7 +875162,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R056080", + "___id": "T000002R056084", "___s": true }, { @@ -871810,7 +875231,7 @@ "name": "event" } ], - "___id": "T000002R056081", + "___id": "T000002R056085", "___s": true }, { @@ -871870,7 +875291,7 @@ "name": "event" } ], - "___id": "T000002R056082", + "___id": "T000002R056086", "___s": true }, { @@ -871945,7 +875366,7 @@ "name": "args" } ], - "___id": "T000002R056083", + "___id": "T000002R056087", "___s": true }, { @@ -872033,7 +875454,7 @@ "name": "context" } ], - "___id": "T000002R056084", + "___id": "T000002R056088", "___s": true }, { @@ -872121,7 +875542,7 @@ "name": "context" } ], - "___id": "T000002R056085", + "___id": "T000002R056089", "___s": true }, { @@ -872209,7 +875630,7 @@ "name": "context" } ], - "___id": "T000002R056086", + "___id": "T000002R056090", "___s": true }, { @@ -872311,7 +875732,7 @@ "name": "once" } ], - "___id": "T000002R056087", + "___id": "T000002R056091", "___s": true }, { @@ -872413,7 +875834,7 @@ "name": "once" } ], - "___id": "T000002R056088", + "___id": "T000002R056092", "___s": true }, { @@ -872475,7 +875896,7 @@ "name": "event" } ], - "___id": "T000002R056089", + "___id": "T000002R056093", "___s": true }, { @@ -872515,7 +875936,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R056090", + "___id": "T000002R056094", "___s": true }, { @@ -872545,7 +875966,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R056091", + "___id": "T000002R056095", "___s": true }, { @@ -872575,7 +875996,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R056092", + "___id": "T000002R056096", "___s": true }, { @@ -872606,7 +876027,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R056093", + "___id": "T000002R056097", "___s": true }, { @@ -872637,7 +876058,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R056094", + "___id": "T000002R056098", "___s": true }, { @@ -872668,7 +876089,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R056095", + "___id": "T000002R056099", "___s": true }, { @@ -872699,7 +876120,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R056096", + "___id": "T000002R056100", "___s": true }, { @@ -872720,7 +876141,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R056097", + "___id": "T000002R056101", "___s": true }, { @@ -872782,7 +876203,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R056098", + "___id": "T000002R056102", "___s": true }, { @@ -872843,7 +876264,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R056099", + "___id": "T000002R056103", "___s": true }, { @@ -872892,7 +876313,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R056100", + "___id": "T000002R056104", "___s": true }, { @@ -872987,7 +876408,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R056101", + "___id": "T000002R056105", "___s": true }, { @@ -873023,7 +876444,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R056102", + "___id": "T000002R056106", "___s": true }, { @@ -873088,7 +876509,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R056103", + "___id": "T000002R056107", "___s": true }, { @@ -873181,7 +876602,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R056104", + "___id": "T000002R056108", "___s": true }, { @@ -873274,7 +876695,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R056105", + "___id": "T000002R056109", "___s": true }, { @@ -873325,7 +876746,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R056106", + "___id": "T000002R056110", "___s": true }, { @@ -873434,7 +876855,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R056107", + "___id": "T000002R056111", "___s": true }, { @@ -873565,7 +876986,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R056108", + "___id": "T000002R056112", "___s": true }, { @@ -873659,7 +877080,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R056109", + "___id": "T000002R056113", "___s": true }, { @@ -873695,7 +877116,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R056110", + "___id": "T000002R056114", "___s": true }, { @@ -873725,7 +877146,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R056111", + "___id": "T000002R056115", "___s": true }, { @@ -873755,7 +877176,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R056112", + "___id": "T000002R056116", "___s": true }, { @@ -873785,7 +877206,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R056113", + "___id": "T000002R056117", "___s": true }, { @@ -873817,7 +877238,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R056114", + "___id": "T000002R056118", "___s": true }, { @@ -873847,7 +877268,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R056115", + "___id": "T000002R056119", "___s": true }, { @@ -873877,7 +877298,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R056116", + "___id": "T000002R056120", "___s": true }, { @@ -873907,7 +877328,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R056117", + "___id": "T000002R056121", "___s": true }, { @@ -873937,7 +877358,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R056118", + "___id": "T000002R056122", "___s": true }, { @@ -873968,7 +877389,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R056119", + "___id": "T000002R056123", "___s": true }, { @@ -873998,7 +877419,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R056120", + "___id": "T000002R056124", "___s": true }, { @@ -874029,7 +877450,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R056121", + "___id": "T000002R056125", "___s": true }, { @@ -874060,7 +877481,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R056122", + "___id": "T000002R056126", "___s": true }, { @@ -874090,7 +877511,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R056123", + "___id": "T000002R056127", "___s": true }, { @@ -874120,7 +877541,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R056124", + "___id": "T000002R056128", "___s": true }, { @@ -874150,7 +877571,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R056125", + "___id": "T000002R056129", "___s": true }, { @@ -874180,7 +877601,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R056126", + "___id": "T000002R056130", "___s": true }, { @@ -874210,7 +877631,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R056127", + "___id": "T000002R056131", "___s": true }, { @@ -874240,7 +877661,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R056128", + "___id": "T000002R056132", "___s": true }, { @@ -874270,7 +877691,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R056129", + "___id": "T000002R056133", "___s": true }, { @@ -874301,7 +877722,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R056130", + "___id": "T000002R056134", "___s": true }, { @@ -874332,7 +877753,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R056131", + "___id": "T000002R056135", "___s": true }, { @@ -874363,7 +877784,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R056132", + "___id": "T000002R056136", "___s": true }, { @@ -874402,7 +877823,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R056133", + "___id": "T000002R056137", "___s": true }, { @@ -874432,7 +877853,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R056134", + "___id": "T000002R056138", "___s": true }, { @@ -874471,7 +877892,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R056135", + "___id": "T000002R056139", "___s": true }, { @@ -874501,7 +877922,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R056136", + "___id": "T000002R056140", "___s": true }, { @@ -874531,7 +877952,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R056137", + "___id": "T000002R056141", "___s": true }, { @@ -874561,7 +877982,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R056138", + "___id": "T000002R056142", "___s": true }, { @@ -874591,7 +878012,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R056139", + "___id": "T000002R056143", "___s": true }, { @@ -874621,7 +878042,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R056140", + "___id": "T000002R056144", "___s": true }, { @@ -874651,7 +878072,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R056141", + "___id": "T000002R056145", "___s": true }, { @@ -874690,7 +878111,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R056142", + "___id": "T000002R056146", "___s": true }, { @@ -874722,7 +878143,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R056143", + "___id": "T000002R056147", "___s": true }, { @@ -874754,7 +878175,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R056144", + "___id": "T000002R056148", "___s": true }, { @@ -874784,7 +878205,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R056145", + "___id": "T000002R056149", "___s": true }, { @@ -874823,7 +878244,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R056146", + "___id": "T000002R056150", "___s": true }, { @@ -874853,7 +878274,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R056147", + "___id": "T000002R056151", "___s": true }, { @@ -874877,7 +878298,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R056148", + "___id": "T000002R056152", "___s": true }, { @@ -874898,7 +878319,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R056149", + "___id": "T000002R056153", "___s": true }, { @@ -874947,7 +878368,7 @@ "name": "height" } ], - "___id": "T000002R056150", + "___id": "T000002R056154", "___s": true }, { @@ -875027,7 +878448,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R056151", + "___id": "T000002R056155", "___s": true }, { @@ -875077,7 +878498,7 @@ "name": "name" } ], - "___id": "T000002R056152", + "___id": "T000002R056156", "___s": true }, { @@ -875128,7 +878549,7 @@ "name": "config" } ], - "___id": "T000002R056153", + "___id": "T000002R056157", "___s": true }, { @@ -875178,7 +878599,7 @@ "name": "texture" } ], - "___id": "T000002R056154", + "___id": "T000002R056158", "___s": true }, { @@ -875214,7 +878635,7 @@ "name": "texture" } ], - "___id": "T000002R056155", + "___id": "T000002R056159", "___s": true }, { @@ -875264,7 +878685,7 @@ "name": "texture" } ], - "___id": "T000002R056156", + "___id": "T000002R056160", "___s": true }, { @@ -875328,7 +878749,7 @@ "name": "frame" } ], - "___id": "T000002R056157", + "___id": "T000002R056161", "___s": true }, { @@ -875380,7 +878801,7 @@ "name": "amount" } ], - "___id": "T000002R056158", + "___id": "T000002R056162", "___s": true }, { @@ -875415,7 +878836,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R056159", + "___id": "T000002R056163", "___s": true }, { @@ -875482,7 +878903,7 @@ "name": "height" } ], - "___id": "T000002R056160", + "___id": "T000002R056164", "___s": true }, { @@ -875546,7 +878967,7 @@ "name": "height" } ], - "___id": "T000002R056161", + "___id": "T000002R056165", "___s": true }, { @@ -875584,7 +879005,7 @@ "name": "flipY" } ], - "___id": "T000002R056162", + "___id": "T000002R056166", "___s": true }, { @@ -875605,7 +879026,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R056163", + "___id": "T000002R056167", "___s": true }, { @@ -875660,7 +879081,7 @@ "name": "currentShader" } ], - "___id": "T000002R056164", + "___id": "T000002R056168", "___s": true }, { @@ -875715,7 +879136,7 @@ "name": "currentShader" } ], - "___id": "T000002R056165", + "___id": "T000002R056169", "___s": true }, { @@ -875736,7 +879157,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R056166", + "___id": "T000002R056170", "___s": true }, { @@ -875787,7 +879208,7 @@ "name": "buffer" } ], - "___id": "T000002R056167", + "___id": "T000002R056171", "___s": true }, { @@ -875849,7 +879270,7 @@ "name": "gameObject" } ], - "___id": "T000002R056168", + "___id": "T000002R056172", "___s": true }, { @@ -875899,7 +879320,7 @@ "name": "swapTarget" } ], - "___id": "T000002R056169", + "___id": "T000002R056173", "___s": true }, { @@ -875920,7 +879341,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R056170", + "___id": "T000002R056174", "___s": true }, { @@ -875977,7 +879398,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056171", + "___id": "T000002R056175", "___s": true }, { @@ -876013,7 +879434,7 @@ "name": "currentShader" } ], - "___id": "T000002R056172", + "___id": "T000002R056176", "___s": true }, { @@ -876050,7 +879471,7 @@ "name": "gameObject" } ], - "___id": "T000002R056173", + "___id": "T000002R056177", "___s": true }, { @@ -876071,7 +879492,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R056174", + "___id": "T000002R056178", "___s": true }, { @@ -876108,7 +879529,7 @@ "name": "gameObject" } ], - "___id": "T000002R056175", + "___id": "T000002R056179", "___s": true }, { @@ -876145,7 +879566,7 @@ "name": "gameObject" } ], - "___id": "T000002R056176", + "___id": "T000002R056180", "___s": true }, { @@ -876182,7 +879603,7 @@ "name": "gameObject" } ], - "___id": "T000002R056177", + "___id": "T000002R056181", "___s": true }, { @@ -876203,7 +879624,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R056178", + "___id": "T000002R056182", "___s": true }, { @@ -876252,7 +879673,7 @@ "name": "camera" } ], - "___id": "T000002R056179", + "___id": "T000002R056183", "___s": true }, { @@ -876273,7 +879694,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R056180", + "___id": "T000002R056184", "___s": true }, { @@ -876311,7 +879732,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056181", + "___id": "T000002R056185", "___s": true }, { @@ -876349,7 +879770,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056182", + "___id": "T000002R056186", "___s": true }, { @@ -876473,7 +879894,7 @@ "name": "tint" } ], - "___id": "T000002R056183", + "___id": "T000002R056187", "___s": true }, { @@ -876792,7 +880213,7 @@ "name": "unit" } ], - "___id": "T000002R056184", + "___id": "T000002R056188", "___s": true }, { @@ -877072,7 +880493,7 @@ "name": "unit" } ], - "___id": "T000002R056185", + "___id": "T000002R056189", "___s": true }, { @@ -877202,7 +880623,7 @@ "name": "flipUV" } ], - "___id": "T000002R056186", + "___id": "T000002R056190", "___s": true }, { @@ -877253,7 +880674,7 @@ "name": "texture" } ], - "___id": "T000002R056187", + "___id": "T000002R056191", "___s": true }, { @@ -877320,7 +880741,7 @@ "name": "unit" } ], - "___id": "T000002R056188", + "___id": "T000002R056192", "___s": true }, { @@ -877387,7 +880808,7 @@ "name": "unit" } ], - "___id": "T000002R056189", + "___id": "T000002R056193", "___s": true }, { @@ -877452,7 +880873,7 @@ "name": "shader" } ], - "___id": "T000002R056190", + "___id": "T000002R056194", "___s": true }, { @@ -877530,7 +880951,7 @@ "name": "shader" } ], - "___id": "T000002R056191", + "___id": "T000002R056195", "___s": true }, { @@ -877608,7 +881029,7 @@ "name": "shader" } ], - "___id": "T000002R056192", + "___id": "T000002R056196", "___s": true }, { @@ -877699,7 +881120,7 @@ "name": "shader" } ], - "___id": "T000002R056193", + "___id": "T000002R056197", "___s": true }, { @@ -877803,7 +881224,7 @@ "name": "shader" } ], - "___id": "T000002R056194", + "___id": "T000002R056198", "___s": true }, { @@ -877920,7 +881341,7 @@ "name": "shader" } ], - "___id": "T000002R056195", + "___id": "T000002R056199", "___s": true }, { @@ -878017,7 +881438,7 @@ "name": "shader" } ], - "___id": "T000002R056196", + "___id": "T000002R056200", "___s": true }, { @@ -878114,7 +881535,7 @@ "name": "shader" } ], - "___id": "T000002R056197", + "___id": "T000002R056201", "___s": true }, { @@ -878211,7 +881632,7 @@ "name": "shader" } ], - "___id": "T000002R056198", + "___id": "T000002R056202", "___s": true }, { @@ -878308,7 +881729,7 @@ "name": "shader" } ], - "___id": "T000002R056199", + "___id": "T000002R056203", "___s": true }, { @@ -878405,7 +881826,7 @@ "name": "shader" } ], - "___id": "T000002R056200", + "___id": "T000002R056204", "___s": true }, { @@ -878502,7 +881923,7 @@ "name": "shader" } ], - "___id": "T000002R056201", + "___id": "T000002R056205", "___s": true }, { @@ -878599,7 +882020,7 @@ "name": "shader" } ], - "___id": "T000002R056202", + "___id": "T000002R056206", "___s": true }, { @@ -878696,7 +882117,7 @@ "name": "shader" } ], - "___id": "T000002R056203", + "___id": "T000002R056207", "___s": true }, { @@ -878774,7 +882195,7 @@ "name": "shader" } ], - "___id": "T000002R056204", + "___id": "T000002R056208", "___s": true }, { @@ -878865,7 +882286,7 @@ "name": "shader" } ], - "___id": "T000002R056205", + "___id": "T000002R056209", "___s": true }, { @@ -878969,7 +882390,7 @@ "name": "shader" } ], - "___id": "T000002R056206", + "___id": "T000002R056210", "___s": true }, { @@ -879086,7 +882507,7 @@ "name": "shader" } ], - "___id": "T000002R056207", + "___id": "T000002R056211", "___s": true }, { @@ -879196,7 +882617,7 @@ "name": "shader" } ], - "___id": "T000002R056208", + "___id": "T000002R056212", "___s": true }, { @@ -879287,7 +882708,7 @@ "name": "shader" } ], - "___id": "T000002R056209", + "___id": "T000002R056213", "___s": true }, { @@ -879378,7 +882799,7 @@ "name": "shader" } ], - "___id": "T000002R056210", + "___id": "T000002R056214", "___s": true }, { @@ -879399,7 +882820,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R056211", + "___id": "T000002R056215", "___s": true }, { @@ -879451,7 +882872,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R056212", + "___id": "T000002R056216", "___s": true }, { @@ -879520,7 +882941,7 @@ "name": "event" } ], - "___id": "T000002R056213", + "___id": "T000002R056217", "___s": true }, { @@ -879580,7 +883001,7 @@ "name": "event" } ], - "___id": "T000002R056214", + "___id": "T000002R056218", "___s": true }, { @@ -879655,7 +883076,7 @@ "name": "args" } ], - "___id": "T000002R056215", + "___id": "T000002R056219", "___s": true }, { @@ -879743,7 +883164,7 @@ "name": "context" } ], - "___id": "T000002R056216", + "___id": "T000002R056220", "___s": true }, { @@ -879831,7 +883252,7 @@ "name": "context" } ], - "___id": "T000002R056217", + "___id": "T000002R056221", "___s": true }, { @@ -879919,7 +883340,7 @@ "name": "context" } ], - "___id": "T000002R056218", + "___id": "T000002R056222", "___s": true }, { @@ -880021,7 +883442,7 @@ "name": "once" } ], - "___id": "T000002R056219", + "___id": "T000002R056223", "___s": true }, { @@ -880123,7 +883544,7 @@ "name": "once" } ], - "___id": "T000002R056220", + "___id": "T000002R056224", "___s": true }, { @@ -880185,7 +883606,7 @@ "name": "event" } ], - "___id": "T000002R056221", + "___id": "T000002R056225", "___s": true }, { @@ -880225,7 +883646,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R056222", + "___id": "T000002R056226", "___s": true }, { @@ -880255,7 +883676,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R056223", + "___id": "T000002R056227", "___s": true }, { @@ -880285,7 +883706,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R056224", + "___id": "T000002R056228", "___s": true }, { @@ -880316,7 +883737,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R056225", + "___id": "T000002R056229", "___s": true }, { @@ -880347,7 +883768,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R056226", + "___id": "T000002R056230", "___s": true }, { @@ -880378,7 +883799,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R056227", + "___id": "T000002R056231", "___s": true }, { @@ -880409,7 +883830,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R056228", + "___id": "T000002R056232", "___s": true }, { @@ -880430,7 +883851,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R056229", + "___id": "T000002R056233", "___s": true }, { @@ -880492,7 +883913,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R056230", + "___id": "T000002R056234", "___s": true }, { @@ -880553,7 +883974,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R056231", + "___id": "T000002R056235", "___s": true }, { @@ -880602,7 +884023,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R056232", + "___id": "T000002R056236", "___s": true }, { @@ -880697,7 +884118,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R056233", + "___id": "T000002R056237", "___s": true }, { @@ -880733,7 +884154,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R056234", + "___id": "T000002R056238", "___s": true }, { @@ -880798,7 +884219,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R056235", + "___id": "T000002R056239", "___s": true }, { @@ -880891,7 +884312,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R056236", + "___id": "T000002R056240", "___s": true }, { @@ -880984,7 +884405,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R056237", + "___id": "T000002R056241", "___s": true }, { @@ -881035,7 +884456,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R056238", + "___id": "T000002R056242", "___s": true }, { @@ -881144,7 +884565,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R056239", + "___id": "T000002R056243", "___s": true }, { @@ -881275,7 +884696,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R056240", + "___id": "T000002R056244", "___s": true }, { @@ -881369,7 +884790,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R056241", + "___id": "T000002R056245", "___s": true }, { @@ -881405,7 +884826,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R056242", + "___id": "T000002R056246", "___s": true }, { @@ -881435,7 +884856,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R056243", + "___id": "T000002R056247", "___s": true }, { @@ -881465,7 +884886,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R056244", + "___id": "T000002R056248", "___s": true }, { @@ -881495,7 +884916,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R056245", + "___id": "T000002R056249", "___s": true }, { @@ -881527,7 +884948,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R056246", + "___id": "T000002R056250", "___s": true }, { @@ -881557,7 +884978,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R056247", + "___id": "T000002R056251", "___s": true }, { @@ -881587,7 +885008,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R056248", + "___id": "T000002R056252", "___s": true }, { @@ -881617,7 +885038,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R056249", + "___id": "T000002R056253", "___s": true }, { @@ -881647,7 +885068,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R056250", + "___id": "T000002R056254", "___s": true }, { @@ -881678,7 +885099,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R056251", + "___id": "T000002R056255", "___s": true }, { @@ -881708,7 +885129,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R056252", + "___id": "T000002R056256", "___s": true }, { @@ -881739,7 +885160,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R056253", + "___id": "T000002R056257", "___s": true }, { @@ -881770,7 +885191,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R056254", + "___id": "T000002R056258", "___s": true }, { @@ -881800,7 +885221,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R056255", + "___id": "T000002R056259", "___s": true }, { @@ -881830,7 +885251,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R056256", + "___id": "T000002R056260", "___s": true }, { @@ -881860,7 +885281,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R056257", + "___id": "T000002R056261", "___s": true }, { @@ -881890,7 +885311,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R056258", + "___id": "T000002R056262", "___s": true }, { @@ -881920,7 +885341,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R056259", + "___id": "T000002R056263", "___s": true }, { @@ -881950,7 +885371,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R056260", + "___id": "T000002R056264", "___s": true }, { @@ -881980,7 +885401,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R056261", + "___id": "T000002R056265", "___s": true }, { @@ -882011,7 +885432,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R056262", + "___id": "T000002R056266", "___s": true }, { @@ -882042,7 +885463,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R056263", + "___id": "T000002R056267", "___s": true }, { @@ -882073,7 +885494,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R056264", + "___id": "T000002R056268", "___s": true }, { @@ -882112,7 +885533,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R056265", + "___id": "T000002R056269", "___s": true }, { @@ -882142,7 +885563,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R056266", + "___id": "T000002R056270", "___s": true }, { @@ -882181,7 +885602,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R056267", + "___id": "T000002R056271", "___s": true }, { @@ -882211,7 +885632,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R056268", + "___id": "T000002R056272", "___s": true }, { @@ -882241,7 +885662,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R056269", + "___id": "T000002R056273", "___s": true }, { @@ -882271,7 +885692,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R056270", + "___id": "T000002R056274", "___s": true }, { @@ -882301,7 +885722,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R056271", + "___id": "T000002R056275", "___s": true }, { @@ -882331,7 +885752,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R056272", + "___id": "T000002R056276", "___s": true }, { @@ -882361,7 +885782,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R056273", + "___id": "T000002R056277", "___s": true }, { @@ -882400,7 +885821,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R056274", + "___id": "T000002R056278", "___s": true }, { @@ -882432,7 +885853,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R056275", + "___id": "T000002R056279", "___s": true }, { @@ -882464,7 +885885,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R056276", + "___id": "T000002R056280", "___s": true }, { @@ -882494,7 +885915,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R056277", + "___id": "T000002R056281", "___s": true }, { @@ -882533,7 +885954,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R056278", + "___id": "T000002R056282", "___s": true }, { @@ -882563,7 +885984,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R056279", + "___id": "T000002R056283", "___s": true }, { @@ -882587,7 +886008,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R056280", + "___id": "T000002R056284", "___s": true }, { @@ -882608,7 +886029,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R056281", + "___id": "T000002R056285", "___s": true }, { @@ -882657,7 +886078,7 @@ "name": "height" } ], - "___id": "T000002R056282", + "___id": "T000002R056286", "___s": true }, { @@ -882737,7 +886158,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R056283", + "___id": "T000002R056287", "___s": true }, { @@ -882787,7 +886208,7 @@ "name": "name" } ], - "___id": "T000002R056284", + "___id": "T000002R056288", "___s": true }, { @@ -882838,7 +886259,7 @@ "name": "config" } ], - "___id": "T000002R056285", + "___id": "T000002R056289", "___s": true }, { @@ -882888,7 +886309,7 @@ "name": "texture" } ], - "___id": "T000002R056286", + "___id": "T000002R056290", "___s": true }, { @@ -882924,7 +886345,7 @@ "name": "texture" } ], - "___id": "T000002R056287", + "___id": "T000002R056291", "___s": true }, { @@ -882974,7 +886395,7 @@ "name": "texture" } ], - "___id": "T000002R056288", + "___id": "T000002R056292", "___s": true }, { @@ -883038,7 +886459,7 @@ "name": "frame" } ], - "___id": "T000002R056289", + "___id": "T000002R056293", "___s": true }, { @@ -883090,7 +886511,7 @@ "name": "amount" } ], - "___id": "T000002R056290", + "___id": "T000002R056294", "___s": true }, { @@ -883125,7 +886546,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R056291", + "___id": "T000002R056295", "___s": true }, { @@ -883192,7 +886613,7 @@ "name": "height" } ], - "___id": "T000002R056292", + "___id": "T000002R056296", "___s": true }, { @@ -883256,7 +886677,7 @@ "name": "height" } ], - "___id": "T000002R056293", + "___id": "T000002R056297", "___s": true }, { @@ -883294,7 +886715,7 @@ "name": "flipY" } ], - "___id": "T000002R056294", + "___id": "T000002R056298", "___s": true }, { @@ -883315,7 +886736,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R056295", + "___id": "T000002R056299", "___s": true }, { @@ -883370,7 +886791,7 @@ "name": "currentShader" } ], - "___id": "T000002R056296", + "___id": "T000002R056300", "___s": true }, { @@ -883425,7 +886846,7 @@ "name": "currentShader" } ], - "___id": "T000002R056297", + "___id": "T000002R056301", "___s": true }, { @@ -883446,7 +886867,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R056298", + "___id": "T000002R056302", "___s": true }, { @@ -883497,7 +886918,7 @@ "name": "buffer" } ], - "___id": "T000002R056299", + "___id": "T000002R056303", "___s": true }, { @@ -883559,7 +886980,7 @@ "name": "gameObject" } ], - "___id": "T000002R056300", + "___id": "T000002R056304", "___s": true }, { @@ -883609,7 +887030,7 @@ "name": "swapTarget" } ], - "___id": "T000002R056301", + "___id": "T000002R056305", "___s": true }, { @@ -883630,7 +887051,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R056302", + "___id": "T000002R056306", "___s": true }, { @@ -883687,7 +887108,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056303", + "___id": "T000002R056307", "___s": true }, { @@ -883723,7 +887144,7 @@ "name": "currentShader" } ], - "___id": "T000002R056304", + "___id": "T000002R056308", "___s": true }, { @@ -883760,7 +887181,7 @@ "name": "gameObject" } ], - "___id": "T000002R056305", + "___id": "T000002R056309", "___s": true }, { @@ -883781,7 +887202,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R056306", + "___id": "T000002R056310", "___s": true }, { @@ -883818,7 +887239,7 @@ "name": "gameObject" } ], - "___id": "T000002R056307", + "___id": "T000002R056311", "___s": true }, { @@ -883855,7 +887276,7 @@ "name": "gameObject" } ], - "___id": "T000002R056308", + "___id": "T000002R056312", "___s": true }, { @@ -883892,7 +887313,7 @@ "name": "gameObject" } ], - "___id": "T000002R056309", + "___id": "T000002R056313", "___s": true }, { @@ -883913,7 +887334,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R056310", + "___id": "T000002R056314", "___s": true }, { @@ -883962,7 +887383,7 @@ "name": "camera" } ], - "___id": "T000002R056311", + "___id": "T000002R056315", "___s": true }, { @@ -883983,7 +887404,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R056312", + "___id": "T000002R056316", "___s": true }, { @@ -884021,7 +887442,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056313", + "___id": "T000002R056317", "___s": true }, { @@ -884059,7 +887480,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056314", + "___id": "T000002R056318", "___s": true }, { @@ -884183,7 +887604,7 @@ "name": "tint" } ], - "___id": "T000002R056315", + "___id": "T000002R056319", "___s": true }, { @@ -884502,7 +887923,7 @@ "name": "unit" } ], - "___id": "T000002R056316", + "___id": "T000002R056320", "___s": true }, { @@ -884782,7 +888203,7 @@ "name": "unit" } ], - "___id": "T000002R056317", + "___id": "T000002R056321", "___s": true }, { @@ -884912,7 +888333,7 @@ "name": "flipUV" } ], - "___id": "T000002R056318", + "___id": "T000002R056322", "___s": true }, { @@ -884963,7 +888384,7 @@ "name": "texture" } ], - "___id": "T000002R056319", + "___id": "T000002R056323", "___s": true }, { @@ -885030,7 +888451,7 @@ "name": "unit" } ], - "___id": "T000002R056320", + "___id": "T000002R056324", "___s": true }, { @@ -885097,7 +888518,7 @@ "name": "unit" } ], - "___id": "T000002R056321", + "___id": "T000002R056325", "___s": true }, { @@ -885162,7 +888583,7 @@ "name": "shader" } ], - "___id": "T000002R056322", + "___id": "T000002R056326", "___s": true }, { @@ -885240,7 +888661,7 @@ "name": "shader" } ], - "___id": "T000002R056323", + "___id": "T000002R056327", "___s": true }, { @@ -885318,7 +888739,7 @@ "name": "shader" } ], - "___id": "T000002R056324", + "___id": "T000002R056328", "___s": true }, { @@ -885409,7 +888830,7 @@ "name": "shader" } ], - "___id": "T000002R056325", + "___id": "T000002R056329", "___s": true }, { @@ -885513,7 +888934,7 @@ "name": "shader" } ], - "___id": "T000002R056326", + "___id": "T000002R056330", "___s": true }, { @@ -885630,7 +889051,7 @@ "name": "shader" } ], - "___id": "T000002R056327", + "___id": "T000002R056331", "___s": true }, { @@ -885727,7 +889148,7 @@ "name": "shader" } ], - "___id": "T000002R056328", + "___id": "T000002R056332", "___s": true }, { @@ -885824,7 +889245,7 @@ "name": "shader" } ], - "___id": "T000002R056329", + "___id": "T000002R056333", "___s": true }, { @@ -885921,7 +889342,7 @@ "name": "shader" } ], - "___id": "T000002R056330", + "___id": "T000002R056334", "___s": true }, { @@ -886018,7 +889439,7 @@ "name": "shader" } ], - "___id": "T000002R056331", + "___id": "T000002R056335", "___s": true }, { @@ -886115,7 +889536,7 @@ "name": "shader" } ], - "___id": "T000002R056332", + "___id": "T000002R056336", "___s": true }, { @@ -886212,7 +889633,7 @@ "name": "shader" } ], - "___id": "T000002R056333", + "___id": "T000002R056337", "___s": true }, { @@ -886309,7 +889730,7 @@ "name": "shader" } ], - "___id": "T000002R056334", + "___id": "T000002R056338", "___s": true }, { @@ -886406,7 +889827,7 @@ "name": "shader" } ], - "___id": "T000002R056335", + "___id": "T000002R056339", "___s": true }, { @@ -886484,7 +889905,7 @@ "name": "shader" } ], - "___id": "T000002R056336", + "___id": "T000002R056340", "___s": true }, { @@ -886575,7 +889996,7 @@ "name": "shader" } ], - "___id": "T000002R056337", + "___id": "T000002R056341", "___s": true }, { @@ -886679,7 +890100,7 @@ "name": "shader" } ], - "___id": "T000002R056338", + "___id": "T000002R056342", "___s": true }, { @@ -886796,7 +890217,7 @@ "name": "shader" } ], - "___id": "T000002R056339", + "___id": "T000002R056343", "___s": true }, { @@ -886906,7 +890327,7 @@ "name": "shader" } ], - "___id": "T000002R056340", + "___id": "T000002R056344", "___s": true }, { @@ -886997,7 +890418,7 @@ "name": "shader" } ], - "___id": "T000002R056341", + "___id": "T000002R056345", "___s": true }, { @@ -887088,7 +890509,7 @@ "name": "shader" } ], - "___id": "T000002R056342", + "___id": "T000002R056346", "___s": true }, { @@ -887109,7 +890530,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R056343", + "___id": "T000002R056347", "___s": true }, { @@ -887161,7 +890582,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R056344", + "___id": "T000002R056348", "___s": true }, { @@ -887230,7 +890651,7 @@ "name": "event" } ], - "___id": "T000002R056345", + "___id": "T000002R056349", "___s": true }, { @@ -887290,7 +890711,7 @@ "name": "event" } ], - "___id": "T000002R056346", + "___id": "T000002R056350", "___s": true }, { @@ -887365,7 +890786,7 @@ "name": "args" } ], - "___id": "T000002R056347", + "___id": "T000002R056351", "___s": true }, { @@ -887453,7 +890874,7 @@ "name": "context" } ], - "___id": "T000002R056348", + "___id": "T000002R056352", "___s": true }, { @@ -887541,7 +890962,7 @@ "name": "context" } ], - "___id": "T000002R056349", + "___id": "T000002R056353", "___s": true }, { @@ -887629,7 +891050,7 @@ "name": "context" } ], - "___id": "T000002R056350", + "___id": "T000002R056354", "___s": true }, { @@ -887731,7 +891152,7 @@ "name": "once" } ], - "___id": "T000002R056351", + "___id": "T000002R056355", "___s": true }, { @@ -887833,7 +891254,7 @@ "name": "once" } ], - "___id": "T000002R056352", + "___id": "T000002R056356", "___s": true }, { @@ -887895,7 +891316,7 @@ "name": "event" } ], - "___id": "T000002R056353", + "___id": "T000002R056357", "___s": true }, { @@ -887935,7 +891356,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R056354", + "___id": "T000002R056358", "___s": true }, { @@ -887965,7 +891386,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R056355", + "___id": "T000002R056359", "___s": true }, { @@ -887995,7 +891416,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R056356", + "___id": "T000002R056360", "___s": true }, { @@ -888026,7 +891447,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R056357", + "___id": "T000002R056361", "___s": true }, { @@ -888057,7 +891478,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R056358", + "___id": "T000002R056362", "___s": true }, { @@ -888088,7 +891509,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R056359", + "___id": "T000002R056363", "___s": true }, { @@ -888119,7 +891540,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R056360", + "___id": "T000002R056364", "___s": true }, { @@ -888140,7 +891561,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R056361", + "___id": "T000002R056365", "___s": true }, { @@ -888202,7 +891623,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R056362", + "___id": "T000002R056366", "___s": true }, { @@ -888263,7 +891684,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R056363", + "___id": "T000002R056367", "___s": true }, { @@ -888312,7 +891733,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R056364", + "___id": "T000002R056368", "___s": true }, { @@ -888407,7 +891828,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R056365", + "___id": "T000002R056369", "___s": true }, { @@ -888443,7 +891864,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R056366", + "___id": "T000002R056370", "___s": true }, { @@ -888508,7 +891929,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R056367", + "___id": "T000002R056371", "___s": true }, { @@ -888601,7 +892022,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R056368", + "___id": "T000002R056372", "___s": true }, { @@ -888694,7 +892115,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R056369", + "___id": "T000002R056373", "___s": true }, { @@ -888745,7 +892166,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R056370", + "___id": "T000002R056374", "___s": true }, { @@ -888854,7 +892275,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R056371", + "___id": "T000002R056375", "___s": true }, { @@ -888985,7 +892406,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R056372", + "___id": "T000002R056376", "___s": true }, { @@ -889079,7 +892500,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R056373", + "___id": "T000002R056377", "___s": true }, { @@ -889115,7 +892536,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R056374", + "___id": "T000002R056378", "___s": true }, { @@ -889145,7 +892566,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R056375", + "___id": "T000002R056379", "___s": true }, { @@ -889175,7 +892596,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R056376", + "___id": "T000002R056380", "___s": true }, { @@ -889205,7 +892626,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R056377", + "___id": "T000002R056381", "___s": true }, { @@ -889237,7 +892658,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R056378", + "___id": "T000002R056382", "___s": true }, { @@ -889267,7 +892688,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R056379", + "___id": "T000002R056383", "___s": true }, { @@ -889297,7 +892718,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R056380", + "___id": "T000002R056384", "___s": true }, { @@ -889327,7 +892748,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R056381", + "___id": "T000002R056385", "___s": true }, { @@ -889357,7 +892778,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R056382", + "___id": "T000002R056386", "___s": true }, { @@ -889388,7 +892809,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R056383", + "___id": "T000002R056387", "___s": true }, { @@ -889418,7 +892839,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R056384", + "___id": "T000002R056388", "___s": true }, { @@ -889449,7 +892870,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R056385", + "___id": "T000002R056389", "___s": true }, { @@ -889480,7 +892901,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R056386", + "___id": "T000002R056390", "___s": true }, { @@ -889510,7 +892931,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R056387", + "___id": "T000002R056391", "___s": true }, { @@ -889540,7 +892961,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R056388", + "___id": "T000002R056392", "___s": true }, { @@ -889570,7 +892991,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R056389", + "___id": "T000002R056393", "___s": true }, { @@ -889600,7 +893021,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R056390", + "___id": "T000002R056394", "___s": true }, { @@ -889630,7 +893051,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R056391", + "___id": "T000002R056395", "___s": true }, { @@ -889660,7 +893081,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R056392", + "___id": "T000002R056396", "___s": true }, { @@ -889690,7 +893111,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R056393", + "___id": "T000002R056397", "___s": true }, { @@ -889721,7 +893142,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R056394", + "___id": "T000002R056398", "___s": true }, { @@ -889752,7 +893173,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R056395", + "___id": "T000002R056399", "___s": true }, { @@ -889783,7 +893204,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R056396", + "___id": "T000002R056400", "___s": true }, { @@ -889822,7 +893243,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R056397", + "___id": "T000002R056401", "___s": true }, { @@ -889852,7 +893273,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R056398", + "___id": "T000002R056402", "___s": true }, { @@ -889891,7 +893312,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R056399", + "___id": "T000002R056403", "___s": true }, { @@ -889921,7 +893342,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R056400", + "___id": "T000002R056404", "___s": true }, { @@ -889951,7 +893372,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R056401", + "___id": "T000002R056405", "___s": true }, { @@ -889981,7 +893402,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R056402", + "___id": "T000002R056406", "___s": true }, { @@ -890011,7 +893432,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R056403", + "___id": "T000002R056407", "___s": true }, { @@ -890041,7 +893462,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R056404", + "___id": "T000002R056408", "___s": true }, { @@ -890071,7 +893492,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R056405", + "___id": "T000002R056409", "___s": true }, { @@ -890110,7 +893531,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R056406", + "___id": "T000002R056410", "___s": true }, { @@ -890142,7 +893563,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R056407", + "___id": "T000002R056411", "___s": true }, { @@ -890174,7 +893595,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R056408", + "___id": "T000002R056412", "___s": true }, { @@ -890204,7 +893625,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R056409", + "___id": "T000002R056413", "___s": true }, { @@ -890243,7 +893664,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R056410", + "___id": "T000002R056414", "___s": true }, { @@ -890273,7 +893694,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R056411", + "___id": "T000002R056415", "___s": true }, { @@ -890297,7 +893718,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R056412", + "___id": "T000002R056416", "___s": true }, { @@ -890318,7 +893739,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R056413", + "___id": "T000002R056417", "___s": true }, { @@ -890367,7 +893788,7 @@ "name": "height" } ], - "___id": "T000002R056414", + "___id": "T000002R056418", "___s": true }, { @@ -890447,7 +893868,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R056415", + "___id": "T000002R056419", "___s": true }, { @@ -890497,7 +893918,7 @@ "name": "name" } ], - "___id": "T000002R056416", + "___id": "T000002R056420", "___s": true }, { @@ -890548,7 +893969,7 @@ "name": "config" } ], - "___id": "T000002R056417", + "___id": "T000002R056421", "___s": true }, { @@ -890598,7 +894019,7 @@ "name": "texture" } ], - "___id": "T000002R056418", + "___id": "T000002R056422", "___s": true }, { @@ -890634,7 +894055,7 @@ "name": "texture" } ], - "___id": "T000002R056419", + "___id": "T000002R056423", "___s": true }, { @@ -890684,7 +894105,7 @@ "name": "texture" } ], - "___id": "T000002R056420", + "___id": "T000002R056424", "___s": true }, { @@ -890748,7 +894169,7 @@ "name": "frame" } ], - "___id": "T000002R056421", + "___id": "T000002R056425", "___s": true }, { @@ -890800,7 +894221,7 @@ "name": "amount" } ], - "___id": "T000002R056422", + "___id": "T000002R056426", "___s": true }, { @@ -890835,7 +894256,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R056423", + "___id": "T000002R056427", "___s": true }, { @@ -890902,7 +894323,7 @@ "name": "height" } ], - "___id": "T000002R056424", + "___id": "T000002R056428", "___s": true }, { @@ -890966,7 +894387,7 @@ "name": "height" } ], - "___id": "T000002R056425", + "___id": "T000002R056429", "___s": true }, { @@ -891004,7 +894425,7 @@ "name": "flipY" } ], - "___id": "T000002R056426", + "___id": "T000002R056430", "___s": true }, { @@ -891025,7 +894446,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R056427", + "___id": "T000002R056431", "___s": true }, { @@ -891080,7 +894501,7 @@ "name": "currentShader" } ], - "___id": "T000002R056428", + "___id": "T000002R056432", "___s": true }, { @@ -891135,7 +894556,7 @@ "name": "currentShader" } ], - "___id": "T000002R056429", + "___id": "T000002R056433", "___s": true }, { @@ -891156,7 +894577,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R056430", + "___id": "T000002R056434", "___s": true }, { @@ -891207,7 +894628,7 @@ "name": "buffer" } ], - "___id": "T000002R056431", + "___id": "T000002R056435", "___s": true }, { @@ -891269,7 +894690,7 @@ "name": "gameObject" } ], - "___id": "T000002R056432", + "___id": "T000002R056436", "___s": true }, { @@ -891319,7 +894740,7 @@ "name": "swapTarget" } ], - "___id": "T000002R056433", + "___id": "T000002R056437", "___s": true }, { @@ -891340,7 +894761,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R056434", + "___id": "T000002R056438", "___s": true }, { @@ -891397,7 +894818,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056435", + "___id": "T000002R056439", "___s": true }, { @@ -891433,7 +894854,7 @@ "name": "currentShader" } ], - "___id": "T000002R056436", + "___id": "T000002R056440", "___s": true }, { @@ -891470,7 +894891,7 @@ "name": "gameObject" } ], - "___id": "T000002R056437", + "___id": "T000002R056441", "___s": true }, { @@ -891491,7 +894912,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R056438", + "___id": "T000002R056442", "___s": true }, { @@ -891528,7 +894949,7 @@ "name": "gameObject" } ], - "___id": "T000002R056439", + "___id": "T000002R056443", "___s": true }, { @@ -891565,7 +894986,7 @@ "name": "gameObject" } ], - "___id": "T000002R056440", + "___id": "T000002R056444", "___s": true }, { @@ -891602,7 +895023,7 @@ "name": "gameObject" } ], - "___id": "T000002R056441", + "___id": "T000002R056445", "___s": true }, { @@ -891623,7 +895044,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R056442", + "___id": "T000002R056446", "___s": true }, { @@ -891672,7 +895093,7 @@ "name": "camera" } ], - "___id": "T000002R056443", + "___id": "T000002R056447", "___s": true }, { @@ -891693,7 +895114,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R056444", + "___id": "T000002R056448", "___s": true }, { @@ -891731,7 +895152,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056445", + "___id": "T000002R056449", "___s": true }, { @@ -891769,7 +895190,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056446", + "___id": "T000002R056450", "___s": true }, { @@ -891893,7 +895314,7 @@ "name": "tint" } ], - "___id": "T000002R056447", + "___id": "T000002R056451", "___s": true }, { @@ -892212,7 +895633,7 @@ "name": "unit" } ], - "___id": "T000002R056448", + "___id": "T000002R056452", "___s": true }, { @@ -892492,7 +895913,7 @@ "name": "unit" } ], - "___id": "T000002R056449", + "___id": "T000002R056453", "___s": true }, { @@ -892622,7 +896043,7 @@ "name": "flipUV" } ], - "___id": "T000002R056450", + "___id": "T000002R056454", "___s": true }, { @@ -892673,7 +896094,7 @@ "name": "texture" } ], - "___id": "T000002R056451", + "___id": "T000002R056455", "___s": true }, { @@ -892740,7 +896161,7 @@ "name": "unit" } ], - "___id": "T000002R056452", + "___id": "T000002R056456", "___s": true }, { @@ -892807,7 +896228,7 @@ "name": "unit" } ], - "___id": "T000002R056453", + "___id": "T000002R056457", "___s": true }, { @@ -892872,7 +896293,7 @@ "name": "shader" } ], - "___id": "T000002R056454", + "___id": "T000002R056458", "___s": true }, { @@ -892950,7 +896371,7 @@ "name": "shader" } ], - "___id": "T000002R056455", + "___id": "T000002R056459", "___s": true }, { @@ -893028,7 +896449,7 @@ "name": "shader" } ], - "___id": "T000002R056456", + "___id": "T000002R056460", "___s": true }, { @@ -893119,7 +896540,7 @@ "name": "shader" } ], - "___id": "T000002R056457", + "___id": "T000002R056461", "___s": true }, { @@ -893223,7 +896644,7 @@ "name": "shader" } ], - "___id": "T000002R056458", + "___id": "T000002R056462", "___s": true }, { @@ -893340,7 +896761,7 @@ "name": "shader" } ], - "___id": "T000002R056459", + "___id": "T000002R056463", "___s": true }, { @@ -893437,7 +896858,7 @@ "name": "shader" } ], - "___id": "T000002R056460", + "___id": "T000002R056464", "___s": true }, { @@ -893534,7 +896955,7 @@ "name": "shader" } ], - "___id": "T000002R056461", + "___id": "T000002R056465", "___s": true }, { @@ -893631,7 +897052,7 @@ "name": "shader" } ], - "___id": "T000002R056462", + "___id": "T000002R056466", "___s": true }, { @@ -893728,7 +897149,7 @@ "name": "shader" } ], - "___id": "T000002R056463", + "___id": "T000002R056467", "___s": true }, { @@ -893825,7 +897246,7 @@ "name": "shader" } ], - "___id": "T000002R056464", + "___id": "T000002R056468", "___s": true }, { @@ -893922,7 +897343,7 @@ "name": "shader" } ], - "___id": "T000002R056465", + "___id": "T000002R056469", "___s": true }, { @@ -894019,7 +897440,7 @@ "name": "shader" } ], - "___id": "T000002R056466", + "___id": "T000002R056470", "___s": true }, { @@ -894116,7 +897537,7 @@ "name": "shader" } ], - "___id": "T000002R056467", + "___id": "T000002R056471", "___s": true }, { @@ -894194,7 +897615,7 @@ "name": "shader" } ], - "___id": "T000002R056468", + "___id": "T000002R056472", "___s": true }, { @@ -894285,7 +897706,7 @@ "name": "shader" } ], - "___id": "T000002R056469", + "___id": "T000002R056473", "___s": true }, { @@ -894389,7 +897810,7 @@ "name": "shader" } ], - "___id": "T000002R056470", + "___id": "T000002R056474", "___s": true }, { @@ -894506,7 +897927,7 @@ "name": "shader" } ], - "___id": "T000002R056471", + "___id": "T000002R056475", "___s": true }, { @@ -894616,7 +898037,7 @@ "name": "shader" } ], - "___id": "T000002R056472", + "___id": "T000002R056476", "___s": true }, { @@ -894707,7 +898128,7 @@ "name": "shader" } ], - "___id": "T000002R056473", + "___id": "T000002R056477", "___s": true }, { @@ -894798,7 +898219,7 @@ "name": "shader" } ], - "___id": "T000002R056474", + "___id": "T000002R056478", "___s": true }, { @@ -894819,7 +898240,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R056475", + "___id": "T000002R056479", "___s": true }, { @@ -894871,7 +898292,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R056476", + "___id": "T000002R056480", "___s": true }, { @@ -894940,7 +898361,7 @@ "name": "event" } ], - "___id": "T000002R056477", + "___id": "T000002R056481", "___s": true }, { @@ -895000,7 +898421,7 @@ "name": "event" } ], - "___id": "T000002R056478", + "___id": "T000002R056482", "___s": true }, { @@ -895075,7 +898496,7 @@ "name": "args" } ], - "___id": "T000002R056479", + "___id": "T000002R056483", "___s": true }, { @@ -895163,7 +898584,7 @@ "name": "context" } ], - "___id": "T000002R056480", + "___id": "T000002R056484", "___s": true }, { @@ -895251,7 +898672,7 @@ "name": "context" } ], - "___id": "T000002R056481", + "___id": "T000002R056485", "___s": true }, { @@ -895339,7 +898760,7 @@ "name": "context" } ], - "___id": "T000002R056482", + "___id": "T000002R056486", "___s": true }, { @@ -895441,7 +898862,7 @@ "name": "once" } ], - "___id": "T000002R056483", + "___id": "T000002R056487", "___s": true }, { @@ -895543,7 +898964,7 @@ "name": "once" } ], - "___id": "T000002R056484", + "___id": "T000002R056488", "___s": true }, { @@ -895605,7 +899026,7 @@ "name": "event" } ], - "___id": "T000002R056485", + "___id": "T000002R056489", "___s": true }, { @@ -895645,7 +899066,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R056486", + "___id": "T000002R056490", "___s": true }, { @@ -895675,7 +899096,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R056487", + "___id": "T000002R056491", "___s": true }, { @@ -895705,7 +899126,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R056488", + "___id": "T000002R056492", "___s": true }, { @@ -895736,7 +899157,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R056489", + "___id": "T000002R056493", "___s": true }, { @@ -895767,7 +899188,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R056490", + "___id": "T000002R056494", "___s": true }, { @@ -895798,7 +899219,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R056491", + "___id": "T000002R056495", "___s": true }, { @@ -895829,7 +899250,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R056492", + "___id": "T000002R056496", "___s": true }, { @@ -895850,7 +899271,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R056493", + "___id": "T000002R056497", "___s": true }, { @@ -895912,7 +899333,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R056494", + "___id": "T000002R056498", "___s": true }, { @@ -895973,7 +899394,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R056495", + "___id": "T000002R056499", "___s": true }, { @@ -896022,7 +899443,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R056496", + "___id": "T000002R056500", "___s": true }, { @@ -896117,7 +899538,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R056497", + "___id": "T000002R056501", "___s": true }, { @@ -896153,7 +899574,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R056498", + "___id": "T000002R056502", "___s": true }, { @@ -896218,7 +899639,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R056499", + "___id": "T000002R056503", "___s": true }, { @@ -896311,7 +899732,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R056500", + "___id": "T000002R056504", "___s": true }, { @@ -896404,7 +899825,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R056501", + "___id": "T000002R056505", "___s": true }, { @@ -896455,7 +899876,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R056502", + "___id": "T000002R056506", "___s": true }, { @@ -896564,7 +899985,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R056503", + "___id": "T000002R056507", "___s": true }, { @@ -896695,7 +900116,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R056504", + "___id": "T000002R056508", "___s": true }, { @@ -896789,7 +900210,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R056505", + "___id": "T000002R056509", "___s": true }, { @@ -896825,7 +900246,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R056506", + "___id": "T000002R056510", "___s": true }, { @@ -896855,7 +900276,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R056507", + "___id": "T000002R056511", "___s": true }, { @@ -896885,7 +900306,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R056508", + "___id": "T000002R056512", "___s": true }, { @@ -896915,7 +900336,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R056509", + "___id": "T000002R056513", "___s": true }, { @@ -896947,7 +900368,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R056510", + "___id": "T000002R056514", "___s": true }, { @@ -896977,7 +900398,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R056511", + "___id": "T000002R056515", "___s": true }, { @@ -897007,7 +900428,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R056512", + "___id": "T000002R056516", "___s": true }, { @@ -897037,7 +900458,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R056513", + "___id": "T000002R056517", "___s": true }, { @@ -897067,7 +900488,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R056514", + "___id": "T000002R056518", "___s": true }, { @@ -897098,7 +900519,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R056515", + "___id": "T000002R056519", "___s": true }, { @@ -897128,7 +900549,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R056516", + "___id": "T000002R056520", "___s": true }, { @@ -897159,7 +900580,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R056517", + "___id": "T000002R056521", "___s": true }, { @@ -897190,7 +900611,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R056518", + "___id": "T000002R056522", "___s": true }, { @@ -897220,7 +900641,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R056519", + "___id": "T000002R056523", "___s": true }, { @@ -897250,7 +900671,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R056520", + "___id": "T000002R056524", "___s": true }, { @@ -897280,7 +900701,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R056521", + "___id": "T000002R056525", "___s": true }, { @@ -897310,7 +900731,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R056522", + "___id": "T000002R056526", "___s": true }, { @@ -897340,7 +900761,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R056523", + "___id": "T000002R056527", "___s": true }, { @@ -897370,7 +900791,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R056524", + "___id": "T000002R056528", "___s": true }, { @@ -897400,7 +900821,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R056525", + "___id": "T000002R056529", "___s": true }, { @@ -897431,7 +900852,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R056526", + "___id": "T000002R056530", "___s": true }, { @@ -897462,7 +900883,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R056527", + "___id": "T000002R056531", "___s": true }, { @@ -897493,7 +900914,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R056528", + "___id": "T000002R056532", "___s": true }, { @@ -897532,7 +900953,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R056529", + "___id": "T000002R056533", "___s": true }, { @@ -897562,7 +900983,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R056530", + "___id": "T000002R056534", "___s": true }, { @@ -897601,7 +901022,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R056531", + "___id": "T000002R056535", "___s": true }, { @@ -897631,7 +901052,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R056532", + "___id": "T000002R056536", "___s": true }, { @@ -897661,7 +901082,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R056533", + "___id": "T000002R056537", "___s": true }, { @@ -897691,7 +901112,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R056534", + "___id": "T000002R056538", "___s": true }, { @@ -897721,7 +901142,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R056535", + "___id": "T000002R056539", "___s": true }, { @@ -897751,7 +901172,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R056536", + "___id": "T000002R056540", "___s": true }, { @@ -897781,7 +901202,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R056537", + "___id": "T000002R056541", "___s": true }, { @@ -897820,7 +901241,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R056538", + "___id": "T000002R056542", "___s": true }, { @@ -897852,7 +901273,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R056539", + "___id": "T000002R056543", "___s": true }, { @@ -897884,7 +901305,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R056540", + "___id": "T000002R056544", "___s": true }, { @@ -897914,7 +901335,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R056541", + "___id": "T000002R056545", "___s": true }, { @@ -897953,7 +901374,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R056542", + "___id": "T000002R056546", "___s": true }, { @@ -897983,7 +901404,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R056543", + "___id": "T000002R056547", "___s": true }, { @@ -898007,7 +901428,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R056544", + "___id": "T000002R056548", "___s": true }, { @@ -898028,7 +901449,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R056545", + "___id": "T000002R056549", "___s": true }, { @@ -898077,7 +901498,7 @@ "name": "height" } ], - "___id": "T000002R056546", + "___id": "T000002R056550", "___s": true }, { @@ -898157,7 +901578,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R056547", + "___id": "T000002R056551", "___s": true }, { @@ -898207,7 +901628,7 @@ "name": "name" } ], - "___id": "T000002R056548", + "___id": "T000002R056552", "___s": true }, { @@ -898258,7 +901679,7 @@ "name": "config" } ], - "___id": "T000002R056549", + "___id": "T000002R056553", "___s": true }, { @@ -898308,7 +901729,7 @@ "name": "texture" } ], - "___id": "T000002R056550", + "___id": "T000002R056554", "___s": true }, { @@ -898344,7 +901765,7 @@ "name": "texture" } ], - "___id": "T000002R056551", + "___id": "T000002R056555", "___s": true }, { @@ -898394,7 +901815,7 @@ "name": "texture" } ], - "___id": "T000002R056552", + "___id": "T000002R056556", "___s": true }, { @@ -898458,7 +901879,7 @@ "name": "frame" } ], - "___id": "T000002R056553", + "___id": "T000002R056557", "___s": true }, { @@ -898510,7 +901931,7 @@ "name": "amount" } ], - "___id": "T000002R056554", + "___id": "T000002R056558", "___s": true }, { @@ -898545,7 +901966,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R056555", + "___id": "T000002R056559", "___s": true }, { @@ -898612,7 +902033,7 @@ "name": "height" } ], - "___id": "T000002R056556", + "___id": "T000002R056560", "___s": true }, { @@ -898676,7 +902097,7 @@ "name": "height" } ], - "___id": "T000002R056557", + "___id": "T000002R056561", "___s": true }, { @@ -898714,7 +902135,7 @@ "name": "flipY" } ], - "___id": "T000002R056558", + "___id": "T000002R056562", "___s": true }, { @@ -898735,7 +902156,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R056559", + "___id": "T000002R056563", "___s": true }, { @@ -898790,7 +902211,7 @@ "name": "currentShader" } ], - "___id": "T000002R056560", + "___id": "T000002R056564", "___s": true }, { @@ -898845,7 +902266,7 @@ "name": "currentShader" } ], - "___id": "T000002R056561", + "___id": "T000002R056565", "___s": true }, { @@ -898866,7 +902287,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R056562", + "___id": "T000002R056566", "___s": true }, { @@ -898917,7 +902338,7 @@ "name": "buffer" } ], - "___id": "T000002R056563", + "___id": "T000002R056567", "___s": true }, { @@ -898979,7 +902400,7 @@ "name": "gameObject" } ], - "___id": "T000002R056564", + "___id": "T000002R056568", "___s": true }, { @@ -899029,7 +902450,7 @@ "name": "swapTarget" } ], - "___id": "T000002R056565", + "___id": "T000002R056569", "___s": true }, { @@ -899050,7 +902471,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R056566", + "___id": "T000002R056570", "___s": true }, { @@ -899107,7 +902528,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056567", + "___id": "T000002R056571", "___s": true }, { @@ -899143,7 +902564,7 @@ "name": "currentShader" } ], - "___id": "T000002R056568", + "___id": "T000002R056572", "___s": true }, { @@ -899180,7 +902601,7 @@ "name": "gameObject" } ], - "___id": "T000002R056569", + "___id": "T000002R056573", "___s": true }, { @@ -899201,7 +902622,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R056570", + "___id": "T000002R056574", "___s": true }, { @@ -899238,7 +902659,7 @@ "name": "gameObject" } ], - "___id": "T000002R056571", + "___id": "T000002R056575", "___s": true }, { @@ -899275,7 +902696,7 @@ "name": "gameObject" } ], - "___id": "T000002R056572", + "___id": "T000002R056576", "___s": true }, { @@ -899312,7 +902733,7 @@ "name": "gameObject" } ], - "___id": "T000002R056573", + "___id": "T000002R056577", "___s": true }, { @@ -899333,7 +902754,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R056574", + "___id": "T000002R056578", "___s": true }, { @@ -899382,7 +902803,7 @@ "name": "camera" } ], - "___id": "T000002R056575", + "___id": "T000002R056579", "___s": true }, { @@ -899403,7 +902824,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R056576", + "___id": "T000002R056580", "___s": true }, { @@ -899441,7 +902862,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056577", + "___id": "T000002R056581", "___s": true }, { @@ -899479,7 +902900,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056578", + "___id": "T000002R056582", "___s": true }, { @@ -899603,7 +903024,7 @@ "name": "tint" } ], - "___id": "T000002R056579", + "___id": "T000002R056583", "___s": true }, { @@ -899922,7 +903343,7 @@ "name": "unit" } ], - "___id": "T000002R056580", + "___id": "T000002R056584", "___s": true }, { @@ -900202,7 +903623,7 @@ "name": "unit" } ], - "___id": "T000002R056581", + "___id": "T000002R056585", "___s": true }, { @@ -900332,7 +903753,7 @@ "name": "flipUV" } ], - "___id": "T000002R056582", + "___id": "T000002R056586", "___s": true }, { @@ -900383,7 +903804,7 @@ "name": "texture" } ], - "___id": "T000002R056583", + "___id": "T000002R056587", "___s": true }, { @@ -900450,7 +903871,7 @@ "name": "unit" } ], - "___id": "T000002R056584", + "___id": "T000002R056588", "___s": true }, { @@ -900517,7 +903938,7 @@ "name": "unit" } ], - "___id": "T000002R056585", + "___id": "T000002R056589", "___s": true }, { @@ -900582,7 +904003,7 @@ "name": "shader" } ], - "___id": "T000002R056586", + "___id": "T000002R056590", "___s": true }, { @@ -900660,7 +904081,7 @@ "name": "shader" } ], - "___id": "T000002R056587", + "___id": "T000002R056591", "___s": true }, { @@ -900738,7 +904159,7 @@ "name": "shader" } ], - "___id": "T000002R056588", + "___id": "T000002R056592", "___s": true }, { @@ -900829,7 +904250,7 @@ "name": "shader" } ], - "___id": "T000002R056589", + "___id": "T000002R056593", "___s": true }, { @@ -900933,7 +904354,7 @@ "name": "shader" } ], - "___id": "T000002R056590", + "___id": "T000002R056594", "___s": true }, { @@ -901050,7 +904471,7 @@ "name": "shader" } ], - "___id": "T000002R056591", + "___id": "T000002R056595", "___s": true }, { @@ -901147,7 +904568,7 @@ "name": "shader" } ], - "___id": "T000002R056592", + "___id": "T000002R056596", "___s": true }, { @@ -901244,7 +904665,7 @@ "name": "shader" } ], - "___id": "T000002R056593", + "___id": "T000002R056597", "___s": true }, { @@ -901341,7 +904762,7 @@ "name": "shader" } ], - "___id": "T000002R056594", + "___id": "T000002R056598", "___s": true }, { @@ -901438,7 +904859,7 @@ "name": "shader" } ], - "___id": "T000002R056595", + "___id": "T000002R056599", "___s": true }, { @@ -901535,7 +904956,7 @@ "name": "shader" } ], - "___id": "T000002R056596", + "___id": "T000002R056600", "___s": true }, { @@ -901632,7 +905053,7 @@ "name": "shader" } ], - "___id": "T000002R056597", + "___id": "T000002R056601", "___s": true }, { @@ -901729,7 +905150,7 @@ "name": "shader" } ], - "___id": "T000002R056598", + "___id": "T000002R056602", "___s": true }, { @@ -901826,7 +905247,7 @@ "name": "shader" } ], - "___id": "T000002R056599", + "___id": "T000002R056603", "___s": true }, { @@ -901904,7 +905325,7 @@ "name": "shader" } ], - "___id": "T000002R056600", + "___id": "T000002R056604", "___s": true }, { @@ -901995,7 +905416,7 @@ "name": "shader" } ], - "___id": "T000002R056601", + "___id": "T000002R056605", "___s": true }, { @@ -902099,7 +905520,7 @@ "name": "shader" } ], - "___id": "T000002R056602", + "___id": "T000002R056606", "___s": true }, { @@ -902216,7 +905637,7 @@ "name": "shader" } ], - "___id": "T000002R056603", + "___id": "T000002R056607", "___s": true }, { @@ -902326,7 +905747,7 @@ "name": "shader" } ], - "___id": "T000002R056604", + "___id": "T000002R056608", "___s": true }, { @@ -902417,7 +905838,7 @@ "name": "shader" } ], - "___id": "T000002R056605", + "___id": "T000002R056609", "___s": true }, { @@ -902508,7 +905929,7 @@ "name": "shader" } ], - "___id": "T000002R056606", + "___id": "T000002R056610", "___s": true }, { @@ -902529,7 +905950,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R056607", + "___id": "T000002R056611", "___s": true }, { @@ -902581,7 +906002,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R056608", + "___id": "T000002R056612", "___s": true }, { @@ -902650,7 +906071,7 @@ "name": "event" } ], - "___id": "T000002R056609", + "___id": "T000002R056613", "___s": true }, { @@ -902710,7 +906131,7 @@ "name": "event" } ], - "___id": "T000002R056610", + "___id": "T000002R056614", "___s": true }, { @@ -902785,7 +906206,7 @@ "name": "args" } ], - "___id": "T000002R056611", + "___id": "T000002R056615", "___s": true }, { @@ -902873,7 +906294,7 @@ "name": "context" } ], - "___id": "T000002R056612", + "___id": "T000002R056616", "___s": true }, { @@ -902961,7 +906382,7 @@ "name": "context" } ], - "___id": "T000002R056613", + "___id": "T000002R056617", "___s": true }, { @@ -903049,7 +906470,7 @@ "name": "context" } ], - "___id": "T000002R056614", + "___id": "T000002R056618", "___s": true }, { @@ -903151,7 +906572,7 @@ "name": "once" } ], - "___id": "T000002R056615", + "___id": "T000002R056619", "___s": true }, { @@ -903253,7 +906674,7 @@ "name": "once" } ], - "___id": "T000002R056616", + "___id": "T000002R056620", "___s": true }, { @@ -903315,7 +906736,7 @@ "name": "event" } ], - "___id": "T000002R056617", + "___id": "T000002R056621", "___s": true }, { @@ -903355,7 +906776,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R056618", + "___id": "T000002R056622", "___s": true }, { @@ -903385,7 +906806,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R056619", + "___id": "T000002R056623", "___s": true }, { @@ -903415,7 +906836,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R056620", + "___id": "T000002R056624", "___s": true }, { @@ -903446,7 +906867,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R056621", + "___id": "T000002R056625", "___s": true }, { @@ -903477,7 +906898,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R056622", + "___id": "T000002R056626", "___s": true }, { @@ -903508,7 +906929,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R056623", + "___id": "T000002R056627", "___s": true }, { @@ -903539,7 +906960,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R056624", + "___id": "T000002R056628", "___s": true }, { @@ -903560,7 +906981,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R056625", + "___id": "T000002R056629", "___s": true }, { @@ -903622,7 +907043,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R056626", + "___id": "T000002R056630", "___s": true }, { @@ -903683,7 +907104,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R056627", + "___id": "T000002R056631", "___s": true }, { @@ -903732,7 +907153,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R056628", + "___id": "T000002R056632", "___s": true }, { @@ -903827,7 +907248,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R056629", + "___id": "T000002R056633", "___s": true }, { @@ -903863,7 +907284,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R056630", + "___id": "T000002R056634", "___s": true }, { @@ -903928,7 +907349,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R056631", + "___id": "T000002R056635", "___s": true }, { @@ -904021,7 +907442,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R056632", + "___id": "T000002R056636", "___s": true }, { @@ -904114,7 +907535,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R056633", + "___id": "T000002R056637", "___s": true }, { @@ -904165,7 +907586,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R056634", + "___id": "T000002R056638", "___s": true }, { @@ -904274,7 +907695,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R056635", + "___id": "T000002R056639", "___s": true }, { @@ -904405,7 +907826,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R056636", + "___id": "T000002R056640", "___s": true }, { @@ -904499,7 +907920,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R056637", + "___id": "T000002R056641", "___s": true }, { @@ -904535,7 +907956,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R056638", + "___id": "T000002R056642", "___s": true }, { @@ -904565,7 +907986,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R056639", + "___id": "T000002R056643", "___s": true }, { @@ -904595,7 +908016,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R056640", + "___id": "T000002R056644", "___s": true }, { @@ -904625,7 +908046,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R056641", + "___id": "T000002R056645", "___s": true }, { @@ -904657,7 +908078,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R056642", + "___id": "T000002R056646", "___s": true }, { @@ -904687,7 +908108,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R056643", + "___id": "T000002R056647", "___s": true }, { @@ -904717,7 +908138,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R056644", + "___id": "T000002R056648", "___s": true }, { @@ -904747,7 +908168,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R056645", + "___id": "T000002R056649", "___s": true }, { @@ -904777,7 +908198,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R056646", + "___id": "T000002R056650", "___s": true }, { @@ -904808,7 +908229,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R056647", + "___id": "T000002R056651", "___s": true }, { @@ -904838,7 +908259,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R056648", + "___id": "T000002R056652", "___s": true }, { @@ -904869,7 +908290,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R056649", + "___id": "T000002R056653", "___s": true }, { @@ -904900,7 +908321,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R056650", + "___id": "T000002R056654", "___s": true }, { @@ -904930,7 +908351,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R056651", + "___id": "T000002R056655", "___s": true }, { @@ -904960,7 +908381,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R056652", + "___id": "T000002R056656", "___s": true }, { @@ -904990,7 +908411,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R056653", + "___id": "T000002R056657", "___s": true }, { @@ -905020,7 +908441,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R056654", + "___id": "T000002R056658", "___s": true }, { @@ -905050,7 +908471,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R056655", + "___id": "T000002R056659", "___s": true }, { @@ -905080,7 +908501,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R056656", + "___id": "T000002R056660", "___s": true }, { @@ -905110,7 +908531,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R056657", + "___id": "T000002R056661", "___s": true }, { @@ -905141,7 +908562,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R056658", + "___id": "T000002R056662", "___s": true }, { @@ -905172,7 +908593,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R056659", + "___id": "T000002R056663", "___s": true }, { @@ -905203,7 +908624,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R056660", + "___id": "T000002R056664", "___s": true }, { @@ -905242,7 +908663,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R056661", + "___id": "T000002R056665", "___s": true }, { @@ -905272,7 +908693,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R056662", + "___id": "T000002R056666", "___s": true }, { @@ -905311,7 +908732,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R056663", + "___id": "T000002R056667", "___s": true }, { @@ -905341,7 +908762,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R056664", + "___id": "T000002R056668", "___s": true }, { @@ -905371,7 +908792,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R056665", + "___id": "T000002R056669", "___s": true }, { @@ -905401,7 +908822,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R056666", + "___id": "T000002R056670", "___s": true }, { @@ -905431,7 +908852,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R056667", + "___id": "T000002R056671", "___s": true }, { @@ -905461,7 +908882,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R056668", + "___id": "T000002R056672", "___s": true }, { @@ -905491,7 +908912,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R056669", + "___id": "T000002R056673", "___s": true }, { @@ -905530,7 +908951,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R056670", + "___id": "T000002R056674", "___s": true }, { @@ -905562,7 +908983,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R056671", + "___id": "T000002R056675", "___s": true }, { @@ -905594,7 +909015,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R056672", + "___id": "T000002R056676", "___s": true }, { @@ -905624,7 +909045,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R056673", + "___id": "T000002R056677", "___s": true }, { @@ -905663,7 +909084,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R056674", + "___id": "T000002R056678", "___s": true }, { @@ -905693,7 +909114,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R056675", + "___id": "T000002R056679", "___s": true }, { @@ -905717,7 +909138,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R056676", + "___id": "T000002R056680", "___s": true }, { @@ -905738,7 +909159,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R056677", + "___id": "T000002R056681", "___s": true }, { @@ -905787,7 +909208,7 @@ "name": "height" } ], - "___id": "T000002R056678", + "___id": "T000002R056682", "___s": true }, { @@ -905867,7 +909288,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R056679", + "___id": "T000002R056683", "___s": true }, { @@ -905917,7 +909338,7 @@ "name": "name" } ], - "___id": "T000002R056680", + "___id": "T000002R056684", "___s": true }, { @@ -905968,7 +909389,7 @@ "name": "config" } ], - "___id": "T000002R056681", + "___id": "T000002R056685", "___s": true }, { @@ -906018,7 +909439,7 @@ "name": "texture" } ], - "___id": "T000002R056682", + "___id": "T000002R056686", "___s": true }, { @@ -906054,7 +909475,7 @@ "name": "texture" } ], - "___id": "T000002R056683", + "___id": "T000002R056687", "___s": true }, { @@ -906104,7 +909525,7 @@ "name": "texture" } ], - "___id": "T000002R056684", + "___id": "T000002R056688", "___s": true }, { @@ -906168,7 +909589,7 @@ "name": "frame" } ], - "___id": "T000002R056685", + "___id": "T000002R056689", "___s": true }, { @@ -906220,7 +909641,7 @@ "name": "amount" } ], - "___id": "T000002R056686", + "___id": "T000002R056690", "___s": true }, { @@ -906255,7 +909676,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R056687", + "___id": "T000002R056691", "___s": true }, { @@ -906322,7 +909743,7 @@ "name": "height" } ], - "___id": "T000002R056688", + "___id": "T000002R056692", "___s": true }, { @@ -906386,7 +909807,7 @@ "name": "height" } ], - "___id": "T000002R056689", + "___id": "T000002R056693", "___s": true }, { @@ -906424,7 +909845,7 @@ "name": "flipY" } ], - "___id": "T000002R056690", + "___id": "T000002R056694", "___s": true }, { @@ -906445,7 +909866,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R056691", + "___id": "T000002R056695", "___s": true }, { @@ -906500,7 +909921,7 @@ "name": "currentShader" } ], - "___id": "T000002R056692", + "___id": "T000002R056696", "___s": true }, { @@ -906555,7 +909976,7 @@ "name": "currentShader" } ], - "___id": "T000002R056693", + "___id": "T000002R056697", "___s": true }, { @@ -906576,7 +909997,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R056694", + "___id": "T000002R056698", "___s": true }, { @@ -906627,7 +910048,7 @@ "name": "buffer" } ], - "___id": "T000002R056695", + "___id": "T000002R056699", "___s": true }, { @@ -906689,7 +910110,7 @@ "name": "gameObject" } ], - "___id": "T000002R056696", + "___id": "T000002R056700", "___s": true }, { @@ -906739,7 +910160,7 @@ "name": "swapTarget" } ], - "___id": "T000002R056697", + "___id": "T000002R056701", "___s": true }, { @@ -906760,7 +910181,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R056698", + "___id": "T000002R056702", "___s": true }, { @@ -906817,7 +910238,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056699", + "___id": "T000002R056703", "___s": true }, { @@ -906853,7 +910274,7 @@ "name": "currentShader" } ], - "___id": "T000002R056700", + "___id": "T000002R056704", "___s": true }, { @@ -906890,7 +910311,7 @@ "name": "gameObject" } ], - "___id": "T000002R056701", + "___id": "T000002R056705", "___s": true }, { @@ -906911,7 +910332,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R056702", + "___id": "T000002R056706", "___s": true }, { @@ -906948,7 +910369,7 @@ "name": "gameObject" } ], - "___id": "T000002R056703", + "___id": "T000002R056707", "___s": true }, { @@ -906985,7 +910406,7 @@ "name": "gameObject" } ], - "___id": "T000002R056704", + "___id": "T000002R056708", "___s": true }, { @@ -907022,7 +910443,7 @@ "name": "gameObject" } ], - "___id": "T000002R056705", + "___id": "T000002R056709", "___s": true }, { @@ -907043,7 +910464,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R056706", + "___id": "T000002R056710", "___s": true }, { @@ -907092,7 +910513,7 @@ "name": "camera" } ], - "___id": "T000002R056707", + "___id": "T000002R056711", "___s": true }, { @@ -907113,7 +910534,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R056708", + "___id": "T000002R056712", "___s": true }, { @@ -907151,7 +910572,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056709", + "___id": "T000002R056713", "___s": true }, { @@ -907189,7 +910610,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056710", + "___id": "T000002R056714", "___s": true }, { @@ -907313,7 +910734,7 @@ "name": "tint" } ], - "___id": "T000002R056711", + "___id": "T000002R056715", "___s": true }, { @@ -907632,7 +911053,7 @@ "name": "unit" } ], - "___id": "T000002R056712", + "___id": "T000002R056716", "___s": true }, { @@ -907912,7 +911333,7 @@ "name": "unit" } ], - "___id": "T000002R056713", + "___id": "T000002R056717", "___s": true }, { @@ -908042,7 +911463,7 @@ "name": "flipUV" } ], - "___id": "T000002R056714", + "___id": "T000002R056718", "___s": true }, { @@ -908093,7 +911514,7 @@ "name": "texture" } ], - "___id": "T000002R056715", + "___id": "T000002R056719", "___s": true }, { @@ -908160,7 +911581,7 @@ "name": "unit" } ], - "___id": "T000002R056716", + "___id": "T000002R056720", "___s": true }, { @@ -908227,7 +911648,7 @@ "name": "unit" } ], - "___id": "T000002R056717", + "___id": "T000002R056721", "___s": true }, { @@ -908292,7 +911713,7 @@ "name": "shader" } ], - "___id": "T000002R056718", + "___id": "T000002R056722", "___s": true }, { @@ -908370,7 +911791,7 @@ "name": "shader" } ], - "___id": "T000002R056719", + "___id": "T000002R056723", "___s": true }, { @@ -908448,7 +911869,7 @@ "name": "shader" } ], - "___id": "T000002R056720", + "___id": "T000002R056724", "___s": true }, { @@ -908539,7 +911960,7 @@ "name": "shader" } ], - "___id": "T000002R056721", + "___id": "T000002R056725", "___s": true }, { @@ -908643,7 +912064,7 @@ "name": "shader" } ], - "___id": "T000002R056722", + "___id": "T000002R056726", "___s": true }, { @@ -908760,7 +912181,7 @@ "name": "shader" } ], - "___id": "T000002R056723", + "___id": "T000002R056727", "___s": true }, { @@ -908857,7 +912278,7 @@ "name": "shader" } ], - "___id": "T000002R056724", + "___id": "T000002R056728", "___s": true }, { @@ -908954,7 +912375,7 @@ "name": "shader" } ], - "___id": "T000002R056725", + "___id": "T000002R056729", "___s": true }, { @@ -909051,7 +912472,7 @@ "name": "shader" } ], - "___id": "T000002R056726", + "___id": "T000002R056730", "___s": true }, { @@ -909148,7 +912569,7 @@ "name": "shader" } ], - "___id": "T000002R056727", + "___id": "T000002R056731", "___s": true }, { @@ -909245,7 +912666,7 @@ "name": "shader" } ], - "___id": "T000002R056728", + "___id": "T000002R056732", "___s": true }, { @@ -909342,7 +912763,7 @@ "name": "shader" } ], - "___id": "T000002R056729", + "___id": "T000002R056733", "___s": true }, { @@ -909439,7 +912860,7 @@ "name": "shader" } ], - "___id": "T000002R056730", + "___id": "T000002R056734", "___s": true }, { @@ -909536,7 +912957,7 @@ "name": "shader" } ], - "___id": "T000002R056731", + "___id": "T000002R056735", "___s": true }, { @@ -909614,7 +913035,7 @@ "name": "shader" } ], - "___id": "T000002R056732", + "___id": "T000002R056736", "___s": true }, { @@ -909705,7 +913126,7 @@ "name": "shader" } ], - "___id": "T000002R056733", + "___id": "T000002R056737", "___s": true }, { @@ -909809,7 +913230,7 @@ "name": "shader" } ], - "___id": "T000002R056734", + "___id": "T000002R056738", "___s": true }, { @@ -909926,7 +913347,7 @@ "name": "shader" } ], - "___id": "T000002R056735", + "___id": "T000002R056739", "___s": true }, { @@ -910036,7 +913457,7 @@ "name": "shader" } ], - "___id": "T000002R056736", + "___id": "T000002R056740", "___s": true }, { @@ -910127,7 +913548,7 @@ "name": "shader" } ], - "___id": "T000002R056737", + "___id": "T000002R056741", "___s": true }, { @@ -910218,7 +913639,7 @@ "name": "shader" } ], - "___id": "T000002R056738", + "___id": "T000002R056742", "___s": true }, { @@ -910239,7 +913660,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R056739", + "___id": "T000002R056743", "___s": true }, { @@ -910291,7 +913712,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R056740", + "___id": "T000002R056744", "___s": true }, { @@ -910360,7 +913781,7 @@ "name": "event" } ], - "___id": "T000002R056741", + "___id": "T000002R056745", "___s": true }, { @@ -910420,7 +913841,7 @@ "name": "event" } ], - "___id": "T000002R056742", + "___id": "T000002R056746", "___s": true }, { @@ -910495,7 +913916,7 @@ "name": "args" } ], - "___id": "T000002R056743", + "___id": "T000002R056747", "___s": true }, { @@ -910583,7 +914004,7 @@ "name": "context" } ], - "___id": "T000002R056744", + "___id": "T000002R056748", "___s": true }, { @@ -910671,7 +914092,7 @@ "name": "context" } ], - "___id": "T000002R056745", + "___id": "T000002R056749", "___s": true }, { @@ -910759,7 +914180,7 @@ "name": "context" } ], - "___id": "T000002R056746", + "___id": "T000002R056750", "___s": true }, { @@ -910861,7 +914282,7 @@ "name": "once" } ], - "___id": "T000002R056747", + "___id": "T000002R056751", "___s": true }, { @@ -910963,7 +914384,7 @@ "name": "once" } ], - "___id": "T000002R056748", + "___id": "T000002R056752", "___s": true }, { @@ -911025,7 +914446,7 @@ "name": "event" } ], - "___id": "T000002R056749", + "___id": "T000002R056753", "___s": true }, { @@ -911065,7 +914486,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject", "inherited": true, - "___id": "T000002R056750", + "___id": "T000002R056754", "___s": true }, { @@ -911095,7 +914516,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller", "inherited": true, - "___id": "T000002R056751", + "___id": "T000002R056755", "___s": true }, { @@ -911125,7 +914546,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#colorMatrix", "inherited": true, - "___id": "T000002R056752", + "___id": "T000002R056756", "___s": true }, { @@ -911156,7 +914577,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame1", "inherited": true, - "___id": "T000002R056753", + "___id": "T000002R056757", "___s": true }, { @@ -911187,7 +914608,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#fullFrame2", "inherited": true, - "___id": "T000002R056754", + "___id": "T000002R056758", "___s": true }, { @@ -911218,7 +914639,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame1", "inherited": true, - "___id": "T000002R056755", + "___id": "T000002R056759", "___s": true }, { @@ -911249,7 +914670,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#halfFrame2", "inherited": true, - "___id": "T000002R056756", + "___id": "T000002R056760", "___s": true }, { @@ -911270,7 +914691,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bootFX", "inherited": true, - "___id": "T000002R056757", + "___id": "T000002R056761", "___s": true }, { @@ -911332,7 +914753,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#postBatch", "inherited": true, - "___id": "T000002R056758", + "___id": "T000002R056762", "___s": true }, { @@ -911393,7 +914814,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#getController", "inherited": true, - "___id": "T000002R056759", + "___id": "T000002R056763", "___s": true }, { @@ -911442,7 +914863,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copySprite", "inherited": true, - "___id": "T000002R056760", + "___id": "T000002R056764", "___s": true }, { @@ -911537,7 +914958,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrame", "inherited": true, - "___id": "T000002R056761", + "___id": "T000002R056765", "___s": true }, { @@ -911573,7 +914994,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R056762", + "___id": "T000002R056766", "___s": true }, { @@ -911638,7 +915059,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#drawFrame", "inherited": true, - "___id": "T000002R056763", + "___id": "T000002R056767", "___s": true }, { @@ -911731,7 +915152,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R056764", + "___id": "T000002R056768", "___s": true }, { @@ -911824,7 +915245,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R056765", + "___id": "T000002R056769", "___s": true }, { @@ -911875,7 +915296,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#clearFrame", "inherited": true, - "___id": "T000002R056766", + "___id": "T000002R056770", "___s": true }, { @@ -911984,7 +915405,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#blitFrame", "inherited": true, - "___id": "T000002R056767", + "___id": "T000002R056771", "___s": true }, { @@ -912115,7 +915536,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#copyFrameRect", "inherited": true, - "___id": "T000002R056768", + "___id": "T000002R056772", "___s": true }, { @@ -912209,7 +915630,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R056769", + "___id": "T000002R056773", "___s": true }, { @@ -912245,7 +915666,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#destroy", "inherited": true, - "___id": "T000002R056770", + "___id": "T000002R056774", "___s": true }, { @@ -912275,7 +915696,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R056771", + "___id": "T000002R056775", "___s": true }, { @@ -912305,7 +915726,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R056772", + "___id": "T000002R056776", "___s": true }, { @@ -912335,7 +915756,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R056773", + "___id": "T000002R056777", "___s": true }, { @@ -912367,7 +915788,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R056774", + "___id": "T000002R056778", "___s": true }, { @@ -912397,7 +915818,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R056775", + "___id": "T000002R056779", "___s": true }, { @@ -912427,7 +915848,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R056776", + "___id": "T000002R056780", "___s": true }, { @@ -912457,7 +915878,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R056777", + "___id": "T000002R056781", "___s": true }, { @@ -912487,7 +915908,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R056778", + "___id": "T000002R056782", "___s": true }, { @@ -912518,7 +915939,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R056779", + "___id": "T000002R056783", "___s": true }, { @@ -912548,7 +915969,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R056780", + "___id": "T000002R056784", "___s": true }, { @@ -912579,7 +916000,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R056781", + "___id": "T000002R056785", "___s": true }, { @@ -912610,7 +916031,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R056782", + "___id": "T000002R056786", "___s": true }, { @@ -912640,7 +916061,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R056783", + "___id": "T000002R056787", "___s": true }, { @@ -912670,7 +916091,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R056784", + "___id": "T000002R056788", "___s": true }, { @@ -912700,7 +916121,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R056785", + "___id": "T000002R056789", "___s": true }, { @@ -912730,7 +916151,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R056786", + "___id": "T000002R056790", "___s": true }, { @@ -912760,7 +916181,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R056787", + "___id": "T000002R056791", "___s": true }, { @@ -912790,7 +916211,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R056788", + "___id": "T000002R056792", "___s": true }, { @@ -912820,7 +916241,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R056789", + "___id": "T000002R056793", "___s": true }, { @@ -912851,7 +916272,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R056790", + "___id": "T000002R056794", "___s": true }, { @@ -912882,7 +916303,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R056791", + "___id": "T000002R056795", "___s": true }, { @@ -912913,7 +916334,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R056792", + "___id": "T000002R056796", "___s": true }, { @@ -912952,7 +916373,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R056793", + "___id": "T000002R056797", "___s": true }, { @@ -912982,7 +916403,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R056794", + "___id": "T000002R056798", "___s": true }, { @@ -913021,7 +916442,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R056795", + "___id": "T000002R056799", "___s": true }, { @@ -913051,7 +916472,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R056796", + "___id": "T000002R056800", "___s": true }, { @@ -913081,7 +916502,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R056797", + "___id": "T000002R056801", "___s": true }, { @@ -913111,7 +916532,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R056798", + "___id": "T000002R056802", "___s": true }, { @@ -913141,7 +916562,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R056799", + "___id": "T000002R056803", "___s": true }, { @@ -913171,7 +916592,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R056800", + "___id": "T000002R056804", "___s": true }, { @@ -913201,7 +916622,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R056801", + "___id": "T000002R056805", "___s": true }, { @@ -913240,7 +916661,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R056802", + "___id": "T000002R056806", "___s": true }, { @@ -913272,7 +916693,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R056803", + "___id": "T000002R056807", "___s": true }, { @@ -913304,7 +916725,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R056804", + "___id": "T000002R056808", "___s": true }, { @@ -913334,7 +916755,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R056805", + "___id": "T000002R056809", "___s": true }, { @@ -913373,7 +916794,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R056806", + "___id": "T000002R056810", "___s": true }, { @@ -913403,7 +916824,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R056807", + "___id": "T000002R056811", "___s": true }, { @@ -913427,7 +916848,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R056808", + "___id": "T000002R056812", "___s": true }, { @@ -913448,7 +916869,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R056809", + "___id": "T000002R056813", "___s": true }, { @@ -913497,7 +916918,7 @@ "name": "height" } ], - "___id": "T000002R056810", + "___id": "T000002R056814", "___s": true }, { @@ -913577,7 +916998,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R056811", + "___id": "T000002R056815", "___s": true }, { @@ -913627,7 +917048,7 @@ "name": "name" } ], - "___id": "T000002R056812", + "___id": "T000002R056816", "___s": true }, { @@ -913678,7 +917099,7 @@ "name": "config" } ], - "___id": "T000002R056813", + "___id": "T000002R056817", "___s": true }, { @@ -913728,7 +917149,7 @@ "name": "texture" } ], - "___id": "T000002R056814", + "___id": "T000002R056818", "___s": true }, { @@ -913764,7 +917185,7 @@ "name": "texture" } ], - "___id": "T000002R056815", + "___id": "T000002R056819", "___s": true }, { @@ -913814,7 +917235,7 @@ "name": "texture" } ], - "___id": "T000002R056816", + "___id": "T000002R056820", "___s": true }, { @@ -913878,7 +917299,7 @@ "name": "frame" } ], - "___id": "T000002R056817", + "___id": "T000002R056821", "___s": true }, { @@ -913930,7 +917351,7 @@ "name": "amount" } ], - "___id": "T000002R056818", + "___id": "T000002R056822", "___s": true }, { @@ -913965,7 +917386,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R056819", + "___id": "T000002R056823", "___s": true }, { @@ -914032,7 +917453,7 @@ "name": "height" } ], - "___id": "T000002R056820", + "___id": "T000002R056824", "___s": true }, { @@ -914096,7 +917517,7 @@ "name": "height" } ], - "___id": "T000002R056821", + "___id": "T000002R056825", "___s": true }, { @@ -914134,7 +917555,7 @@ "name": "flipY" } ], - "___id": "T000002R056822", + "___id": "T000002R056826", "___s": true }, { @@ -914155,7 +917576,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R056823", + "___id": "T000002R056827", "___s": true }, { @@ -914210,7 +917631,7 @@ "name": "currentShader" } ], - "___id": "T000002R056824", + "___id": "T000002R056828", "___s": true }, { @@ -914265,7 +917686,7 @@ "name": "currentShader" } ], - "___id": "T000002R056825", + "___id": "T000002R056829", "___s": true }, { @@ -914286,7 +917707,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R056826", + "___id": "T000002R056830", "___s": true }, { @@ -914337,7 +917758,7 @@ "name": "buffer" } ], - "___id": "T000002R056827", + "___id": "T000002R056831", "___s": true }, { @@ -914399,7 +917820,7 @@ "name": "gameObject" } ], - "___id": "T000002R056828", + "___id": "T000002R056832", "___s": true }, { @@ -914449,7 +917870,7 @@ "name": "swapTarget" } ], - "___id": "T000002R056829", + "___id": "T000002R056833", "___s": true }, { @@ -914470,7 +917891,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R056830", + "___id": "T000002R056834", "___s": true }, { @@ -914527,7 +917948,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056831", + "___id": "T000002R056835", "___s": true }, { @@ -914563,7 +917984,7 @@ "name": "currentShader" } ], - "___id": "T000002R056832", + "___id": "T000002R056836", "___s": true }, { @@ -914600,7 +918021,7 @@ "name": "gameObject" } ], - "___id": "T000002R056833", + "___id": "T000002R056837", "___s": true }, { @@ -914621,7 +918042,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R056834", + "___id": "T000002R056838", "___s": true }, { @@ -914658,7 +918079,7 @@ "name": "gameObject" } ], - "___id": "T000002R056835", + "___id": "T000002R056839", "___s": true }, { @@ -914695,7 +918116,7 @@ "name": "gameObject" } ], - "___id": "T000002R056836", + "___id": "T000002R056840", "___s": true }, { @@ -914732,7 +918153,7 @@ "name": "gameObject" } ], - "___id": "T000002R056837", + "___id": "T000002R056841", "___s": true }, { @@ -914753,7 +918174,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R056838", + "___id": "T000002R056842", "___s": true }, { @@ -914802,7 +918223,7 @@ "name": "camera" } ], - "___id": "T000002R056839", + "___id": "T000002R056843", "___s": true }, { @@ -914823,7 +918244,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R056840", + "___id": "T000002R056844", "___s": true }, { @@ -914861,7 +918282,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056841", + "___id": "T000002R056845", "___s": true }, { @@ -914899,7 +918320,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R056842", + "___id": "T000002R056846", "___s": true }, { @@ -915023,7 +918444,7 @@ "name": "tint" } ], - "___id": "T000002R056843", + "___id": "T000002R056847", "___s": true }, { @@ -915342,7 +918763,7 @@ "name": "unit" } ], - "___id": "T000002R056844", + "___id": "T000002R056848", "___s": true }, { @@ -915622,7 +919043,7 @@ "name": "unit" } ], - "___id": "T000002R056845", + "___id": "T000002R056849", "___s": true }, { @@ -915752,7 +919173,7 @@ "name": "flipUV" } ], - "___id": "T000002R056846", + "___id": "T000002R056850", "___s": true }, { @@ -915803,7 +919224,7 @@ "name": "texture" } ], - "___id": "T000002R056847", + "___id": "T000002R056851", "___s": true }, { @@ -915870,7 +919291,7 @@ "name": "unit" } ], - "___id": "T000002R056848", + "___id": "T000002R056852", "___s": true }, { @@ -915937,7 +919358,7 @@ "name": "unit" } ], - "___id": "T000002R056849", + "___id": "T000002R056853", "___s": true }, { @@ -916002,7 +919423,7 @@ "name": "shader" } ], - "___id": "T000002R056850", + "___id": "T000002R056854", "___s": true }, { @@ -916080,7 +919501,7 @@ "name": "shader" } ], - "___id": "T000002R056851", + "___id": "T000002R056855", "___s": true }, { @@ -916158,7 +919579,7 @@ "name": "shader" } ], - "___id": "T000002R056852", + "___id": "T000002R056856", "___s": true }, { @@ -916249,7 +919670,7 @@ "name": "shader" } ], - "___id": "T000002R056853", + "___id": "T000002R056857", "___s": true }, { @@ -916353,7 +919774,7 @@ "name": "shader" } ], - "___id": "T000002R056854", + "___id": "T000002R056858", "___s": true }, { @@ -916470,7 +919891,7 @@ "name": "shader" } ], - "___id": "T000002R056855", + "___id": "T000002R056859", "___s": true }, { @@ -916567,7 +919988,7 @@ "name": "shader" } ], - "___id": "T000002R056856", + "___id": "T000002R056860", "___s": true }, { @@ -916664,7 +920085,7 @@ "name": "shader" } ], - "___id": "T000002R056857", + "___id": "T000002R056861", "___s": true }, { @@ -916761,7 +920182,7 @@ "name": "shader" } ], - "___id": "T000002R056858", + "___id": "T000002R056862", "___s": true }, { @@ -916858,7 +920279,7 @@ "name": "shader" } ], - "___id": "T000002R056859", + "___id": "T000002R056863", "___s": true }, { @@ -916955,7 +920376,7 @@ "name": "shader" } ], - "___id": "T000002R056860", + "___id": "T000002R056864", "___s": true }, { @@ -917052,7 +920473,7 @@ "name": "shader" } ], - "___id": "T000002R056861", + "___id": "T000002R056865", "___s": true }, { @@ -917149,7 +920570,7 @@ "name": "shader" } ], - "___id": "T000002R056862", + "___id": "T000002R056866", "___s": true }, { @@ -917246,7 +920667,7 @@ "name": "shader" } ], - "___id": "T000002R056863", + "___id": "T000002R056867", "___s": true }, { @@ -917324,7 +920745,7 @@ "name": "shader" } ], - "___id": "T000002R056864", + "___id": "T000002R056868", "___s": true }, { @@ -917415,7 +920836,7 @@ "name": "shader" } ], - "___id": "T000002R056865", + "___id": "T000002R056869", "___s": true }, { @@ -917519,7 +920940,7 @@ "name": "shader" } ], - "___id": "T000002R056866", + "___id": "T000002R056870", "___s": true }, { @@ -917636,7 +921057,7 @@ "name": "shader" } ], - "___id": "T000002R056867", + "___id": "T000002R056871", "___s": true }, { @@ -917746,7 +921167,7 @@ "name": "shader" } ], - "___id": "T000002R056868", + "___id": "T000002R056872", "___s": true }, { @@ -917837,7 +921258,7 @@ "name": "shader" } ], - "___id": "T000002R056869", + "___id": "T000002R056873", "___s": true }, { @@ -917928,7 +921349,7 @@ "name": "shader" } ], - "___id": "T000002R056870", + "___id": "T000002R056874", "___s": true }, { @@ -917949,7 +921370,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R056871", + "___id": "T000002R056875", "___s": true }, { @@ -918001,7 +921422,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R056872", + "___id": "T000002R056876", "___s": true }, { @@ -918070,7 +921491,7 @@ "name": "event" } ], - "___id": "T000002R056873", + "___id": "T000002R056877", "___s": true }, { @@ -918130,7 +921551,7 @@ "name": "event" } ], - "___id": "T000002R056874", + "___id": "T000002R056878", "___s": true }, { @@ -918205,7 +921626,7 @@ "name": "args" } ], - "___id": "T000002R056875", + "___id": "T000002R056879", "___s": true }, { @@ -918293,7 +921714,7 @@ "name": "context" } ], - "___id": "T000002R056876", + "___id": "T000002R056880", "___s": true }, { @@ -918381,7 +921802,7 @@ "name": "context" } ], - "___id": "T000002R056877", + "___id": "T000002R056881", "___s": true }, { @@ -918469,7 +921890,7 @@ "name": "context" } ], - "___id": "T000002R056878", + "___id": "T000002R056882", "___s": true }, { @@ -918571,7 +921992,7 @@ "name": "once" } ], - "___id": "T000002R056879", + "___id": "T000002R056883", "___s": true }, { @@ -918673,7 +922094,7 @@ "name": "once" } ], - "___id": "T000002R056880", + "___id": "T000002R056884", "___s": true }, { @@ -918735,7 +922156,7 @@ "name": "event" } ], - "___id": "T000002R056881", + "___id": "T000002R056885", "___s": true }, { @@ -918765,7 +922186,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R056882", + "___id": "T000002R056886", "___s": true }, { @@ -918795,7 +922216,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R056883", + "___id": "T000002R056887", "___s": true }, { @@ -918825,7 +922246,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R056884", + "___id": "T000002R056888", "___s": true }, { @@ -918857,7 +922278,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R056885", + "___id": "T000002R056889", "___s": true }, { @@ -918887,7 +922308,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R056886", + "___id": "T000002R056890", "___s": true }, { @@ -918917,7 +922338,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R056887", + "___id": "T000002R056891", "___s": true }, { @@ -918947,7 +922368,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R056888", + "___id": "T000002R056892", "___s": true }, { @@ -918977,7 +922398,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R056889", + "___id": "T000002R056893", "___s": true }, { @@ -919008,7 +922429,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R056890", + "___id": "T000002R056894", "___s": true }, { @@ -919038,7 +922459,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R056891", + "___id": "T000002R056895", "___s": true }, { @@ -919069,7 +922490,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R056892", + "___id": "T000002R056896", "___s": true }, { @@ -919100,7 +922521,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R056893", + "___id": "T000002R056897", "___s": true }, { @@ -919130,7 +922551,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R056894", + "___id": "T000002R056898", "___s": true }, { @@ -919160,7 +922581,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R056895", + "___id": "T000002R056899", "___s": true }, { @@ -919190,7 +922611,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R056896", + "___id": "T000002R056900", "___s": true }, { @@ -919220,7 +922641,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R056897", + "___id": "T000002R056901", "___s": true }, { @@ -919250,7 +922671,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R056898", + "___id": "T000002R056902", "___s": true }, { @@ -919280,7 +922701,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R056899", + "___id": "T000002R056903", "___s": true }, { @@ -919310,7 +922731,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R056900", + "___id": "T000002R056904", "___s": true }, { @@ -919341,7 +922762,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R056901", + "___id": "T000002R056905", "___s": true }, { @@ -919372,7 +922793,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R056902", + "___id": "T000002R056906", "___s": true }, { @@ -919403,7 +922824,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R056903", + "___id": "T000002R056907", "___s": true }, { @@ -919442,7 +922863,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R056904", + "___id": "T000002R056908", "___s": true }, { @@ -919472,7 +922893,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R056905", + "___id": "T000002R056909", "___s": true }, { @@ -919511,7 +922932,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R056906", + "___id": "T000002R056910", "___s": true }, { @@ -919541,7 +922962,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R056907", + "___id": "T000002R056911", "___s": true }, { @@ -919571,7 +922992,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R056908", + "___id": "T000002R056912", "___s": true }, { @@ -919601,7 +923022,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R056909", + "___id": "T000002R056913", "___s": true }, { @@ -919631,7 +923052,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R056910", + "___id": "T000002R056914", "___s": true }, { @@ -919661,7 +923082,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R056911", + "___id": "T000002R056915", "___s": true }, { @@ -919691,7 +923112,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R056912", + "___id": "T000002R056916", "___s": true }, { @@ -919730,7 +923151,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R056913", + "___id": "T000002R056917", "___s": true }, { @@ -919762,7 +923183,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R056914", + "___id": "T000002R056918", "___s": true }, { @@ -919794,7 +923215,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R056915", + "___id": "T000002R056919", "___s": true }, { @@ -919824,7 +923245,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R056916", + "___id": "T000002R056920", "___s": true }, { @@ -919863,7 +923284,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R056917", + "___id": "T000002R056921", "___s": true }, { @@ -919893,7 +923314,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R056918", + "___id": "T000002R056922", "___s": true }, { @@ -919917,7 +923338,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R056919", + "___id": "T000002R056923", "___s": true }, { @@ -919938,7 +923359,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R056920", + "___id": "T000002R056924", "___s": true }, { @@ -920018,7 +923439,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setShader", "inherited": true, - "___id": "T000002R056921", + "___id": "T000002R056925", "___s": true }, { @@ -920068,7 +923489,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#getShaderByName", "inherited": true, - "___id": "T000002R056922", + "___id": "T000002R056926", "___s": true }, { @@ -920119,7 +923540,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setShadersFromConfig", "inherited": true, - "___id": "T000002R056923", + "___id": "T000002R056927", "___s": true }, { @@ -920169,7 +923590,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#createBatch", "inherited": true, - "___id": "T000002R056924", + "___id": "T000002R056928", "___s": true }, { @@ -920205,7 +923626,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#addTextureToBatch", "inherited": true, - "___id": "T000002R056925", + "___id": "T000002R056929", "___s": true }, { @@ -920255,7 +923676,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#pushBatch", "inherited": true, - "___id": "T000002R056926", + "___id": "T000002R056930", "___s": true }, { @@ -920319,7 +923740,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setGameObject", "inherited": true, - "___id": "T000002R056927", + "___id": "T000002R056931", "___s": true }, { @@ -920371,7 +923792,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shouldFlush", "inherited": true, - "___id": "T000002R056928", + "___id": "T000002R056932", "___s": true }, { @@ -920406,7 +923827,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R056929", + "___id": "T000002R056933", "___s": true }, { @@ -920473,7 +923894,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resize", "inherited": true, - "___id": "T000002R056930", + "___id": "T000002R056934", "___s": true }, { @@ -920537,7 +923958,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setProjectionMatrix", "inherited": true, - "___id": "T000002R056931", + "___id": "T000002R056935", "___s": true }, { @@ -920575,7 +923996,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#flipProjectionMatrix", "inherited": true, - "___id": "T000002R056932", + "___id": "T000002R056936", "___s": true }, { @@ -920596,7 +924017,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R056933", + "___id": "T000002R056937", "___s": true }, { @@ -920651,7 +924072,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bind", "inherited": true, - "___id": "T000002R056934", + "___id": "T000002R056938", "___s": true }, { @@ -920706,7 +924127,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#rebind", "inherited": true, - "___id": "T000002R056935", + "___id": "T000002R056939", "___s": true }, { @@ -920727,7 +924148,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R056936", + "___id": "T000002R056940", "___s": true }, { @@ -920778,7 +924199,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setVertexBuffer", "inherited": true, - "___id": "T000002R056937", + "___id": "T000002R056941", "___s": true }, { @@ -920840,7 +924261,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#preBatch", "inherited": true, - "___id": "T000002R056938", + "___id": "T000002R056942", "___s": true }, { @@ -920902,7 +924323,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#postBatch", "inherited": true, - "___id": "T000002R056939", + "___id": "T000002R056943", "___s": true }, { @@ -920923,7 +924344,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R056940", + "___id": "T000002R056944", "___s": true }, { @@ -920980,7 +924401,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#flush", "inherited": true, - "___id": "T000002R056941", + "___id": "T000002R056945", "___s": true }, { @@ -921016,7 +924437,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onActive", "inherited": true, - "___id": "T000002R056942", + "___id": "T000002R056946", "___s": true }, { @@ -921053,7 +924474,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBind", "inherited": true, - "___id": "T000002R056943", + "___id": "T000002R056947", "___s": true }, { @@ -921074,7 +924495,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R056944", + "___id": "T000002R056948", "___s": true }, { @@ -921111,7 +924532,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBatch", "inherited": true, - "___id": "T000002R056945", + "___id": "T000002R056949", "___s": true }, { @@ -921148,7 +924569,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreBatch", "inherited": true, - "___id": "T000002R056946", + "___id": "T000002R056950", "___s": true }, { @@ -921185,7 +924606,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostBatch", "inherited": true, - "___id": "T000002R056947", + "___id": "T000002R056951", "___s": true }, { @@ -921206,7 +924627,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R056948", + "___id": "T000002R056952", "___s": true }, { @@ -921255,7 +924676,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRender", "inherited": true, - "___id": "T000002R056949", + "___id": "T000002R056953", "___s": true }, { @@ -921276,7 +924697,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R056950", + "___id": "T000002R056954", "___s": true }, { @@ -921314,7 +924735,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBeforeFlush", "inherited": true, - "___id": "T000002R056951", + "___id": "T000002R056955", "___s": true }, { @@ -921352,7 +924773,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onAfterFlush", "inherited": true, - "___id": "T000002R056952", + "___id": "T000002R056956", "___s": true }, { @@ -921476,7 +924897,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchVert", "inherited": true, - "___id": "T000002R056953", + "___id": "T000002R056957", "___s": true }, { @@ -921756,7 +925177,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchTri", "inherited": true, - "___id": "T000002R056954", + "___id": "T000002R056958", "___s": true }, { @@ -921886,7 +925307,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#drawFillRect", "inherited": true, - "___id": "T000002R056955", + "___id": "T000002R056959", "___s": true }, { @@ -921937,7 +925358,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setTexture2D", "inherited": true, - "___id": "T000002R056956", + "___id": "T000002R056960", "___s": true }, { @@ -922004,7 +925425,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bindTexture", "inherited": true, - "___id": "T000002R056957", + "___id": "T000002R056961", "___s": true }, { @@ -922071,7 +925492,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bindRenderTarget", "inherited": true, - "___id": "T000002R056958", + "___id": "T000002R056962", "___s": true }, { @@ -922136,7 +925557,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setTime", "inherited": true, - "___id": "T000002R056959", + "___id": "T000002R056963", "___s": true }, { @@ -922214,7 +925635,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setBoolean", "inherited": true, - "___id": "T000002R056960", + "___id": "T000002R056964", "___s": true }, { @@ -922292,7 +925713,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1f", "inherited": true, - "___id": "T000002R056961", + "___id": "T000002R056965", "___s": true }, { @@ -922383,7 +925804,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2f", "inherited": true, - "___id": "T000002R056962", + "___id": "T000002R056966", "___s": true }, { @@ -922487,7 +925908,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3f", "inherited": true, - "___id": "T000002R056963", + "___id": "T000002R056967", "___s": true }, { @@ -922604,7 +926025,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4f", "inherited": true, - "___id": "T000002R056964", + "___id": "T000002R056968", "___s": true }, { @@ -922701,7 +926122,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1fv", "inherited": true, - "___id": "T000002R056965", + "___id": "T000002R056969", "___s": true }, { @@ -922798,7 +926219,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2fv", "inherited": true, - "___id": "T000002R056966", + "___id": "T000002R056970", "___s": true }, { @@ -922895,7 +926316,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3fv", "inherited": true, - "___id": "T000002R056967", + "___id": "T000002R056971", "___s": true }, { @@ -922992,7 +926413,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4fv", "inherited": true, - "___id": "T000002R056968", + "___id": "T000002R056972", "___s": true }, { @@ -923089,7 +926510,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1iv", "inherited": true, - "___id": "T000002R056969", + "___id": "T000002R056973", "___s": true }, { @@ -923186,7 +926607,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2iv", "inherited": true, - "___id": "T000002R056970", + "___id": "T000002R056974", "___s": true }, { @@ -923283,7 +926704,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3iv", "inherited": true, - "___id": "T000002R056971", + "___id": "T000002R056975", "___s": true }, { @@ -923380,7 +926801,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4iv", "inherited": true, - "___id": "T000002R056972", + "___id": "T000002R056976", "___s": true }, { @@ -923458,7 +926879,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1i", "inherited": true, - "___id": "T000002R056973", + "___id": "T000002R056977", "___s": true }, { @@ -923549,7 +926970,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2i", "inherited": true, - "___id": "T000002R056974", + "___id": "T000002R056978", "___s": true }, { @@ -923653,7 +927074,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3i", "inherited": true, - "___id": "T000002R056975", + "___id": "T000002R056979", "___s": true }, { @@ -923770,7 +927191,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4i", "inherited": true, - "___id": "T000002R056976", + "___id": "T000002R056980", "___s": true }, { @@ -923880,7 +927301,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix2fv", "inherited": true, - "___id": "T000002R056977", + "___id": "T000002R056981", "___s": true }, { @@ -923971,7 +927392,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix3fv", "inherited": true, - "___id": "T000002R056978", + "___id": "T000002R056982", "___s": true }, { @@ -924062,7 +927483,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix4fv", "inherited": true, - "___id": "T000002R056979", + "___id": "T000002R056983", "___s": true }, { @@ -924083,7 +927504,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R056980", + "___id": "T000002R056984", "___s": true }, { @@ -924135,7 +927556,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R056981", + "___id": "T000002R056985", "___s": true }, { @@ -924204,7 +927625,7 @@ "name": "event" } ], - "___id": "T000002R056982", + "___id": "T000002R056986", "___s": true }, { @@ -924264,7 +927685,7 @@ "name": "event" } ], - "___id": "T000002R056983", + "___id": "T000002R056987", "___s": true }, { @@ -924339,7 +927760,7 @@ "name": "args" } ], - "___id": "T000002R056984", + "___id": "T000002R056988", "___s": true }, { @@ -924427,7 +927848,7 @@ "name": "context" } ], - "___id": "T000002R056985", + "___id": "T000002R056989", "___s": true }, { @@ -924515,7 +927936,7 @@ "name": "context" } ], - "___id": "T000002R056986", + "___id": "T000002R056990", "___s": true }, { @@ -924603,7 +928024,7 @@ "name": "context" } ], - "___id": "T000002R056987", + "___id": "T000002R056991", "___s": true }, { @@ -924705,7 +928126,7 @@ "name": "once" } ], - "___id": "T000002R056988", + "___id": "T000002R056992", "___s": true }, { @@ -924807,7 +928228,7 @@ "name": "once" } ], - "___id": "T000002R056989", + "___id": "T000002R056993", "___s": true }, { @@ -924869,7 +928290,7 @@ "name": "event" } ], - "___id": "T000002R056990", + "___id": "T000002R056994", "___s": true }, { @@ -924900,7 +928321,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#drawSpriteShader", "inherited": true, - "___id": "T000002R056991", + "___id": "T000002R056995", "___s": true }, { @@ -924931,7 +928352,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#copyShader", "inherited": true, - "___id": "T000002R056992", + "___id": "T000002R056996", "___s": true }, { @@ -924962,7 +928383,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#gameShader", "inherited": true, - "___id": "T000002R056993", + "___id": "T000002R056997", "___s": true }, { @@ -924992,7 +928413,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#colorMatrixShader", "inherited": true, - "___id": "T000002R056994", + "___id": "T000002R056998", "___s": true }, { @@ -925023,7 +928444,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#quadVertexData", "inherited": true, - "___id": "T000002R056995", + "___id": "T000002R056999", "___s": true }, { @@ -925054,7 +928475,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#quadVertexBuffer", "inherited": true, - "___id": "T000002R056996", + "___id": "T000002R057000", "___s": true }, { @@ -925084,7 +928505,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#quadVertexViewF32", "inherited": true, - "___id": "T000002R056997", + "___id": "T000002R057001", "___s": true }, { @@ -925114,7 +928535,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#fsTarget", "inherited": true, - "___id": "T000002R057000", + "___id": "T000002R057004", "___s": true }, { @@ -925163,7 +928584,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#onResize", "inherited": true, - "___id": "T000002R057002", + "___id": "T000002R057006", "___s": true }, { @@ -925467,7 +928888,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#batchQuad", "inherited": true, - "___id": "T000002R057003", + "___id": "T000002R057007", "___s": true }, { @@ -925516,7 +928937,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#onDrawSprite", "inherited": true, - "___id": "T000002R057004", + "___id": "T000002R057008", "___s": true }, { @@ -925578,7 +928999,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#onCopySprite", "inherited": true, - "___id": "T000002R057005", + "___id": "T000002R057009", "___s": true }, { @@ -925700,7 +929121,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#copySprite", "inherited": true, - "___id": "T000002R057006", + "___id": "T000002R057010", "___s": true }, { @@ -925749,7 +929170,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#copy", "inherited": true, - "___id": "T000002R057007", + "___id": "T000002R057011", "___s": true }, { @@ -925842,7 +929263,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#blendFrames", "inherited": true, - "___id": "T000002R057008", + "___id": "T000002R057012", "___s": true }, { @@ -925935,7 +929356,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#blendFramesAdditive", "inherited": true, - "___id": "T000002R057009", + "___id": "T000002R057013", "___s": true }, { @@ -925971,7 +929392,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#drawToGame", "inherited": true, - "___id": "T000002R057010", + "___id": "T000002R057014", "___s": true }, { @@ -926007,7 +929428,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#copyToGame", "inherited": true, - "___id": "T000002R057011", + "___id": "T000002R057015", "___s": true }, { @@ -926043,7 +929464,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#bindAndDraw", "inherited": true, - "___id": "T000002R057012", + "___id": "T000002R057016", "___s": true }, { @@ -926170,7 +929591,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#setUVs", "inherited": true, - "___id": "T000002R057013", + "___id": "T000002R057017", "___s": true }, { @@ -926219,7 +929640,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#setTargetUVs", "inherited": true, - "___id": "T000002R057014", + "___id": "T000002R057018", "___s": true }, { @@ -926240,7 +929661,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.PreFXPipeline#resetUVs", "inherited": true, - "___id": "T000002R057015", + "___id": "T000002R057019", "___s": true }, { @@ -926270,7 +929691,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R057016", + "___id": "T000002R057020", "___s": true }, { @@ -926300,7 +929721,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R057017", + "___id": "T000002R057021", "___s": true }, { @@ -926330,7 +929751,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R057018", + "___id": "T000002R057022", "___s": true }, { @@ -926362,7 +929783,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R057019", + "___id": "T000002R057023", "___s": true }, { @@ -926392,7 +929813,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R057020", + "___id": "T000002R057024", "___s": true }, { @@ -926422,7 +929843,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R057021", + "___id": "T000002R057025", "___s": true }, { @@ -926452,7 +929873,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R057022", + "___id": "T000002R057026", "___s": true }, { @@ -926482,7 +929903,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R057023", + "___id": "T000002R057027", "___s": true }, { @@ -926513,7 +929934,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R057024", + "___id": "T000002R057028", "___s": true }, { @@ -926543,7 +929964,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R057025", + "___id": "T000002R057029", "___s": true }, { @@ -926574,7 +929995,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R057026", + "___id": "T000002R057030", "___s": true }, { @@ -926605,7 +930026,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R057027", + "___id": "T000002R057031", "___s": true }, { @@ -926635,7 +930056,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R057028", + "___id": "T000002R057032", "___s": true }, { @@ -926665,7 +930086,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R057029", + "___id": "T000002R057033", "___s": true }, { @@ -926695,7 +930116,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R057030", + "___id": "T000002R057034", "___s": true }, { @@ -926725,7 +930146,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R057031", + "___id": "T000002R057035", "___s": true }, { @@ -926755,7 +930176,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R057032", + "___id": "T000002R057036", "___s": true }, { @@ -926785,7 +930206,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R057033", + "___id": "T000002R057037", "___s": true }, { @@ -926815,7 +930236,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R057034", + "___id": "T000002R057038", "___s": true }, { @@ -926846,7 +930267,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R057035", + "___id": "T000002R057039", "___s": true }, { @@ -926877,7 +930298,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R057036", + "___id": "T000002R057040", "___s": true }, { @@ -926908,7 +930329,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R057037", + "___id": "T000002R057041", "___s": true }, { @@ -926947,7 +930368,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R057038", + "___id": "T000002R057042", "___s": true }, { @@ -926977,7 +930398,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R057039", + "___id": "T000002R057043", "___s": true }, { @@ -927016,7 +930437,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R057040", + "___id": "T000002R057044", "___s": true }, { @@ -927046,7 +930467,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R057041", + "___id": "T000002R057045", "___s": true }, { @@ -927076,7 +930497,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R057042", + "___id": "T000002R057046", "___s": true }, { @@ -927106,7 +930527,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R057043", + "___id": "T000002R057047", "___s": true }, { @@ -927136,7 +930557,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R057044", + "___id": "T000002R057048", "___s": true }, { @@ -927166,7 +930587,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R057045", + "___id": "T000002R057049", "___s": true }, { @@ -927196,7 +930617,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R057046", + "___id": "T000002R057050", "___s": true }, { @@ -927235,7 +930656,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R057047", + "___id": "T000002R057051", "___s": true }, { @@ -927267,7 +930688,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R057048", + "___id": "T000002R057052", "___s": true }, { @@ -927299,7 +930720,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R057049", + "___id": "T000002R057053", "___s": true }, { @@ -927329,7 +930750,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R057050", + "___id": "T000002R057054", "___s": true }, { @@ -927368,7 +930789,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R057051", + "___id": "T000002R057055", "___s": true }, { @@ -927398,7 +930819,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R057052", + "___id": "T000002R057056", "___s": true }, { @@ -927422,7 +930843,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R057053", + "___id": "T000002R057057", "___s": true }, { @@ -927443,7 +930864,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R057054", + "___id": "T000002R057058", "___s": true }, { @@ -927523,7 +930944,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R057055", + "___id": "T000002R057059", "___s": true }, { @@ -927573,7 +930994,7 @@ "name": "name" } ], - "___id": "T000002R057056", + "___id": "T000002R057060", "___s": true }, { @@ -927624,7 +931045,7 @@ "name": "config" } ], - "___id": "T000002R057057", + "___id": "T000002R057061", "___s": true }, { @@ -927674,7 +931095,7 @@ "name": "texture" } ], - "___id": "T000002R057058", + "___id": "T000002R057062", "___s": true }, { @@ -927710,7 +931131,7 @@ "name": "texture" } ], - "___id": "T000002R057059", + "___id": "T000002R057063", "___s": true }, { @@ -927760,7 +931181,7 @@ "name": "texture" } ], - "___id": "T000002R057060", + "___id": "T000002R057064", "___s": true }, { @@ -927824,7 +931245,7 @@ "name": "frame" } ], - "___id": "T000002R057061", + "___id": "T000002R057065", "___s": true }, { @@ -927876,7 +931297,7 @@ "name": "amount" } ], - "___id": "T000002R057062", + "___id": "T000002R057066", "___s": true }, { @@ -927911,7 +931332,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R057063", + "___id": "T000002R057067", "___s": true }, { @@ -927978,7 +931399,7 @@ "name": "height" } ], - "___id": "T000002R057064", + "___id": "T000002R057068", "___s": true }, { @@ -928042,7 +931463,7 @@ "name": "height" } ], - "___id": "T000002R057065", + "___id": "T000002R057069", "___s": true }, { @@ -928080,7 +931501,7 @@ "name": "flipY" } ], - "___id": "T000002R057066", + "___id": "T000002R057070", "___s": true }, { @@ -928101,7 +931522,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R057067", + "___id": "T000002R057071", "___s": true }, { @@ -928156,7 +931577,7 @@ "name": "currentShader" } ], - "___id": "T000002R057068", + "___id": "T000002R057072", "___s": true }, { @@ -928211,7 +931632,7 @@ "name": "currentShader" } ], - "___id": "T000002R057069", + "___id": "T000002R057073", "___s": true }, { @@ -928232,7 +931653,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R057070", + "___id": "T000002R057074", "___s": true }, { @@ -928283,7 +931704,7 @@ "name": "buffer" } ], - "___id": "T000002R057071", + "___id": "T000002R057075", "___s": true }, { @@ -928345,7 +931766,7 @@ "name": "gameObject" } ], - "___id": "T000002R057072", + "___id": "T000002R057076", "___s": true }, { @@ -928407,7 +931828,7 @@ "name": "gameObject" } ], - "___id": "T000002R057073", + "___id": "T000002R057077", "___s": true }, { @@ -928428,7 +931849,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R057074", + "___id": "T000002R057078", "___s": true }, { @@ -928485,7 +931906,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057075", + "___id": "T000002R057079", "___s": true }, { @@ -928521,7 +931942,7 @@ "name": "currentShader" } ], - "___id": "T000002R057076", + "___id": "T000002R057080", "___s": true }, { @@ -928558,7 +931979,7 @@ "name": "gameObject" } ], - "___id": "T000002R057077", + "___id": "T000002R057081", "___s": true }, { @@ -928579,7 +932000,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R057078", + "___id": "T000002R057082", "___s": true }, { @@ -928616,7 +932037,7 @@ "name": "gameObject" } ], - "___id": "T000002R057079", + "___id": "T000002R057083", "___s": true }, { @@ -928653,7 +932074,7 @@ "name": "gameObject" } ], - "___id": "T000002R057080", + "___id": "T000002R057084", "___s": true }, { @@ -928690,7 +932111,7 @@ "name": "gameObject" } ], - "___id": "T000002R057081", + "___id": "T000002R057085", "___s": true }, { @@ -928711,7 +932132,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R057082", + "___id": "T000002R057086", "___s": true }, { @@ -928760,7 +932181,7 @@ "name": "camera" } ], - "___id": "T000002R057083", + "___id": "T000002R057087", "___s": true }, { @@ -928781,7 +932202,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R057084", + "___id": "T000002R057088", "___s": true }, { @@ -928819,7 +932240,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057085", + "___id": "T000002R057089", "___s": true }, { @@ -928857,7 +932278,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057086", + "___id": "T000002R057090", "___s": true }, { @@ -928981,7 +932402,7 @@ "name": "tint" } ], - "___id": "T000002R057087", + "___id": "T000002R057091", "___s": true }, { @@ -929261,7 +932682,7 @@ "name": "unit" } ], - "___id": "T000002R057088", + "___id": "T000002R057092", "___s": true }, { @@ -929391,7 +932812,7 @@ "name": "flipUV" } ], - "___id": "T000002R057089", + "___id": "T000002R057093", "___s": true }, { @@ -929442,7 +932863,7 @@ "name": "texture" } ], - "___id": "T000002R057090", + "___id": "T000002R057094", "___s": true }, { @@ -929509,7 +932930,7 @@ "name": "unit" } ], - "___id": "T000002R057091", + "___id": "T000002R057095", "___s": true }, { @@ -929576,7 +932997,7 @@ "name": "unit" } ], - "___id": "T000002R057092", + "___id": "T000002R057096", "___s": true }, { @@ -929641,7 +933062,7 @@ "name": "shader" } ], - "___id": "T000002R057093", + "___id": "T000002R057097", "___s": true }, { @@ -929719,7 +933140,7 @@ "name": "shader" } ], - "___id": "T000002R057094", + "___id": "T000002R057098", "___s": true }, { @@ -929797,7 +933218,7 @@ "name": "shader" } ], - "___id": "T000002R057095", + "___id": "T000002R057099", "___s": true }, { @@ -929888,7 +933309,7 @@ "name": "shader" } ], - "___id": "T000002R057096", + "___id": "T000002R057100", "___s": true }, { @@ -929992,7 +933413,7 @@ "name": "shader" } ], - "___id": "T000002R057097", + "___id": "T000002R057101", "___s": true }, { @@ -930109,7 +933530,7 @@ "name": "shader" } ], - "___id": "T000002R057098", + "___id": "T000002R057102", "___s": true }, { @@ -930206,7 +933627,7 @@ "name": "shader" } ], - "___id": "T000002R057099", + "___id": "T000002R057103", "___s": true }, { @@ -930303,7 +933724,7 @@ "name": "shader" } ], - "___id": "T000002R057100", + "___id": "T000002R057104", "___s": true }, { @@ -930400,7 +933821,7 @@ "name": "shader" } ], - "___id": "T000002R057101", + "___id": "T000002R057105", "___s": true }, { @@ -930497,7 +933918,7 @@ "name": "shader" } ], - "___id": "T000002R057102", + "___id": "T000002R057106", "___s": true }, { @@ -930594,7 +934015,7 @@ "name": "shader" } ], - "___id": "T000002R057103", + "___id": "T000002R057107", "___s": true }, { @@ -930691,7 +934112,7 @@ "name": "shader" } ], - "___id": "T000002R057104", + "___id": "T000002R057108", "___s": true }, { @@ -930788,7 +934209,7 @@ "name": "shader" } ], - "___id": "T000002R057105", + "___id": "T000002R057109", "___s": true }, { @@ -930885,7 +934306,7 @@ "name": "shader" } ], - "___id": "T000002R057106", + "___id": "T000002R057110", "___s": true }, { @@ -930963,7 +934384,7 @@ "name": "shader" } ], - "___id": "T000002R057107", + "___id": "T000002R057111", "___s": true }, { @@ -931054,7 +934475,7 @@ "name": "shader" } ], - "___id": "T000002R057108", + "___id": "T000002R057112", "___s": true }, { @@ -931158,7 +934579,7 @@ "name": "shader" } ], - "___id": "T000002R057109", + "___id": "T000002R057113", "___s": true }, { @@ -931275,7 +934696,7 @@ "name": "shader" } ], - "___id": "T000002R057110", + "___id": "T000002R057114", "___s": true }, { @@ -931385,7 +934806,7 @@ "name": "shader" } ], - "___id": "T000002R057111", + "___id": "T000002R057115", "___s": true }, { @@ -931476,7 +934897,7 @@ "name": "shader" } ], - "___id": "T000002R057112", + "___id": "T000002R057116", "___s": true }, { @@ -931567,7 +934988,7 @@ "name": "shader" } ], - "___id": "T000002R057113", + "___id": "T000002R057117", "___s": true }, { @@ -931588,7 +935009,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R057114", + "___id": "T000002R057118", "___s": true }, { @@ -931640,7 +935061,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R057115", + "___id": "T000002R057119", "___s": true }, { @@ -931709,7 +935130,7 @@ "name": "event" } ], - "___id": "T000002R057116", + "___id": "T000002R057120", "___s": true }, { @@ -931769,7 +935190,7 @@ "name": "event" } ], - "___id": "T000002R057117", + "___id": "T000002R057121", "___s": true }, { @@ -931844,7 +935265,7 @@ "name": "args" } ], - "___id": "T000002R057118", + "___id": "T000002R057122", "___s": true }, { @@ -931932,7 +935353,7 @@ "name": "context" } ], - "___id": "T000002R057119", + "___id": "T000002R057123", "___s": true }, { @@ -932020,7 +935441,7 @@ "name": "context" } ], - "___id": "T000002R057120", + "___id": "T000002R057124", "___s": true }, { @@ -932108,7 +935529,7 @@ "name": "context" } ], - "___id": "T000002R057121", + "___id": "T000002R057125", "___s": true }, { @@ -932210,7 +935631,7 @@ "name": "once" } ], - "___id": "T000002R057122", + "___id": "T000002R057126", "___s": true }, { @@ -932312,7 +935733,7 @@ "name": "once" } ], - "___id": "T000002R057123", + "___id": "T000002R057127", "___s": true }, { @@ -932374,7 +935795,7 @@ "name": "event" } ], - "___id": "T000002R057124", + "___id": "T000002R057128", "___s": true }, { @@ -932404,7 +935825,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R057125", + "___id": "T000002R057129", "___s": true }, { @@ -932434,7 +935855,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R057126", + "___id": "T000002R057130", "___s": true }, { @@ -932464,7 +935885,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R057127", + "___id": "T000002R057131", "___s": true }, { @@ -932496,7 +935917,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R057128", + "___id": "T000002R057132", "___s": true }, { @@ -932526,7 +935947,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R057129", + "___id": "T000002R057133", "___s": true }, { @@ -932556,7 +935977,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R057130", + "___id": "T000002R057134", "___s": true }, { @@ -932586,7 +936007,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R057131", + "___id": "T000002R057135", "___s": true }, { @@ -932616,7 +936037,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R057132", + "___id": "T000002R057136", "___s": true }, { @@ -932647,7 +936068,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R057133", + "___id": "T000002R057137", "___s": true }, { @@ -932677,7 +936098,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R057134", + "___id": "T000002R057138", "___s": true }, { @@ -932708,7 +936129,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R057135", + "___id": "T000002R057139", "___s": true }, { @@ -932739,7 +936160,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R057136", + "___id": "T000002R057140", "___s": true }, { @@ -932769,7 +936190,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R057137", + "___id": "T000002R057141", "___s": true }, { @@ -932799,7 +936220,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R057138", + "___id": "T000002R057142", "___s": true }, { @@ -932829,7 +936250,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R057139", + "___id": "T000002R057143", "___s": true }, { @@ -932859,7 +936280,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R057140", + "___id": "T000002R057144", "___s": true }, { @@ -932889,7 +936310,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R057141", + "___id": "T000002R057145", "___s": true }, { @@ -932919,7 +936340,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R057142", + "___id": "T000002R057146", "___s": true }, { @@ -932949,7 +936370,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R057143", + "___id": "T000002R057147", "___s": true }, { @@ -932980,7 +936401,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R057144", + "___id": "T000002R057148", "___s": true }, { @@ -933011,7 +936432,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R057145", + "___id": "T000002R057149", "___s": true }, { @@ -933042,7 +936463,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R057146", + "___id": "T000002R057150", "___s": true }, { @@ -933081,7 +936502,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R057147", + "___id": "T000002R057151", "___s": true }, { @@ -933111,7 +936532,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R057148", + "___id": "T000002R057152", "___s": true }, { @@ -933150,7 +936571,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R057149", + "___id": "T000002R057153", "___s": true }, { @@ -933180,7 +936601,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R057150", + "___id": "T000002R057154", "___s": true }, { @@ -933210,7 +936631,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R057151", + "___id": "T000002R057155", "___s": true }, { @@ -933240,7 +936661,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R057152", + "___id": "T000002R057156", "___s": true }, { @@ -933270,7 +936691,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R057153", + "___id": "T000002R057157", "___s": true }, { @@ -933300,7 +936721,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R057154", + "___id": "T000002R057158", "___s": true }, { @@ -933330,7 +936751,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R057155", + "___id": "T000002R057159", "___s": true }, { @@ -933369,7 +936790,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R057156", + "___id": "T000002R057160", "___s": true }, { @@ -933401,7 +936822,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R057157", + "___id": "T000002R057161", "___s": true }, { @@ -933433,7 +936854,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R057158", + "___id": "T000002R057162", "___s": true }, { @@ -933463,7 +936884,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R057159", + "___id": "T000002R057163", "___s": true }, { @@ -933502,7 +936923,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R057160", + "___id": "T000002R057164", "___s": true }, { @@ -933532,7 +936953,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R057161", + "___id": "T000002R057165", "___s": true }, { @@ -933553,7 +936974,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R057162", + "___id": "T000002R057166", "___s": true }, { @@ -933602,7 +937023,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onResize", "inherited": true, - "___id": "T000002R057163", + "___id": "T000002R057167", "___s": true }, { @@ -933682,7 +937103,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setShader", "inherited": true, - "___id": "T000002R057164", + "___id": "T000002R057168", "___s": true }, { @@ -933732,7 +937153,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#getShaderByName", "inherited": true, - "___id": "T000002R057165", + "___id": "T000002R057169", "___s": true }, { @@ -933783,7 +937204,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setShadersFromConfig", "inherited": true, - "___id": "T000002R057166", + "___id": "T000002R057170", "___s": true }, { @@ -933833,7 +937254,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#createBatch", "inherited": true, - "___id": "T000002R057167", + "___id": "T000002R057171", "___s": true }, { @@ -933869,7 +937290,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#addTextureToBatch", "inherited": true, - "___id": "T000002R057168", + "___id": "T000002R057172", "___s": true }, { @@ -933919,7 +937340,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#pushBatch", "inherited": true, - "___id": "T000002R057169", + "___id": "T000002R057173", "___s": true }, { @@ -933983,7 +937404,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setGameObject", "inherited": true, - "___id": "T000002R057170", + "___id": "T000002R057174", "___s": true }, { @@ -934035,7 +937456,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shouldFlush", "inherited": true, - "___id": "T000002R057171", + "___id": "T000002R057175", "___s": true }, { @@ -934070,7 +937491,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R057172", + "___id": "T000002R057176", "___s": true }, { @@ -934137,7 +937558,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resize", "inherited": true, - "___id": "T000002R057173", + "___id": "T000002R057177", "___s": true }, { @@ -934201,7 +937622,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setProjectionMatrix", "inherited": true, - "___id": "T000002R057174", + "___id": "T000002R057178", "___s": true }, { @@ -934239,7 +937660,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#flipProjectionMatrix", "inherited": true, - "___id": "T000002R057175", + "___id": "T000002R057179", "___s": true }, { @@ -934260,7 +937681,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R057176", + "___id": "T000002R057180", "___s": true }, { @@ -934315,7 +937736,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bind", "inherited": true, - "___id": "T000002R057177", + "___id": "T000002R057181", "___s": true }, { @@ -934370,7 +937791,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#rebind", "inherited": true, - "___id": "T000002R057178", + "___id": "T000002R057182", "___s": true }, { @@ -934391,7 +937812,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R057179", + "___id": "T000002R057183", "___s": true }, { @@ -934442,7 +937863,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setVertexBuffer", "inherited": true, - "___id": "T000002R057180", + "___id": "T000002R057184", "___s": true }, { @@ -934504,7 +937925,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#preBatch", "inherited": true, - "___id": "T000002R057181", + "___id": "T000002R057185", "___s": true }, { @@ -934566,7 +937987,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#postBatch", "inherited": true, - "___id": "T000002R057182", + "___id": "T000002R057186", "___s": true }, { @@ -934616,7 +938037,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onDraw", "inherited": true, - "___id": "T000002R057183", + "___id": "T000002R057187", "___s": true }, { @@ -934637,7 +938058,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R057184", + "___id": "T000002R057188", "___s": true }, { @@ -934694,7 +938115,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#flush", "inherited": true, - "___id": "T000002R057185", + "___id": "T000002R057189", "___s": true }, { @@ -934730,7 +938151,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onActive", "inherited": true, - "___id": "T000002R057186", + "___id": "T000002R057190", "___s": true }, { @@ -934767,7 +938188,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBind", "inherited": true, - "___id": "T000002R057187", + "___id": "T000002R057191", "___s": true }, { @@ -934788,7 +938209,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R057188", + "___id": "T000002R057192", "___s": true }, { @@ -934825,7 +938246,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBatch", "inherited": true, - "___id": "T000002R057189", + "___id": "T000002R057193", "___s": true }, { @@ -934862,7 +938283,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreBatch", "inherited": true, - "___id": "T000002R057190", + "___id": "T000002R057194", "___s": true }, { @@ -934899,7 +938320,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostBatch", "inherited": true, - "___id": "T000002R057191", + "___id": "T000002R057195", "___s": true }, { @@ -934920,7 +938341,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R057192", + "___id": "T000002R057196", "___s": true }, { @@ -934969,7 +938390,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRender", "inherited": true, - "___id": "T000002R057193", + "___id": "T000002R057197", "___s": true }, { @@ -934990,7 +938411,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R057194", + "___id": "T000002R057198", "___s": true }, { @@ -935028,7 +938449,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBeforeFlush", "inherited": true, - "___id": "T000002R057195", + "___id": "T000002R057199", "___s": true }, { @@ -935066,7 +938487,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onAfterFlush", "inherited": true, - "___id": "T000002R057196", + "___id": "T000002R057200", "___s": true }, { @@ -935190,7 +938611,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchVert", "inherited": true, - "___id": "T000002R057197", + "___id": "T000002R057201", "___s": true }, { @@ -935509,7 +938930,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchQuad", "inherited": true, - "___id": "T000002R057198", + "___id": "T000002R057202", "___s": true }, { @@ -935789,7 +939210,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchTri", "inherited": true, - "___id": "T000002R057199", + "___id": "T000002R057203", "___s": true }, { @@ -935919,7 +939340,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#drawFillRect", "inherited": true, - "___id": "T000002R057200", + "___id": "T000002R057204", "___s": true }, { @@ -935970,7 +939391,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setTexture2D", "inherited": true, - "___id": "T000002R057201", + "___id": "T000002R057205", "___s": true }, { @@ -936037,7 +939458,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bindTexture", "inherited": true, - "___id": "T000002R057202", + "___id": "T000002R057206", "___s": true }, { @@ -936104,7 +939525,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bindRenderTarget", "inherited": true, - "___id": "T000002R057203", + "___id": "T000002R057207", "___s": true }, { @@ -936169,7 +939590,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setTime", "inherited": true, - "___id": "T000002R057204", + "___id": "T000002R057208", "___s": true }, { @@ -936247,7 +939668,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setBoolean", "inherited": true, - "___id": "T000002R057205", + "___id": "T000002R057209", "___s": true }, { @@ -936325,7 +939746,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1f", "inherited": true, - "___id": "T000002R057206", + "___id": "T000002R057210", "___s": true }, { @@ -936416,7 +939837,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2f", "inherited": true, - "___id": "T000002R057207", + "___id": "T000002R057211", "___s": true }, { @@ -936520,7 +939941,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3f", "inherited": true, - "___id": "T000002R057208", + "___id": "T000002R057212", "___s": true }, { @@ -936637,7 +940058,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4f", "inherited": true, - "___id": "T000002R057209", + "___id": "T000002R057213", "___s": true }, { @@ -936734,7 +940155,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1fv", "inherited": true, - "___id": "T000002R057210", + "___id": "T000002R057214", "___s": true }, { @@ -936831,7 +940252,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2fv", "inherited": true, - "___id": "T000002R057211", + "___id": "T000002R057215", "___s": true }, { @@ -936928,7 +940349,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3fv", "inherited": true, - "___id": "T000002R057212", + "___id": "T000002R057216", "___s": true }, { @@ -937025,7 +940446,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4fv", "inherited": true, - "___id": "T000002R057213", + "___id": "T000002R057217", "___s": true }, { @@ -937122,7 +940543,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1iv", "inherited": true, - "___id": "T000002R057214", + "___id": "T000002R057218", "___s": true }, { @@ -937219,7 +940640,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2iv", "inherited": true, - "___id": "T000002R057215", + "___id": "T000002R057219", "___s": true }, { @@ -937316,7 +940737,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3iv", "inherited": true, - "___id": "T000002R057216", + "___id": "T000002R057220", "___s": true }, { @@ -937413,7 +940834,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4iv", "inherited": true, - "___id": "T000002R057217", + "___id": "T000002R057221", "___s": true }, { @@ -937491,7 +940912,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1i", "inherited": true, - "___id": "T000002R057218", + "___id": "T000002R057222", "___s": true }, { @@ -937582,7 +941003,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2i", "inherited": true, - "___id": "T000002R057219", + "___id": "T000002R057223", "___s": true }, { @@ -937686,7 +941107,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3i", "inherited": true, - "___id": "T000002R057220", + "___id": "T000002R057224", "___s": true }, { @@ -937803,7 +941224,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4i", "inherited": true, - "___id": "T000002R057221", + "___id": "T000002R057225", "___s": true }, { @@ -937913,7 +941334,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix2fv", "inherited": true, - "___id": "T000002R057222", + "___id": "T000002R057226", "___s": true }, { @@ -938004,7 +941425,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix3fv", "inherited": true, - "___id": "T000002R057223", + "___id": "T000002R057227", "___s": true }, { @@ -938095,7 +941516,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix4fv", "inherited": true, - "___id": "T000002R057224", + "___id": "T000002R057228", "___s": true }, { @@ -938116,7 +941537,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R057225", + "___id": "T000002R057229", "___s": true }, { @@ -938168,7 +941589,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R057226", + "___id": "T000002R057230", "___s": true }, { @@ -938237,7 +941658,7 @@ "name": "event" } ], - "___id": "T000002R057227", + "___id": "T000002R057231", "___s": true }, { @@ -938297,7 +941718,7 @@ "name": "event" } ], - "___id": "T000002R057228", + "___id": "T000002R057232", "___s": true }, { @@ -938372,7 +941793,7 @@ "name": "args" } ], - "___id": "T000002R057229", + "___id": "T000002R057233", "___s": true }, { @@ -938460,7 +941881,7 @@ "name": "context" } ], - "___id": "T000002R057230", + "___id": "T000002R057234", "___s": true }, { @@ -938548,7 +941969,7 @@ "name": "context" } ], - "___id": "T000002R057231", + "___id": "T000002R057235", "___s": true }, { @@ -938636,7 +942057,7 @@ "name": "context" } ], - "___id": "T000002R057232", + "___id": "T000002R057236", "___s": true }, { @@ -938738,7 +942159,7 @@ "name": "once" } ], - "___id": "T000002R057233", + "___id": "T000002R057237", "___s": true }, { @@ -938840,7 +942261,7 @@ "name": "once" } ], - "___id": "T000002R057234", + "___id": "T000002R057238", "___s": true }, { @@ -938902,7 +942323,7 @@ "name": "event" } ], - "___id": "T000002R057235", + "___id": "T000002R057239", "___s": true }, { @@ -938932,7 +942353,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#calcMatrix", "inherited": true, - "___id": "T000002R057238", + "___id": "T000002R057242", "___s": true }, { @@ -939033,7 +942454,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillRect", "inherited": true, - "___id": "T000002R057246", + "___id": "T000002R057250", "___s": true }, { @@ -939160,7 +942581,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillTriangle", "inherited": true, - "___id": "T000002R057247", + "___id": "T000002R057251", "___s": true }, { @@ -939300,7 +942721,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchStrokeTriangle", "inherited": true, - "___id": "T000002R057248", + "___id": "T000002R057252", "___s": true }, { @@ -939371,7 +942792,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillPath", "inherited": true, - "___id": "T000002R057249", + "___id": "T000002R057253", "___s": true }, { @@ -939468,7 +942889,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchStrokePath", "inherited": true, - "___id": "T000002R057250", + "___id": "T000002R057254", "___s": true }, { @@ -939621,7 +943042,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchLine", "inherited": true, - "___id": "T000002R057251", + "___id": "T000002R057255", "___s": true }, { @@ -939660,7 +943081,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#destroy", "inherited": true, - "___id": "T000002R057252", + "___id": "T000002R057256", "___s": true }, { @@ -939690,7 +943111,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R057253", + "___id": "T000002R057257", "___s": true }, { @@ -939720,7 +943141,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R057254", + "___id": "T000002R057258", "___s": true }, { @@ -939750,7 +943171,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R057255", + "___id": "T000002R057259", "___s": true }, { @@ -939782,7 +943203,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R057256", + "___id": "T000002R057260", "___s": true }, { @@ -939812,7 +943233,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R057257", + "___id": "T000002R057261", "___s": true }, { @@ -939842,7 +943263,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R057258", + "___id": "T000002R057262", "___s": true }, { @@ -939872,7 +943293,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R057259", + "___id": "T000002R057263", "___s": true }, { @@ -939902,7 +943323,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R057260", + "___id": "T000002R057264", "___s": true }, { @@ -939933,7 +943354,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R057261", + "___id": "T000002R057265", "___s": true }, { @@ -939963,7 +943384,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R057262", + "___id": "T000002R057266", "___s": true }, { @@ -939994,7 +943415,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R057263", + "___id": "T000002R057267", "___s": true }, { @@ -940025,7 +943446,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R057264", + "___id": "T000002R057268", "___s": true }, { @@ -940055,7 +943476,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R057265", + "___id": "T000002R057269", "___s": true }, { @@ -940085,7 +943506,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R057266", + "___id": "T000002R057270", "___s": true }, { @@ -940115,7 +943536,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R057267", + "___id": "T000002R057271", "___s": true }, { @@ -940145,7 +943566,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R057268", + "___id": "T000002R057272", "___s": true }, { @@ -940175,7 +943596,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R057269", + "___id": "T000002R057273", "___s": true }, { @@ -940205,7 +943626,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R057270", + "___id": "T000002R057274", "___s": true }, { @@ -940235,7 +943656,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R057271", + "___id": "T000002R057275", "___s": true }, { @@ -940266,7 +943687,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R057272", + "___id": "T000002R057276", "___s": true }, { @@ -940297,7 +943718,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R057273", + "___id": "T000002R057277", "___s": true }, { @@ -940328,7 +943749,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R057274", + "___id": "T000002R057278", "___s": true }, { @@ -940367,7 +943788,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R057275", + "___id": "T000002R057279", "___s": true }, { @@ -940397,7 +943818,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R057276", + "___id": "T000002R057280", "___s": true }, { @@ -940436,7 +943857,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R057277", + "___id": "T000002R057281", "___s": true }, { @@ -940466,7 +943887,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R057278", + "___id": "T000002R057282", "___s": true }, { @@ -940496,7 +943917,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R057279", + "___id": "T000002R057283", "___s": true }, { @@ -940526,7 +943947,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R057280", + "___id": "T000002R057284", "___s": true }, { @@ -940556,7 +943977,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R057281", + "___id": "T000002R057285", "___s": true }, { @@ -940586,7 +944007,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R057282", + "___id": "T000002R057286", "___s": true }, { @@ -940616,7 +944037,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R057283", + "___id": "T000002R057287", "___s": true }, { @@ -940655,7 +944076,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R057284", + "___id": "T000002R057288", "___s": true }, { @@ -940687,7 +944108,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R057285", + "___id": "T000002R057289", "___s": true }, { @@ -940719,7 +944140,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R057286", + "___id": "T000002R057290", "___s": true }, { @@ -940749,7 +944170,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R057287", + "___id": "T000002R057291", "___s": true }, { @@ -940788,7 +944209,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R057288", + "___id": "T000002R057292", "___s": true }, { @@ -940818,7 +944239,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R057289", + "___id": "T000002R057293", "___s": true }, { @@ -940839,7 +944260,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R057290", + "___id": "T000002R057294", "___s": true }, { @@ -940888,7 +944309,7 @@ "name": "height" } ], - "___id": "T000002R057291", + "___id": "T000002R057295", "___s": true }, { @@ -940968,7 +944389,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R057292", + "___id": "T000002R057296", "___s": true }, { @@ -941018,7 +944439,7 @@ "name": "name" } ], - "___id": "T000002R057293", + "___id": "T000002R057297", "___s": true }, { @@ -941069,7 +944490,7 @@ "name": "config" } ], - "___id": "T000002R057294", + "___id": "T000002R057298", "___s": true }, { @@ -941119,7 +944540,7 @@ "name": "texture" } ], - "___id": "T000002R057295", + "___id": "T000002R057299", "___s": true }, { @@ -941155,7 +944576,7 @@ "name": "texture" } ], - "___id": "T000002R057296", + "___id": "T000002R057300", "___s": true }, { @@ -941205,7 +944626,7 @@ "name": "texture" } ], - "___id": "T000002R057297", + "___id": "T000002R057301", "___s": true }, { @@ -941257,7 +944678,7 @@ "name": "amount" } ], - "___id": "T000002R057298", + "___id": "T000002R057302", "___s": true }, { @@ -941292,7 +944713,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R057299", + "___id": "T000002R057303", "___s": true }, { @@ -941359,7 +944780,7 @@ "name": "height" } ], - "___id": "T000002R057300", + "___id": "T000002R057304", "___s": true }, { @@ -941423,7 +944844,7 @@ "name": "height" } ], - "___id": "T000002R057301", + "___id": "T000002R057305", "___s": true }, { @@ -941461,7 +944882,7 @@ "name": "flipY" } ], - "___id": "T000002R057302", + "___id": "T000002R057306", "___s": true }, { @@ -941482,7 +944903,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R057303", + "___id": "T000002R057307", "___s": true }, { @@ -941537,7 +944958,7 @@ "name": "currentShader" } ], - "___id": "T000002R057304", + "___id": "T000002R057308", "___s": true }, { @@ -941592,7 +945013,7 @@ "name": "currentShader" } ], - "___id": "T000002R057305", + "___id": "T000002R057309", "___s": true }, { @@ -941613,7 +945034,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R057306", + "___id": "T000002R057310", "___s": true }, { @@ -941664,7 +945085,7 @@ "name": "buffer" } ], - "___id": "T000002R057307", + "___id": "T000002R057311", "___s": true }, { @@ -941726,7 +945147,7 @@ "name": "gameObject" } ], - "___id": "T000002R057308", + "___id": "T000002R057312", "___s": true }, { @@ -941788,7 +945209,7 @@ "name": "gameObject" } ], - "___id": "T000002R057309", + "___id": "T000002R057313", "___s": true }, { @@ -941838,7 +945259,7 @@ "name": "swapTarget" } ], - "___id": "T000002R057310", + "___id": "T000002R057314", "___s": true }, { @@ -941859,7 +945280,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R057311", + "___id": "T000002R057315", "___s": true }, { @@ -941916,7 +945337,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057312", + "___id": "T000002R057316", "___s": true }, { @@ -941952,7 +945373,7 @@ "name": "currentShader" } ], - "___id": "T000002R057313", + "___id": "T000002R057317", "___s": true }, { @@ -941989,7 +945410,7 @@ "name": "gameObject" } ], - "___id": "T000002R057314", + "___id": "T000002R057318", "___s": true }, { @@ -942010,7 +945431,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R057315", + "___id": "T000002R057319", "___s": true }, { @@ -942047,7 +945468,7 @@ "name": "gameObject" } ], - "___id": "T000002R057316", + "___id": "T000002R057320", "___s": true }, { @@ -942084,7 +945505,7 @@ "name": "gameObject" } ], - "___id": "T000002R057317", + "___id": "T000002R057321", "___s": true }, { @@ -942121,7 +945542,7 @@ "name": "gameObject" } ], - "___id": "T000002R057318", + "___id": "T000002R057322", "___s": true }, { @@ -942142,7 +945563,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R057319", + "___id": "T000002R057323", "___s": true }, { @@ -942163,7 +945584,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R057320", + "___id": "T000002R057324", "___s": true }, { @@ -942201,7 +945622,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057321", + "___id": "T000002R057325", "___s": true }, { @@ -942239,7 +945660,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057322", + "___id": "T000002R057326", "___s": true }, { @@ -942363,7 +945784,7 @@ "name": "tint" } ], - "___id": "T000002R057323", + "___id": "T000002R057327", "___s": true }, { @@ -942682,7 +946103,7 @@ "name": "unit" } ], - "___id": "T000002R057324", + "___id": "T000002R057328", "___s": true }, { @@ -942962,7 +946383,7 @@ "name": "unit" } ], - "___id": "T000002R057325", + "___id": "T000002R057329", "___s": true }, { @@ -943092,7 +946513,7 @@ "name": "flipUV" } ], - "___id": "T000002R057326", + "___id": "T000002R057330", "___s": true }, { @@ -943159,7 +946580,7 @@ "name": "unit" } ], - "___id": "T000002R057327", + "___id": "T000002R057331", "___s": true }, { @@ -943226,7 +946647,7 @@ "name": "unit" } ], - "___id": "T000002R057328", + "___id": "T000002R057332", "___s": true }, { @@ -943291,7 +946712,7 @@ "name": "shader" } ], - "___id": "T000002R057329", + "___id": "T000002R057333", "___s": true }, { @@ -943369,7 +946790,7 @@ "name": "shader" } ], - "___id": "T000002R057330", + "___id": "T000002R057334", "___s": true }, { @@ -943447,7 +946868,7 @@ "name": "shader" } ], - "___id": "T000002R057331", + "___id": "T000002R057335", "___s": true }, { @@ -943538,7 +946959,7 @@ "name": "shader" } ], - "___id": "T000002R057332", + "___id": "T000002R057336", "___s": true }, { @@ -943642,7 +947063,7 @@ "name": "shader" } ], - "___id": "T000002R057333", + "___id": "T000002R057337", "___s": true }, { @@ -943759,7 +947180,7 @@ "name": "shader" } ], - "___id": "T000002R057334", + "___id": "T000002R057338", "___s": true }, { @@ -943856,7 +947277,7 @@ "name": "shader" } ], - "___id": "T000002R057335", + "___id": "T000002R057339", "___s": true }, { @@ -943953,7 +947374,7 @@ "name": "shader" } ], - "___id": "T000002R057336", + "___id": "T000002R057340", "___s": true }, { @@ -944050,7 +947471,7 @@ "name": "shader" } ], - "___id": "T000002R057337", + "___id": "T000002R057341", "___s": true }, { @@ -944147,7 +947568,7 @@ "name": "shader" } ], - "___id": "T000002R057338", + "___id": "T000002R057342", "___s": true }, { @@ -944244,7 +947665,7 @@ "name": "shader" } ], - "___id": "T000002R057339", + "___id": "T000002R057343", "___s": true }, { @@ -944341,7 +947762,7 @@ "name": "shader" } ], - "___id": "T000002R057340", + "___id": "T000002R057344", "___s": true }, { @@ -944438,7 +947859,7 @@ "name": "shader" } ], - "___id": "T000002R057341", + "___id": "T000002R057345", "___s": true }, { @@ -944535,7 +947956,7 @@ "name": "shader" } ], - "___id": "T000002R057342", + "___id": "T000002R057346", "___s": true }, { @@ -944613,7 +948034,7 @@ "name": "shader" } ], - "___id": "T000002R057343", + "___id": "T000002R057347", "___s": true }, { @@ -944704,7 +948125,7 @@ "name": "shader" } ], - "___id": "T000002R057344", + "___id": "T000002R057348", "___s": true }, { @@ -944808,7 +948229,7 @@ "name": "shader" } ], - "___id": "T000002R057345", + "___id": "T000002R057349", "___s": true }, { @@ -944925,7 +948346,7 @@ "name": "shader" } ], - "___id": "T000002R057346", + "___id": "T000002R057350", "___s": true }, { @@ -945035,7 +948456,7 @@ "name": "shader" } ], - "___id": "T000002R057347", + "___id": "T000002R057351", "___s": true }, { @@ -945126,7 +948547,7 @@ "name": "shader" } ], - "___id": "T000002R057348", + "___id": "T000002R057352", "___s": true }, { @@ -945217,7 +948638,7 @@ "name": "shader" } ], - "___id": "T000002R057349", + "___id": "T000002R057353", "___s": true }, { @@ -945238,7 +948659,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R057350", + "___id": "T000002R057354", "___s": true }, { @@ -945290,7 +948711,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R057351", + "___id": "T000002R057355", "___s": true }, { @@ -945359,7 +948780,7 @@ "name": "event" } ], - "___id": "T000002R057352", + "___id": "T000002R057356", "___s": true }, { @@ -945419,7 +948840,7 @@ "name": "event" } ], - "___id": "T000002R057353", + "___id": "T000002R057357", "___s": true }, { @@ -945494,7 +948915,7 @@ "name": "args" } ], - "___id": "T000002R057354", + "___id": "T000002R057358", "___s": true }, { @@ -945582,7 +949003,7 @@ "name": "context" } ], - "___id": "T000002R057355", + "___id": "T000002R057359", "___s": true }, { @@ -945670,7 +949091,7 @@ "name": "context" } ], - "___id": "T000002R057356", + "___id": "T000002R057360", "___s": true }, { @@ -945758,7 +949179,7 @@ "name": "context" } ], - "___id": "T000002R057357", + "___id": "T000002R057361", "___s": true }, { @@ -945860,7 +949281,7 @@ "name": "once" } ], - "___id": "T000002R057358", + "___id": "T000002R057362", "___s": true }, { @@ -945962,7 +949383,7 @@ "name": "once" } ], - "___id": "T000002R057359", + "___id": "T000002R057363", "___s": true }, { @@ -946024,7 +949445,7 @@ "name": "event" } ], - "___id": "T000002R057360", + "___id": "T000002R057364", "___s": true }, { @@ -946054,7 +949475,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#calcMatrix", "inherited": true, - "___id": "T000002R057364", + "___id": "T000002R057368", "___s": true }, { @@ -946127,7 +949548,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchSprite", "inherited": true, - "___id": "T000002R057372", + "___id": "T000002R057376", "___s": true }, { @@ -946584,7 +950005,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchTexture", "inherited": true, - "___id": "T000002R057373", + "___id": "T000002R057377", "___s": true }, { @@ -946699,7 +950120,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchTextureFrame", "inherited": true, - "___id": "T000002R057374", + "___id": "T000002R057378", "___s": true }, { @@ -946800,7 +950221,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillRect", "inherited": true, - "___id": "T000002R057375", + "___id": "T000002R057379", "___s": true }, { @@ -946927,7 +950348,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillTriangle", "inherited": true, - "___id": "T000002R057376", + "___id": "T000002R057380", "___s": true }, { @@ -947067,7 +950488,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchStrokeTriangle", "inherited": true, - "___id": "T000002R057377", + "___id": "T000002R057381", "___s": true }, { @@ -947138,7 +950559,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillPath", "inherited": true, - "___id": "T000002R057378", + "___id": "T000002R057382", "___s": true }, { @@ -947235,7 +950656,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchStrokePath", "inherited": true, - "___id": "T000002R057379", + "___id": "T000002R057383", "___s": true }, { @@ -947388,7 +950809,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchLine", "inherited": true, - "___id": "T000002R057380", + "___id": "T000002R057384", "___s": true }, { @@ -947427,7 +950848,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#destroy", "inherited": true, - "___id": "T000002R057381", + "___id": "T000002R057385", "___s": true }, { @@ -947457,7 +950878,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R057382", + "___id": "T000002R057386", "___s": true }, { @@ -947487,7 +950908,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R057383", + "___id": "T000002R057387", "___s": true }, { @@ -947517,7 +950938,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R057384", + "___id": "T000002R057388", "___s": true }, { @@ -947549,7 +950970,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R057385", + "___id": "T000002R057389", "___s": true }, { @@ -947579,7 +951000,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R057386", + "___id": "T000002R057390", "___s": true }, { @@ -947609,7 +951030,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R057387", + "___id": "T000002R057391", "___s": true }, { @@ -947639,7 +951060,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R057388", + "___id": "T000002R057392", "___s": true }, { @@ -947669,7 +951090,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R057389", + "___id": "T000002R057393", "___s": true }, { @@ -947700,7 +951121,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R057390", + "___id": "T000002R057394", "___s": true }, { @@ -947730,7 +951151,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R057391", + "___id": "T000002R057395", "___s": true }, { @@ -947761,7 +951182,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R057392", + "___id": "T000002R057396", "___s": true }, { @@ -947792,7 +951213,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R057393", + "___id": "T000002R057397", "___s": true }, { @@ -947822,7 +951243,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R057394", + "___id": "T000002R057398", "___s": true }, { @@ -947852,7 +951273,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R057395", + "___id": "T000002R057399", "___s": true }, { @@ -947882,7 +951303,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R057396", + "___id": "T000002R057400", "___s": true }, { @@ -947912,7 +951333,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R057397", + "___id": "T000002R057401", "___s": true }, { @@ -947942,7 +951363,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R057398", + "___id": "T000002R057402", "___s": true }, { @@ -947972,7 +951393,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R057399", + "___id": "T000002R057403", "___s": true }, { @@ -948002,7 +951423,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R057400", + "___id": "T000002R057404", "___s": true }, { @@ -948033,7 +951454,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R057401", + "___id": "T000002R057405", "___s": true }, { @@ -948064,7 +951485,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R057402", + "___id": "T000002R057406", "___s": true }, { @@ -948095,7 +951516,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R057403", + "___id": "T000002R057407", "___s": true }, { @@ -948134,7 +951555,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R057404", + "___id": "T000002R057408", "___s": true }, { @@ -948164,7 +951585,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R057405", + "___id": "T000002R057409", "___s": true }, { @@ -948203,7 +951624,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R057406", + "___id": "T000002R057410", "___s": true }, { @@ -948233,7 +951654,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R057407", + "___id": "T000002R057411", "___s": true }, { @@ -948263,7 +951684,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R057408", + "___id": "T000002R057412", "___s": true }, { @@ -948293,7 +951714,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R057409", + "___id": "T000002R057413", "___s": true }, { @@ -948323,7 +951744,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R057410", + "___id": "T000002R057414", "___s": true }, { @@ -948353,7 +951774,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R057411", + "___id": "T000002R057415", "___s": true }, { @@ -948383,7 +951804,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R057412", + "___id": "T000002R057416", "___s": true }, { @@ -948422,7 +951843,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R057413", + "___id": "T000002R057417", "___s": true }, { @@ -948454,7 +951875,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R057414", + "___id": "T000002R057418", "___s": true }, { @@ -948486,7 +951907,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R057415", + "___id": "T000002R057419", "___s": true }, { @@ -948516,7 +951937,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R057416", + "___id": "T000002R057420", "___s": true }, { @@ -948555,7 +951976,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R057417", + "___id": "T000002R057421", "___s": true }, { @@ -948585,7 +952006,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R057418", + "___id": "T000002R057422", "___s": true }, { @@ -948606,7 +952027,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R057419", + "___id": "T000002R057423", "___s": true }, { @@ -948655,7 +952076,7 @@ "name": "height" } ], - "___id": "T000002R057420", + "___id": "T000002R057424", "___s": true }, { @@ -948735,7 +952156,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R057421", + "___id": "T000002R057425", "___s": true }, { @@ -948785,7 +952206,7 @@ "name": "name" } ], - "___id": "T000002R057422", + "___id": "T000002R057426", "___s": true }, { @@ -948836,7 +952257,7 @@ "name": "config" } ], - "___id": "T000002R057423", + "___id": "T000002R057427", "___s": true }, { @@ -948886,7 +952307,7 @@ "name": "texture" } ], - "___id": "T000002R057424", + "___id": "T000002R057428", "___s": true }, { @@ -948922,7 +952343,7 @@ "name": "texture" } ], - "___id": "T000002R057425", + "___id": "T000002R057429", "___s": true }, { @@ -948972,7 +952393,7 @@ "name": "texture" } ], - "___id": "T000002R057426", + "___id": "T000002R057430", "___s": true }, { @@ -949036,7 +952457,7 @@ "name": "frame" } ], - "___id": "T000002R057427", + "___id": "T000002R057431", "___s": true }, { @@ -949088,7 +952509,7 @@ "name": "amount" } ], - "___id": "T000002R057428", + "___id": "T000002R057432", "___s": true }, { @@ -949123,7 +952544,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R057429", + "___id": "T000002R057433", "___s": true }, { @@ -949190,7 +952611,7 @@ "name": "height" } ], - "___id": "T000002R057430", + "___id": "T000002R057434", "___s": true }, { @@ -949254,7 +952675,7 @@ "name": "height" } ], - "___id": "T000002R057431", + "___id": "T000002R057435", "___s": true }, { @@ -949292,7 +952713,7 @@ "name": "flipY" } ], - "___id": "T000002R057432", + "___id": "T000002R057436", "___s": true }, { @@ -949313,7 +952734,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R057433", + "___id": "T000002R057437", "___s": true }, { @@ -949368,7 +952789,7 @@ "name": "currentShader" } ], - "___id": "T000002R057434", + "___id": "T000002R057438", "___s": true }, { @@ -949423,7 +952844,7 @@ "name": "currentShader" } ], - "___id": "T000002R057435", + "___id": "T000002R057439", "___s": true }, { @@ -949444,7 +952865,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R057436", + "___id": "T000002R057440", "___s": true }, { @@ -949495,7 +952916,7 @@ "name": "buffer" } ], - "___id": "T000002R057437", + "___id": "T000002R057441", "___s": true }, { @@ -949557,7 +952978,7 @@ "name": "gameObject" } ], - "___id": "T000002R057438", + "___id": "T000002R057442", "___s": true }, { @@ -949619,7 +953040,7 @@ "name": "gameObject" } ], - "___id": "T000002R057439", + "___id": "T000002R057443", "___s": true }, { @@ -949669,7 +953090,7 @@ "name": "swapTarget" } ], - "___id": "T000002R057440", + "___id": "T000002R057444", "___s": true }, { @@ -949690,7 +953111,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R057441", + "___id": "T000002R057445", "___s": true }, { @@ -949747,7 +953168,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057442", + "___id": "T000002R057446", "___s": true }, { @@ -949783,7 +953204,7 @@ "name": "currentShader" } ], - "___id": "T000002R057443", + "___id": "T000002R057447", "___s": true }, { @@ -949820,7 +953241,7 @@ "name": "gameObject" } ], - "___id": "T000002R057444", + "___id": "T000002R057448", "___s": true }, { @@ -949841,7 +953262,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R057445", + "___id": "T000002R057449", "___s": true }, { @@ -949878,7 +953299,7 @@ "name": "gameObject" } ], - "___id": "T000002R057446", + "___id": "T000002R057450", "___s": true }, { @@ -949915,7 +953336,7 @@ "name": "gameObject" } ], - "___id": "T000002R057447", + "___id": "T000002R057451", "___s": true }, { @@ -949952,7 +953373,7 @@ "name": "gameObject" } ], - "___id": "T000002R057448", + "___id": "T000002R057452", "___s": true }, { @@ -949973,7 +953394,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R057449", + "___id": "T000002R057453", "___s": true }, { @@ -950022,7 +953443,7 @@ "name": "camera" } ], - "___id": "T000002R057450", + "___id": "T000002R057454", "___s": true }, { @@ -950043,7 +953464,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R057451", + "___id": "T000002R057455", "___s": true }, { @@ -950081,7 +953502,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057452", + "___id": "T000002R057456", "___s": true }, { @@ -950119,7 +953540,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057453", + "___id": "T000002R057457", "___s": true }, { @@ -950243,7 +953664,7 @@ "name": "tint" } ], - "___id": "T000002R057454", + "___id": "T000002R057458", "___s": true }, { @@ -950562,7 +953983,7 @@ "name": "unit" } ], - "___id": "T000002R057455", + "___id": "T000002R057459", "___s": true }, { @@ -950842,7 +954263,7 @@ "name": "unit" } ], - "___id": "T000002R057456", + "___id": "T000002R057460", "___s": true }, { @@ -950972,7 +954393,7 @@ "name": "flipUV" } ], - "___id": "T000002R057457", + "___id": "T000002R057461", "___s": true }, { @@ -951023,7 +954444,7 @@ "name": "texture" } ], - "___id": "T000002R057458", + "___id": "T000002R057462", "___s": true }, { @@ -951090,7 +954511,7 @@ "name": "unit" } ], - "___id": "T000002R057459", + "___id": "T000002R057463", "___s": true }, { @@ -951157,7 +954578,7 @@ "name": "unit" } ], - "___id": "T000002R057460", + "___id": "T000002R057464", "___s": true }, { @@ -951222,7 +954643,7 @@ "name": "shader" } ], - "___id": "T000002R057461", + "___id": "T000002R057465", "___s": true }, { @@ -951300,7 +954721,7 @@ "name": "shader" } ], - "___id": "T000002R057462", + "___id": "T000002R057466", "___s": true }, { @@ -951378,7 +954799,7 @@ "name": "shader" } ], - "___id": "T000002R057463", + "___id": "T000002R057467", "___s": true }, { @@ -951469,7 +954890,7 @@ "name": "shader" } ], - "___id": "T000002R057464", + "___id": "T000002R057468", "___s": true }, { @@ -951573,7 +954994,7 @@ "name": "shader" } ], - "___id": "T000002R057465", + "___id": "T000002R057469", "___s": true }, { @@ -951690,7 +955111,7 @@ "name": "shader" } ], - "___id": "T000002R057466", + "___id": "T000002R057470", "___s": true }, { @@ -951787,7 +955208,7 @@ "name": "shader" } ], - "___id": "T000002R057467", + "___id": "T000002R057471", "___s": true }, { @@ -951884,7 +955305,7 @@ "name": "shader" } ], - "___id": "T000002R057468", + "___id": "T000002R057472", "___s": true }, { @@ -951981,7 +955402,7 @@ "name": "shader" } ], - "___id": "T000002R057469", + "___id": "T000002R057473", "___s": true }, { @@ -952078,7 +955499,7 @@ "name": "shader" } ], - "___id": "T000002R057470", + "___id": "T000002R057474", "___s": true }, { @@ -952175,7 +955596,7 @@ "name": "shader" } ], - "___id": "T000002R057471", + "___id": "T000002R057475", "___s": true }, { @@ -952272,7 +955693,7 @@ "name": "shader" } ], - "___id": "T000002R057472", + "___id": "T000002R057476", "___s": true }, { @@ -952369,7 +955790,7 @@ "name": "shader" } ], - "___id": "T000002R057473", + "___id": "T000002R057477", "___s": true }, { @@ -952466,7 +955887,7 @@ "name": "shader" } ], - "___id": "T000002R057474", + "___id": "T000002R057478", "___s": true }, { @@ -952544,7 +955965,7 @@ "name": "shader" } ], - "___id": "T000002R057475", + "___id": "T000002R057479", "___s": true }, { @@ -952635,7 +956056,7 @@ "name": "shader" } ], - "___id": "T000002R057476", + "___id": "T000002R057480", "___s": true }, { @@ -952739,7 +956160,7 @@ "name": "shader" } ], - "___id": "T000002R057477", + "___id": "T000002R057481", "___s": true }, { @@ -952856,7 +956277,7 @@ "name": "shader" } ], - "___id": "T000002R057478", + "___id": "T000002R057482", "___s": true }, { @@ -952966,7 +956387,7 @@ "name": "shader" } ], - "___id": "T000002R057479", + "___id": "T000002R057483", "___s": true }, { @@ -953057,7 +956478,7 @@ "name": "shader" } ], - "___id": "T000002R057480", + "___id": "T000002R057484", "___s": true }, { @@ -953148,7 +956569,7 @@ "name": "shader" } ], - "___id": "T000002R057481", + "___id": "T000002R057485", "___s": true }, { @@ -953169,7 +956590,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R057482", + "___id": "T000002R057486", "___s": true }, { @@ -953221,7 +956642,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R057483", + "___id": "T000002R057487", "___s": true }, { @@ -953290,7 +956711,7 @@ "name": "event" } ], - "___id": "T000002R057484", + "___id": "T000002R057488", "___s": true }, { @@ -953350,7 +956771,7 @@ "name": "event" } ], - "___id": "T000002R057485", + "___id": "T000002R057489", "___s": true }, { @@ -953425,7 +956846,7 @@ "name": "args" } ], - "___id": "T000002R057486", + "___id": "T000002R057490", "___s": true }, { @@ -953513,7 +956934,7 @@ "name": "context" } ], - "___id": "T000002R057487", + "___id": "T000002R057491", "___s": true }, { @@ -953601,7 +957022,7 @@ "name": "context" } ], - "___id": "T000002R057488", + "___id": "T000002R057492", "___s": true }, { @@ -953689,7 +957110,7 @@ "name": "context" } ], - "___id": "T000002R057489", + "___id": "T000002R057493", "___s": true }, { @@ -953791,7 +957212,7 @@ "name": "once" } ], - "___id": "T000002R057490", + "___id": "T000002R057494", "___s": true }, { @@ -953893,7 +957314,7 @@ "name": "once" } ], - "___id": "T000002R057491", + "___id": "T000002R057495", "___s": true }, { @@ -953955,7 +957376,7 @@ "name": "event" } ], - "___id": "T000002R057492", + "___id": "T000002R057496", "___s": true }, { @@ -953985,7 +957406,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R057493", + "___id": "T000002R057497", "___s": true }, { @@ -954015,7 +957436,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R057494", + "___id": "T000002R057498", "___s": true }, { @@ -954045,7 +957466,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R057495", + "___id": "T000002R057499", "___s": true }, { @@ -954077,7 +957498,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R057496", + "___id": "T000002R057500", "___s": true }, { @@ -954107,7 +957528,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R057497", + "___id": "T000002R057501", "___s": true }, { @@ -954137,7 +957558,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R057498", + "___id": "T000002R057502", "___s": true }, { @@ -954167,7 +957588,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R057499", + "___id": "T000002R057503", "___s": true }, { @@ -954197,7 +957618,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R057500", + "___id": "T000002R057504", "___s": true }, { @@ -954228,7 +957649,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R057501", + "___id": "T000002R057505", "___s": true }, { @@ -954258,7 +957679,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R057502", + "___id": "T000002R057506", "___s": true }, { @@ -954289,7 +957710,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R057503", + "___id": "T000002R057507", "___s": true }, { @@ -954320,7 +957741,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R057504", + "___id": "T000002R057508", "___s": true }, { @@ -954350,7 +957771,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R057505", + "___id": "T000002R057509", "___s": true }, { @@ -954380,7 +957801,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R057506", + "___id": "T000002R057510", "___s": true }, { @@ -954410,7 +957831,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R057507", + "___id": "T000002R057511", "___s": true }, { @@ -954440,7 +957861,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R057508", + "___id": "T000002R057512", "___s": true }, { @@ -954470,7 +957891,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R057509", + "___id": "T000002R057513", "___s": true }, { @@ -954500,7 +957921,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R057510", + "___id": "T000002R057514", "___s": true }, { @@ -954530,7 +957951,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R057511", + "___id": "T000002R057515", "___s": true }, { @@ -954561,7 +957982,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R057512", + "___id": "T000002R057516", "___s": true }, { @@ -954592,7 +958013,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R057513", + "___id": "T000002R057517", "___s": true }, { @@ -954623,7 +958044,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R057514", + "___id": "T000002R057518", "___s": true }, { @@ -954662,7 +958083,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R057515", + "___id": "T000002R057519", "___s": true }, { @@ -954692,7 +958113,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R057516", + "___id": "T000002R057520", "___s": true }, { @@ -954731,7 +958152,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R057517", + "___id": "T000002R057521", "___s": true }, { @@ -954761,7 +958182,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R057518", + "___id": "T000002R057522", "___s": true }, { @@ -954791,7 +958212,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R057519", + "___id": "T000002R057523", "___s": true }, { @@ -954821,7 +958242,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R057520", + "___id": "T000002R057524", "___s": true }, { @@ -954851,7 +958272,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R057521", + "___id": "T000002R057525", "___s": true }, { @@ -954881,7 +958302,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R057522", + "___id": "T000002R057526", "___s": true }, { @@ -954911,7 +958332,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R057523", + "___id": "T000002R057527", "___s": true }, { @@ -954950,7 +958371,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R057524", + "___id": "T000002R057528", "___s": true }, { @@ -954982,7 +958403,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R057525", + "___id": "T000002R057529", "___s": true }, { @@ -955014,7 +958435,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R057526", + "___id": "T000002R057530", "___s": true }, { @@ -955044,7 +958465,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R057527", + "___id": "T000002R057531", "___s": true }, { @@ -955083,7 +958504,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R057528", + "___id": "T000002R057532", "___s": true }, { @@ -955113,7 +958534,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R057529", + "___id": "T000002R057533", "___s": true }, { @@ -955137,7 +958558,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R057530", + "___id": "T000002R057534", "___s": true }, { @@ -955158,7 +958579,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R057531", + "___id": "T000002R057535", "___s": true }, { @@ -955207,7 +958628,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onResize", "inherited": true, - "___id": "T000002R057532", + "___id": "T000002R057536", "___s": true }, { @@ -955287,7 +958708,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setShader", "inherited": true, - "___id": "T000002R057533", + "___id": "T000002R057537", "___s": true }, { @@ -955337,7 +958758,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#getShaderByName", "inherited": true, - "___id": "T000002R057534", + "___id": "T000002R057538", "___s": true }, { @@ -955388,7 +958809,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setShadersFromConfig", "inherited": true, - "___id": "T000002R057535", + "___id": "T000002R057539", "___s": true }, { @@ -955438,7 +958859,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#createBatch", "inherited": true, - "___id": "T000002R057536", + "___id": "T000002R057540", "___s": true }, { @@ -955474,7 +958895,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#addTextureToBatch", "inherited": true, - "___id": "T000002R057537", + "___id": "T000002R057541", "___s": true }, { @@ -955524,7 +958945,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#pushBatch", "inherited": true, - "___id": "T000002R057538", + "___id": "T000002R057542", "___s": true }, { @@ -955588,7 +959009,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setGameObject", "inherited": true, - "___id": "T000002R057539", + "___id": "T000002R057543", "___s": true }, { @@ -955640,7 +959061,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shouldFlush", "inherited": true, - "___id": "T000002R057540", + "___id": "T000002R057544", "___s": true }, { @@ -955675,7 +959096,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R057541", + "___id": "T000002R057545", "___s": true }, { @@ -955742,7 +959163,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resize", "inherited": true, - "___id": "T000002R057542", + "___id": "T000002R057546", "___s": true }, { @@ -955806,7 +959227,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setProjectionMatrix", "inherited": true, - "___id": "T000002R057543", + "___id": "T000002R057547", "___s": true }, { @@ -955844,7 +959265,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#flipProjectionMatrix", "inherited": true, - "___id": "T000002R057544", + "___id": "T000002R057548", "___s": true }, { @@ -955865,7 +959286,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R057545", + "___id": "T000002R057549", "___s": true }, { @@ -955920,7 +959341,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bind", "inherited": true, - "___id": "T000002R057546", + "___id": "T000002R057550", "___s": true }, { @@ -955975,7 +959396,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#rebind", "inherited": true, - "___id": "T000002R057547", + "___id": "T000002R057551", "___s": true }, { @@ -955996,7 +959417,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R057548", + "___id": "T000002R057552", "___s": true }, { @@ -956047,7 +959468,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setVertexBuffer", "inherited": true, - "___id": "T000002R057549", + "___id": "T000002R057553", "___s": true }, { @@ -956109,7 +959530,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#preBatch", "inherited": true, - "___id": "T000002R057550", + "___id": "T000002R057554", "___s": true }, { @@ -956171,7 +959592,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#postBatch", "inherited": true, - "___id": "T000002R057551", + "___id": "T000002R057555", "___s": true }, { @@ -956221,7 +959642,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onDraw", "inherited": true, - "___id": "T000002R057552", + "___id": "T000002R057556", "___s": true }, { @@ -956242,7 +959663,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R057553", + "___id": "T000002R057557", "___s": true }, { @@ -956299,7 +959720,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#flush", "inherited": true, - "___id": "T000002R057554", + "___id": "T000002R057558", "___s": true }, { @@ -956335,7 +959756,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onActive", "inherited": true, - "___id": "T000002R057555", + "___id": "T000002R057559", "___s": true }, { @@ -956372,7 +959793,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBind", "inherited": true, - "___id": "T000002R057556", + "___id": "T000002R057560", "___s": true }, { @@ -956393,7 +959814,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R057557", + "___id": "T000002R057561", "___s": true }, { @@ -956430,7 +959851,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBatch", "inherited": true, - "___id": "T000002R057558", + "___id": "T000002R057562", "___s": true }, { @@ -956467,7 +959888,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreBatch", "inherited": true, - "___id": "T000002R057559", + "___id": "T000002R057563", "___s": true }, { @@ -956504,7 +959925,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostBatch", "inherited": true, - "___id": "T000002R057560", + "___id": "T000002R057564", "___s": true }, { @@ -956525,7 +959946,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R057561", + "___id": "T000002R057565", "___s": true }, { @@ -956574,7 +959995,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRender", "inherited": true, - "___id": "T000002R057562", + "___id": "T000002R057566", "___s": true }, { @@ -956595,7 +960016,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R057563", + "___id": "T000002R057567", "___s": true }, { @@ -956633,7 +960054,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBeforeFlush", "inherited": true, - "___id": "T000002R057564", + "___id": "T000002R057568", "___s": true }, { @@ -956671,7 +960092,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onAfterFlush", "inherited": true, - "___id": "T000002R057565", + "___id": "T000002R057569", "___s": true }, { @@ -956795,7 +960216,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchVert", "inherited": true, - "___id": "T000002R057566", + "___id": "T000002R057570", "___s": true }, { @@ -957114,7 +960535,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchQuad", "inherited": true, - "___id": "T000002R057567", + "___id": "T000002R057571", "___s": true }, { @@ -957394,7 +960815,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchTri", "inherited": true, - "___id": "T000002R057568", + "___id": "T000002R057572", "___s": true }, { @@ -957524,7 +960945,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#drawFillRect", "inherited": true, - "___id": "T000002R057569", + "___id": "T000002R057573", "___s": true }, { @@ -957575,7 +960996,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setTexture2D", "inherited": true, - "___id": "T000002R057570", + "___id": "T000002R057574", "___s": true }, { @@ -957642,7 +961063,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bindTexture", "inherited": true, - "___id": "T000002R057571", + "___id": "T000002R057575", "___s": true }, { @@ -957709,7 +961130,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bindRenderTarget", "inherited": true, - "___id": "T000002R057572", + "___id": "T000002R057576", "___s": true }, { @@ -957774,7 +961195,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setTime", "inherited": true, - "___id": "T000002R057573", + "___id": "T000002R057577", "___s": true }, { @@ -957852,7 +961273,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setBoolean", "inherited": true, - "___id": "T000002R057574", + "___id": "T000002R057578", "___s": true }, { @@ -957930,7 +961351,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1f", "inherited": true, - "___id": "T000002R057575", + "___id": "T000002R057579", "___s": true }, { @@ -958021,7 +961442,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2f", "inherited": true, - "___id": "T000002R057576", + "___id": "T000002R057580", "___s": true }, { @@ -958125,7 +961546,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3f", "inherited": true, - "___id": "T000002R057577", + "___id": "T000002R057581", "___s": true }, { @@ -958242,7 +961663,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4f", "inherited": true, - "___id": "T000002R057578", + "___id": "T000002R057582", "___s": true }, { @@ -958339,7 +961760,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1fv", "inherited": true, - "___id": "T000002R057579", + "___id": "T000002R057583", "___s": true }, { @@ -958436,7 +961857,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2fv", "inherited": true, - "___id": "T000002R057580", + "___id": "T000002R057584", "___s": true }, { @@ -958533,7 +961954,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3fv", "inherited": true, - "___id": "T000002R057581", + "___id": "T000002R057585", "___s": true }, { @@ -958630,7 +962051,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4fv", "inherited": true, - "___id": "T000002R057582", + "___id": "T000002R057586", "___s": true }, { @@ -958727,7 +962148,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1iv", "inherited": true, - "___id": "T000002R057583", + "___id": "T000002R057587", "___s": true }, { @@ -958824,7 +962245,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2iv", "inherited": true, - "___id": "T000002R057584", + "___id": "T000002R057588", "___s": true }, { @@ -958921,7 +962342,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3iv", "inherited": true, - "___id": "T000002R057585", + "___id": "T000002R057589", "___s": true }, { @@ -959018,7 +962439,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4iv", "inherited": true, - "___id": "T000002R057586", + "___id": "T000002R057590", "___s": true }, { @@ -959096,7 +962517,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1i", "inherited": true, - "___id": "T000002R057587", + "___id": "T000002R057591", "___s": true }, { @@ -959187,7 +962608,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2i", "inherited": true, - "___id": "T000002R057588", + "___id": "T000002R057592", "___s": true }, { @@ -959291,7 +962712,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3i", "inherited": true, - "___id": "T000002R057589", + "___id": "T000002R057593", "___s": true }, { @@ -959408,7 +962829,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4i", "inherited": true, - "___id": "T000002R057590", + "___id": "T000002R057594", "___s": true }, { @@ -959518,7 +962939,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix2fv", "inherited": true, - "___id": "T000002R057591", + "___id": "T000002R057595", "___s": true }, { @@ -959609,7 +963030,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix3fv", "inherited": true, - "___id": "T000002R057592", + "___id": "T000002R057596", "___s": true }, { @@ -959700,7 +963121,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix4fv", "inherited": true, - "___id": "T000002R057593", + "___id": "T000002R057597", "___s": true }, { @@ -959739,7 +963160,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#destroy", "inherited": true, - "___id": "T000002R057594", + "___id": "T000002R057598", "___s": true }, { @@ -959760,7 +963181,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R057595", + "___id": "T000002R057599", "___s": true }, { @@ -959812,7 +963233,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R057596", + "___id": "T000002R057600", "___s": true }, { @@ -959881,7 +963302,7 @@ "name": "event" } ], - "___id": "T000002R057597", + "___id": "T000002R057601", "___s": true }, { @@ -959941,7 +963362,7 @@ "name": "event" } ], - "___id": "T000002R057598", + "___id": "T000002R057602", "___s": true }, { @@ -960016,7 +963437,7 @@ "name": "args" } ], - "___id": "T000002R057599", + "___id": "T000002R057603", "___s": true }, { @@ -960104,7 +963525,7 @@ "name": "context" } ], - "___id": "T000002R057600", + "___id": "T000002R057604", "___s": true }, { @@ -960192,7 +963613,7 @@ "name": "context" } ], - "___id": "T000002R057601", + "___id": "T000002R057605", "___s": true }, { @@ -960280,7 +963701,7 @@ "name": "context" } ], - "___id": "T000002R057602", + "___id": "T000002R057606", "___s": true }, { @@ -960382,7 +963803,7 @@ "name": "once" } ], - "___id": "T000002R057603", + "___id": "T000002R057607", "___s": true }, { @@ -960484,7 +963905,7 @@ "name": "once" } ], - "___id": "T000002R057604", + "___id": "T000002R057608", "___s": true }, { @@ -960546,7 +963967,7 @@ "name": "event" } ], - "___id": "T000002R057605", + "___id": "T000002R057609", "___s": true }, { @@ -960576,7 +963997,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#calcMatrix", "inherited": true, - "___id": "T000002R057609", + "___id": "T000002R057613", "___s": true }, { @@ -960597,7 +964018,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#boot", "inherited": true, - "___id": "T000002R057617", + "___id": "T000002R057621", "___s": true }, { @@ -960670,7 +964091,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchSprite", "inherited": true, - "___id": "T000002R057618", + "___id": "T000002R057622", "___s": true }, { @@ -961127,7 +964548,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchTexture", "inherited": true, - "___id": "T000002R057619", + "___id": "T000002R057623", "___s": true }, { @@ -961242,7 +964663,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchTextureFrame", "inherited": true, - "___id": "T000002R057620", + "___id": "T000002R057624", "___s": true }, { @@ -961343,7 +964764,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillRect", "inherited": true, - "___id": "T000002R057621", + "___id": "T000002R057625", "___s": true }, { @@ -961470,7 +964891,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillTriangle", "inherited": true, - "___id": "T000002R057622", + "___id": "T000002R057626", "___s": true }, { @@ -961610,7 +965031,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchStrokeTriangle", "inherited": true, - "___id": "T000002R057623", + "___id": "T000002R057627", "___s": true }, { @@ -961681,7 +965102,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillPath", "inherited": true, - "___id": "T000002R057624", + "___id": "T000002R057628", "___s": true }, { @@ -961778,7 +965199,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchStrokePath", "inherited": true, - "___id": "T000002R057625", + "___id": "T000002R057629", "___s": true }, { @@ -961931,7 +965352,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchLine", "inherited": true, - "___id": "T000002R057626", + "___id": "T000002R057630", "___s": true }, { @@ -961970,7 +965391,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#destroy", "inherited": true, - "___id": "T000002R057627", + "___id": "T000002R057631", "___s": true }, { @@ -962000,7 +965421,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R057628", + "___id": "T000002R057632", "___s": true }, { @@ -962030,7 +965451,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R057629", + "___id": "T000002R057633", "___s": true }, { @@ -962060,7 +965481,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R057630", + "___id": "T000002R057634", "___s": true }, { @@ -962092,7 +965513,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R057631", + "___id": "T000002R057635", "___s": true }, { @@ -962122,7 +965543,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R057632", + "___id": "T000002R057636", "___s": true }, { @@ -962152,7 +965573,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R057633", + "___id": "T000002R057637", "___s": true }, { @@ -962182,7 +965603,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R057634", + "___id": "T000002R057638", "___s": true }, { @@ -962212,7 +965633,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R057635", + "___id": "T000002R057639", "___s": true }, { @@ -962243,7 +965664,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R057636", + "___id": "T000002R057640", "___s": true }, { @@ -962273,7 +965694,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R057637", + "___id": "T000002R057641", "___s": true }, { @@ -962304,7 +965725,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R057638", + "___id": "T000002R057642", "___s": true }, { @@ -962335,7 +965756,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R057639", + "___id": "T000002R057643", "___s": true }, { @@ -962365,7 +965786,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R057640", + "___id": "T000002R057644", "___s": true }, { @@ -962395,7 +965816,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R057641", + "___id": "T000002R057645", "___s": true }, { @@ -962425,7 +965846,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R057642", + "___id": "T000002R057646", "___s": true }, { @@ -962455,7 +965876,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R057643", + "___id": "T000002R057647", "___s": true }, { @@ -962485,7 +965906,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R057644", + "___id": "T000002R057648", "___s": true }, { @@ -962515,7 +965936,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R057645", + "___id": "T000002R057649", "___s": true }, { @@ -962545,7 +965966,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R057646", + "___id": "T000002R057650", "___s": true }, { @@ -962576,7 +965997,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R057647", + "___id": "T000002R057651", "___s": true }, { @@ -962607,7 +966028,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R057648", + "___id": "T000002R057652", "___s": true }, { @@ -962638,7 +966059,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R057649", + "___id": "T000002R057653", "___s": true }, { @@ -962677,7 +966098,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R057650", + "___id": "T000002R057654", "___s": true }, { @@ -962707,7 +966128,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R057651", + "___id": "T000002R057655", "___s": true }, { @@ -962746,7 +966167,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R057652", + "___id": "T000002R057656", "___s": true }, { @@ -962776,7 +966197,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R057653", + "___id": "T000002R057657", "___s": true }, { @@ -962806,7 +966227,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R057654", + "___id": "T000002R057658", "___s": true }, { @@ -962836,7 +966257,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R057655", + "___id": "T000002R057659", "___s": true }, { @@ -962866,7 +966287,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R057656", + "___id": "T000002R057660", "___s": true }, { @@ -962896,7 +966317,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R057657", + "___id": "T000002R057661", "___s": true }, { @@ -962926,7 +966347,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R057658", + "___id": "T000002R057662", "___s": true }, { @@ -962965,7 +966386,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R057659", + "___id": "T000002R057663", "___s": true }, { @@ -962997,7 +966418,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R057660", + "___id": "T000002R057664", "___s": true }, { @@ -963029,7 +966450,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R057661", + "___id": "T000002R057665", "___s": true }, { @@ -963059,7 +966480,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R057662", + "___id": "T000002R057666", "___s": true }, { @@ -963098,7 +966519,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R057663", + "___id": "T000002R057667", "___s": true }, { @@ -963128,7 +966549,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R057664", + "___id": "T000002R057668", "___s": true }, { @@ -963149,7 +966570,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R057665", + "___id": "T000002R057669", "___s": true }, { @@ -963198,7 +966619,7 @@ "name": "height" } ], - "___id": "T000002R057666", + "___id": "T000002R057670", "___s": true }, { @@ -963278,7 +966699,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R057667", + "___id": "T000002R057671", "___s": true }, { @@ -963328,7 +966749,7 @@ "name": "name" } ], - "___id": "T000002R057668", + "___id": "T000002R057672", "___s": true }, { @@ -963379,7 +966800,7 @@ "name": "config" } ], - "___id": "T000002R057669", + "___id": "T000002R057673", "___s": true }, { @@ -963429,7 +966850,7 @@ "name": "texture" } ], - "___id": "T000002R057670", + "___id": "T000002R057674", "___s": true }, { @@ -963465,7 +966886,7 @@ "name": "texture" } ], - "___id": "T000002R057671", + "___id": "T000002R057675", "___s": true }, { @@ -963515,7 +966936,7 @@ "name": "texture" } ], - "___id": "T000002R057672", + "___id": "T000002R057676", "___s": true }, { @@ -963579,7 +967000,7 @@ "name": "frame" } ], - "___id": "T000002R057673", + "___id": "T000002R057677", "___s": true }, { @@ -963631,7 +967052,7 @@ "name": "amount" } ], - "___id": "T000002R057674", + "___id": "T000002R057678", "___s": true }, { @@ -963666,7 +967087,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R057675", + "___id": "T000002R057679", "___s": true }, { @@ -963733,7 +967154,7 @@ "name": "height" } ], - "___id": "T000002R057676", + "___id": "T000002R057680", "___s": true }, { @@ -963797,7 +967218,7 @@ "name": "height" } ], - "___id": "T000002R057677", + "___id": "T000002R057681", "___s": true }, { @@ -963835,7 +967256,7 @@ "name": "flipY" } ], - "___id": "T000002R057678", + "___id": "T000002R057682", "___s": true }, { @@ -963856,7 +967277,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R057679", + "___id": "T000002R057683", "___s": true }, { @@ -963911,7 +967332,7 @@ "name": "currentShader" } ], - "___id": "T000002R057680", + "___id": "T000002R057684", "___s": true }, { @@ -963966,7 +967387,7 @@ "name": "currentShader" } ], - "___id": "T000002R057681", + "___id": "T000002R057685", "___s": true }, { @@ -963987,7 +967408,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R057682", + "___id": "T000002R057686", "___s": true }, { @@ -964038,7 +967459,7 @@ "name": "buffer" } ], - "___id": "T000002R057683", + "___id": "T000002R057687", "___s": true }, { @@ -964100,7 +967521,7 @@ "name": "gameObject" } ], - "___id": "T000002R057684", + "___id": "T000002R057688", "___s": true }, { @@ -964162,7 +967583,7 @@ "name": "gameObject" } ], - "___id": "T000002R057685", + "___id": "T000002R057689", "___s": true }, { @@ -964212,7 +967633,7 @@ "name": "swapTarget" } ], - "___id": "T000002R057686", + "___id": "T000002R057690", "___s": true }, { @@ -964233,7 +967654,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R057687", + "___id": "T000002R057691", "___s": true }, { @@ -964290,7 +967711,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057688", + "___id": "T000002R057692", "___s": true }, { @@ -964326,7 +967747,7 @@ "name": "currentShader" } ], - "___id": "T000002R057689", + "___id": "T000002R057693", "___s": true }, { @@ -964363,7 +967784,7 @@ "name": "gameObject" } ], - "___id": "T000002R057690", + "___id": "T000002R057694", "___s": true }, { @@ -964384,7 +967805,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R057691", + "___id": "T000002R057695", "___s": true }, { @@ -964421,7 +967842,7 @@ "name": "gameObject" } ], - "___id": "T000002R057692", + "___id": "T000002R057696", "___s": true }, { @@ -964458,7 +967879,7 @@ "name": "gameObject" } ], - "___id": "T000002R057693", + "___id": "T000002R057697", "___s": true }, { @@ -964495,7 +967916,7 @@ "name": "gameObject" } ], - "___id": "T000002R057694", + "___id": "T000002R057698", "___s": true }, { @@ -964516,7 +967937,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R057695", + "___id": "T000002R057699", "___s": true }, { @@ -964565,7 +967986,7 @@ "name": "camera" } ], - "___id": "T000002R057696", + "___id": "T000002R057700", "___s": true }, { @@ -964586,7 +968007,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R057697", + "___id": "T000002R057701", "___s": true }, { @@ -964624,7 +968045,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057698", + "___id": "T000002R057702", "___s": true }, { @@ -964662,7 +968083,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057699", + "___id": "T000002R057703", "___s": true }, { @@ -964786,7 +968207,7 @@ "name": "tint" } ], - "___id": "T000002R057700", + "___id": "T000002R057704", "___s": true }, { @@ -965105,7 +968526,7 @@ "name": "unit" } ], - "___id": "T000002R057701", + "___id": "T000002R057705", "___s": true }, { @@ -965385,7 +968806,7 @@ "name": "unit" } ], - "___id": "T000002R057702", + "___id": "T000002R057706", "___s": true }, { @@ -965515,7 +968936,7 @@ "name": "flipUV" } ], - "___id": "T000002R057703", + "___id": "T000002R057707", "___s": true }, { @@ -965566,7 +968987,7 @@ "name": "texture" } ], - "___id": "T000002R057704", + "___id": "T000002R057708", "___s": true }, { @@ -965633,7 +969054,7 @@ "name": "unit" } ], - "___id": "T000002R057705", + "___id": "T000002R057709", "___s": true }, { @@ -965700,7 +969121,7 @@ "name": "unit" } ], - "___id": "T000002R057706", + "___id": "T000002R057710", "___s": true }, { @@ -965765,7 +969186,7 @@ "name": "shader" } ], - "___id": "T000002R057707", + "___id": "T000002R057711", "___s": true }, { @@ -965843,7 +969264,7 @@ "name": "shader" } ], - "___id": "T000002R057708", + "___id": "T000002R057712", "___s": true }, { @@ -965921,7 +969342,7 @@ "name": "shader" } ], - "___id": "T000002R057709", + "___id": "T000002R057713", "___s": true }, { @@ -966012,7 +969433,7 @@ "name": "shader" } ], - "___id": "T000002R057710", + "___id": "T000002R057714", "___s": true }, { @@ -966116,7 +969537,7 @@ "name": "shader" } ], - "___id": "T000002R057711", + "___id": "T000002R057715", "___s": true }, { @@ -966233,7 +969654,7 @@ "name": "shader" } ], - "___id": "T000002R057712", + "___id": "T000002R057716", "___s": true }, { @@ -966330,7 +969751,7 @@ "name": "shader" } ], - "___id": "T000002R057713", + "___id": "T000002R057717", "___s": true }, { @@ -966427,7 +969848,7 @@ "name": "shader" } ], - "___id": "T000002R057714", + "___id": "T000002R057718", "___s": true }, { @@ -966524,7 +969945,7 @@ "name": "shader" } ], - "___id": "T000002R057715", + "___id": "T000002R057719", "___s": true }, { @@ -966621,7 +970042,7 @@ "name": "shader" } ], - "___id": "T000002R057716", + "___id": "T000002R057720", "___s": true }, { @@ -966718,7 +970139,7 @@ "name": "shader" } ], - "___id": "T000002R057717", + "___id": "T000002R057721", "___s": true }, { @@ -966815,7 +970236,7 @@ "name": "shader" } ], - "___id": "T000002R057718", + "___id": "T000002R057722", "___s": true }, { @@ -966912,7 +970333,7 @@ "name": "shader" } ], - "___id": "T000002R057719", + "___id": "T000002R057723", "___s": true }, { @@ -967009,7 +970430,7 @@ "name": "shader" } ], - "___id": "T000002R057720", + "___id": "T000002R057724", "___s": true }, { @@ -967087,7 +970508,7 @@ "name": "shader" } ], - "___id": "T000002R057721", + "___id": "T000002R057725", "___s": true }, { @@ -967178,7 +970599,7 @@ "name": "shader" } ], - "___id": "T000002R057722", + "___id": "T000002R057726", "___s": true }, { @@ -967282,7 +970703,7 @@ "name": "shader" } ], - "___id": "T000002R057723", + "___id": "T000002R057727", "___s": true }, { @@ -967399,7 +970820,7 @@ "name": "shader" } ], - "___id": "T000002R057724", + "___id": "T000002R057728", "___s": true }, { @@ -967509,7 +970930,7 @@ "name": "shader" } ], - "___id": "T000002R057725", + "___id": "T000002R057729", "___s": true }, { @@ -967600,7 +971021,7 @@ "name": "shader" } ], - "___id": "T000002R057726", + "___id": "T000002R057730", "___s": true }, { @@ -967691,7 +971112,7 @@ "name": "shader" } ], - "___id": "T000002R057727", + "___id": "T000002R057731", "___s": true }, { @@ -967712,7 +971133,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R057728", + "___id": "T000002R057732", "___s": true }, { @@ -967764,7 +971185,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R057729", + "___id": "T000002R057733", "___s": true }, { @@ -967833,7 +971254,7 @@ "name": "event" } ], - "___id": "T000002R057730", + "___id": "T000002R057734", "___s": true }, { @@ -967893,7 +971314,7 @@ "name": "event" } ], - "___id": "T000002R057731", + "___id": "T000002R057735", "___s": true }, { @@ -967968,7 +971389,7 @@ "name": "args" } ], - "___id": "T000002R057732", + "___id": "T000002R057736", "___s": true }, { @@ -968056,7 +971477,7 @@ "name": "context" } ], - "___id": "T000002R057733", + "___id": "T000002R057737", "___s": true }, { @@ -968144,7 +971565,7 @@ "name": "context" } ], - "___id": "T000002R057734", + "___id": "T000002R057738", "___s": true }, { @@ -968232,7 +971653,7 @@ "name": "context" } ], - "___id": "T000002R057735", + "___id": "T000002R057739", "___s": true }, { @@ -968334,7 +971755,7 @@ "name": "once" } ], - "___id": "T000002R057736", + "___id": "T000002R057740", "___s": true }, { @@ -968436,7 +971857,7 @@ "name": "once" } ], - "___id": "T000002R057737", + "___id": "T000002R057741", "___s": true }, { @@ -968498,7 +971919,7 @@ "name": "event" } ], - "___id": "T000002R057738", + "___id": "T000002R057742", "___s": true }, { @@ -968528,7 +971949,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#calcMatrix", "inherited": true, - "___id": "T000002R057742", + "___id": "T000002R057746", "___s": true }, { @@ -968549,7 +971970,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#boot", "inherited": true, - "___id": "T000002R057750", + "___id": "T000002R057754", "___s": true }, { @@ -968622,7 +972043,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchSprite", "inherited": true, - "___id": "T000002R057751", + "___id": "T000002R057755", "___s": true }, { @@ -969079,7 +972500,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchTexture", "inherited": true, - "___id": "T000002R057752", + "___id": "T000002R057756", "___s": true }, { @@ -969194,7 +972615,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchTextureFrame", "inherited": true, - "___id": "T000002R057753", + "___id": "T000002R057757", "___s": true }, { @@ -969295,7 +972716,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillRect", "inherited": true, - "___id": "T000002R057754", + "___id": "T000002R057758", "___s": true }, { @@ -969422,7 +972843,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillTriangle", "inherited": true, - "___id": "T000002R057755", + "___id": "T000002R057759", "___s": true }, { @@ -969562,7 +972983,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchStrokeTriangle", "inherited": true, - "___id": "T000002R057756", + "___id": "T000002R057760", "___s": true }, { @@ -969633,7 +973054,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchFillPath", "inherited": true, - "___id": "T000002R057757", + "___id": "T000002R057761", "___s": true }, { @@ -969730,7 +973151,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchStrokePath", "inherited": true, - "___id": "T000002R057758", + "___id": "T000002R057762", "___s": true }, { @@ -969883,7 +973304,7 @@ ], "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#batchLine", "inherited": true, - "___id": "T000002R057759", + "___id": "T000002R057763", "___s": true }, { @@ -969922,7 +973343,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.Pipelines.MultiPipeline#destroy", "inherited": true, - "___id": "T000002R057760", + "___id": "T000002R057764", "___s": true }, { @@ -969952,7 +973373,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R057761", + "___id": "T000002R057765", "___s": true }, { @@ -969982,7 +973403,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R057762", + "___id": "T000002R057766", "___s": true }, { @@ -970012,7 +973433,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R057763", + "___id": "T000002R057767", "___s": true }, { @@ -970044,7 +973465,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R057764", + "___id": "T000002R057768", "___s": true }, { @@ -970074,7 +973495,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R057765", + "___id": "T000002R057769", "___s": true }, { @@ -970104,7 +973525,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R057766", + "___id": "T000002R057770", "___s": true }, { @@ -970134,7 +973555,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R057767", + "___id": "T000002R057771", "___s": true }, { @@ -970164,7 +973585,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R057768", + "___id": "T000002R057772", "___s": true }, { @@ -970195,7 +973616,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R057769", + "___id": "T000002R057773", "___s": true }, { @@ -970225,7 +973646,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R057770", + "___id": "T000002R057774", "___s": true }, { @@ -970256,7 +973677,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R057771", + "___id": "T000002R057775", "___s": true }, { @@ -970287,7 +973708,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R057772", + "___id": "T000002R057776", "___s": true }, { @@ -970317,7 +973738,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R057773", + "___id": "T000002R057777", "___s": true }, { @@ -970347,7 +973768,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R057774", + "___id": "T000002R057778", "___s": true }, { @@ -970377,7 +973798,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R057775", + "___id": "T000002R057779", "___s": true }, { @@ -970407,7 +973828,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R057776", + "___id": "T000002R057780", "___s": true }, { @@ -970437,7 +973858,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R057777", + "___id": "T000002R057781", "___s": true }, { @@ -970467,7 +973888,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R057778", + "___id": "T000002R057782", "___s": true }, { @@ -970497,7 +973918,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R057779", + "___id": "T000002R057783", "___s": true }, { @@ -970528,7 +973949,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R057780", + "___id": "T000002R057784", "___s": true }, { @@ -970559,7 +973980,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R057781", + "___id": "T000002R057785", "___s": true }, { @@ -970590,7 +974011,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R057782", + "___id": "T000002R057786", "___s": true }, { @@ -970629,7 +974050,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R057783", + "___id": "T000002R057787", "___s": true }, { @@ -970659,7 +974080,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R057784", + "___id": "T000002R057788", "___s": true }, { @@ -970698,7 +974119,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R057785", + "___id": "T000002R057789", "___s": true }, { @@ -970728,7 +974149,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R057786", + "___id": "T000002R057790", "___s": true }, { @@ -970758,7 +974179,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R057787", + "___id": "T000002R057791", "___s": true }, { @@ -970788,7 +974209,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R057788", + "___id": "T000002R057792", "___s": true }, { @@ -970818,7 +974239,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R057789", + "___id": "T000002R057793", "___s": true }, { @@ -970848,7 +974269,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R057790", + "___id": "T000002R057794", "___s": true }, { @@ -970878,7 +974299,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R057791", + "___id": "T000002R057795", "___s": true }, { @@ -970917,7 +974338,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R057792", + "___id": "T000002R057796", "___s": true }, { @@ -970949,7 +974370,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R057793", + "___id": "T000002R057797", "___s": true }, { @@ -970981,7 +974402,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R057794", + "___id": "T000002R057798", "___s": true }, { @@ -971011,7 +974432,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R057795", + "___id": "T000002R057799", "___s": true }, { @@ -971050,7 +974471,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R057796", + "___id": "T000002R057800", "___s": true }, { @@ -971080,7 +974501,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R057797", + "___id": "T000002R057801", "___s": true }, { @@ -971101,7 +974522,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R057798", + "___id": "T000002R057802", "___s": true }, { @@ -971150,7 +974571,7 @@ "name": "height" } ], - "___id": "T000002R057799", + "___id": "T000002R057803", "___s": true }, { @@ -971230,7 +974651,7 @@ "name": "vertexBuffer" } ], - "___id": "T000002R057800", + "___id": "T000002R057804", "___s": true }, { @@ -971280,7 +974701,7 @@ "name": "name" } ], - "___id": "T000002R057801", + "___id": "T000002R057805", "___s": true }, { @@ -971331,7 +974752,7 @@ "name": "config" } ], - "___id": "T000002R057802", + "___id": "T000002R057806", "___s": true }, { @@ -971381,7 +974802,7 @@ "name": "texture" } ], - "___id": "T000002R057803", + "___id": "T000002R057807", "___s": true }, { @@ -971417,7 +974838,7 @@ "name": "texture" } ], - "___id": "T000002R057804", + "___id": "T000002R057808", "___s": true }, { @@ -971467,7 +974888,7 @@ "name": "texture" } ], - "___id": "T000002R057805", + "___id": "T000002R057809", "___s": true }, { @@ -971531,7 +974952,7 @@ "name": "frame" } ], - "___id": "T000002R057806", + "___id": "T000002R057810", "___s": true }, { @@ -971583,7 +975004,7 @@ "name": "amount" } ], - "___id": "T000002R057807", + "___id": "T000002R057811", "___s": true }, { @@ -971618,7 +975039,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R057808", + "___id": "T000002R057812", "___s": true }, { @@ -971685,7 +975106,7 @@ "name": "height" } ], - "___id": "T000002R057809", + "___id": "T000002R057813", "___s": true }, { @@ -971749,7 +975170,7 @@ "name": "height" } ], - "___id": "T000002R057810", + "___id": "T000002R057814", "___s": true }, { @@ -971787,7 +975208,7 @@ "name": "flipY" } ], - "___id": "T000002R057811", + "___id": "T000002R057815", "___s": true }, { @@ -971808,7 +975229,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R057812", + "___id": "T000002R057816", "___s": true }, { @@ -971863,7 +975284,7 @@ "name": "currentShader" } ], - "___id": "T000002R057813", + "___id": "T000002R057817", "___s": true }, { @@ -971918,7 +975339,7 @@ "name": "currentShader" } ], - "___id": "T000002R057814", + "___id": "T000002R057818", "___s": true }, { @@ -971939,7 +975360,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R057815", + "___id": "T000002R057819", "___s": true }, { @@ -971990,7 +975411,7 @@ "name": "buffer" } ], - "___id": "T000002R057816", + "___id": "T000002R057820", "___s": true }, { @@ -972052,7 +975473,7 @@ "name": "gameObject" } ], - "___id": "T000002R057817", + "___id": "T000002R057821", "___s": true }, { @@ -972114,7 +975535,7 @@ "name": "gameObject" } ], - "___id": "T000002R057818", + "___id": "T000002R057822", "___s": true }, { @@ -972164,7 +975585,7 @@ "name": "swapTarget" } ], - "___id": "T000002R057819", + "___id": "T000002R057823", "___s": true }, { @@ -972185,7 +975606,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R057820", + "___id": "T000002R057824", "___s": true }, { @@ -972242,7 +975663,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057821", + "___id": "T000002R057825", "___s": true }, { @@ -972278,7 +975699,7 @@ "name": "currentShader" } ], - "___id": "T000002R057822", + "___id": "T000002R057826", "___s": true }, { @@ -972315,7 +975736,7 @@ "name": "gameObject" } ], - "___id": "T000002R057823", + "___id": "T000002R057827", "___s": true }, { @@ -972336,7 +975757,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R057824", + "___id": "T000002R057828", "___s": true }, { @@ -972373,7 +975794,7 @@ "name": "gameObject" } ], - "___id": "T000002R057825", + "___id": "T000002R057829", "___s": true }, { @@ -972410,7 +975831,7 @@ "name": "gameObject" } ], - "___id": "T000002R057826", + "___id": "T000002R057830", "___s": true }, { @@ -972447,7 +975868,7 @@ "name": "gameObject" } ], - "___id": "T000002R057827", + "___id": "T000002R057831", "___s": true }, { @@ -972468,7 +975889,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R057828", + "___id": "T000002R057832", "___s": true }, { @@ -972517,7 +975938,7 @@ "name": "camera" } ], - "___id": "T000002R057829", + "___id": "T000002R057833", "___s": true }, { @@ -972538,7 +975959,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R057830", + "___id": "T000002R057834", "___s": true }, { @@ -972576,7 +975997,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057831", + "___id": "T000002R057835", "___s": true }, { @@ -972614,7 +976035,7 @@ "name": "isPostFlush" } ], - "___id": "T000002R057832", + "___id": "T000002R057836", "___s": true }, { @@ -972738,7 +976159,7 @@ "name": "tint" } ], - "___id": "T000002R057833", + "___id": "T000002R057837", "___s": true }, { @@ -973057,7 +976478,7 @@ "name": "unit" } ], - "___id": "T000002R057834", + "___id": "T000002R057838", "___s": true }, { @@ -973337,7 +976758,7 @@ "name": "unit" } ], - "___id": "T000002R057835", + "___id": "T000002R057839", "___s": true }, { @@ -973467,7 +976888,7 @@ "name": "flipUV" } ], - "___id": "T000002R057836", + "___id": "T000002R057840", "___s": true }, { @@ -973518,7 +976939,7 @@ "name": "texture" } ], - "___id": "T000002R057837", + "___id": "T000002R057841", "___s": true }, { @@ -973585,7 +977006,7 @@ "name": "unit" } ], - "___id": "T000002R057838", + "___id": "T000002R057842", "___s": true }, { @@ -973652,7 +977073,7 @@ "name": "unit" } ], - "___id": "T000002R057839", + "___id": "T000002R057843", "___s": true }, { @@ -973717,7 +977138,7 @@ "name": "shader" } ], - "___id": "T000002R057840", + "___id": "T000002R057844", "___s": true }, { @@ -973795,7 +977216,7 @@ "name": "shader" } ], - "___id": "T000002R057841", + "___id": "T000002R057845", "___s": true }, { @@ -973873,7 +977294,7 @@ "name": "shader" } ], - "___id": "T000002R057842", + "___id": "T000002R057846", "___s": true }, { @@ -973964,7 +977385,7 @@ "name": "shader" } ], - "___id": "T000002R057843", + "___id": "T000002R057847", "___s": true }, { @@ -974068,7 +977489,7 @@ "name": "shader" } ], - "___id": "T000002R057844", + "___id": "T000002R057848", "___s": true }, { @@ -974185,7 +977606,7 @@ "name": "shader" } ], - "___id": "T000002R057845", + "___id": "T000002R057849", "___s": true }, { @@ -974282,7 +977703,7 @@ "name": "shader" } ], - "___id": "T000002R057846", + "___id": "T000002R057850", "___s": true }, { @@ -974379,7 +977800,7 @@ "name": "shader" } ], - "___id": "T000002R057847", + "___id": "T000002R057851", "___s": true }, { @@ -974476,7 +977897,7 @@ "name": "shader" } ], - "___id": "T000002R057848", + "___id": "T000002R057852", "___s": true }, { @@ -974573,7 +977994,7 @@ "name": "shader" } ], - "___id": "T000002R057849", + "___id": "T000002R057853", "___s": true }, { @@ -974670,7 +978091,7 @@ "name": "shader" } ], - "___id": "T000002R057850", + "___id": "T000002R057854", "___s": true }, { @@ -974767,7 +978188,7 @@ "name": "shader" } ], - "___id": "T000002R057851", + "___id": "T000002R057855", "___s": true }, { @@ -974864,7 +978285,7 @@ "name": "shader" } ], - "___id": "T000002R057852", + "___id": "T000002R057856", "___s": true }, { @@ -974961,7 +978382,7 @@ "name": "shader" } ], - "___id": "T000002R057853", + "___id": "T000002R057857", "___s": true }, { @@ -975039,7 +978460,7 @@ "name": "shader" } ], - "___id": "T000002R057854", + "___id": "T000002R057858", "___s": true }, { @@ -975130,7 +978551,7 @@ "name": "shader" } ], - "___id": "T000002R057855", + "___id": "T000002R057859", "___s": true }, { @@ -975234,7 +978655,7 @@ "name": "shader" } ], - "___id": "T000002R057856", + "___id": "T000002R057860", "___s": true }, { @@ -975351,7 +978772,7 @@ "name": "shader" } ], - "___id": "T000002R057857", + "___id": "T000002R057861", "___s": true }, { @@ -975461,7 +978882,7 @@ "name": "shader" } ], - "___id": "T000002R057858", + "___id": "T000002R057862", "___s": true }, { @@ -975552,7 +978973,7 @@ "name": "shader" } ], - "___id": "T000002R057859", + "___id": "T000002R057863", "___s": true }, { @@ -975643,7 +979064,7 @@ "name": "shader" } ], - "___id": "T000002R057860", + "___id": "T000002R057864", "___s": true }, { @@ -975664,7 +979085,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R057861", + "___id": "T000002R057865", "___s": true }, { @@ -975716,7 +979137,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R057862", + "___id": "T000002R057866", "___s": true }, { @@ -975785,7 +979206,7 @@ "name": "event" } ], - "___id": "T000002R057863", + "___id": "T000002R057867", "___s": true }, { @@ -975845,7 +979266,7 @@ "name": "event" } ], - "___id": "T000002R057864", + "___id": "T000002R057868", "___s": true }, { @@ -975920,7 +979341,7 @@ "name": "args" } ], - "___id": "T000002R057865", + "___id": "T000002R057869", "___s": true }, { @@ -976008,7 +979429,7 @@ "name": "context" } ], - "___id": "T000002R057866", + "___id": "T000002R057870", "___s": true }, { @@ -976096,7 +979517,7 @@ "name": "context" } ], - "___id": "T000002R057867", + "___id": "T000002R057871", "___s": true }, { @@ -976184,7 +979605,7 @@ "name": "context" } ], - "___id": "T000002R057868", + "___id": "T000002R057872", "___s": true }, { @@ -976286,7 +979707,7 @@ "name": "once" } ], - "___id": "T000002R057869", + "___id": "T000002R057873", "___s": true }, { @@ -976388,7 +979809,7 @@ "name": "once" } ], - "___id": "T000002R057870", + "___id": "T000002R057874", "___s": true }, { @@ -976450,7 +979871,7 @@ "name": "event" } ], - "___id": "T000002R057871", + "___id": "T000002R057875", "___s": true }, { @@ -976480,7 +979901,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#name", "inherited": true, - "___id": "T000002R057872", + "___id": "T000002R057876", "___s": true }, { @@ -976510,7 +979931,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#game", "inherited": true, - "___id": "T000002R057873", + "___id": "T000002R057877", "___s": true }, { @@ -976540,7 +979961,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderer", "inherited": true, - "___id": "T000002R057874", + "___id": "T000002R057878", "___s": true }, { @@ -976572,7 +979993,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#manager", "inherited": true, - "___id": "T000002R057875", + "___id": "T000002R057879", "___s": true }, { @@ -976602,7 +980023,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#gl", "inherited": true, - "___id": "T000002R057876", + "___id": "T000002R057880", "___s": true }, { @@ -976632,7 +980053,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#view", "inherited": true, - "___id": "T000002R057877", + "___id": "T000002R057881", "___s": true }, { @@ -976662,7 +980083,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#width", "inherited": true, - "___id": "T000002R057878", + "___id": "T000002R057882", "___s": true }, { @@ -976692,7 +980113,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#height", "inherited": true, - "___id": "T000002R057879", + "___id": "T000002R057883", "___s": true }, { @@ -976723,7 +980144,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCount", "inherited": true, - "___id": "T000002R057880", + "___id": "T000002R057884", "___s": true }, { @@ -976753,7 +980174,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexCapacity", "inherited": true, - "___id": "T000002R057881", + "___id": "T000002R057885", "___s": true }, { @@ -976784,7 +980205,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexData", "inherited": true, - "___id": "T000002R057882", + "___id": "T000002R057886", "___s": true }, { @@ -976815,7 +980236,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexBuffer", "inherited": true, - "___id": "T000002R057883", + "___id": "T000002R057887", "___s": true }, { @@ -976845,7 +980266,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeBuffer", "inherited": true, - "___id": "T000002R057884", + "___id": "T000002R057888", "___s": true }, { @@ -976875,7 +980296,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#topology", "inherited": true, - "___id": "T000002R057885", + "___id": "T000002R057889", "___s": true }, { @@ -976905,7 +980326,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bytes", "inherited": true, - "___id": "T000002R057886", + "___id": "T000002R057890", "___s": true }, { @@ -976935,7 +980356,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewF32", "inherited": true, - "___id": "T000002R057887", + "___id": "T000002R057891", "___s": true }, { @@ -976965,7 +980386,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexViewU32", "inherited": true, - "___id": "T000002R057888", + "___id": "T000002R057892", "___s": true }, { @@ -976995,7 +980416,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#active", "inherited": true, - "___id": "T000002R057889", + "___id": "T000002R057893", "___s": true }, { @@ -977025,7 +980446,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#forceZero", "inherited": true, - "___id": "T000002R057890", + "___id": "T000002R057894", "___s": true }, { @@ -977056,7 +980477,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#hasBooted", "inherited": true, - "___id": "T000002R057891", + "___id": "T000002R057895", "___s": true }, { @@ -977087,7 +980508,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPostFX", "inherited": true, - "___id": "T000002R057892", + "___id": "T000002R057896", "___s": true }, { @@ -977118,7 +980539,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#isPreFX", "inherited": true, - "___id": "T000002R057893", + "___id": "T000002R057897", "___s": true }, { @@ -977157,7 +980578,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#renderTargets", "inherited": true, - "___id": "T000002R057894", + "___id": "T000002R057898", "___s": true }, { @@ -977187,7 +980608,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentRenderTarget", "inherited": true, - "___id": "T000002R057895", + "___id": "T000002R057899", "___s": true }, { @@ -977226,7 +980647,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shaders", "inherited": true, - "___id": "T000002R057896", + "___id": "T000002R057900", "___s": true }, { @@ -977256,7 +980677,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentShader", "inherited": true, - "___id": "T000002R057897", + "___id": "T000002R057901", "___s": true }, { @@ -977286,7 +980707,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionMatrix", "inherited": true, - "___id": "T000002R057898", + "___id": "T000002R057902", "___s": true }, { @@ -977316,7 +980737,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionWidth", "inherited": true, - "___id": "T000002R057899", + "___id": "T000002R057903", "___s": true }, { @@ -977346,7 +980767,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#projectionHeight", "inherited": true, - "___id": "T000002R057900", + "___id": "T000002R057904", "___s": true }, { @@ -977376,7 +980797,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#config", "inherited": true, - "___id": "T000002R057901", + "___id": "T000002R057905", "___s": true }, { @@ -977406,7 +980827,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#glReset", "inherited": true, - "___id": "T000002R057902", + "___id": "T000002R057906", "___s": true }, { @@ -977445,7 +980866,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batch", "inherited": true, - "___id": "T000002R057903", + "___id": "T000002R057907", "___s": true }, { @@ -977477,7 +980898,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentBatch", "inherited": true, - "___id": "T000002R057904", + "___id": "T000002R057908", "___s": true }, { @@ -977509,7 +980930,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentTexture", "inherited": true, - "___id": "T000002R057905", + "___id": "T000002R057909", "___s": true }, { @@ -977539,7 +980960,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#currentUnit", "inherited": true, - "___id": "T000002R057906", + "___id": "T000002R057910", "___s": true }, { @@ -977578,7 +980999,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#activeTextures", "inherited": true, - "___id": "T000002R057907", + "___id": "T000002R057911", "___s": true }, { @@ -977608,7 +981029,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resizeUniform", "inherited": true, - "___id": "T000002R057908", + "___id": "T000002R057912", "___s": true }, { @@ -977632,7 +981053,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#boot", "inherited": true, - "___id": "T000002R057909", + "___id": "T000002R057913", "___s": true }, { @@ -977653,7 +981074,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBoot", "inherited": true, - "___id": "T000002R057910", + "___id": "T000002R057914", "___s": true }, { @@ -977702,7 +981123,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onResize", "inherited": true, - "___id": "T000002R057911", + "___id": "T000002R057915", "___s": true }, { @@ -977782,7 +981203,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setShader", "inherited": true, - "___id": "T000002R057912", + "___id": "T000002R057916", "___s": true }, { @@ -977832,7 +981253,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#getShaderByName", "inherited": true, - "___id": "T000002R057913", + "___id": "T000002R057917", "___s": true }, { @@ -977883,7 +981304,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setShadersFromConfig", "inherited": true, - "___id": "T000002R057914", + "___id": "T000002R057918", "___s": true }, { @@ -977933,7 +981354,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#createBatch", "inherited": true, - "___id": "T000002R057915", + "___id": "T000002R057919", "___s": true }, { @@ -977969,7 +981390,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#addTextureToBatch", "inherited": true, - "___id": "T000002R057916", + "___id": "T000002R057920", "___s": true }, { @@ -978019,7 +981440,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#pushBatch", "inherited": true, - "___id": "T000002R057917", + "___id": "T000002R057921", "___s": true }, { @@ -978083,7 +981504,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setGameObject", "inherited": true, - "___id": "T000002R057918", + "___id": "T000002R057922", "___s": true }, { @@ -978135,7 +981556,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#shouldFlush", "inherited": true, - "___id": "T000002R057919", + "___id": "T000002R057923", "___s": true }, { @@ -978170,7 +981591,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#vertexAvailable", "inherited": true, - "___id": "T000002R057920", + "___id": "T000002R057924", "___s": true }, { @@ -978237,7 +981658,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#resize", "inherited": true, - "___id": "T000002R057921", + "___id": "T000002R057925", "___s": true }, { @@ -978301,7 +981722,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setProjectionMatrix", "inherited": true, - "___id": "T000002R057922", + "___id": "T000002R057926", "___s": true }, { @@ -978339,7 +981760,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#flipProjectionMatrix", "inherited": true, - "___id": "T000002R057923", + "___id": "T000002R057927", "___s": true }, { @@ -978360,7 +981781,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#updateProjectionMatrix", "inherited": true, - "___id": "T000002R057924", + "___id": "T000002R057928", "___s": true }, { @@ -978415,7 +981836,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bind", "inherited": true, - "___id": "T000002R057925", + "___id": "T000002R057929", "___s": true }, { @@ -978470,7 +981891,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#rebind", "inherited": true, - "___id": "T000002R057926", + "___id": "T000002R057930", "___s": true }, { @@ -978491,7 +981912,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#restoreContext", "inherited": true, - "___id": "T000002R057927", + "___id": "T000002R057931", "___s": true }, { @@ -978542,7 +981963,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setVertexBuffer", "inherited": true, - "___id": "T000002R057928", + "___id": "T000002R057932", "___s": true }, { @@ -978604,7 +982025,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#preBatch", "inherited": true, - "___id": "T000002R057929", + "___id": "T000002R057933", "___s": true }, { @@ -978666,7 +982087,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#postBatch", "inherited": true, - "___id": "T000002R057930", + "___id": "T000002R057934", "___s": true }, { @@ -978716,7 +982137,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onDraw", "inherited": true, - "___id": "T000002R057931", + "___id": "T000002R057935", "___s": true }, { @@ -978737,7 +982158,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#unbind", "inherited": true, - "___id": "T000002R057932", + "___id": "T000002R057936", "___s": true }, { @@ -978794,7 +982215,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#flush", "inherited": true, - "___id": "T000002R057933", + "___id": "T000002R057937", "___s": true }, { @@ -978830,7 +982251,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onActive", "inherited": true, - "___id": "T000002R057934", + "___id": "T000002R057938", "___s": true }, { @@ -978867,7 +982288,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBind", "inherited": true, - "___id": "T000002R057935", + "___id": "T000002R057939", "___s": true }, { @@ -978888,7 +982309,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRebind", "inherited": true, - "___id": "T000002R057936", + "___id": "T000002R057940", "___s": true }, { @@ -978925,7 +982346,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBatch", "inherited": true, - "___id": "T000002R057937", + "___id": "T000002R057941", "___s": true }, { @@ -978962,7 +982383,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreBatch", "inherited": true, - "___id": "T000002R057938", + "___id": "T000002R057942", "___s": true }, { @@ -978999,7 +982420,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostBatch", "inherited": true, - "___id": "T000002R057939", + "___id": "T000002R057943", "___s": true }, { @@ -979020,7 +982441,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPreRender", "inherited": true, - "___id": "T000002R057940", + "___id": "T000002R057944", "___s": true }, { @@ -979069,7 +982490,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onRender", "inherited": true, - "___id": "T000002R057941", + "___id": "T000002R057945", "___s": true }, { @@ -979090,7 +982511,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onPostRender", "inherited": true, - "___id": "T000002R057942", + "___id": "T000002R057946", "___s": true }, { @@ -979128,7 +982549,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onBeforeFlush", "inherited": true, - "___id": "T000002R057943", + "___id": "T000002R057947", "___s": true }, { @@ -979166,7 +982587,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#onAfterFlush", "inherited": true, - "___id": "T000002R057944", + "___id": "T000002R057948", "___s": true }, { @@ -979290,7 +982711,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchVert", "inherited": true, - "___id": "T000002R057945", + "___id": "T000002R057949", "___s": true }, { @@ -979609,7 +983030,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchQuad", "inherited": true, - "___id": "T000002R057946", + "___id": "T000002R057950", "___s": true }, { @@ -979889,7 +983310,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#batchTri", "inherited": true, - "___id": "T000002R057947", + "___id": "T000002R057951", "___s": true }, { @@ -980019,7 +983440,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#drawFillRect", "inherited": true, - "___id": "T000002R057948", + "___id": "T000002R057952", "___s": true }, { @@ -980070,7 +983491,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setTexture2D", "inherited": true, - "___id": "T000002R057949", + "___id": "T000002R057953", "___s": true }, { @@ -980137,7 +983558,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bindTexture", "inherited": true, - "___id": "T000002R057950", + "___id": "T000002R057954", "___s": true }, { @@ -980204,7 +983625,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#bindRenderTarget", "inherited": true, - "___id": "T000002R057951", + "___id": "T000002R057955", "___s": true }, { @@ -980269,7 +983690,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setTime", "inherited": true, - "___id": "T000002R057952", + "___id": "T000002R057956", "___s": true }, { @@ -980347,7 +983768,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setBoolean", "inherited": true, - "___id": "T000002R057953", + "___id": "T000002R057957", "___s": true }, { @@ -980425,7 +983846,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1f", "inherited": true, - "___id": "T000002R057954", + "___id": "T000002R057958", "___s": true }, { @@ -980516,7 +983937,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2f", "inherited": true, - "___id": "T000002R057955", + "___id": "T000002R057959", "___s": true }, { @@ -980620,7 +984041,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3f", "inherited": true, - "___id": "T000002R057956", + "___id": "T000002R057960", "___s": true }, { @@ -980737,7 +984158,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4f", "inherited": true, - "___id": "T000002R057957", + "___id": "T000002R057961", "___s": true }, { @@ -980834,7 +984255,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1fv", "inherited": true, - "___id": "T000002R057958", + "___id": "T000002R057962", "___s": true }, { @@ -980931,7 +984352,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2fv", "inherited": true, - "___id": "T000002R057959", + "___id": "T000002R057963", "___s": true }, { @@ -981028,7 +984449,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3fv", "inherited": true, - "___id": "T000002R057960", + "___id": "T000002R057964", "___s": true }, { @@ -981125,7 +984546,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4fv", "inherited": true, - "___id": "T000002R057961", + "___id": "T000002R057965", "___s": true }, { @@ -981222,7 +984643,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1iv", "inherited": true, - "___id": "T000002R057962", + "___id": "T000002R057966", "___s": true }, { @@ -981319,7 +984740,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2iv", "inherited": true, - "___id": "T000002R057963", + "___id": "T000002R057967", "___s": true }, { @@ -981416,7 +984837,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3iv", "inherited": true, - "___id": "T000002R057964", + "___id": "T000002R057968", "___s": true }, { @@ -981513,7 +984934,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4iv", "inherited": true, - "___id": "T000002R057965", + "___id": "T000002R057969", "___s": true }, { @@ -981591,7 +985012,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set1i", "inherited": true, - "___id": "T000002R057966", + "___id": "T000002R057970", "___s": true }, { @@ -981682,7 +985103,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set2i", "inherited": true, - "___id": "T000002R057967", + "___id": "T000002R057971", "___s": true }, { @@ -981786,7 +985207,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set3i", "inherited": true, - "___id": "T000002R057968", + "___id": "T000002R057972", "___s": true }, { @@ -981903,7 +985324,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#set4i", "inherited": true, - "___id": "T000002R057969", + "___id": "T000002R057973", "___s": true }, { @@ -982013,7 +985434,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix2fv", "inherited": true, - "___id": "T000002R057970", + "___id": "T000002R057974", "___s": true }, { @@ -982104,7 +985525,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix3fv", "inherited": true, - "___id": "T000002R057971", + "___id": "T000002R057975", "___s": true }, { @@ -982195,7 +985616,7 @@ ], "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#setMatrix4fv", "inherited": true, - "___id": "T000002R057972", + "___id": "T000002R057976", "___s": true }, { @@ -982234,7 +985655,7 @@ "scope": "instance", "inherits": "Phaser.Renderer.WebGL.WebGLPipeline#destroy", "inherited": true, - "___id": "T000002R057973", + "___id": "T000002R057977", "___s": true }, { @@ -982255,7 +985676,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R057974", + "___id": "T000002R057978", "___s": true }, { @@ -982307,7 +985728,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R057975", + "___id": "T000002R057979", "___s": true }, { @@ -982376,7 +985797,7 @@ "name": "event" } ], - "___id": "T000002R057976", + "___id": "T000002R057980", "___s": true }, { @@ -982436,7 +985857,7 @@ "name": "event" } ], - "___id": "T000002R057977", + "___id": "T000002R057981", "___s": true }, { @@ -982511,7 +985932,7 @@ "name": "args" } ], - "___id": "T000002R057978", + "___id": "T000002R057982", "___s": true }, { @@ -982599,7 +986020,7 @@ "name": "context" } ], - "___id": "T000002R057979", + "___id": "T000002R057983", "___s": true }, { @@ -982687,7 +986108,7 @@ "name": "context" } ], - "___id": "T000002R057980", + "___id": "T000002R057984", "___s": true }, { @@ -982775,7 +986196,7 @@ "name": "context" } ], - "___id": "T000002R057981", + "___id": "T000002R057985", "___s": true }, { @@ -982877,7 +986298,7 @@ "name": "once" } ], - "___id": "T000002R057982", + "___id": "T000002R057986", "___s": true }, { @@ -982979,7 +986400,7 @@ "name": "once" } ], - "___id": "T000002R057983", + "___id": "T000002R057987", "___s": true }, { @@ -983041,7 +986462,7 @@ "name": "event" } ], - "___id": "T000002R057984", + "___id": "T000002R057988", "___s": true }, { @@ -983062,7 +986483,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R057985", + "___id": "T000002R057989", "___s": true }, { @@ -983114,7 +986535,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R057986", + "___id": "T000002R057990", "___s": true }, { @@ -983183,7 +986604,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R057987", + "___id": "T000002R057991", "___s": true }, { @@ -983243,7 +986664,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R057988", + "___id": "T000002R057992", "___s": true }, { @@ -983318,7 +986739,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R057989", + "___id": "T000002R057993", "___s": true }, { @@ -983406,7 +986827,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R057990", + "___id": "T000002R057994", "___s": true }, { @@ -983494,7 +986915,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R057991", + "___id": "T000002R057995", "___s": true }, { @@ -983582,7 +987003,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R057992", + "___id": "T000002R057996", "___s": true }, { @@ -983684,7 +987105,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R057993", + "___id": "T000002R057997", "___s": true }, { @@ -983786,7 +987207,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R057994", + "___id": "T000002R057998", "___s": true }, { @@ -983848,7 +987269,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R057995", + "___id": "T000002R057999", "___s": true }, { @@ -983869,7 +987290,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R057996", + "___id": "T000002R058000", "___s": true }, { @@ -983921,7 +987342,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R057997", + "___id": "T000002R058001", "___s": true }, { @@ -983990,7 +987411,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R057998", + "___id": "T000002R058002", "___s": true }, { @@ -984050,7 +987471,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R057999", + "___id": "T000002R058003", "___s": true }, { @@ -984125,7 +987546,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R058000", + "___id": "T000002R058004", "___s": true }, { @@ -984213,7 +987634,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R058001", + "___id": "T000002R058005", "___s": true }, { @@ -984301,7 +987722,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R058002", + "___id": "T000002R058006", "___s": true }, { @@ -984389,7 +987810,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R058003", + "___id": "T000002R058007", "___s": true }, { @@ -984491,7 +987912,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R058004", + "___id": "T000002R058008", "___s": true }, { @@ -984593,7 +988014,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R058005", + "___id": "T000002R058009", "___s": true }, { @@ -984655,7 +988076,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R058006", + "___id": "T000002R058010", "___s": true }, { @@ -984676,7 +988097,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058007", + "___id": "T000002R058011", "___s": true }, { @@ -984728,7 +988149,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058008", + "___id": "T000002R058012", "___s": true }, { @@ -984797,7 +988218,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R058009", + "___id": "T000002R058013", "___s": true }, { @@ -984857,7 +988278,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R058010", + "___id": "T000002R058014", "___s": true }, { @@ -984932,7 +988353,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R058011", + "___id": "T000002R058015", "___s": true }, { @@ -985020,7 +988441,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R058012", + "___id": "T000002R058016", "___s": true }, { @@ -985108,7 +988529,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R058013", + "___id": "T000002R058017", "___s": true }, { @@ -985196,7 +988617,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R058014", + "___id": "T000002R058018", "___s": true }, { @@ -985298,7 +988719,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R058015", + "___id": "T000002R058019", "___s": true }, { @@ -985400,7 +988821,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R058016", + "___id": "T000002R058020", "___s": true }, { @@ -985462,7 +988883,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R058017", + "___id": "T000002R058021", "___s": true }, { @@ -985483,7 +988904,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058018", + "___id": "T000002R058022", "___s": true }, { @@ -985535,7 +988956,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058019", + "___id": "T000002R058023", "___s": true }, { @@ -985604,7 +989025,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R058020", + "___id": "T000002R058024", "___s": true }, { @@ -985664,7 +989085,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R058021", + "___id": "T000002R058025", "___s": true }, { @@ -985739,7 +989160,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R058022", + "___id": "T000002R058026", "___s": true }, { @@ -985827,7 +989248,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R058023", + "___id": "T000002R058027", "___s": true }, { @@ -985915,7 +989336,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R058024", + "___id": "T000002R058028", "___s": true }, { @@ -986003,7 +989424,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R058025", + "___id": "T000002R058029", "___s": true }, { @@ -986105,7 +989526,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R058026", + "___id": "T000002R058030", "___s": true }, { @@ -986207,7 +989628,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R058027", + "___id": "T000002R058031", "___s": true }, { @@ -986269,7 +989690,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R058028", + "___id": "T000002R058032", "___s": true }, { @@ -986299,7 +989720,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#manager", "inherited": true, - "___id": "T000002R058029", + "___id": "T000002R058033", "___s": true }, { @@ -986330,7 +989751,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#key", "inherited": true, - "___id": "T000002R058030", + "___id": "T000002R058034", "___s": true }, { @@ -986362,7 +989783,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#isPlaying", "inherited": true, - "___id": "T000002R058031", + "___id": "T000002R058035", "___s": true }, { @@ -986394,7 +989815,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#isPaused", "inherited": true, - "___id": "T000002R058032", + "___id": "T000002R058036", "___s": true }, { @@ -986426,7 +989847,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#totalRate", "inherited": true, - "___id": "T000002R058033", + "___id": "T000002R058037", "___s": true }, { @@ -986457,7 +989878,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#duration", "inherited": true, - "___id": "T000002R058034", + "___id": "T000002R058038", "___s": true }, { @@ -986488,7 +989909,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#totalDuration", "inherited": true, - "___id": "T000002R058035", + "___id": "T000002R058039", "___s": true }, { @@ -986533,7 +989954,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#markers", "inherited": true, - "___id": "T000002R058038", + "___id": "T000002R058042", "___s": true }, { @@ -986565,7 +989986,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#currentMarker", "inherited": true, - "___id": "T000002R058039", + "___id": "T000002R058043", "___s": true }, { @@ -986596,7 +990017,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#pendingRemove", "inherited": true, - "___id": "T000002R058040", + "___id": "T000002R058044", "___s": true }, { @@ -986646,7 +990067,7 @@ ], "inherits": "Phaser.Sound.BaseSound#addMarker", "inherited": true, - "___id": "T000002R058041", + "___id": "T000002R058045", "___s": true }, { @@ -986696,7 +990117,7 @@ ], "inherits": "Phaser.Sound.BaseSound#updateMarker", "inherited": true, - "___id": "T000002R058042", + "___id": "T000002R058046", "___s": true }, { @@ -986748,7 +990169,7 @@ ], "inherits": "Phaser.Sound.BaseSound#removeMarker", "inherited": true, - "___id": "T000002R058043", + "___id": "T000002R058047", "___s": true }, { @@ -986769,7 +990190,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#applyConfig", "inherited": true, - "___id": "T000002R058044", + "___id": "T000002R058048", "___s": true }, { @@ -986790,7 +990211,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#resetConfig", "inherited": true, - "___id": "T000002R058045", + "___id": "T000002R058049", "___s": true }, { @@ -986811,7 +990232,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058046", + "___id": "T000002R058050", "___s": true }, { @@ -986863,7 +990284,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058047", + "___id": "T000002R058051", "___s": true }, { @@ -986932,7 +990353,7 @@ "name": "event" } ], - "___id": "T000002R058048", + "___id": "T000002R058052", "___s": true }, { @@ -986992,7 +990413,7 @@ "name": "event" } ], - "___id": "T000002R058049", + "___id": "T000002R058053", "___s": true }, { @@ -987067,7 +990488,7 @@ "name": "args" } ], - "___id": "T000002R058050", + "___id": "T000002R058054", "___s": true }, { @@ -987155,7 +990576,7 @@ "name": "context" } ], - "___id": "T000002R058051", + "___id": "T000002R058055", "___s": true }, { @@ -987243,7 +990664,7 @@ "name": "context" } ], - "___id": "T000002R058052", + "___id": "T000002R058056", "___s": true }, { @@ -987331,7 +990752,7 @@ "name": "context" } ], - "___id": "T000002R058053", + "___id": "T000002R058057", "___s": true }, { @@ -987433,7 +990854,7 @@ "name": "once" } ], - "___id": "T000002R058054", + "___id": "T000002R058058", "___s": true }, { @@ -987535,7 +990956,7 @@ "name": "once" } ], - "___id": "T000002R058055", + "___id": "T000002R058059", "___s": true }, { @@ -987597,7 +991018,7 @@ "name": "event" } ], - "___id": "T000002R058056", + "___id": "T000002R058060", "___s": true }, { @@ -987628,7 +991049,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#game", "inherited": true, - "___id": "T000002R058057", + "___id": "T000002R058061", "___s": true }, { @@ -987659,7 +991080,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#jsonCache", "inherited": true, - "___id": "T000002R058058", + "___id": "T000002R058062", "___s": true }, { @@ -987690,7 +991111,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#pauseOnBlur", "inherited": true, - "___id": "T000002R058060", + "___id": "T000002R058064", "___s": true }, { @@ -987721,7 +991142,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#locked", "inherited": true, - "___id": "T000002R058063", + "___id": "T000002R058067", "___s": true }, { @@ -987752,7 +991173,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#gameLostFocus", "inherited": true, - "___id": "T000002R058065", + "___id": "T000002R058069", "___s": true }, { @@ -987782,7 +991203,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#listenerPosition", "inherited": true, - "___id": "T000002R058066", + "___id": "T000002R058070", "___s": true }, { @@ -987861,7 +991282,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#addAudioSprite", "inherited": true, - "___id": "T000002R058067", + "___id": "T000002R058071", "___s": true }, { @@ -987927,7 +991348,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#get", "inherited": true, - "___id": "T000002R058068", + "___id": "T000002R058072", "___s": true }, { @@ -988001,7 +991422,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#getAll", "inherited": true, - "___id": "T000002R058069", + "___id": "T000002R058073", "___s": true }, { @@ -988059,7 +991480,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#getAllPlaying", "inherited": true, - "___id": "T000002R058070", + "___id": "T000002R058074", "___s": true }, { @@ -988136,7 +991557,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#play", "inherited": true, - "___id": "T000002R058071", + "___id": "T000002R058075", "___s": true }, { @@ -988216,7 +991637,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#playAudioSprite", "inherited": true, - "___id": "T000002R058072", + "___id": "T000002R058076", "___s": true }, { @@ -988266,7 +991687,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#remove", "inherited": true, - "___id": "T000002R058073", + "___id": "T000002R058077", "___s": true }, { @@ -988287,7 +991708,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#removeAll", "inherited": true, - "___id": "T000002R058074", + "___id": "T000002R058078", "___s": true }, { @@ -988337,7 +991758,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#removeByKey", "inherited": true, - "___id": "T000002R058075", + "___id": "T000002R058079", "___s": true }, { @@ -988361,7 +991782,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#pauseAll", "inherited": true, - "___id": "T000002R058076", + "___id": "T000002R058080", "___s": true }, { @@ -988385,7 +991806,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#resumeAll", "inherited": true, - "___id": "T000002R058077", + "___id": "T000002R058081", "___s": true }, { @@ -988436,7 +991857,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#setListenerPosition", "inherited": true, - "___id": "T000002R058078", + "___id": "T000002R058082", "___s": true }, { @@ -988460,7 +991881,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#stopAll", "inherited": true, - "___id": "T000002R058079", + "___id": "T000002R058083", "___s": true }, { @@ -988510,7 +991931,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#stopByKey", "inherited": true, - "___id": "T000002R058080", + "___id": "T000002R058084", "___s": true }, { @@ -988562,7 +991983,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#isPlaying", "inherited": true, - "___id": "T000002R058081", + "___id": "T000002R058085", "___s": true }, { @@ -988615,7 +992036,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#update", "inherited": true, - "___id": "T000002R058084", + "___id": "T000002R058088", "___s": true }, { @@ -988669,7 +992090,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#setRate", "inherited": true, - "___id": "T000002R058086", + "___id": "T000002R058090", "___s": true }, { @@ -988700,7 +992121,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#rate", "inherited": true, - "___id": "T000002R058087", + "___id": "T000002R058091", "___s": true }, { @@ -988754,7 +992175,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#setDetune", "inherited": true, - "___id": "T000002R058088", + "___id": "T000002R058092", "___s": true }, { @@ -988785,7 +992206,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#detune", "inherited": true, - "___id": "T000002R058089", + "___id": "T000002R058093", "___s": true }, { @@ -988806,7 +992227,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058090", + "___id": "T000002R058094", "___s": true }, { @@ -988858,7 +992279,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058091", + "___id": "T000002R058095", "___s": true }, { @@ -988927,7 +992348,7 @@ "name": "event" } ], - "___id": "T000002R058092", + "___id": "T000002R058096", "___s": true }, { @@ -988987,7 +992408,7 @@ "name": "event" } ], - "___id": "T000002R058093", + "___id": "T000002R058097", "___s": true }, { @@ -989062,7 +992483,7 @@ "name": "args" } ], - "___id": "T000002R058094", + "___id": "T000002R058098", "___s": true }, { @@ -989150,7 +992571,7 @@ "name": "context" } ], - "___id": "T000002R058095", + "___id": "T000002R058099", "___s": true }, { @@ -989238,7 +992659,7 @@ "name": "context" } ], - "___id": "T000002R058096", + "___id": "T000002R058100", "___s": true }, { @@ -989326,7 +992747,7 @@ "name": "context" } ], - "___id": "T000002R058097", + "___id": "T000002R058101", "___s": true }, { @@ -989428,7 +992849,7 @@ "name": "once" } ], - "___id": "T000002R058098", + "___id": "T000002R058102", "___s": true }, { @@ -989530,7 +992951,7 @@ "name": "once" } ], - "___id": "T000002R058099", + "___id": "T000002R058103", "___s": true }, { @@ -989592,7 +993013,7 @@ "name": "event" } ], - "___id": "T000002R058100", + "___id": "T000002R058104", "___s": true }, { @@ -989613,7 +993034,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058101", + "___id": "T000002R058105", "___s": true }, { @@ -989665,7 +993086,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058102", + "___id": "T000002R058106", "___s": true }, { @@ -989734,7 +993155,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R058103", + "___id": "T000002R058107", "___s": true }, { @@ -989794,7 +993215,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R058104", + "___id": "T000002R058108", "___s": true }, { @@ -989869,7 +993290,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R058105", + "___id": "T000002R058109", "___s": true }, { @@ -989957,7 +993378,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R058106", + "___id": "T000002R058110", "___s": true }, { @@ -990045,7 +993466,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R058107", + "___id": "T000002R058111", "___s": true }, { @@ -990133,7 +993554,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R058108", + "___id": "T000002R058112", "___s": true }, { @@ -990235,7 +993656,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R058109", + "___id": "T000002R058113", "___s": true }, { @@ -990337,7 +993758,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R058110", + "___id": "T000002R058114", "___s": true }, { @@ -990399,7 +993820,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R058111", + "___id": "T000002R058115", "___s": true }, { @@ -990430,7 +993851,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#game", "inherited": true, - "___id": "T000002R058112", + "___id": "T000002R058116", "___s": true }, { @@ -990461,7 +993882,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#jsonCache", "inherited": true, - "___id": "T000002R058113", + "___id": "T000002R058117", "___s": true }, { @@ -990492,7 +993913,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#mute", "inherited": true, - "___id": "T000002R058115", + "___id": "T000002R058119", "___s": true }, { @@ -990523,7 +993944,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#volume", "inherited": true, - "___id": "T000002R058116", + "___id": "T000002R058120", "___s": true }, { @@ -990554,7 +993975,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#pauseOnBlur", "inherited": true, - "___id": "T000002R058117", + "___id": "T000002R058121", "___s": true }, { @@ -990585,7 +994006,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#locked", "inherited": true, - "___id": "T000002R058120", + "___id": "T000002R058124", "___s": true }, { @@ -990616,7 +994037,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#gameLostFocus", "inherited": true, - "___id": "T000002R058122", + "___id": "T000002R058126", "___s": true }, { @@ -990646,7 +994067,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#listenerPosition", "inherited": true, - "___id": "T000002R058123", + "___id": "T000002R058127", "___s": true }, { @@ -990704,7 +994125,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#getAllPlaying", "inherited": true, - "___id": "T000002R058124", + "___id": "T000002R058128", "___s": true }, { @@ -990755,7 +994176,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#setListenerPosition", "inherited": true, - "___id": "T000002R058125", + "___id": "T000002R058129", "___s": true }, { @@ -990807,7 +994228,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#isPlaying", "inherited": true, - "___id": "T000002R058126", + "___id": "T000002R058130", "___s": true }, { @@ -990838,7 +994259,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#rate", "inherited": true, - "___id": "T000002R058127", + "___id": "T000002R058131", "___s": true }, { @@ -990869,7 +994290,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#detune", "inherited": true, - "___id": "T000002R058128", + "___id": "T000002R058132", "___s": true }, { @@ -990890,7 +994311,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058129", + "___id": "T000002R058133", "___s": true }, { @@ -990942,7 +994363,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058130", + "___id": "T000002R058134", "___s": true }, { @@ -991011,7 +994432,7 @@ "name": "event" } ], - "___id": "T000002R058131", + "___id": "T000002R058135", "___s": true }, { @@ -991071,7 +994492,7 @@ "name": "event" } ], - "___id": "T000002R058132", + "___id": "T000002R058136", "___s": true }, { @@ -991146,7 +994567,7 @@ "name": "args" } ], - "___id": "T000002R058133", + "___id": "T000002R058137", "___s": true }, { @@ -991234,7 +994655,7 @@ "name": "context" } ], - "___id": "T000002R058134", + "___id": "T000002R058138", "___s": true }, { @@ -991322,7 +994743,7 @@ "name": "context" } ], - "___id": "T000002R058135", + "___id": "T000002R058139", "___s": true }, { @@ -991410,7 +994831,7 @@ "name": "context" } ], - "___id": "T000002R058136", + "___id": "T000002R058140", "___s": true }, { @@ -991512,7 +994933,7 @@ "name": "once" } ], - "___id": "T000002R058137", + "___id": "T000002R058141", "___s": true }, { @@ -991614,7 +995035,7 @@ "name": "once" } ], - "___id": "T000002R058138", + "___id": "T000002R058142", "___s": true }, { @@ -991676,7 +995097,7 @@ "name": "event" } ], - "___id": "T000002R058139", + "___id": "T000002R058143", "___s": true }, { @@ -991706,7 +995127,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#manager", "inherited": true, - "___id": "T000002R058140", + "___id": "T000002R058144", "___s": true }, { @@ -991737,7 +995158,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#key", "inherited": true, - "___id": "T000002R058141", + "___id": "T000002R058145", "___s": true }, { @@ -991769,7 +995190,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#isPlaying", "inherited": true, - "___id": "T000002R058142", + "___id": "T000002R058146", "___s": true }, { @@ -991801,7 +995222,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#isPaused", "inherited": true, - "___id": "T000002R058143", + "___id": "T000002R058147", "___s": true }, { @@ -991833,7 +995254,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#totalRate", "inherited": true, - "___id": "T000002R058144", + "___id": "T000002R058148", "___s": true }, { @@ -991864,7 +995285,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#duration", "inherited": true, - "___id": "T000002R058145", + "___id": "T000002R058149", "___s": true }, { @@ -991895,7 +995316,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#totalDuration", "inherited": true, - "___id": "T000002R058146", + "___id": "T000002R058150", "___s": true }, { @@ -991940,7 +995361,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#markers", "inherited": true, - "___id": "T000002R058149", + "___id": "T000002R058153", "___s": true }, { @@ -991972,7 +995393,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#currentMarker", "inherited": true, - "___id": "T000002R058150", + "___id": "T000002R058154", "___s": true }, { @@ -992003,7 +995424,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#pendingRemove", "inherited": true, - "___id": "T000002R058151", + "___id": "T000002R058155", "___s": true }, { @@ -992053,7 +995474,7 @@ ], "inherits": "Phaser.Sound.BaseSound#addMarker", "inherited": true, - "___id": "T000002R058152", + "___id": "T000002R058156", "___s": true }, { @@ -992103,7 +995524,7 @@ ], "inherits": "Phaser.Sound.BaseSound#updateMarker", "inherited": true, - "___id": "T000002R058153", + "___id": "T000002R058157", "___s": true }, { @@ -992155,7 +995576,7 @@ ], "inherits": "Phaser.Sound.BaseSound#removeMarker", "inherited": true, - "___id": "T000002R058154", + "___id": "T000002R058158", "___s": true }, { @@ -992176,7 +995597,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSound#resetConfig", "inherited": true, - "___id": "T000002R058155", + "___id": "T000002R058159", "___s": true }, { @@ -992197,7 +995618,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058156", + "___id": "T000002R058160", "___s": true }, { @@ -992249,7 +995670,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058157", + "___id": "T000002R058161", "___s": true }, { @@ -992318,7 +995739,7 @@ "name": "event" } ], - "___id": "T000002R058158", + "___id": "T000002R058162", "___s": true }, { @@ -992378,7 +995799,7 @@ "name": "event" } ], - "___id": "T000002R058159", + "___id": "T000002R058163", "___s": true }, { @@ -992453,7 +995874,7 @@ "name": "args" } ], - "___id": "T000002R058160", + "___id": "T000002R058164", "___s": true }, { @@ -992541,7 +995962,7 @@ "name": "context" } ], - "___id": "T000002R058161", + "___id": "T000002R058165", "___s": true }, { @@ -992629,7 +996050,7 @@ "name": "context" } ], - "___id": "T000002R058162", + "___id": "T000002R058166", "___s": true }, { @@ -992717,7 +996138,7 @@ "name": "context" } ], - "___id": "T000002R058163", + "___id": "T000002R058167", "___s": true }, { @@ -992819,7 +996240,7 @@ "name": "once" } ], - "___id": "T000002R058164", + "___id": "T000002R058168", "___s": true }, { @@ -992921,7 +996342,7 @@ "name": "once" } ], - "___id": "T000002R058165", + "___id": "T000002R058169", "___s": true }, { @@ -992983,7 +996404,7 @@ "name": "event" } ], - "___id": "T000002R058166", + "___id": "T000002R058170", "___s": true }, { @@ -993014,7 +996435,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#game", "inherited": true, - "___id": "T000002R058167", + "___id": "T000002R058171", "___s": true }, { @@ -993045,7 +996466,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#jsonCache", "inherited": true, - "___id": "T000002R058168", + "___id": "T000002R058172", "___s": true }, { @@ -993076,7 +996497,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#pauseOnBlur", "inherited": true, - "___id": "T000002R058170", + "___id": "T000002R058174", "___s": true }, { @@ -993107,7 +996528,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#locked", "inherited": true, - "___id": "T000002R058173", + "___id": "T000002R058177", "___s": true }, { @@ -993138,7 +996559,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#gameLostFocus", "inherited": true, - "___id": "T000002R058175", + "___id": "T000002R058179", "___s": true }, { @@ -993168,7 +996589,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#listenerPosition", "inherited": true, - "___id": "T000002R058176", + "___id": "T000002R058180", "___s": true }, { @@ -993247,7 +996668,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#addAudioSprite", "inherited": true, - "___id": "T000002R058177", + "___id": "T000002R058181", "___s": true }, { @@ -993313,7 +996734,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#get", "inherited": true, - "___id": "T000002R058178", + "___id": "T000002R058182", "___s": true }, { @@ -993387,7 +996808,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#getAll", "inherited": true, - "___id": "T000002R058179", + "___id": "T000002R058183", "___s": true }, { @@ -993445,7 +996866,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#getAllPlaying", "inherited": true, - "___id": "T000002R058180", + "___id": "T000002R058184", "___s": true }, { @@ -993522,7 +996943,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#play", "inherited": true, - "___id": "T000002R058181", + "___id": "T000002R058185", "___s": true }, { @@ -993602,7 +997023,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#playAudioSprite", "inherited": true, - "___id": "T000002R058182", + "___id": "T000002R058186", "___s": true }, { @@ -993652,7 +997073,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#remove", "inherited": true, - "___id": "T000002R058183", + "___id": "T000002R058187", "___s": true }, { @@ -993673,7 +997094,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#removeAll", "inherited": true, - "___id": "T000002R058184", + "___id": "T000002R058188", "___s": true }, { @@ -993723,7 +997144,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#removeByKey", "inherited": true, - "___id": "T000002R058185", + "___id": "T000002R058189", "___s": true }, { @@ -993747,7 +997168,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#pauseAll", "inherited": true, - "___id": "T000002R058186", + "___id": "T000002R058190", "___s": true }, { @@ -993771,7 +997192,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#resumeAll", "inherited": true, - "___id": "T000002R058187", + "___id": "T000002R058191", "___s": true }, { @@ -993795,7 +997216,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#stopAll", "inherited": true, - "___id": "T000002R058188", + "___id": "T000002R058192", "___s": true }, { @@ -993845,7 +997266,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#stopByKey", "inherited": true, - "___id": "T000002R058189", + "___id": "T000002R058193", "___s": true }, { @@ -993897,7 +997318,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#isPlaying", "inherited": true, - "___id": "T000002R058190", + "___id": "T000002R058194", "___s": true }, { @@ -993951,7 +997372,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#setRate", "inherited": true, - "___id": "T000002R058194", + "___id": "T000002R058198", "___s": true }, { @@ -993982,7 +997403,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#rate", "inherited": true, - "___id": "T000002R058195", + "___id": "T000002R058199", "___s": true }, { @@ -994036,7 +997457,7 @@ ], "inherits": "Phaser.Sound.BaseSoundManager#setDetune", "inherited": true, - "___id": "T000002R058196", + "___id": "T000002R058200", "___s": true }, { @@ -994067,7 +997488,7 @@ "scope": "instance", "inherits": "Phaser.Sound.BaseSoundManager#detune", "inherited": true, - "___id": "T000002R058197", + "___id": "T000002R058201", "___s": true }, { @@ -994088,7 +997509,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058198", + "___id": "T000002R058202", "___s": true }, { @@ -994140,7 +997561,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058199", + "___id": "T000002R058203", "___s": true }, { @@ -994209,7 +997630,7 @@ "name": "event" } ], - "___id": "T000002R058200", + "___id": "T000002R058204", "___s": true }, { @@ -994269,7 +997690,7 @@ "name": "event" } ], - "___id": "T000002R058201", + "___id": "T000002R058205", "___s": true }, { @@ -994344,7 +997765,7 @@ "name": "args" } ], - "___id": "T000002R058202", + "___id": "T000002R058206", "___s": true }, { @@ -994432,7 +997853,7 @@ "name": "context" } ], - "___id": "T000002R058203", + "___id": "T000002R058207", "___s": true }, { @@ -994520,7 +997941,7 @@ "name": "context" } ], - "___id": "T000002R058204", + "___id": "T000002R058208", "___s": true }, { @@ -994608,7 +998029,7 @@ "name": "context" } ], - "___id": "T000002R058205", + "___id": "T000002R058209", "___s": true }, { @@ -994710,7 +998131,7 @@ "name": "once" } ], - "___id": "T000002R058206", + "___id": "T000002R058210", "___s": true }, { @@ -994812,7 +998233,7 @@ "name": "once" } ], - "___id": "T000002R058207", + "___id": "T000002R058211", "___s": true }, { @@ -994874,7 +998295,7 @@ "name": "event" } ], - "___id": "T000002R058208", + "___id": "T000002R058212", "___s": true }, { @@ -994895,7 +998316,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058209", + "___id": "T000002R058213", "___s": true }, { @@ -994947,7 +998368,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058210", + "___id": "T000002R058214", "___s": true }, { @@ -995016,7 +998437,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R058211", + "___id": "T000002R058215", "___s": true }, { @@ -995076,7 +998497,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R058212", + "___id": "T000002R058216", "___s": true }, { @@ -995151,7 +998572,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R058213", + "___id": "T000002R058217", "___s": true }, { @@ -995239,7 +998660,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R058214", + "___id": "T000002R058218", "___s": true }, { @@ -995327,7 +998748,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R058215", + "___id": "T000002R058219", "___s": true }, { @@ -995415,7 +998836,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R058216", + "___id": "T000002R058220", "___s": true }, { @@ -995517,7 +998938,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R058217", + "___id": "T000002R058221", "___s": true }, { @@ -995619,7 +999040,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R058218", + "___id": "T000002R058222", "___s": true }, { @@ -995681,7 +999102,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R058219", + "___id": "T000002R058223", "___s": true }, { @@ -995711,7 +999132,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#manager", "inherited": true, - "___id": "T000002R058220", + "___id": "T000002R058224", "___s": true }, { @@ -995741,7 +999162,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#key", "inherited": true, - "___id": "T000002R058221", + "___id": "T000002R058225", "___s": true }, { @@ -995780,7 +999201,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#source", "inherited": true, - "___id": "T000002R058222", + "___id": "T000002R058226", "___s": true }, { @@ -995810,7 +999231,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#dataSource", "inherited": true, - "___id": "T000002R058223", + "___id": "T000002R058227", "___s": true }, { @@ -995840,7 +999261,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#frames", "inherited": true, - "___id": "T000002R058224", + "___id": "T000002R058228", "___s": true }, { @@ -995870,7 +999291,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#customData", "inherited": true, - "___id": "T000002R058225", + "___id": "T000002R058229", "___s": true }, { @@ -995900,7 +999321,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#firstFrame", "inherited": true, - "___id": "T000002R058226", + "___id": "T000002R058230", "___s": true }, { @@ -995931,7 +999352,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#frameTotal", "inherited": true, - "___id": "T000002R058227", + "___id": "T000002R058231", "___s": true }, { @@ -996058,7 +999479,7 @@ ], "inherits": "Phaser.Textures.Texture#add", "inherited": true, - "___id": "T000002R058228", + "___id": "T000002R058232", "___s": true }, { @@ -996108,7 +999529,7 @@ ], "inherits": "Phaser.Textures.Texture#remove", "inherited": true, - "___id": "T000002R058229", + "___id": "T000002R058233", "___s": true }, { @@ -996158,7 +999579,7 @@ ], "inherits": "Phaser.Textures.Texture#has", "inherited": true, - "___id": "T000002R058230", + "___id": "T000002R058234", "___s": true }, { @@ -996219,7 +999640,7 @@ ], "inherits": "Phaser.Textures.Texture#get", "inherited": true, - "___id": "T000002R058231", + "___id": "T000002R058235", "___s": true }, { @@ -996269,7 +999690,7 @@ ], "inherits": "Phaser.Textures.Texture#getTextureSourceIndex", "inherited": true, - "___id": "T000002R058232", + "___id": "T000002R058236", "___s": true }, { @@ -996343,7 +999764,7 @@ ], "inherits": "Phaser.Textures.Texture#getFramesFromTextureSource", "inherited": true, - "___id": "T000002R058233", + "___id": "T000002R058237", "___s": true }, { @@ -996395,7 +999816,7 @@ ], "inherits": "Phaser.Textures.Texture#getFrameBounds", "inherited": true, - "___id": "T000002R058234", + "___id": "T000002R058238", "___s": true }, { @@ -996456,7 +999877,7 @@ ], "inherits": "Phaser.Textures.Texture#getFrameNames", "inherited": true, - "___id": "T000002R058235", + "___id": "T000002R058239", "___s": true }, { @@ -996532,7 +999953,7 @@ ], "inherits": "Phaser.Textures.Texture#getSourceImage", "inherited": true, - "___id": "T000002R058236", + "___id": "T000002R058240", "___s": true }, { @@ -996603,7 +1000024,7 @@ ], "inherits": "Phaser.Textures.Texture#getDataSourceImage", "inherited": true, - "___id": "T000002R058237", + "___id": "T000002R058241", "___s": true }, { @@ -996677,7 +1000098,7 @@ ], "inherits": "Phaser.Textures.Texture#setDataSource", "inherited": true, - "___id": "T000002R058238", + "___id": "T000002R058242", "___s": true }, { @@ -996713,7 +1000134,7 @@ ], "inherits": "Phaser.Textures.Texture#setFilter", "inherited": true, - "___id": "T000002R058239", + "___id": "T000002R058243", "___s": true }, { @@ -996743,7 +1000164,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#manager", "inherited": true, - "___id": "T000002R058240", + "___id": "T000002R058244", "___s": true }, { @@ -996773,7 +1000194,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#key", "inherited": true, - "___id": "T000002R058241", + "___id": "T000002R058245", "___s": true }, { @@ -996812,7 +1000233,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#source", "inherited": true, - "___id": "T000002R058242", + "___id": "T000002R058246", "___s": true }, { @@ -996842,7 +1000263,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#dataSource", "inherited": true, - "___id": "T000002R058243", + "___id": "T000002R058247", "___s": true }, { @@ -996872,7 +1000293,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#frames", "inherited": true, - "___id": "T000002R058244", + "___id": "T000002R058248", "___s": true }, { @@ -996902,7 +1000323,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#customData", "inherited": true, - "___id": "T000002R058245", + "___id": "T000002R058249", "___s": true }, { @@ -996932,7 +1000353,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#firstFrame", "inherited": true, - "___id": "T000002R058246", + "___id": "T000002R058250", "___s": true }, { @@ -996963,7 +1000384,7 @@ "scope": "instance", "inherits": "Phaser.Textures.Texture#frameTotal", "inherited": true, - "___id": "T000002R058247", + "___id": "T000002R058251", "___s": true }, { @@ -997090,7 +1000511,7 @@ ], "inherits": "Phaser.Textures.Texture#add", "inherited": true, - "___id": "T000002R058248", + "___id": "T000002R058252", "___s": true }, { @@ -997140,7 +1000561,7 @@ ], "inherits": "Phaser.Textures.Texture#remove", "inherited": true, - "___id": "T000002R058249", + "___id": "T000002R058253", "___s": true }, { @@ -997190,7 +1000611,7 @@ ], "inherits": "Phaser.Textures.Texture#has", "inherited": true, - "___id": "T000002R058250", + "___id": "T000002R058254", "___s": true }, { @@ -997251,7 +1000672,7 @@ ], "inherits": "Phaser.Textures.Texture#get", "inherited": true, - "___id": "T000002R058251", + "___id": "T000002R058255", "___s": true }, { @@ -997301,7 +1000722,7 @@ ], "inherits": "Phaser.Textures.Texture#getTextureSourceIndex", "inherited": true, - "___id": "T000002R058252", + "___id": "T000002R058256", "___s": true }, { @@ -997375,7 +1000796,7 @@ ], "inherits": "Phaser.Textures.Texture#getFramesFromTextureSource", "inherited": true, - "___id": "T000002R058253", + "___id": "T000002R058257", "___s": true }, { @@ -997427,7 +1000848,7 @@ ], "inherits": "Phaser.Textures.Texture#getFrameBounds", "inherited": true, - "___id": "T000002R058254", + "___id": "T000002R058258", "___s": true }, { @@ -997488,7 +1000909,7 @@ ], "inherits": "Phaser.Textures.Texture#getFrameNames", "inherited": true, - "___id": "T000002R058255", + "___id": "T000002R058259", "___s": true }, { @@ -997564,7 +1000985,7 @@ ], "inherits": "Phaser.Textures.Texture#getSourceImage", "inherited": true, - "___id": "T000002R058256", + "___id": "T000002R058260", "___s": true }, { @@ -997635,7 +1001056,7 @@ ], "inherits": "Phaser.Textures.Texture#getDataSourceImage", "inherited": true, - "___id": "T000002R058257", + "___id": "T000002R058261", "___s": true }, { @@ -997709,7 +1001130,7 @@ ], "inherits": "Phaser.Textures.Texture#setDataSource", "inherited": true, - "___id": "T000002R058258", + "___id": "T000002R058262", "___s": true }, { @@ -997745,7 +1001166,7 @@ ], "inherits": "Phaser.Textures.Texture#setFilter", "inherited": true, - "___id": "T000002R058259", + "___id": "T000002R058263", "___s": true }, { @@ -997766,7 +1001187,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058260", + "___id": "T000002R058264", "___s": true }, { @@ -997818,7 +1001239,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058261", + "___id": "T000002R058265", "___s": true }, { @@ -997887,7 +1001308,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R058262", + "___id": "T000002R058266", "___s": true }, { @@ -997947,7 +1001368,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R058263", + "___id": "T000002R058267", "___s": true }, { @@ -998022,7 +1001443,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R058264", + "___id": "T000002R058268", "___s": true }, { @@ -998110,7 +1001531,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R058265", + "___id": "T000002R058269", "___s": true }, { @@ -998198,7 +1001619,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R058266", + "___id": "T000002R058270", "___s": true }, { @@ -998286,7 +1001707,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R058267", + "___id": "T000002R058271", "___s": true }, { @@ -998388,7 +1001809,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R058268", + "___id": "T000002R058272", "___s": true }, { @@ -998490,7 +1001911,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R058269", + "___id": "T000002R058273", "___s": true }, { @@ -998552,7 +1001973,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R058270", + "___id": "T000002R058274", "___s": true }, { @@ -998588,7 +1002009,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#clearAlpha", "inherited": true, - "___id": "T000002R058272", + "___id": "T000002R058276", "___s": true }, { @@ -998641,7 +1002062,7 @@ ], "inherits": "Phaser.GameObjects.Components.AlphaSingle#setAlpha", "inherited": true, - "___id": "T000002R058273", + "___id": "T000002R058277", "___s": true }, { @@ -998671,7 +1002092,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.AlphaSingle#alpha", "inherited": true, - "___id": "T000002R058274", + "___id": "T000002R058278", "___s": true }, { @@ -998702,7 +1002123,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, - "___id": "T000002R058275", + "___id": "T000002R058279", "___s": true }, { @@ -998733,7 +1002154,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, - "___id": "T000002R058276", + "___id": "T000002R058280", "___s": true }, { @@ -998769,7 +1002190,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, - "___id": "T000002R058277", + "___id": "T000002R058281", "___s": true }, { @@ -998805,7 +1002226,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, - "___id": "T000002R058278", + "___id": "T000002R058282", "___s": true }, { @@ -998856,7 +1002277,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipX", "inherited": true, - "___id": "T000002R058279", + "___id": "T000002R058283", "___s": true }, { @@ -998907,7 +1002328,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipY", "inherited": true, - "___id": "T000002R058280", + "___id": "T000002R058284", "___s": true }, { @@ -998971,7 +1002392,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlip", "inherited": true, - "___id": "T000002R058281", + "___id": "T000002R058285", "___s": true }, { @@ -999007,7 +1002428,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, - "___id": "T000002R058282", + "___id": "T000002R058286", "___s": true }, { @@ -999037,7 +1002458,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R058284", + "___id": "T000002R058288", "___s": true }, { @@ -999088,7 +1002509,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R058285", + "___id": "T000002R058289", "___s": true }, { @@ -999118,7 +1002539,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#scene", "inherited": true, - "___id": "T000002R058286", + "___id": "T000002R058290", "___s": true }, { @@ -999159,7 +1002580,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#displayList", "inherited": true, - "___id": "T000002R058287", + "___id": "T000002R058291", "___s": true }, { @@ -999189,7 +1002610,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#type", "inherited": true, - "___id": "T000002R058288", + "___id": "T000002R058292", "___s": true }, { @@ -999229,7 +1002650,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#state", "inherited": true, - "___id": "T000002R058289", + "___id": "T000002R058293", "___s": true }, { @@ -999259,7 +1002680,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#parentContainer", "inherited": true, - "___id": "T000002R058290", + "___id": "T000002R058294", "___s": true }, { @@ -999290,7 +1002711,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#name", "inherited": true, - "___id": "T000002R058291", + "___id": "T000002R058295", "___s": true }, { @@ -999321,7 +1002742,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#active", "inherited": true, - "___id": "T000002R058292", + "___id": "T000002R058296", "___s": true }, { @@ -999352,7 +1002773,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#tabIndex", "inherited": true, - "___id": "T000002R058293", + "___id": "T000002R058297", "___s": true }, { @@ -999383,7 +1002804,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#data", "inherited": true, - "___id": "T000002R058294", + "___id": "T000002R058298", "___s": true }, { @@ -999414,7 +1002835,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#renderFlags", "inherited": true, - "___id": "T000002R058295", + "___id": "T000002R058299", "___s": true }, { @@ -999448,7 +1002869,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#cameraFilter", "inherited": true, - "___id": "T000002R058296", + "___id": "T000002R058300", "___s": true }, { @@ -999481,7 +1002902,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#input", "inherited": true, - "___id": "T000002R058297", + "___id": "T000002R058301", "___s": true }, { @@ -999529,7 +1002950,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#body", "inherited": true, - "___id": "T000002R058298", + "___id": "T000002R058302", "___s": true }, { @@ -999560,7 +1002981,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#ignoreDestroy", "inherited": true, - "___id": "T000002R058299", + "___id": "T000002R058303", "___s": true }, { @@ -999611,7 +1003032,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setActive", "inherited": true, - "___id": "T000002R058300", + "___id": "T000002R058304", "___s": true }, { @@ -999662,7 +1003083,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setName", "inherited": true, - "___id": "T000002R058301", + "___id": "T000002R058305", "___s": true }, { @@ -999723,7 +1003144,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setState", "inherited": true, - "___id": "T000002R058302", + "___id": "T000002R058306", "___s": true }, { @@ -999762,7 +1003183,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#setDataEnabled", "inherited": true, - "___id": "T000002R058303", + "___id": "T000002R058307", "___s": true }, { @@ -999850,7 +1003271,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#setData", "inherited": true, - "___id": "T000002R058304", + "___id": "T000002R058308", "___s": true }, { @@ -999916,7 +1003337,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#incData", "inherited": true, - "___id": "T000002R058305", + "___id": "T000002R058309", "___s": true }, { @@ -999967,7 +1003388,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#toggleData", "inherited": true, - "___id": "T000002R058306", + "___id": "T000002R058310", "___s": true }, { @@ -1000035,7 +1003456,7 @@ ], "inherits": "Phaser.GameObjects.GameObject#getData", "inherited": true, - "___id": "T000002R058307", + "___id": "T000002R058311", "___s": true }, { @@ -1000131,11 +1003552,11 @@ ], "inherits": "Phaser.GameObjects.GameObject#setInteractive", "inherited": true, - "___id": "T000002R058308", + "___id": "T000002R058312", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will disable it.\r\n *\r\n * An object that is disabled for input stops processing or being considered for\r\n * input events, but can be turned back on again at any time by simply calling\r\n * `setInteractive()` with no arguments provided.\r\n *\r\n * If want to completely remove interaction from this Game Object then use `removeInteractive` instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#disableInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", "lineno": 494, @@ -1000165,16 +1003586,33 @@ ], "memberof": "Phaser.Tilemaps.TilemapLayer", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#disableInteractive", "inherited": true, - "___id": "T000002R058309", + "___id": "T000002R058313", "___s": true }, { - "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n *\r\n * @return {this} This GameObject.\r\n */", + "comment": "/**\r\n * If this Game Object has previously been enabled for input, this will queue it\r\n * for removal, causing it to no longer be interactive. The removal happens on\r\n * the next game step, it is not immediate.\r\n *\r\n * The Interactive Object that was assigned to this Game Object will be destroyed,\r\n * removed from the Input Manager and cleared from this Game Object.\r\n *\r\n * If you wish to re-enable this Game Object at a later date you will need to\r\n * re-create its InteractiveObject by calling `setInteractive` again.\r\n *\r\n * If you wish to only temporarily stop an object from receiving input then use\r\n * `disableInteractive` instead, as that toggles the interactive state, where-as\r\n * this erases it completely.\r\n *\r\n * If you wish to resize a hit area, don't remove and then set it as being\r\n * interactive. Instead, access the hitarea object directly and resize the shape\r\n * being used. I.e.: `sprite.input.hitArea.setSize(width, height)` (assuming the\r\n * shape is a Rectangle, which it is by default.)\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeInteractive\r\n * @since 3.7.0\r\n * \r\n * @param {boolean} [resetCursor=false] - Should the currently active Input cursor, if any, be reset to the default cursor?\r\n *\r\n * @return {this} This GameObject.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 515, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -1000201,16 +1003639,33 @@ ], "memberof": "Phaser.Tilemaps.TilemapLayer", "scope": "instance", + "params": [ + { + "type": { + "names": [ + "boolean" + ], + "parsedType": { + "type": "NameExpression", + "name": "boolean" + } + }, + "optional": true, + "defaultvalue": false, + "description": "Should the currently active Input cursor, if any, be reset to the default cursor?", + "name": "resetCursor" + } + ], "inherits": "Phaser.GameObjects.GameObject#removeInteractive", "inherited": true, - "___id": "T000002R058310", + "___id": "T000002R058314", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is added to a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to add themselves into the Update List.\r\n *\r\n * You can also listen for the `ADDED_TO_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addedToScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 549, + "lineno": 562, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -1000224,14 +1003679,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addedToScene", "inherited": true, - "___id": "T000002R058311", + "___id": "T000002R058315", "___s": true }, { "comment": "/**\r\n * This callback is invoked when this Game Object is removed from a Scene.\r\n *\r\n * Can be overriden by custom Game Objects, but be aware of some Game Objects that\r\n * will use this, such as Sprites, to removed themselves from the Update List.\r\n *\r\n * You can also listen for the `REMOVED_FROM_SCENE` event from this Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removedFromScene\r\n * @since 3.50.0\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 564, + "lineno": 577, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -1000245,14 +1003700,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removedFromScene", "inherited": true, - "___id": "T000002R058312", + "___id": "T000002R058316", "___s": true }, { "comment": "/**\r\n * To be overridden by custom GameObjects. Allows base objects to be used in a Pool.\r\n *\r\n * @method Phaser.GameObjects.GameObject#update\r\n * @since 3.0.0\r\n *\r\n * @param {...*} [args] - args\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 579, + "lineno": 592, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -1000283,14 +1003738,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#update", "inherited": true, - "___id": "T000002R058313", + "___id": "T000002R058317", "___s": true }, { "comment": "/**\r\n * Returns a JSON representation of the Game Object.\r\n *\r\n * @method Phaser.GameObjects.GameObject#toJSON\r\n * @since 3.0.0\r\n *\r\n * @return {Phaser.Types.GameObjects.JSONGameObject} A JSON representation of the Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 591, + "lineno": 604, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -1000318,14 +1003773,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#toJSON", "inherited": true, - "___id": "T000002R058314", + "___id": "T000002R058318", "___s": true }, { "comment": "/**\r\n * Compares the renderMask with the renderFlags to see if this Game Object will render or not.\r\n * Also checks the Game Object against the given Cameras exclusion list.\r\n *\r\n * @method Phaser.GameObjects.GameObject#willRender\r\n * @since 3.0.0\r\n *\r\n * @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to check against this Game Object.\r\n *\r\n * @return {boolean} True if the Game Object should be rendered, otherwise false.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 604, + "lineno": 617, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -1000368,14 +1003823,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#willRender", "inherited": true, - "___id": "T000002R058315", + "___id": "T000002R058319", "___s": true }, { "comment": "/**\r\n * Returns an array containing the display list index of either this Game Object, or if it has one,\r\n * its parent Container. It then iterates up through all of the parent containers until it hits the\r\n * root of the display list (which is index 0 in the returned array).\r\n *\r\n * Used internally by the InputPlugin but also useful if you wish to find out the display depth of\r\n * this Game Object and all of its ancestors.\r\n *\r\n * @method Phaser.GameObjects.GameObject#getIndexList\r\n * @since 3.4.0\r\n *\r\n * @return {number[]} An array of display list position indexes.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 622, + "lineno": 635, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -1000412,14 +1003867,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#getIndexList", "inherited": true, - "___id": "T000002R058316", + "___id": "T000002R058320", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the given Display List.\r\n *\r\n * If no Display List is specified, it will default to the Display List owned by the Scene to which\r\n * this Game Object belongs.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely between them.\r\n *\r\n * If this Game Object is already on another Display List when this method is called, it will first\r\n * be removed from it, before being added to the new list.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any display list, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToDisplayList\r\n * @fires Phaser.Scenes.Events#ADDED_TO_SCENE\r\n * @fires Phaser.GameObjects.Events#ADDED_TO_SCENE\r\n * @since 3.53.0\r\n *\r\n * @param {(Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer)} [displayList] - The Display List to add to. Defaults to the Scene Display List.\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 671, + "lineno": 684, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -1000478,14 +1003933,14 @@ ], "inherits": "Phaser.GameObjects.GameObject#addToDisplayList", "inherited": true, - "___id": "T000002R058317", + "___id": "T000002R058321", "___s": true }, { "comment": "/**\r\n * Adds this Game Object to the Update List belonging to the Scene.\r\n *\r\n * When a Game Object is added to the Update List it will have its `preUpdate` method called\r\n * every game frame. This method is passed two parameters: `delta` and `time`.\r\n *\r\n * If you wish to run your own logic within `preUpdate` then you should always call\r\n * `super.preUpdate(delta, time)` within it, or it may fail to process required operations,\r\n * such as Sprite animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#addToUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 722, + "lineno": 735, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -1000514,14 +1003969,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#addToUpdateList", "inherited": true, - "___id": "T000002R058318", + "___id": "T000002R058322", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Display List it is currently on.\r\n *\r\n * A Game Object can only exist on one Display List at any given time, but may move freely removed\r\n * and added back at a later stage.\r\n *\r\n * You can query which list it is on by looking at the `Phaser.GameObjects.GameObject#displayList` property.\r\n *\r\n * If a Game Object isn't on any Display List, it will not be rendered. If you just wish to temporarly\r\n * disable it from rendering, consider using the `setVisible` method, instead.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromDisplayList\r\n * @fires Phaser.Scenes.Events#REMOVED_FROM_SCENE\r\n * @fires Phaser.GameObjects.Events#REMOVED_FROM_SCENE\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 747, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -1000554,14 +1004009,14 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromDisplayList", "inherited": true, - "___id": "T000002R058319", + "___id": "T000002R058323", "___s": true }, { "comment": "/**\r\n * Removes this Game Object from the Scene's Update List.\r\n *\r\n * When a Game Object is on the Update List, it will have its `preUpdate` method called\r\n * every game frame. Calling this method will remove it from the list, preventing this.\r\n *\r\n * Removing a Game Object from the Update List will stop most internal functions working.\r\n * For example, removing a Sprite from the Update List will prevent it from being able to\r\n * run animations.\r\n *\r\n * @method Phaser.GameObjects.GameObject#removeFromUpdateList\r\n * @since 3.53.0\r\n *\r\n * @return {this} This Game Object.\r\n */", "meta": { "filename": "GameObject.js", - "lineno": 785, + "lineno": 798, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\gameobjects", "code": {} @@ -1000590,7 +1004045,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.GameObject#removeFromUpdateList", "inherited": true, - "___id": "T000002R058320", + "___id": "T000002R058324", "___s": true }, { @@ -1000611,7 +1004066,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058321", + "___id": "T000002R058325", "___s": true }, { @@ -1000663,7 +1004118,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058322", + "___id": "T000002R058326", "___s": true }, { @@ -1000732,7 +1004187,7 @@ "name": "event" } ], - "___id": "T000002R058323", + "___id": "T000002R058327", "___s": true }, { @@ -1000792,7 +1004247,7 @@ "name": "event" } ], - "___id": "T000002R058324", + "___id": "T000002R058328", "___s": true }, { @@ -1000867,7 +1004322,7 @@ "name": "args" } ], - "___id": "T000002R058325", + "___id": "T000002R058329", "___s": true }, { @@ -1000955,7 +1004410,7 @@ "name": "context" } ], - "___id": "T000002R058326", + "___id": "T000002R058330", "___s": true }, { @@ -1001043,7 +1004498,7 @@ "name": "context" } ], - "___id": "T000002R058327", + "___id": "T000002R058331", "___s": true }, { @@ -1001131,7 +1004586,7 @@ "name": "context" } ], - "___id": "T000002R058328", + "___id": "T000002R058332", "___s": true }, { @@ -1001233,7 +1004688,7 @@ "name": "once" } ], - "___id": "T000002R058329", + "___id": "T000002R058333", "___s": true }, { @@ -1001335,7 +1004790,7 @@ "name": "once" } ], - "___id": "T000002R058330", + "___id": "T000002R058334", "___s": true }, { @@ -1001397,7 +1004852,7 @@ "name": "event" } ], - "___id": "T000002R058331", + "___id": "T000002R058335", "___s": true }, { @@ -1001433,7 +1004888,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#clearAlpha", "inherited": true, - "___id": "T000002R058337", + "___id": "T000002R058341", "___s": true }, { @@ -1001528,7 +1004983,7 @@ ], "inherits": "Phaser.GameObjects.Components.Alpha#setAlpha", "inherited": true, - "___id": "T000002R058338", + "___id": "T000002R058342", "___s": true }, { @@ -1001558,7 +1005013,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alpha", "inherited": true, - "___id": "T000002R058339", + "___id": "T000002R058343", "___s": true }, { @@ -1001595,7 +1005050,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopLeft", "inherited": true, - "___id": "T000002R058340", + "___id": "T000002R058344", "___s": true }, { @@ -1001632,7 +1005087,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaTopRight", "inherited": true, - "___id": "T000002R058341", + "___id": "T000002R058345", "___s": true }, { @@ -1001669,7 +1005124,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomLeft", "inherited": true, - "___id": "T000002R058342", + "___id": "T000002R058346", "___s": true }, { @@ -1001706,7 +1005161,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Alpha#alphaBottomRight", "inherited": true, - "___id": "T000002R058343", + "___id": "T000002R058347", "___s": true }, { @@ -1001751,7 +1005206,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.BlendMode#blendMode", "inherited": true, - "___id": "T000002R058345", + "___id": "T000002R058349", "___s": true }, { @@ -1001817,7 +1005272,7 @@ ], "inherits": "Phaser.GameObjects.Components.BlendMode#setBlendMode", "inherited": true, - "___id": "T000002R058346", + "___id": "T000002R058350", "___s": true }, { @@ -1001847,7 +1005302,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#width", "inherited": true, - "___id": "T000002R058347", + "___id": "T000002R058351", "___s": true }, { @@ -1001877,7 +1005332,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#height", "inherited": true, - "___id": "T000002R058348", + "___id": "T000002R058352", "___s": true }, { @@ -1001907,7 +1005362,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#displayWidth", "inherited": true, - "___id": "T000002R058349", + "___id": "T000002R058353", "___s": true }, { @@ -1001937,7 +1005392,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ComputedSize#displayHeight", "inherited": true, - "___id": "T000002R058350", + "___id": "T000002R058354", "___s": true }, { @@ -1002001,7 +1005456,7 @@ ], "inherits": "Phaser.GameObjects.Components.ComputedSize#setSize", "inherited": true, - "___id": "T000002R058351", + "___id": "T000002R058355", "___s": true }, { @@ -1002065,7 +1005520,7 @@ ], "inherits": "Phaser.GameObjects.Components.ComputedSize#setDisplaySize", "inherited": true, - "___id": "T000002R058352", + "___id": "T000002R058356", "___s": true }, { @@ -1002095,7 +1005550,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#depth", "inherited": true, - "___id": "T000002R058354", + "___id": "T000002R058358", "___s": true }, { @@ -1002146,7 +1005601,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#setDepth", "inherited": true, - "___id": "T000002R058355", + "___id": "T000002R058359", "___s": true }, { @@ -1002182,7 +1005637,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#bringMeToTop", "inherited": true, - "___id": "T000002R058356", + "___id": "T000002R058360", "___s": true }, { @@ -1002218,7 +1005673,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Depth#sendMeToBack", "inherited": true, - "___id": "T000002R058357", + "___id": "T000002R058361", "___s": true }, { @@ -1002269,7 +1005724,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthBelow", "inherited": true, - "___id": "T000002R058358", + "___id": "T000002R058362", "___s": true }, { @@ -1002320,7 +1005775,7 @@ ], "inherits": "Phaser.GameObjects.Components.Depth#moveMyDepthAbove", "inherited": true, - "___id": "T000002R058359", + "___id": "T000002R058363", "___s": true }, { @@ -1002351,7 +1005806,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipX", "inherited": true, - "___id": "T000002R058360", + "___id": "T000002R058364", "___s": true }, { @@ -1002382,7 +1005837,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#flipY", "inherited": true, - "___id": "T000002R058361", + "___id": "T000002R058365", "___s": true }, { @@ -1002418,7 +1005873,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipX", "inherited": true, - "___id": "T000002R058362", + "___id": "T000002R058366", "___s": true }, { @@ -1002454,7 +1005909,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#toggleFlipY", "inherited": true, - "___id": "T000002R058363", + "___id": "T000002R058367", "___s": true }, { @@ -1002505,7 +1005960,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipX", "inherited": true, - "___id": "T000002R058364", + "___id": "T000002R058368", "___s": true }, { @@ -1002556,7 +1006011,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlipY", "inherited": true, - "___id": "T000002R058365", + "___id": "T000002R058369", "___s": true }, { @@ -1002620,7 +1006075,7 @@ ], "inherits": "Phaser.GameObjects.Components.Flip#setFlip", "inherited": true, - "___id": "T000002R058366", + "___id": "T000002R058370", "___s": true }, { @@ -1002656,7 +1006111,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Flip#resetFlip", "inherited": true, - "___id": "T000002R058367", + "___id": "T000002R058371", "___s": true }, { @@ -1002730,7 +1006185,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getCenter", "inherited": true, - "___id": "T000002R058369", + "___id": "T000002R058373", "___s": true }, { @@ -1002804,7 +1006259,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopLeft", "inherited": true, - "___id": "T000002R058370", + "___id": "T000002R058374", "___s": true }, { @@ -1002878,7 +1006333,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopCenter", "inherited": true, - "___id": "T000002R058371", + "___id": "T000002R058375", "___s": true }, { @@ -1002952,7 +1006407,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getTopRight", "inherited": true, - "___id": "T000002R058372", + "___id": "T000002R058376", "___s": true }, { @@ -1003026,7 +1006481,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getLeftCenter", "inherited": true, - "___id": "T000002R058373", + "___id": "T000002R058377", "___s": true }, { @@ -1003100,7 +1006555,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getRightCenter", "inherited": true, - "___id": "T000002R058374", + "___id": "T000002R058378", "___s": true }, { @@ -1003174,7 +1006629,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomLeft", "inherited": true, - "___id": "T000002R058375", + "___id": "T000002R058379", "___s": true }, { @@ -1003248,7 +1006703,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomCenter", "inherited": true, - "___id": "T000002R058376", + "___id": "T000002R058380", "___s": true }, { @@ -1003322,7 +1006777,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBottomRight", "inherited": true, - "___id": "T000002R058377", + "___id": "T000002R058381", "___s": true }, { @@ -1003401,7 +1006856,7 @@ ], "inherits": "Phaser.GameObjects.Components.GetBounds#getBounds", "inherited": true, - "___id": "T000002R058378", + "___id": "T000002R058382", "___s": true }, { @@ -1003441,7 +1006896,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Mask#mask", "inherited": true, - "___id": "T000002R058379", + "___id": "T000002R058383", "___s": true }, { @@ -1003502,7 +1006957,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#setMask", "inherited": true, - "___id": "T000002R058380", + "___id": "T000002R058384", "___s": true }, { @@ -1003555,7 +1007010,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#clearMask", "inherited": true, - "___id": "T000002R058381", + "___id": "T000002R058385", "___s": true }, { @@ -1003717,7 +1007172,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createBitmapMask", "inherited": true, - "___id": "T000002R058382", + "___id": "T000002R058386", "___s": true }, { @@ -1003798,7 +1007253,7 @@ ], "inherits": "Phaser.GameObjects.Components.Mask#createGeometryMask", "inherited": true, - "___id": "T000002R058383", + "___id": "T000002R058387", "___s": true }, { @@ -1003866,7 +1007321,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setOrigin", "inherited": true, - "___id": "T000002R058385", + "___id": "T000002R058389", "___s": true }, { @@ -1003902,7 +1007357,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#setOriginFromFrame", "inherited": true, - "___id": "T000002R058386", + "___id": "T000002R058390", "___s": true }, { @@ -1003970,7 +1007425,7 @@ ], "inherits": "Phaser.GameObjects.Components.Origin#setDisplayOrigin", "inherited": true, - "___id": "T000002R058387", + "___id": "T000002R058391", "___s": true }, { @@ -1004006,7 +1007461,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Origin#updateDisplayOrigin", "inherited": true, - "___id": "T000002R058388", + "___id": "T000002R058392", "___s": true }, { @@ -1004044,7 +1007499,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#defaultPipeline", "inherited": true, - "___id": "T000002R058389", + "___id": "T000002R058393", "___s": true }, { @@ -1004082,7 +1007537,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipeline", "inherited": true, - "___id": "T000002R058390", + "___id": "T000002R058394", "___s": true }, { @@ -1004119,7 +1007574,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#pipelineData", "inherited": true, - "___id": "T000002R058391", + "___id": "T000002R058395", "___s": true }, { @@ -1004187,7 +1007642,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#initPipeline", "inherited": true, - "___id": "T000002R058392", + "___id": "T000002R058396", "___s": true }, { @@ -1004284,7 +1007739,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipeline", "inherited": true, - "___id": "T000002R058393", + "___id": "T000002R058397", "___s": true }, { @@ -1004356,7 +1007811,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#setPipelineData", "inherited": true, - "___id": "T000002R058394", + "___id": "T000002R058398", "___s": true }, { @@ -1004415,7 +1007870,7 @@ ], "inherits": "Phaser.GameObjects.Components.Pipeline#resetPipeline", "inherited": true, - "___id": "T000002R058395", + "___id": "T000002R058399", "___s": true }, { @@ -1004459,7 +1007914,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Pipeline#getPipelineName", "inherited": true, - "___id": "T000002R058396", + "___id": "T000002R058400", "___s": true }, { @@ -1004496,7 +1007951,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#hasPostPipeline", "inherited": true, - "___id": "T000002R058397", + "___id": "T000002R058401", "___s": true }, { @@ -1004542,7 +1007997,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelines", "inherited": true, - "___id": "T000002R058398", + "___id": "T000002R058402", "___s": true }, { @@ -1004579,7 +1008034,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postPipelineData", "inherited": true, - "___id": "T000002R058399", + "___id": "T000002R058403", "___s": true }, { @@ -1004618,7 +1008073,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#preFX", "inherited": true, - "___id": "T000002R058400", + "___id": "T000002R058404", "___s": true }, { @@ -1004655,7 +1008110,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#postFX", "inherited": true, - "___id": "T000002R058401", + "___id": "T000002R058405", "___s": true }, { @@ -1004700,7 +1008155,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#initPostPipeline", "inherited": true, - "___id": "T000002R058402", + "___id": "T000002R058406", "___s": true }, { @@ -1004844,7 +1008299,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipeline", "inherited": true, - "___id": "T000002R058403", + "___id": "T000002R058407", "___s": true }, { @@ -1004916,7 +1008371,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#setPostPipelineData", "inherited": true, - "___id": "T000002R058404", + "___id": "T000002R058408", "___s": true }, { @@ -1005007,7 +1008462,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#getPostPipeline", "inherited": true, - "___id": "T000002R058405", + "___id": "T000002R058409", "___s": true }, { @@ -1005052,7 +1008507,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#resetPostPipeline", "inherited": true, - "___id": "T000002R058406", + "___id": "T000002R058410", "___s": true }, { @@ -1005120,7 +1008575,7 @@ ], "inherits": "Phaser.GameObjects.Components.PostPipeline#removePostPipeline", "inherited": true, - "___id": "T000002R058407", + "___id": "T000002R058411", "___s": true }, { @@ -1005163,7 +1008618,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.PostPipeline#clearFX", "inherited": true, - "___id": "T000002R058408", + "___id": "T000002R058412", "___s": true }, { @@ -1005194,7 +1008649,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorX", "inherited": true, - "___id": "T000002R058409", + "___id": "T000002R058413", "___s": true }, { @@ -1005225,7 +1008680,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.ScrollFactor#scrollFactorY", "inherited": true, - "___id": "T000002R058410", + "___id": "T000002R058414", "___s": true }, { @@ -1005291,7 +1008746,7 @@ ], "inherits": "Phaser.GameObjects.Components.ScrollFactor#setScrollFactor", "inherited": true, - "___id": "T000002R058411", + "___id": "T000002R058415", "___s": true }, { @@ -1005323,7 +1008778,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#hasTransformComponent", "inherited": true, - "___id": "T000002R058412", + "___id": "T000002R058416", "___s": true }, { @@ -1005354,7 +1008809,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#x", "inherited": true, - "___id": "T000002R058416", + "___id": "T000002R058420", "___s": true }, { @@ -1005385,7 +1008840,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#y", "inherited": true, - "___id": "T000002R058417", + "___id": "T000002R058421", "___s": true }, { @@ -1005416,7 +1008871,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#z", "inherited": true, - "___id": "T000002R058418", + "___id": "T000002R058422", "___s": true }, { @@ -1005447,7 +1008902,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#w", "inherited": true, - "___id": "T000002R058419", + "___id": "T000002R058423", "___s": true }, { @@ -1005478,7 +1008933,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scale", "inherited": true, - "___id": "T000002R058420", + "___id": "T000002R058424", "___s": true }, { @@ -1005509,7 +1008964,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleX", "inherited": true, - "___id": "T000002R058421", + "___id": "T000002R058425", "___s": true }, { @@ -1005540,7 +1008995,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#scaleY", "inherited": true, - "___id": "T000002R058422", + "___id": "T000002R058426", "___s": true }, { @@ -1005571,7 +1009026,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#angle", "inherited": true, - "___id": "T000002R058423", + "___id": "T000002R058427", "___s": true }, { @@ -1005602,7 +1009057,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#rotation", "inherited": true, - "___id": "T000002R058424", + "___id": "T000002R058428", "___s": true }, { @@ -1005700,7 +1009155,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setPosition", "inherited": true, - "___id": "T000002R058425", + "___id": "T000002R058429", "___s": true }, { @@ -1005766,7 +1009221,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#copyPosition", "inherited": true, - "___id": "T000002R058426", + "___id": "T000002R058430", "___s": true }, { @@ -1005862,7 +1009317,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRandomPosition", "inherited": true, - "___id": "T000002R058427", + "___id": "T000002R058431", "___s": true }, { @@ -1005915,7 +1009370,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setRotation", "inherited": true, - "___id": "T000002R058428", + "___id": "T000002R058432", "___s": true }, { @@ -1005968,7 +1009423,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setAngle", "inherited": true, - "___id": "T000002R058429", + "___id": "T000002R058433", "___s": true }, { @@ -1006036,7 +1009491,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setScale", "inherited": true, - "___id": "T000002R058430", + "___id": "T000002R058434", "___s": true }, { @@ -1006089,7 +1009544,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setX", "inherited": true, - "___id": "T000002R058431", + "___id": "T000002R058435", "___s": true }, { @@ -1006142,7 +1009597,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setY", "inherited": true, - "___id": "T000002R058432", + "___id": "T000002R058436", "___s": true }, { @@ -1006195,7 +1009650,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setZ", "inherited": true, - "___id": "T000002R058433", + "___id": "T000002R058437", "___s": true }, { @@ -1006248,7 +1009703,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#setW", "inherited": true, - "___id": "T000002R058434", + "___id": "T000002R058438", "___s": true }, { @@ -1006299,7 +1009754,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalTransformMatrix", "inherited": true, - "___id": "T000002R058435", + "___id": "T000002R058439", "___s": true }, { @@ -1006364,7 +1009819,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getWorldTransformMatrix", "inherited": true, - "___id": "T000002R058436", + "___id": "T000002R058440", "___s": true }, { @@ -1006455,7 +1009910,7 @@ ], "inherits": "Phaser.GameObjects.Components.Transform#getLocalPoint", "inherited": true, - "___id": "T000002R058437", + "___id": "T000002R058441", "___s": true }, { @@ -1006490,7 +1009945,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Transform#getParentRotation", "inherited": true, - "___id": "T000002R058438", + "___id": "T000002R058442", "___s": true }, { @@ -1006520,7 +1009975,7 @@ "scope": "instance", "inherits": "Phaser.GameObjects.Components.Visible#visible", "inherited": true, - "___id": "T000002R058440", + "___id": "T000002R058444", "___s": true }, { @@ -1006571,7 +1010026,7 @@ ], "inherits": "Phaser.GameObjects.Components.Visible#setVisible", "inherited": true, - "___id": "T000002R058441", + "___id": "T000002R058445", "___s": true }, { @@ -1006622,7 +1010077,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollisionCategory", "inherited": true, - "___id": "T000002R058442", + "___id": "T000002R058446", "___s": true }, { @@ -1006672,7 +1010127,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#willCollideWith", "inherited": true, - "___id": "T000002R058443", + "___id": "T000002R058447", "___s": true }, { @@ -1006723,7 +1010178,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#addCollidesWith", "inherited": true, - "___id": "T000002R058444", + "___id": "T000002R058448", "___s": true }, { @@ -1006774,7 +1010229,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#removeCollidesWith", "inherited": true, - "___id": "T000002R058445", + "___id": "T000002R058449", "___s": true }, { @@ -1006844,7 +1010299,7 @@ ], "inherits": "Phaser.Physics.Arcade.Components.Collision#setCollidesWith", "inherited": true, - "___id": "T000002R058446", + "___id": "T000002R058450", "___s": true }, { @@ -1006880,7 +1010335,7 @@ "scope": "instance", "inherits": "Phaser.Physics.Arcade.Components.Collision#resetCollisionCategory", "inherited": true, - "___id": "T000002R058447", + "___id": "T000002R058451", "___s": true }, { @@ -1006901,7 +1010356,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058448", + "___id": "T000002R058452", "___s": true }, { @@ -1006953,7 +1010408,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058449", + "___id": "T000002R058453", "___s": true }, { @@ -1007022,7 +1010477,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R058450", + "___id": "T000002R058454", "___s": true }, { @@ -1007082,7 +1010537,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R058451", + "___id": "T000002R058455", "___s": true }, { @@ -1007157,7 +1010612,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R058452", + "___id": "T000002R058456", "___s": true }, { @@ -1007245,7 +1010700,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R058453", + "___id": "T000002R058457", "___s": true }, { @@ -1007333,7 +1010788,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R058454", + "___id": "T000002R058458", "___s": true }, { @@ -1007421,7 +1010876,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R058455", + "___id": "T000002R058459", "___s": true }, { @@ -1007523,7 +1010978,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R058456", + "___id": "T000002R058460", "___s": true }, { @@ -1007625,7 +1011080,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R058457", + "___id": "T000002R058461", "___s": true }, { @@ -1007687,7 +1011142,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R058458", + "___id": "T000002R058462", "___s": true }, { @@ -1007708,7 +1011163,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058459", + "___id": "T000002R058463", "___s": true }, { @@ -1007760,7 +1011215,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058460", + "___id": "T000002R058464", "___s": true }, { @@ -1007829,7 +1011284,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R058461", + "___id": "T000002R058465", "___s": true }, { @@ -1007889,7 +1011344,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R058462", + "___id": "T000002R058466", "___s": true }, { @@ -1007964,7 +1011419,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R058463", + "___id": "T000002R058467", "___s": true }, { @@ -1008052,7 +1011507,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R058464", + "___id": "T000002R058468", "___s": true }, { @@ -1008140,7 +1011595,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R058465", + "___id": "T000002R058469", "___s": true }, { @@ -1008228,7 +1011683,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R058466", + "___id": "T000002R058470", "___s": true }, { @@ -1008330,7 +1011785,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R058467", + "___id": "T000002R058471", "___s": true }, { @@ -1008432,7 +1011887,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R058468", + "___id": "T000002R058472", "___s": true }, { @@ -1008494,7 +1011949,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R058469", + "___id": "T000002R058473", "___s": true }, { @@ -1008534,7 +1011989,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#parent", "inherited": true, - "___id": "T000002R058470", + "___id": "T000002R058474", "___s": true }, { @@ -1008592,7 +1012047,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#data", "inherited": true, - "___id": "T000002R058471", + "___id": "T000002R058475", "___s": true }, { @@ -1008622,7 +1012077,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#totalData", "inherited": true, - "___id": "T000002R058472", + "___id": "T000002R058476", "___s": true }, { @@ -1008653,7 +1012108,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#startDelay", "inherited": true, - "___id": "T000002R058473", + "___id": "T000002R058477", "___s": true }, { @@ -1008684,7 +1012139,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#hasStarted", "inherited": true, - "___id": "T000002R058474", + "___id": "T000002R058478", "___s": true }, { @@ -1008715,7 +1012170,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#timeScale", "inherited": true, - "___id": "T000002R058475", + "___id": "T000002R058479", "___s": true }, { @@ -1008746,7 +1012201,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#loop", "inherited": true, - "___id": "T000002R058476", + "___id": "T000002R058480", "___s": true }, { @@ -1008777,7 +1012232,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#loopDelay", "inherited": true, - "___id": "T000002R058477", + "___id": "T000002R058481", "___s": true }, { @@ -1008808,7 +1012263,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#loopCounter", "inherited": true, - "___id": "T000002R058478", + "___id": "T000002R058482", "___s": true }, { @@ -1008839,7 +1012294,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#completeDelay", "inherited": true, - "___id": "T000002R058479", + "___id": "T000002R058483", "___s": true }, { @@ -1008870,7 +1012325,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#countdown", "inherited": true, - "___id": "T000002R058480", + "___id": "T000002R058484", "___s": true }, { @@ -1008900,7 +1012355,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#state", "inherited": true, - "___id": "T000002R058481", + "___id": "T000002R058485", "___s": true }, { @@ -1008931,7 +1012386,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#paused", "inherited": true, - "___id": "T000002R058482", + "___id": "T000002R058486", "___s": true }, { @@ -1008961,7 +1012416,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#callbacks", "inherited": true, - "___id": "T000002R058483", + "___id": "T000002R058487", "___s": true }, { @@ -1008991,11 +1012446,11 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#callbackScope", "inherited": true, - "___id": "T000002R058484", + "___id": "T000002R058488", "___s": true }, { - "comment": "/**\r\n * Will this Tween persist after playback? A Tween that persists will _not_ be destroyed by the\r\n * Tween Manager, or when calling `Tween.stop`, and can be re-played as required. You can either\r\n * set this property when creating the tween in the tween config, or set it _prior_ to playback.\r\n *\r\n * However, it's up to you to ensure you destroy persistent tweens when you are finished with them,\r\n * or they will retain references you may no longer require and waste memory.\r\n *\r\n * By default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by\r\n * the Tween Manager. But `TweenChains` _do_ persist by default, unless overridden in their\r\n * config. This is because the type of situations you use a chain for is far more likely to\r\n * need to be replayed again in the future, rather than disposed of.\r\n *\r\n * @name Phaser.Tweens.BaseTween#persist\r\n * @type {boolean}\r\n * @since 3.60.0\r\n */", + "comment": "/**\r\n * Will this Tween persist after playback? A Tween that persists will _not_ be destroyed by the\r\n * Tween Manager, or when calling `Tween.stop`, and can be re-played as required. You can either\r\n * set this property when creating the tween in the tween config, or set it _prior_ to playback.\r\n *\r\n * However, it's up to you to ensure you destroy persistent tweens when you are finished with them,\r\n * or they will retain references you may no longer require and waste memory.\r\n *\r\n * By default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by\r\n * the Tween Manager.\r\n *\r\n * @name Phaser.Tweens.BaseTween#persist\r\n * @type {boolean}\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", "lineno": 245, @@ -1009006,7 +1012461,7 @@ "name": "persist", "longname": "Phaser.Tweens.Tween#persist", "kind": "member", - "description": "Will this Tween persist after playback? A Tween that persists will _not_ be destroyed by the\rTween Manager, or when calling `Tween.stop`, and can be re-played as required. You can either\rset this property when creating the tween in the tween config, or set it _prior_ to playback.\r\rHowever, it's up to you to ensure you destroy persistent tweens when you are finished with them,\ror they will retain references you may no longer require and waste memory.\r\rBy default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by\rthe Tween Manager. But `TweenChains` _do_ persist by default, unless overridden in their\rconfig. This is because the type of situations you use a chain for is far more likely to\rneed to be replayed again in the future, rather than disposed of.", + "description": "Will this Tween persist after playback? A Tween that persists will _not_ be destroyed by the\rTween Manager, or when calling `Tween.stop`, and can be re-played as required. You can either\rset this property when creating the tween in the tween config, or set it _prior_ to playback.\r\rHowever, it's up to you to ensure you destroy persistent tweens when you are finished with them,\ror they will retain references you may no longer require and waste memory.\r\rBy default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by\rthe Tween Manager.", "type": { "names": [ "boolean" @@ -1009021,14 +1012476,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#persist", "inherited": true, - "___id": "T000002R058485", + "___id": "T000002R058489", "___s": true }, { "comment": "/**\r\n * Sets the value of the time scale applied to this Tween. A value of 1 runs in real-time.\r\n * A value of 0.5 runs 50% slower, and so on.\r\n *\r\n * The value isn't used when calculating total duration of the tween, it's a run-time delta adjustment only.\r\n *\r\n * This value is multiplied by the `TweenManager.timeScale`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setTimeScale\r\n * @since 3.60.0\r\n *\r\n * @param {number} value - The time scale value to set.\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 265, + "lineno": 263, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009072,14 +1012527,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#setTimeScale", "inherited": true, - "___id": "T000002R058486", + "___id": "T000002R058490", "___s": true }, { "comment": "/**\r\n * Gets the value of the time scale applied to this Tween. A value of 1 runs in real-time.\r\n * A value of 0.5 runs 50% slower, and so on.\r\n *\r\n * @method Phaser.Tweens.BaseTween#getTimeScale\r\n * @since 3.60.0\r\n *\r\n * @return {number} The value of the time scale applied to this Tween.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 287, + "lineno": 285, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009107,14 +1012562,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#getTimeScale", "inherited": true, - "___id": "T000002R058487", + "___id": "T000002R058491", "___s": true }, { "comment": "/**\r\n * Checks if this Tween is currently playing.\r\n *\r\n * If this Tween is paused, or not active, this method will return false.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isPlaying\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if the Tween is playing, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 301, + "lineno": 299, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009142,14 +1012597,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isPlaying", "inherited": true, - "___id": "T000002R058488", + "___id": "T000002R058492", "___s": true }, { "comment": "/**\r\n * Checks if the Tween is currently paused.\r\n *\r\n * This is the same as inspecting the `BaseTween.paused` property directly.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isPaused\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if the Tween is paused, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 316, + "lineno": 314, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009177,14 +1012632,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isPaused", "inherited": true, - "___id": "T000002R058489", + "___id": "T000002R058493", "___s": true }, { "comment": "/**\r\n * Pauses the Tween immediately. Use `resume` to continue playback.\r\n *\r\n * You can also toggle the `Tween.paused` boolean property, but doing so will not trigger the PAUSE event.\r\n *\r\n * @method Phaser.Tweens.BaseTween#pause\r\n * @fires Phaser.Tweens.Events#TWEEN_PAUSE\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 331, + "lineno": 329, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009216,14 +1012671,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#pause", "inherited": true, - "___id": "T000002R058490", + "___id": "T000002R058494", "___s": true }, { "comment": "/**\r\n * Resumes the playback of a previously paused Tween.\r\n *\r\n * You can also toggle the `Tween.paused` boolean property, but doing so will not trigger the RESUME event.\r\n *\r\n * @method Phaser.Tweens.BaseTween#resume\r\n * @fires Phaser.Tweens.Events#TWEEN_RESUME\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 354, + "lineno": 352, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009255,14 +1012710,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#resume", "inherited": true, - "___id": "T000002R058491", + "___id": "T000002R058495", "___s": true }, { "comment": "/**\r\n * Internal method that makes this Tween active within the TweenManager\r\n * and emits the onActive event and callback.\r\n *\r\n * @method Phaser.Tweens.BaseTween#makeActive\r\n * @fires Phaser.Tweens.Events#TWEEN_ACTIVE\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 377, + "lineno": 375, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009279,14 +1012734,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#makeActive", "inherited": true, - "___id": "T000002R058492", + "___id": "T000002R058496", "___s": true }, { "comment": "/**\r\n * Flags the Tween as being complete, whatever stage of progress it is at.\r\n *\r\n * If an `onComplete` callback has been defined it will automatically invoke it, unless a `delay`\r\n * argument is provided, in which case the Tween will delay for that period of time before calling the callback.\r\n *\r\n * If you don't need a delay or don't have an `onComplete` callback then call `Tween.stop` instead.\r\n *\r\n * @method Phaser.Tweens.BaseTween#complete\r\n * @fires Phaser.Tweens.Events#TWEEN_COMPLETE\r\n * @since 3.2.0\r\n *\r\n * @param {number} [delay=0] - The time to wait before invoking the complete callback. If zero it will fire immediately.\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 406, + "lineno": 404, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009335,14 +1012790,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#complete", "inherited": true, - "___id": "T000002R058493", + "___id": "T000002R058497", "___s": true }, { "comment": "/**\r\n * Flags the Tween as being complete only once the current loop has finished.\r\n *\r\n * This is a useful way to stop an infinitely looping tween once a complete cycle is over,\r\n * rather than abruptly.\r\n *\r\n * If you don't have a loop then call `Tween.stop` instead.\r\n *\r\n * @method Phaser.Tweens.BaseTween#completeAfterLoop\r\n * @fires Phaser.Tweens.Events#TWEEN_COMPLETE\r\n * @since 3.60.0\r\n *\r\n * @param {number} [loops=0] - The number of loops that should finish before this tween completes. Zero means complete just the current loop.\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 440, + "lineno": 438, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009391,14 +1012846,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#completeAfterLoop", "inherited": true, - "___id": "T000002R058494", + "___id": "T000002R058498", "___s": true }, { "comment": "/**\r\n * Immediately removes this Tween from the TweenManager and all of its internal arrays,\r\n * no matter what stage it is at. Then sets the tween state to `REMOVED`.\r\n *\r\n * You should dispose of your reference to this tween after calling this method, to\r\n * free it from memory. If you no longer require it, call `Tween.destroy()` on it.\r\n *\r\n * @method Phaser.Tweens.BaseTween#remove\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 468, + "lineno": 466, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009427,14 +1012882,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#remove", "inherited": true, - "___id": "T000002R058495", + "___id": "T000002R058499", "___s": true }, { "comment": "/**\r\n * Stops the Tween immediately, whatever stage of progress it is at.\r\n *\r\n * If not a part of a Tween Chain it is also flagged for removal by the Tween Manager.\r\n *\r\n * If an `onStop` callback has been defined it will automatically invoke it.\r\n *\r\n * The Tween will be removed during the next game frame, but should be considered 'destroyed' from this point on.\r\n *\r\n * Typically, you cannot play a Tween that has been stopped. If you just wish to pause the tween, not destroy it,\r\n * then call the `pause` method instead and use `resume` to continue playback. If you wish to restart the Tween,\r\n * use the `restart` or `seek` methods.\r\n *\r\n * @method Phaser.Tweens.BaseTween#stop\r\n * @fires Phaser.Tweens.Events#TWEEN_STOP\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 490, + "lineno": 488, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009466,14 +1012921,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#stop", "inherited": true, - "___id": "T000002R058496", + "___id": "T000002R058500", "___s": true }, { "comment": "/**\r\n * Internal method that handles the processing of the loop delay countdown timer and\r\n * the dispatch of related events. Called automatically by `Tween.update`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#updateLoopCountdown\r\n * @since 3.60.0\r\n *\r\n * @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 521, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009502,14 +1012957,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#updateLoopCountdown", "inherited": true, - "___id": "T000002R058497", + "___id": "T000002R058501", "___s": true }, { "comment": "/**\r\n * Internal method that handles the processing of the start delay countdown timer and\r\n * the dispatch of related events. Called automatically by `Tween.update`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#updateStartCountdown\r\n * @since 3.60.0\r\n *\r\n * @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 542, + "lineno": 540, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009538,14 +1012993,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#updateStartCountdown", "inherited": true, - "___id": "T000002R058498", + "___id": "T000002R058502", "___s": true }, { "comment": "/**\r\n * Internal method that handles the processing of the complete delay countdown timer and\r\n * the dispatch of related events. Called automatically by `Tween.update`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#updateCompleteDelay\r\n * @since 3.60.0\r\n *\r\n * @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 570, + "lineno": 568, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009574,14 +1013029,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#updateCompleteDelay", "inherited": true, - "___id": "T000002R058499", + "___id": "T000002R058503", "___s": true }, { "comment": "/**\r\n * Sets an event based callback to be invoked during playback.\r\n *\r\n * Calling this method will replace a previously set callback for the given type, if any exists.\r\n *\r\n * The types available are:\r\n *\r\n * `onActive` - When the Tween is first created it moves to an 'active' state when added to the Tween Manager. 'Active' does not mean 'playing'.\r\n * `onStart` - When the Tween starts playing after a delayed or paused state. This will happen at the same time as `onActive` if the tween has no delay and isn't paused.\r\n * `onLoop` - When a Tween loops, if it has been set to do so. This happens _after_ the `loopDelay` expires, if set.\r\n * `onComplete` - When the Tween finishes playback fully. Never invoked if the Tween is set to repeat infinitely.\r\n * `onStop` - Invoked only if the `Tween.stop` method is called.\r\n * `onPause` - Invoked only if the `Tween.pause` method is called. Not invoked if the Tween Manager is paused.\r\n * `onResume` - Invoked only if the `Tween.resume` method is called. Not invoked if the Tween Manager is resumed.\r\n *\r\n * The following types are also available and are invoked on a `TweenData` level - that is per-object, per-property, being tweened.\r\n *\r\n * `onYoyo` - When a TweenData starts a yoyo. This happens _after_ the `hold` delay expires, if set.\r\n * `onRepeat` - When a TweenData repeats playback. This happens _after_ the `repeatDelay` expires, if set.\r\n * `onUpdate` - When a TweenData updates a property on a source target during playback.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setCallback\r\n * @since 3.60.0\r\n *\r\n * @param {Phaser.Types.Tweens.TweenCallbackTypes} type - The type of callback to set. One of: `onActive`, `onComplete`, `onLoop`, `onPause`, `onRepeat`, `onResume`, `onStart`, `onStop`, `onUpdate` or `onYoyo`.\r\n * @param {function} callback - Your callback that will be invoked.\r\n * @param {array} [params] - The parameters to pass to the callback. Pass an empty array if you don't want to define any, but do wish to set the scope.\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 589, + "lineno": 587, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009652,14 +1013107,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#setCallback", "inherited": true, - "___id": "T000002R058500", + "___id": "T000002R058504", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to PENDING.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setPendingState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 631, + "lineno": 629, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009673,14 +1013128,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setPendingState", "inherited": true, - "___id": "T000002R058501", + "___id": "T000002R058505", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to ACTIVE.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setActiveState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 642, + "lineno": 640, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009694,14 +1013149,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setActiveState", "inherited": true, - "___id": "T000002R058502", + "___id": "T000002R058506", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to LOOP_DELAY.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setLoopDelayState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 655, + "lineno": 653, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009715,14 +1013170,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setLoopDelayState", "inherited": true, - "___id": "T000002R058503", + "___id": "T000002R058507", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to COMPLETE_DELAY.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setCompleteDelayState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 666, + "lineno": 664, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009736,14 +1013191,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setCompleteDelayState", "inherited": true, - "___id": "T000002R058504", + "___id": "T000002R058508", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to START_DELAY.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setStartDelayState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 677, + "lineno": 675, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009757,14 +1013212,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setStartDelayState", "inherited": true, - "___id": "T000002R058505", + "___id": "T000002R058509", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to PENDING_REMOVE.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setPendingRemoveState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 692, + "lineno": 690, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009778,14 +1013233,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setPendingRemoveState", "inherited": true, - "___id": "T000002R058506", + "___id": "T000002R058510", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to REMOVED.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setRemovedState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 703, + "lineno": 701, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009799,14 +1013254,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setRemovedState", "inherited": true, - "___id": "T000002R058507", + "___id": "T000002R058511", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to FINISHED.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setFinishedState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 714, + "lineno": 712, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009820,14 +1013275,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setFinishedState", "inherited": true, - "___id": "T000002R058508", + "___id": "T000002R058512", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to DESTROYED.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setDestroyedState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 725, + "lineno": 723, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009841,14 +1013296,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setDestroyedState", "inherited": true, - "___id": "T000002R058509", + "___id": "T000002R058513", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of PENDING, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isPending\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of PENDING, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 736, + "lineno": 734, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009876,14 +1013331,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isPending", "inherited": true, - "___id": "T000002R058510", + "___id": "T000002R058514", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of ACTIVE, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isActive\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of ACTIVE, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 749, + "lineno": 747, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009911,14 +1013366,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isActive", "inherited": true, - "___id": "T000002R058511", + "___id": "T000002R058515", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of LOOP_DELAY, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isLoopDelayed\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of LOOP_DELAY, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 762, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009946,14 +1013401,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isLoopDelayed", "inherited": true, - "___id": "T000002R058512", + "___id": "T000002R058516", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of COMPLETE_DELAY, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isCompleteDelayed\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of COMPLETE_DELAY, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 775, + "lineno": 773, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1009981,14 +1013436,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isCompleteDelayed", "inherited": true, - "___id": "T000002R058513", + "___id": "T000002R058517", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of START_DELAY, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isStartDelayed\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of START_DELAY, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 788, + "lineno": 786, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1010016,14 +1013471,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isStartDelayed", "inherited": true, - "___id": "T000002R058514", + "___id": "T000002R058518", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of PENDING_REMOVE, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isPendingRemove\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of PENDING_REMOVE, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 801, + "lineno": 799, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1010051,14 +1013506,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isPendingRemove", "inherited": true, - "___id": "T000002R058515", + "___id": "T000002R058519", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of REMOVED, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isRemoved\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of REMOVED, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 814, + "lineno": 812, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1010086,14 +1013541,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isRemoved", "inherited": true, - "___id": "T000002R058516", + "___id": "T000002R058520", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of FINISHED, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isFinished\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of FINISHED, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 827, + "lineno": 825, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1010121,14 +1013576,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isFinished", "inherited": true, - "___id": "T000002R058517", + "___id": "T000002R058521", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of DESTROYED, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isDestroyed\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of DESTROYED, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 840, + "lineno": 838, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1010156,7 +1013611,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isDestroyed", "inherited": true, - "___id": "T000002R058518", + "___id": "T000002R058522", "___s": true }, { @@ -1010177,7 +1013632,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058519", + "___id": "T000002R058523", "___s": true }, { @@ -1010229,7 +1013684,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058520", + "___id": "T000002R058524", "___s": true }, { @@ -1010298,7 +1013753,7 @@ "name": "event" } ], - "___id": "T000002R058521", + "___id": "T000002R058525", "___s": true }, { @@ -1010358,7 +1013813,7 @@ "name": "event" } ], - "___id": "T000002R058522", + "___id": "T000002R058526", "___s": true }, { @@ -1010433,7 +1013888,7 @@ "name": "args" } ], - "___id": "T000002R058523", + "___id": "T000002R058527", "___s": true }, { @@ -1010521,7 +1013976,7 @@ "name": "context" } ], - "___id": "T000002R058524", + "___id": "T000002R058528", "___s": true }, { @@ -1010609,7 +1014064,7 @@ "name": "context" } ], - "___id": "T000002R058525", + "___id": "T000002R058529", "___s": true }, { @@ -1010697,7 +1014152,7 @@ "name": "context" } ], - "___id": "T000002R058526", + "___id": "T000002R058530", "___s": true }, { @@ -1010799,7 +1014254,7 @@ "name": "once" } ], - "___id": "T000002R058527", + "___id": "T000002R058531", "___s": true }, { @@ -1010901,7 +1014356,7 @@ "name": "once" } ], - "___id": "T000002R058528", + "___id": "T000002R058532", "___s": true }, { @@ -1010963,7 +1014418,7 @@ "name": "event" } ], - "___id": "T000002R058529", + "___id": "T000002R058533", "___s": true }, { @@ -1011003,7 +1014458,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#parent", "inherited": true, - "___id": "T000002R058530", + "___id": "T000002R058534", "___s": true }, { @@ -1011061,7 +1014516,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#data", "inherited": true, - "___id": "T000002R058531", + "___id": "T000002R058535", "___s": true }, { @@ -1011091,7 +1014546,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#totalData", "inherited": true, - "___id": "T000002R058532", + "___id": "T000002R058536", "___s": true }, { @@ -1011122,7 +1014577,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#startDelay", "inherited": true, - "___id": "T000002R058533", + "___id": "T000002R058537", "___s": true }, { @@ -1011153,7 +1014608,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#hasStarted", "inherited": true, - "___id": "T000002R058534", + "___id": "T000002R058538", "___s": true }, { @@ -1011184,7 +1014639,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#timeScale", "inherited": true, - "___id": "T000002R058535", + "___id": "T000002R058539", "___s": true }, { @@ -1011215,7 +1014670,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#loop", "inherited": true, - "___id": "T000002R058536", + "___id": "T000002R058540", "___s": true }, { @@ -1011246,7 +1014701,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#loopDelay", "inherited": true, - "___id": "T000002R058537", + "___id": "T000002R058541", "___s": true }, { @@ -1011277,7 +1014732,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#loopCounter", "inherited": true, - "___id": "T000002R058538", + "___id": "T000002R058542", "___s": true }, { @@ -1011308,7 +1014763,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#completeDelay", "inherited": true, - "___id": "T000002R058539", + "___id": "T000002R058543", "___s": true }, { @@ -1011339,7 +1014794,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#countdown", "inherited": true, - "___id": "T000002R058540", + "___id": "T000002R058544", "___s": true }, { @@ -1011369,7 +1014824,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#state", "inherited": true, - "___id": "T000002R058541", + "___id": "T000002R058545", "___s": true }, { @@ -1011400,7 +1014855,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#paused", "inherited": true, - "___id": "T000002R058542", + "___id": "T000002R058546", "___s": true }, { @@ -1011430,7 +1014885,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#callbacks", "inherited": true, - "___id": "T000002R058543", + "___id": "T000002R058547", "___s": true }, { @@ -1011460,11 +1014915,11 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#callbackScope", "inherited": true, - "___id": "T000002R058544", + "___id": "T000002R058548", "___s": true }, { - "comment": "/**\r\n * Will this Tween persist after playback? A Tween that persists will _not_ be destroyed by the\r\n * Tween Manager, or when calling `Tween.stop`, and can be re-played as required. You can either\r\n * set this property when creating the tween in the tween config, or set it _prior_ to playback.\r\n *\r\n * However, it's up to you to ensure you destroy persistent tweens when you are finished with them,\r\n * or they will retain references you may no longer require and waste memory.\r\n *\r\n * By default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by\r\n * the Tween Manager. But `TweenChains` _do_ persist by default, unless overridden in their\r\n * config. This is because the type of situations you use a chain for is far more likely to\r\n * need to be replayed again in the future, rather than disposed of.\r\n *\r\n * @name Phaser.Tweens.BaseTween#persist\r\n * @type {boolean}\r\n * @since 3.60.0\r\n */", + "comment": "/**\r\n * Will this Tween persist after playback? A Tween that persists will _not_ be destroyed by the\r\n * Tween Manager, or when calling `Tween.stop`, and can be re-played as required. You can either\r\n * set this property when creating the tween in the tween config, or set it _prior_ to playback.\r\n *\r\n * However, it's up to you to ensure you destroy persistent tweens when you are finished with them,\r\n * or they will retain references you may no longer require and waste memory.\r\n *\r\n * By default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by\r\n * the Tween Manager.\r\n *\r\n * @name Phaser.Tweens.BaseTween#persist\r\n * @type {boolean}\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", "lineno": 245, @@ -1011475,7 +1014930,7 @@ "name": "persist", "longname": "Phaser.Tweens.TweenChain#persist", "kind": "member", - "description": "Will this Tween persist after playback? A Tween that persists will _not_ be destroyed by the\rTween Manager, or when calling `Tween.stop`, and can be re-played as required. You can either\rset this property when creating the tween in the tween config, or set it _prior_ to playback.\r\rHowever, it's up to you to ensure you destroy persistent tweens when you are finished with them,\ror they will retain references you may no longer require and waste memory.\r\rBy default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by\rthe Tween Manager. But `TweenChains` _do_ persist by default, unless overridden in their\rconfig. This is because the type of situations you use a chain for is far more likely to\rneed to be replayed again in the future, rather than disposed of.", + "description": "Will this Tween persist after playback? A Tween that persists will _not_ be destroyed by the\rTween Manager, or when calling `Tween.stop`, and can be re-played as required. You can either\rset this property when creating the tween in the tween config, or set it _prior_ to playback.\r\rHowever, it's up to you to ensure you destroy persistent tweens when you are finished with them,\ror they will retain references you may no longer require and waste memory.\r\rBy default, `Tweens` are set to _not_ persist, so they are automatically cleaned-up by\rthe Tween Manager.", "type": { "names": [ "boolean" @@ -1011490,14 +1014945,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#persist", "inherited": true, - "___id": "T000002R058545", + "___id": "T000002R058549", "___s": true }, { "comment": "/**\r\n * Sets the value of the time scale applied to this Tween. A value of 1 runs in real-time.\r\n * A value of 0.5 runs 50% slower, and so on.\r\n *\r\n * The value isn't used when calculating total duration of the tween, it's a run-time delta adjustment only.\r\n *\r\n * This value is multiplied by the `TweenManager.timeScale`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setTimeScale\r\n * @since 3.60.0\r\n *\r\n * @param {number} value - The time scale value to set.\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 265, + "lineno": 263, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1011541,14 +1014996,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#setTimeScale", "inherited": true, - "___id": "T000002R058546", + "___id": "T000002R058550", "___s": true }, { "comment": "/**\r\n * Gets the value of the time scale applied to this Tween. A value of 1 runs in real-time.\r\n * A value of 0.5 runs 50% slower, and so on.\r\n *\r\n * @method Phaser.Tweens.BaseTween#getTimeScale\r\n * @since 3.60.0\r\n *\r\n * @return {number} The value of the time scale applied to this Tween.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 287, + "lineno": 285, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1011576,14 +1015031,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#getTimeScale", "inherited": true, - "___id": "T000002R058547", + "___id": "T000002R058551", "___s": true }, { "comment": "/**\r\n * Checks if this Tween is currently playing.\r\n *\r\n * If this Tween is paused, or not active, this method will return false.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isPlaying\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if the Tween is playing, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 301, + "lineno": 299, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1011611,14 +1015066,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isPlaying", "inherited": true, - "___id": "T000002R058548", + "___id": "T000002R058552", "___s": true }, { "comment": "/**\r\n * Checks if the Tween is currently paused.\r\n *\r\n * This is the same as inspecting the `BaseTween.paused` property directly.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isPaused\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if the Tween is paused, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 316, + "lineno": 314, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1011646,14 +1015101,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isPaused", "inherited": true, - "___id": "T000002R058549", + "___id": "T000002R058553", "___s": true }, { "comment": "/**\r\n * Pauses the Tween immediately. Use `resume` to continue playback.\r\n *\r\n * You can also toggle the `Tween.paused` boolean property, but doing so will not trigger the PAUSE event.\r\n *\r\n * @method Phaser.Tweens.BaseTween#pause\r\n * @fires Phaser.Tweens.Events#TWEEN_PAUSE\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 331, + "lineno": 329, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1011685,14 +1015140,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#pause", "inherited": true, - "___id": "T000002R058550", + "___id": "T000002R058554", "___s": true }, { "comment": "/**\r\n * Resumes the playback of a previously paused Tween.\r\n *\r\n * You can also toggle the `Tween.paused` boolean property, but doing so will not trigger the RESUME event.\r\n *\r\n * @method Phaser.Tweens.BaseTween#resume\r\n * @fires Phaser.Tweens.Events#TWEEN_RESUME\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 354, + "lineno": 352, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1011724,7 +1015179,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#resume", "inherited": true, - "___id": "T000002R058551", + "___id": "T000002R058555", "___s": true }, { @@ -1011779,14 +1015234,14 @@ "inherits": "Phaser.Tweens.TweenChain#makeActive", "inherited": true, "overrides": "Phaser.Tweens.BaseTween#makeActive", - "___id": "T000002R058552", + "___id": "T000002R058556", "___s": true }, { "comment": "/**\r\n * Internal method that handles this tween completing and emitting the onComplete event\r\n * and callback.\r\n *\r\n * @method Phaser.Tweens.BaseTween#onCompleteHandler\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 392, + "lineno": 390, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1011800,14 +1015255,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#onCompleteHandler", "inherited": true, - "___id": "T000002R058553", + "___id": "T000002R058557", "___s": true }, { "comment": "/**\r\n * Flags the Tween as being complete, whatever stage of progress it is at.\r\n *\r\n * If an `onComplete` callback has been defined it will automatically invoke it, unless a `delay`\r\n * argument is provided, in which case the Tween will delay for that period of time before calling the callback.\r\n *\r\n * If you don't need a delay or don't have an `onComplete` callback then call `Tween.stop` instead.\r\n *\r\n * @method Phaser.Tweens.BaseTween#complete\r\n * @fires Phaser.Tweens.Events#TWEEN_COMPLETE\r\n * @since 3.2.0\r\n *\r\n * @param {number} [delay=0] - The time to wait before invoking the complete callback. If zero it will fire immediately.\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 406, + "lineno": 404, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1011856,14 +1015311,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#complete", "inherited": true, - "___id": "T000002R058554", + "___id": "T000002R058558", "___s": true }, { "comment": "/**\r\n * Flags the Tween as being complete only once the current loop has finished.\r\n *\r\n * This is a useful way to stop an infinitely looping tween once a complete cycle is over,\r\n * rather than abruptly.\r\n *\r\n * If you don't have a loop then call `Tween.stop` instead.\r\n *\r\n * @method Phaser.Tweens.BaseTween#completeAfterLoop\r\n * @fires Phaser.Tweens.Events#TWEEN_COMPLETE\r\n * @since 3.60.0\r\n *\r\n * @param {number} [loops=0] - The number of loops that should finish before this tween completes. Zero means complete just the current loop.\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 440, + "lineno": 438, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1011912,7 +1015367,7 @@ ], "inherits": "Phaser.Tweens.BaseTween#completeAfterLoop", "inherited": true, - "___id": "T000002R058555", + "___id": "T000002R058559", "___s": true }, { @@ -1011964,14 +1015419,14 @@ "inherits": "Phaser.Tweens.TweenChain#remove", "inherited": true, "overrides": "Phaser.Tweens.BaseTween#remove", - "___id": "T000002R058556", + "___id": "T000002R058560", "___s": true }, { "comment": "/**\r\n * Stops the Tween immediately, whatever stage of progress it is at.\r\n *\r\n * If not a part of a Tween Chain it is also flagged for removal by the Tween Manager.\r\n *\r\n * If an `onStop` callback has been defined it will automatically invoke it.\r\n *\r\n * The Tween will be removed during the next game frame, but should be considered 'destroyed' from this point on.\r\n *\r\n * Typically, you cannot play a Tween that has been stopped. If you just wish to pause the tween, not destroy it,\r\n * then call the `pause` method instead and use `resume` to continue playback. If you wish to restart the Tween,\r\n * use the `restart` or `seek` methods.\r\n *\r\n * @method Phaser.Tweens.BaseTween#stop\r\n * @fires Phaser.Tweens.Events#TWEEN_STOP\r\n * @since 3.60.0\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 490, + "lineno": 488, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012003,14 +1015458,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#stop", "inherited": true, - "___id": "T000002R058557", + "___id": "T000002R058561", "___s": true }, { "comment": "/**\r\n * Internal method that handles the processing of the loop delay countdown timer and\r\n * the dispatch of related events. Called automatically by `Tween.update`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#updateLoopCountdown\r\n * @since 3.60.0\r\n *\r\n * @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 521, + "lineno": 519, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012039,14 +1015494,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#updateLoopCountdown", "inherited": true, - "___id": "T000002R058558", + "___id": "T000002R058562", "___s": true }, { "comment": "/**\r\n * Internal method that handles the processing of the start delay countdown timer and\r\n * the dispatch of related events. Called automatically by `Tween.update`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#updateStartCountdown\r\n * @since 3.60.0\r\n *\r\n * @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 542, + "lineno": 540, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012075,14 +1015530,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#updateStartCountdown", "inherited": true, - "___id": "T000002R058559", + "___id": "T000002R058563", "___s": true }, { "comment": "/**\r\n * Internal method that handles the processing of the complete delay countdown timer and\r\n * the dispatch of related events. Called automatically by `Tween.update`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#updateCompleteDelay\r\n * @since 3.60.0\r\n *\r\n * @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 570, + "lineno": 568, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012111,14 +1015566,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#updateCompleteDelay", "inherited": true, - "___id": "T000002R058560", + "___id": "T000002R058564", "___s": true }, { "comment": "/**\r\n * Sets an event based callback to be invoked during playback.\r\n *\r\n * Calling this method will replace a previously set callback for the given type, if any exists.\r\n *\r\n * The types available are:\r\n *\r\n * `onActive` - When the Tween is first created it moves to an 'active' state when added to the Tween Manager. 'Active' does not mean 'playing'.\r\n * `onStart` - When the Tween starts playing after a delayed or paused state. This will happen at the same time as `onActive` if the tween has no delay and isn't paused.\r\n * `onLoop` - When a Tween loops, if it has been set to do so. This happens _after_ the `loopDelay` expires, if set.\r\n * `onComplete` - When the Tween finishes playback fully. Never invoked if the Tween is set to repeat infinitely.\r\n * `onStop` - Invoked only if the `Tween.stop` method is called.\r\n * `onPause` - Invoked only if the `Tween.pause` method is called. Not invoked if the Tween Manager is paused.\r\n * `onResume` - Invoked only if the `Tween.resume` method is called. Not invoked if the Tween Manager is resumed.\r\n *\r\n * The following types are also available and are invoked on a `TweenData` level - that is per-object, per-property, being tweened.\r\n *\r\n * `onYoyo` - When a TweenData starts a yoyo. This happens _after_ the `hold` delay expires, if set.\r\n * `onRepeat` - When a TweenData repeats playback. This happens _after_ the `repeatDelay` expires, if set.\r\n * `onUpdate` - When a TweenData updates a property on a source target during playback.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setCallback\r\n * @since 3.60.0\r\n *\r\n * @param {Phaser.Types.Tweens.TweenCallbackTypes} type - The type of callback to set. One of: `onActive`, `onComplete`, `onLoop`, `onPause`, `onRepeat`, `onResume`, `onStart`, `onStop`, `onUpdate` or `onYoyo`.\r\n * @param {function} callback - Your callback that will be invoked.\r\n * @param {array} [params] - The parameters to pass to the callback. Pass an empty array if you don't want to define any, but do wish to set the scope.\r\n *\r\n * @return {this} This Tween instance.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 589, + "lineno": 587, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012189,14 +1015644,14 @@ ], "inherits": "Phaser.Tweens.BaseTween#setCallback", "inherited": true, - "___id": "T000002R058561", + "___id": "T000002R058565", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to PENDING.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setPendingState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 631, + "lineno": 629, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012210,14 +1015665,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setPendingState", "inherited": true, - "___id": "T000002R058562", + "___id": "T000002R058566", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to ACTIVE.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setActiveState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 642, + "lineno": 640, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012231,14 +1015686,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setActiveState", "inherited": true, - "___id": "T000002R058563", + "___id": "T000002R058567", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to LOOP_DELAY.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setLoopDelayState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 655, + "lineno": 653, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012252,14 +1015707,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setLoopDelayState", "inherited": true, - "___id": "T000002R058564", + "___id": "T000002R058568", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to COMPLETE_DELAY.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setCompleteDelayState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 666, + "lineno": 664, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012273,14 +1015728,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setCompleteDelayState", "inherited": true, - "___id": "T000002R058565", + "___id": "T000002R058569", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to START_DELAY.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setStartDelayState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 677, + "lineno": 675, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012294,14 +1015749,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setStartDelayState", "inherited": true, - "___id": "T000002R058566", + "___id": "T000002R058570", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to PENDING_REMOVE.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setPendingRemoveState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 692, + "lineno": 690, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012315,14 +1015770,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setPendingRemoveState", "inherited": true, - "___id": "T000002R058567", + "___id": "T000002R058571", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to REMOVED.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setRemovedState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 703, + "lineno": 701, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012336,14 +1015791,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setRemovedState", "inherited": true, - "___id": "T000002R058568", + "___id": "T000002R058572", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to FINISHED.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setFinishedState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 714, + "lineno": 712, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012357,14 +1015812,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setFinishedState", "inherited": true, - "___id": "T000002R058569", + "___id": "T000002R058573", "___s": true }, { "comment": "/**\r\n * Sets this Tween state to DESTROYED.\r\n *\r\n * @method Phaser.Tweens.BaseTween#setDestroyedState\r\n * @since 3.60.0\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 725, + "lineno": 723, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012378,14 +1015833,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#setDestroyedState", "inherited": true, - "___id": "T000002R058570", + "___id": "T000002R058574", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of PENDING, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isPending\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of PENDING, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 736, + "lineno": 734, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012413,14 +1015868,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isPending", "inherited": true, - "___id": "T000002R058571", + "___id": "T000002R058575", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of ACTIVE, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isActive\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of ACTIVE, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 749, + "lineno": 747, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012448,14 +1015903,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isActive", "inherited": true, - "___id": "T000002R058572", + "___id": "T000002R058576", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of LOOP_DELAY, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isLoopDelayed\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of LOOP_DELAY, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 762, + "lineno": 760, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012483,14 +1015938,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isLoopDelayed", "inherited": true, - "___id": "T000002R058573", + "___id": "T000002R058577", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of COMPLETE_DELAY, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isCompleteDelayed\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of COMPLETE_DELAY, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 775, + "lineno": 773, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012518,14 +1015973,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isCompleteDelayed", "inherited": true, - "___id": "T000002R058574", + "___id": "T000002R058578", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of START_DELAY, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isStartDelayed\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of START_DELAY, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 788, + "lineno": 786, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012553,14 +1016008,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isStartDelayed", "inherited": true, - "___id": "T000002R058575", + "___id": "T000002R058579", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of PENDING_REMOVE, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isPendingRemove\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of PENDING_REMOVE, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 801, + "lineno": 799, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012588,14 +1016043,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isPendingRemove", "inherited": true, - "___id": "T000002R058576", + "___id": "T000002R058580", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of REMOVED, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isRemoved\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of REMOVED, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 814, + "lineno": 812, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012623,14 +1016078,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isRemoved", "inherited": true, - "___id": "T000002R058577", + "___id": "T000002R058581", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of FINISHED, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isFinished\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of FINISHED, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 827, + "lineno": 825, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012658,14 +1016113,14 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isFinished", "inherited": true, - "___id": "T000002R058578", + "___id": "T000002R058582", "___s": true }, { "comment": "/**\r\n * Returns `true` if this Tween has a _current_ state of DESTROYED, otherwise `false`.\r\n *\r\n * @method Phaser.Tweens.BaseTween#isDestroyed\r\n * @since 3.60.0\r\n *\r\n * @return {boolean} `true` if this Tween has a _current_ state of DESTROYED, otherwise `false`.\r\n */", "meta": { "filename": "BaseTween.js", - "lineno": 840, + "lineno": 838, "columnno": 4, "path": "D:\\wamp\\www\\phaser\\src\\tweens\\tween", "code": {} @@ -1012693,7 +1016148,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTween#isDestroyed", "inherited": true, - "___id": "T000002R058579", + "___id": "T000002R058583", "___s": true }, { @@ -1012714,7 +1016169,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058580", + "___id": "T000002R058584", "___s": true }, { @@ -1012766,7 +1016221,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058581", + "___id": "T000002R058585", "___s": true }, { @@ -1012835,7 +1016290,7 @@ "name": "event" } ], - "___id": "T000002R058582", + "___id": "T000002R058586", "___s": true }, { @@ -1012895,7 +1016350,7 @@ "name": "event" } ], - "___id": "T000002R058583", + "___id": "T000002R058587", "___s": true }, { @@ -1012970,7 +1016425,7 @@ "name": "args" } ], - "___id": "T000002R058584", + "___id": "T000002R058588", "___s": true }, { @@ -1013058,7 +1016513,7 @@ "name": "context" } ], - "___id": "T000002R058585", + "___id": "T000002R058589", "___s": true }, { @@ -1013146,7 +1016601,7 @@ "name": "context" } ], - "___id": "T000002R058586", + "___id": "T000002R058590", "___s": true }, { @@ -1013234,7 +1016689,7 @@ "name": "context" } ], - "___id": "T000002R058587", + "___id": "T000002R058591", "___s": true }, { @@ -1013336,7 +1016791,7 @@ "name": "once" } ], - "___id": "T000002R058588", + "___id": "T000002R058592", "___s": true }, { @@ -1013438,7 +1016893,7 @@ "name": "once" } ], - "___id": "T000002R058589", + "___id": "T000002R058593", "___s": true }, { @@ -1013500,7 +1016955,7 @@ "name": "event" } ], - "___id": "T000002R058590", + "___id": "T000002R058594", "___s": true }, { @@ -1013530,7 +1016985,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#tween", "inherited": true, - "___id": "T000002R058591", + "___id": "T000002R058595", "___s": true }, { @@ -1013560,7 +1017015,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#targetIndex", "inherited": true, - "___id": "T000002R058592", + "___id": "T000002R058596", "___s": true }, { @@ -1013590,7 +1017045,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#duration", "inherited": true, - "___id": "T000002R058593", + "___id": "T000002R058597", "___s": true }, { @@ -1013620,7 +1017075,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#totalDuration", "inherited": true, - "___id": "T000002R058594", + "___id": "T000002R058598", "___s": true }, { @@ -1013650,7 +1017105,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#delay", "inherited": true, - "___id": "T000002R058595", + "___id": "T000002R058599", "___s": true }, { @@ -1013680,7 +1017135,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#getDelay", "inherited": true, - "___id": "T000002R058596", + "___id": "T000002R058600", "___s": true }, { @@ -1013710,7 +1017165,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#yoyo", "inherited": true, - "___id": "T000002R058597", + "___id": "T000002R058601", "___s": true }, { @@ -1013740,7 +1017195,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#hold", "inherited": true, - "___id": "T000002R058598", + "___id": "T000002R058602", "___s": true }, { @@ -1013770,7 +1017225,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#repeat", "inherited": true, - "___id": "T000002R058599", + "___id": "T000002R058603", "___s": true }, { @@ -1013800,7 +1017255,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#repeatDelay", "inherited": true, - "___id": "T000002R058600", + "___id": "T000002R058604", "___s": true }, { @@ -1013830,7 +1017285,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#repeatCounter", "inherited": true, - "___id": "T000002R058601", + "___id": "T000002R058605", "___s": true }, { @@ -1013860,7 +1017315,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#flipX", "inherited": true, - "___id": "T000002R058602", + "___id": "T000002R058606", "___s": true }, { @@ -1013890,7 +1017345,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#flipY", "inherited": true, - "___id": "T000002R058603", + "___id": "T000002R058607", "___s": true }, { @@ -1013920,7 +1017375,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#progress", "inherited": true, - "___id": "T000002R058604", + "___id": "T000002R058608", "___s": true }, { @@ -1013950,7 +1017405,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#elapsed", "inherited": true, - "___id": "T000002R058605", + "___id": "T000002R058609", "___s": true }, { @@ -1013980,7 +1017435,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#state", "inherited": true, - "___id": "T000002R058606", + "___id": "T000002R058610", "___s": true }, { @@ -1014010,7 +1017465,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isCountdown", "inherited": true, - "___id": "T000002R058607", + "___id": "T000002R058611", "___s": true }, { @@ -1014045,7 +1017500,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#getTarget", "inherited": true, - "___id": "T000002R058608", + "___id": "T000002R058612", "___s": true }, { @@ -1014082,7 +1017537,7 @@ ], "inherits": "Phaser.Tweens.BaseTweenData#setTargetValue", "inherited": true, - "___id": "T000002R058609", + "___id": "T000002R058613", "___s": true }, { @@ -1014103,7 +1017558,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setCreatedState", "inherited": true, - "___id": "T000002R058610", + "___id": "T000002R058614", "___s": true }, { @@ -1014124,7 +1017579,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setDelayState", "inherited": true, - "___id": "T000002R058611", + "___id": "T000002R058615", "___s": true }, { @@ -1014145,7 +1017600,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setPendingRenderState", "inherited": true, - "___id": "T000002R058612", + "___id": "T000002R058616", "___s": true }, { @@ -1014166,7 +1017621,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setPlayingForwardState", "inherited": true, - "___id": "T000002R058613", + "___id": "T000002R058617", "___s": true }, { @@ -1014187,7 +1017642,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setPlayingBackwardState", "inherited": true, - "___id": "T000002R058614", + "___id": "T000002R058618", "___s": true }, { @@ -1014208,7 +1017663,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setHoldState", "inherited": true, - "___id": "T000002R058615", + "___id": "T000002R058619", "___s": true }, { @@ -1014229,7 +1017684,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setRepeatState", "inherited": true, - "___id": "T000002R058616", + "___id": "T000002R058620", "___s": true }, { @@ -1014250,7 +1017705,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setCompleteState", "inherited": true, - "___id": "T000002R058617", + "___id": "T000002R058621", "___s": true }, { @@ -1014285,7 +1017740,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isCreated", "inherited": true, - "___id": "T000002R058618", + "___id": "T000002R058622", "___s": true }, { @@ -1014320,7 +1017775,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isDelayed", "inherited": true, - "___id": "T000002R058619", + "___id": "T000002R058623", "___s": true }, { @@ -1014355,7 +1017810,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isPendingRender", "inherited": true, - "___id": "T000002R058620", + "___id": "T000002R058624", "___s": true }, { @@ -1014390,7 +1017845,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isPlayingForward", "inherited": true, - "___id": "T000002R058621", + "___id": "T000002R058625", "___s": true }, { @@ -1014425,7 +1017880,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isPlayingBackward", "inherited": true, - "___id": "T000002R058622", + "___id": "T000002R058626", "___s": true }, { @@ -1014460,7 +1017915,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isHolding", "inherited": true, - "___id": "T000002R058623", + "___id": "T000002R058627", "___s": true }, { @@ -1014495,7 +1017950,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isRepeating", "inherited": true, - "___id": "T000002R058624", + "___id": "T000002R058628", "___s": true }, { @@ -1014530,7 +1017985,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isComplete", "inherited": true, - "___id": "T000002R058625", + "___id": "T000002R058629", "___s": true }, { @@ -1014570,7 +1018025,7 @@ ], "inherits": "Phaser.Tweens.BaseTweenData#setStateFromEnd", "inherited": true, - "___id": "T000002R058626", + "___id": "T000002R058630", "___s": true }, { @@ -1014609,7 +1018064,7 @@ ], "inherits": "Phaser.Tweens.BaseTweenData#setStateFromStart", "inherited": true, - "___id": "T000002R058627", + "___id": "T000002R058631", "___s": true }, { @@ -1014675,7 +1018130,7 @@ ], "inherits": "Phaser.Tweens.BaseTweenData#onRepeat", "inherited": true, - "___id": "T000002R058628", + "___id": "T000002R058632", "___s": true }, { @@ -1014705,7 +1018160,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#tween", "inherited": true, - "___id": "T000002R058629", + "___id": "T000002R058633", "___s": true }, { @@ -1014735,7 +1018190,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#targetIndex", "inherited": true, - "___id": "T000002R058630", + "___id": "T000002R058634", "___s": true }, { @@ -1014765,7 +1018220,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#duration", "inherited": true, - "___id": "T000002R058631", + "___id": "T000002R058635", "___s": true }, { @@ -1014795,7 +1018250,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#totalDuration", "inherited": true, - "___id": "T000002R058632", + "___id": "T000002R058636", "___s": true }, { @@ -1014825,7 +1018280,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#delay", "inherited": true, - "___id": "T000002R058633", + "___id": "T000002R058637", "___s": true }, { @@ -1014855,7 +1018310,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#getDelay", "inherited": true, - "___id": "T000002R058634", + "___id": "T000002R058638", "___s": true }, { @@ -1014885,7 +1018340,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#hold", "inherited": true, - "___id": "T000002R058635", + "___id": "T000002R058639", "___s": true }, { @@ -1014915,7 +1018370,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#repeat", "inherited": true, - "___id": "T000002R058636", + "___id": "T000002R058640", "___s": true }, { @@ -1014945,7 +1018400,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#repeatDelay", "inherited": true, - "___id": "T000002R058637", + "___id": "T000002R058641", "___s": true }, { @@ -1014975,7 +1018430,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#repeatCounter", "inherited": true, - "___id": "T000002R058638", + "___id": "T000002R058642", "___s": true }, { @@ -1015005,7 +1018460,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#flipX", "inherited": true, - "___id": "T000002R058639", + "___id": "T000002R058643", "___s": true }, { @@ -1015035,7 +1018490,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#flipY", "inherited": true, - "___id": "T000002R058640", + "___id": "T000002R058644", "___s": true }, { @@ -1015065,7 +1018520,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#progress", "inherited": true, - "___id": "T000002R058641", + "___id": "T000002R058645", "___s": true }, { @@ -1015095,7 +1018550,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#elapsed", "inherited": true, - "___id": "T000002R058642", + "___id": "T000002R058646", "___s": true }, { @@ -1015125,7 +1018580,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#state", "inherited": true, - "___id": "T000002R058643", + "___id": "T000002R058647", "___s": true }, { @@ -1015155,7 +1018610,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isCountdown", "inherited": true, - "___id": "T000002R058644", + "___id": "T000002R058648", "___s": true }, { @@ -1015190,7 +1018645,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#getTarget", "inherited": true, - "___id": "T000002R058645", + "___id": "T000002R058649", "___s": true }, { @@ -1015227,7 +1018682,7 @@ ], "inherits": "Phaser.Tweens.BaseTweenData#setTargetValue", "inherited": true, - "___id": "T000002R058646", + "___id": "T000002R058650", "___s": true }, { @@ -1015248,7 +1018703,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setCreatedState", "inherited": true, - "___id": "T000002R058647", + "___id": "T000002R058651", "___s": true }, { @@ -1015269,7 +1018724,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setDelayState", "inherited": true, - "___id": "T000002R058648", + "___id": "T000002R058652", "___s": true }, { @@ -1015290,7 +1018745,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setPendingRenderState", "inherited": true, - "___id": "T000002R058649", + "___id": "T000002R058653", "___s": true }, { @@ -1015311,7 +1018766,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setPlayingForwardState", "inherited": true, - "___id": "T000002R058650", + "___id": "T000002R058654", "___s": true }, { @@ -1015332,7 +1018787,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setPlayingBackwardState", "inherited": true, - "___id": "T000002R058651", + "___id": "T000002R058655", "___s": true }, { @@ -1015353,7 +1018808,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setHoldState", "inherited": true, - "___id": "T000002R058652", + "___id": "T000002R058656", "___s": true }, { @@ -1015374,7 +1018829,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setRepeatState", "inherited": true, - "___id": "T000002R058653", + "___id": "T000002R058657", "___s": true }, { @@ -1015395,7 +1018850,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#setCompleteState", "inherited": true, - "___id": "T000002R058654", + "___id": "T000002R058658", "___s": true }, { @@ -1015430,7 +1018885,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isCreated", "inherited": true, - "___id": "T000002R058655", + "___id": "T000002R058659", "___s": true }, { @@ -1015465,7 +1018920,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isDelayed", "inherited": true, - "___id": "T000002R058656", + "___id": "T000002R058660", "___s": true }, { @@ -1015500,7 +1018955,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isPendingRender", "inherited": true, - "___id": "T000002R058657", + "___id": "T000002R058661", "___s": true }, { @@ -1015535,7 +1018990,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isPlayingForward", "inherited": true, - "___id": "T000002R058658", + "___id": "T000002R058662", "___s": true }, { @@ -1015570,7 +1019025,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isPlayingBackward", "inherited": true, - "___id": "T000002R058659", + "___id": "T000002R058663", "___s": true }, { @@ -1015605,7 +1019060,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isHolding", "inherited": true, - "___id": "T000002R058660", + "___id": "T000002R058664", "___s": true }, { @@ -1015640,7 +1019095,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isRepeating", "inherited": true, - "___id": "T000002R058661", + "___id": "T000002R058665", "___s": true }, { @@ -1015675,7 +1019130,7 @@ "scope": "instance", "inherits": "Phaser.Tweens.BaseTweenData#isComplete", "inherited": true, - "___id": "T000002R058662", + "___id": "T000002R058666", "___s": true }, { @@ -1015715,7 +1019170,7 @@ ], "inherits": "Phaser.Tweens.BaseTweenData#setStateFromEnd", "inherited": true, - "___id": "T000002R058663", + "___id": "T000002R058667", "___s": true }, { @@ -1015754,7 +1019209,7 @@ ], "inherits": "Phaser.Tweens.BaseTweenData#setStateFromStart", "inherited": true, - "___id": "T000002R058664", + "___id": "T000002R058668", "___s": true }, { @@ -1015820,7 +1019275,7 @@ ], "inherits": "Phaser.Tweens.BaseTweenData#onRepeat", "inherited": true, - "___id": "T000002R058665", + "___id": "T000002R058669", "___s": true }, { @@ -1015841,7 +1019296,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#shutdown", "inherited": true, - "___id": "T000002R058666", + "___id": "T000002R058670", "___s": true }, { @@ -1015862,7 +1019317,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#destroy", "inherited": true, - "___id": "T000002R058667", + "___id": "T000002R058671", "___s": true }, { @@ -1015914,7 +1019369,7 @@ "scope": "instance", "inherits": "Phaser.Events.EventEmitter#eventNames", "inherited": true, - "___id": "T000002R058668", + "___id": "T000002R058672", "___s": true }, { @@ -1015983,7 +1019438,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listeners", "inherited": true, - "___id": "T000002R058669", + "___id": "T000002R058673", "___s": true }, { @@ -1016043,7 +1019498,7 @@ ], "inherits": "Phaser.Events.EventEmitter#listenerCount", "inherited": true, - "___id": "T000002R058670", + "___id": "T000002R058674", "___s": true }, { @@ -1016118,7 +1019573,7 @@ ], "inherits": "Phaser.Events.EventEmitter#emit", "inherited": true, - "___id": "T000002R058671", + "___id": "T000002R058675", "___s": true }, { @@ -1016206,7 +1019661,7 @@ ], "inherits": "Phaser.Events.EventEmitter#on", "inherited": true, - "___id": "T000002R058672", + "___id": "T000002R058676", "___s": true }, { @@ -1016294,7 +1019749,7 @@ ], "inherits": "Phaser.Events.EventEmitter#addListener", "inherited": true, - "___id": "T000002R058673", + "___id": "T000002R058677", "___s": true }, { @@ -1016382,7 +1019837,7 @@ ], "inherits": "Phaser.Events.EventEmitter#once", "inherited": true, - "___id": "T000002R058674", + "___id": "T000002R058678", "___s": true }, { @@ -1016484,7 +1019939,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeListener", "inherited": true, - "___id": "T000002R058675", + "___id": "T000002R058679", "___s": true }, { @@ -1016586,7 +1020041,7 @@ ], "inherits": "Phaser.Events.EventEmitter#off", "inherited": true, - "___id": "T000002R058676", + "___id": "T000002R058680", "___s": true }, { @@ -1016648,7 +1020103,7 @@ ], "inherits": "Phaser.Events.EventEmitter#removeAllListeners", "inherited": true, - "___id": "T000002R058677", + "___id": "T000002R058681", "___s": true }, { @@ -1016676,7 +1020131,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.NO_CENTER", "scope": "static", - "___id": "T000002R058678", + "___id": "T000002R058682", "___s": true }, { @@ -1016704,7 +1020159,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.CENTER_BOTH", "scope": "static", - "___id": "T000002R058679", + "___id": "T000002R058683", "___s": true }, { @@ -1016732,7 +1020187,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.CENTER_HORIZONTALLY", "scope": "static", - "___id": "T000002R058680", + "___id": "T000002R058684", "___s": true }, { @@ -1016760,7 +1020215,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.CENTER_VERTICALLY", "scope": "static", - "___id": "T000002R058681", + "___id": "T000002R058685", "___s": true }, { @@ -1016788,7 +1020243,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.LANDSCAPE", "scope": "static", - "___id": "T000002R058682", + "___id": "T000002R058686", "___s": true }, { @@ -1016816,7 +1020271,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.PORTRAIT", "scope": "static", - "___id": "T000002R058683", + "___id": "T000002R058687", "___s": true }, { @@ -1016844,7 +1020299,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.NONE", "scope": "static", - "___id": "T000002R058684", + "___id": "T000002R058688", "___s": true }, { @@ -1016872,7 +1020327,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.WIDTH_CONTROLS_HEIGHT", "scope": "static", - "___id": "T000002R058685", + "___id": "T000002R058689", "___s": true }, { @@ -1016900,7 +1020355,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.HEIGHT_CONTROLS_WIDTH", "scope": "static", - "___id": "T000002R058686", + "___id": "T000002R058690", "___s": true }, { @@ -1016928,7 +1020383,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.FIT", "scope": "static", - "___id": "T000002R058687", + "___id": "T000002R058691", "___s": true }, { @@ -1016956,7 +1020411,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.ENVELOP", "scope": "static", - "___id": "T000002R058688", + "___id": "T000002R058692", "___s": true }, { @@ -1016984,7 +1020439,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.RESIZE", "scope": "static", - "___id": "T000002R058689", + "___id": "T000002R058693", "___s": true }, { @@ -1017012,7 +1020467,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.EXPAND", "scope": "static", - "___id": "T000002R058690", + "___id": "T000002R058694", "___s": true }, { @@ -1017040,7 +1020495,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.NO_ZOOM", "scope": "static", - "___id": "T000002R058691", + "___id": "T000002R058695", "___s": true }, { @@ -1017068,7 +1020523,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.ZOOM_2X", "scope": "static", - "___id": "T000002R058692", + "___id": "T000002R058696", "___s": true }, { @@ -1017096,7 +1020551,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.ZOOM_4X", "scope": "static", - "___id": "T000002R058693", + "___id": "T000002R058697", "___s": true }, { @@ -1017124,7 +1020579,7 @@ "memberof": "Phaser.Scale", "longname": "Phaser.Scale.MAX_ZOOM", "scope": "static", - "___id": "T000002R058694", + "___id": "T000002R058698", "___s": true }, { @@ -1017152,7 +1020607,7 @@ "memberof": "Phaser.Tilemaps", "longname": "Phaser.Tilemaps.ORTHOGONAL", "scope": "static", - "___id": "T000002R058695", + "___id": "T000002R058699", "___s": true }, { @@ -1017180,7 +1020635,7 @@ "memberof": "Phaser.Tilemaps", "longname": "Phaser.Tilemaps.ISOMETRIC", "scope": "static", - "___id": "T000002R058696", + "___id": "T000002R058700", "___s": true }, { @@ -1017208,7 +1020663,7 @@ "memberof": "Phaser.Tilemaps", "longname": "Phaser.Tilemaps.STAGGERED", "scope": "static", - "___id": "T000002R058697", + "___id": "T000002R058701", "___s": true }, { @@ -1017236,7 +1020691,7 @@ "memberof": "Phaser.Tilemaps", "longname": "Phaser.Tilemaps.HEXAGONAL", "scope": "static", - "___id": "T000002R058698", + "___id": "T000002R058702", "___s": true } ] \ No newline at end of file