The Plane allows you to draw a texture across several points and them manipulate these points
for (let i = 0; i < 20; i++) {
points.push(new PIXI.Point(i * 50, 0));
};
let Plane = new PIXI.Plane(PIXI.Texture.fromImage("snake.png"), points);
Public methods | |
---|---|
public | _refresh(): void |
private | _onTextureUpdate(): void |
public | _refresh(): void |
private | _onTextureUpdate(): void |
private | _renderWebGL(renderer: PIXI.WebGLRenderer): void |
private | _renderCanvas(renderer: PIXI.CanvasRenderer): void |
public | multiplyUvs(): void |
public | refresh(forceUpdate: boolean): void |
public | _calculateBounds(): void |
public | containsPoint(point: PIXI.Point): boolean |
public | texture(): void |
public | tint(): void |
private | onChildrenChange(): void |
public | addChild(child: PIXI.DisplayObject): PIXI.DisplayObject |
public | addChildAt(child: PIXI.DisplayObject, index: number): PIXI.DisplayObject |
public | swapChildren(child: PIXI.DisplayObject, child2: PIXI.DisplayObject): void |
public | getChildIndex(child: PIXI.DisplayObject): number |
public | setChildIndex(child: PIXI.DisplayObject, index: number): void |
public | getChildAt(index: number): PIXI.DisplayObject |
public | removeChild(child: PIXI.DisplayObject): PIXI.DisplayObject |
public | removeChildAt(index: number): PIXI.DisplayObject |
public | removeChildren(beginIndex: number, endIndex: number): Array.<DisplayObject> |
public | updateTransform(): void |
public | calculateBounds(): void |
public | renderWebGL(renderer: PIXI.WebGLRenderer): void |
private | renderAdvancedWebGL(renderer: PIXI.WebGLRenderer): void |
public | renderCanvas(renderer: PIXI.CanvasRenderer): void |
public | destroy(options: object, boolean): void |
public | width(): void |
public | height(): void |
private | _tempDisplayObjectParent(): void |
public | _recursivePostUpdateTransform(): void |
public | getBounds(skipUpdate: boolean, rect: PIXI.Rectangle): PIXI.Rectangle |
public | getLocalBounds(rect: PIXI.Rectangle): PIXI.Rectangle |
public | toGlobal(position: PIXI.Point, point: PIXI.Point, skipUpdate: boolean): PIXI.Point |
public | toLocal(position: PIXI.Point, from: PIXI.DisplayObject, point: PIXI.Point, skipUpdate: boolean): PIXI.Point |
public | setParent(container: PIXI.Container): PIXI.Container |
public | setTransform(x: number, y: number, scaleX: number, scaleY: number, rotation: number, skewX: number, skewY: number, pivotX: number, pivotY: number): PIXI.DisplayObject |
public | x(): void |
public | y(): void |
public | worldTransform(): void |
public | localTransform(): void |
public | position(): void |
public | scale(): void |
public | pivot(): void |
public | skew(): void |
public | rotation(): void |
public | worldVisible(): void |
public | mask(): void |
public | filters(): void |
Name | Type | Attribute | Description |
---|---|---|---|
_ready | boolean | private | Tracker for if the Plane is ready to be drawn. Needed because Mesh ctor can |
_ready | boolean | private | Tracker for if the Plane is ready to be drawn. Needed because Mesh ctor can |
_texture | PIXI.Texture | private | The texture of the Mesh |
uvs | Float32Array | public | The Uvs of the Mesh |
vertices | Float32Array | public | An array of vertices |
dirty | number | public | Version of mesh uvs are dirty or not |
indexDirty | number | public | Version of mesh indices |
blendMode | number | public | The blend mode to be applied to the sprite. Set to |
canvasPadding | number | public | Triangles in canvas mode are automatically antialiased, use this value to force triangles |
drawMode | number | public | The way the Mesh should be drawn, can be any of the {@link PIXI.mesh.Mesh.DRAW_MODES} consts |
shader | PIXI.Shader | public | The default shader that is used if a mesh doesn't have a more specific one. |
tintRgb | number | public | The tint applied to the mesh. This is a [r,g,b] value. A value of [1,1,1] will remove any |
_glDatas | object.<number, object> | private | A map of renderer IDs to webgl render data |
_uvTransform | PIXI.extras.TextureTransform | private | transform that is applied to UV to get the texture coords |
uploadUvTransform | boolean | public | whether or not upload uvTransform to shader |
pluginName | string | public | Plugin that is responsible for rendering this element. |
children |
Array. |
public | The array of children of this container. |
transform | PIXI.TransformBase | public | World transform and local transform of this object. |
alpha | number | public | The opacity of the object. |
visible | boolean | public | The visibility of the object. If false the object will not be drawn, and Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually |
renderable | boolean | public | Can this object be rendered, if false the object will not be drawn but the updateTransform Only affects recursive calls from parent. You can ask for bounds manually |
parent | PIXI.Container | public | The display object container that contains this display object. |
worldAlpha | number | public | The multiplied alpha of the displayObject |
filterArea | PIXI.Rectangle | public | The area the filter is applied to. This is used as more of an optimisation Also works as an interaction mask |
_bounds | PIXI.Rectangle | private | The bounds object, this is used to calculate and store the bounds of the displayObject |
_mask | PIXI.Graphics PIXI.Sprite | private | The original, cached mask of the object |
_destroyed | boolean | private | If the object has been destroyed via destroy(). If true, it should not be used. |
cacheAsBitmap | boolean | public | Set this to true if you want this display object to be cached as a bitmap. IMPORTANT GOTCHA - make sure that all your textures are preloaded BEFORE setting this property to true |
Refreshes plane coordinates
void
Clear texture UVs when new texture is set
void
Refreshes plane coordinates
void
Clear texture UVs when new texture is set
void
Renders the object using the WebGL renderer
Name | Type | Attribute | Description |
---|---|---|---|
renderer | a reference to the WebGL renderer |
void
Renders the object using the Canvas renderer
Name | Type | Attribute | Description |
---|---|---|---|
renderer | The canvas renderer. |
void
multiplies uvs only if uploadUvTransform is false
call it after you change uvs manually
make sure that texture is valid
void
Refreshes uvs for generated meshes (rope, plane)
sometimes refreshes vertices too
Name | Type | Attribute | Description |
---|---|---|---|
forceUpdate | if true, matrices will be updated any case |
void
Returns the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.
void
Tests if a point is inside this mesh. Works only for TRIANGLE_MESH
Name | Type | Attribute | Description |
---|---|---|---|
point | the point to test |
The texture that the mesh uses.
void
The tint applied to the mesh. This is a hex value. A value of 0xFFFFFF will remove any tint effect.
void
Overridable method that can be used by Container subclasses whenever the children array is modified
void
Adds one or more children to the container.
Multiple items can be added like so: myContainer.addChild(thingOne, thingTwo, thingThree)
Name | Type | Attribute | Description |
---|---|---|---|
child | The DisplayObject(s) to add to the container |
PIXI.DisplayObject
Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown
Name | Type | Attribute | Description |
---|---|---|---|
child | The child to add |
||
index | The index to place the child in |
PIXI.DisplayObject
Swaps the position of 2 Display Objects within this container.
Name | Type | Attribute | Description |
---|---|---|---|
child | First display object to swap |
||
child2 | Second display object to swap |
void
Returns the index position of a child DisplayObject instance
Name | Type | Attribute | Description |
---|---|---|---|
child | The DisplayObject instance to identify |
Changes the position of an existing child in the display object container
Name | Type | Attribute | Description |
---|---|---|---|
child | The child DisplayObject instance for which you want to change the index number |
||
index | The resulting index number for the child display object |
void
Returns the child at the specified index
Name | Type | Attribute | Description |
---|---|---|---|
index | The index to get the child at |
PIXI.DisplayObject
Removes one or more children from the container.
Name | Type | Attribute | Description |
---|---|---|---|
child | The DisplayObject(s) to remove |
PIXI.DisplayObject
Removes a child from the specified index position.
Name | Type | Attribute | Description |
---|---|---|---|
index | The index to get the child from |
PIXI.DisplayObject
Removes all children from this container that are within the begin and end indexes.
Name | Type | Attribute | Description |
---|---|---|---|
beginIndex | The beginning position. |
||
endIndex | The ending position. Default value is size of the container. |
Updates the transform on all children of this container for rendering
void
Recalculates the bounds of the container.
void
Renders the object using the WebGL renderer
Name | Type | Attribute | Description |
---|---|---|---|
renderer | The renderer |
void
Render the object using the WebGL renderer and advanced features.
Name | Type | Attribute | Description |
---|---|---|---|
renderer | The renderer |
void
Renders the object using the Canvas renderer
Name | Type | Attribute | Description |
---|---|---|---|
renderer | The renderer |
void
Removes all internal references and listeners as well as removes children from the display list.
Do not use a Container after calling destroy
.
Name | Type | Attribute | Description |
---|---|---|---|
options | Options parameter. A boolean will act as if all options |
||
options.children | if set to true, all the children will have their destroy |
||
options.texture | Only used for child Sprites if options.children is set to true |
||
options.baseTexture | Only used for child Sprites if options.children is set to true |
void
The width of the Container, setting this will actually modify the scale to achieve the value set
void
The height of the Container, setting this will actually modify the scale to achieve the value set
void
void
recursively updates transform of all objects from the root to this one
internal function for toLocal()
void
Retrieves the bounds of the displayObject as a rectangle object.
Name | Type | Attribute | Description |
---|---|---|---|
skipUpdate | setting to true will stop the transforms of the scene graph from |
||
rect | Optional rectangle to store the result of the bounds calculation |
PIXI.Rectangle
Retrieves the local bounds of the displayObject as a rectangle object
Name | Type | Attribute | Description |
---|---|---|---|
rect | Optional rectangle to store the result of the bounds calculation |
PIXI.Rectangle
Calculates the global position of the display object
Name | Type | Attribute | Description |
---|---|---|---|
position | The world origin to calculate from |
||
point | A Point object in which to store the value, optional |
||
skipUpdate | Should we skip the update transform. |
PIXI.Point
Calculates the local position of the display object relative to another point
Name | Type | Attribute | Description |
---|---|---|---|
position | The world origin to calculate from |
||
from | The DisplayObject to calculate the global position from |
||
point | A Point object in which to store the value, optional |
||
skipUpdate | Should we skip the update transform |
PIXI.Point
Set the parent Container of this DisplayObject
Name | Type | Attribute | Description |
---|---|---|---|
container | The Container to add this DisplayObject to |
PIXI.Container
Convenience function to set the position, scale, skew and pivot at once.
Name | Type | Attribute | Description |
---|---|---|---|
x | The X position |
||
y | The Y position |
||
scaleX | The X scale value |
||
scaleY | The Y scale value |
||
rotation | The rotation |
||
skewX | The X skew value |
||
skewY | The Y skew value |
||
pivotX | The X pivot value |
||
pivotY | The Y pivot value |
PIXI.DisplayObject
The position of the displayObject on the x axis relative to the local coordinates of the parent.
An alias to position.x
void
The position of the displayObject on the y axis relative to the local coordinates of the parent.
An alias to position.y
void
Current transform of the object based on world (parent) factors
void
Current transform of the object based on local factors: position, scale, other stuff
void
The coordinate of the object relative to the local coordinates of the parent.
Assignment by value since pixi-v4.
void
The scale factor of the object.
Assignment by value since pixi-v4.
void
The pivot point of the displayObject that it rotates around
Assignment by value since pixi-v4.
void
The skew factor for the object in radians.
Assignment by value since pixi-v4.
void
The rotation of the object in radians.
void
Indicates if the object is globally visible.
void
Sets a mask for the displayObject. A mask is an object that limits the visibility of an
object to the shape of the mask applied to it. In PIXI a regular mask must be a
PIXI.Graphics or a PIXI.Sprite object. This allows for much faster masking in canvas as it
utilises shape clipping. To remove a mask, set this property to null.
void
Sets the filters for the displayObject.
void
{ "comment": "/**\n * The Plane allows you to draw a texture across several points and them manipulate these points\n *\n *```js\n * for (let i = 0; i < 20; i++) {\n * points.push(new PIXI.Point(i * 50, 0));\n * };\n * let Plane = new PIXI.Plane(PIXI.Texture.fromImage(\"snake.png\"), points);\n * ```\n *\n * @class\n * @extends PIXI.mesh.Mesh\n * @memberof PIXI.mesh\n *\n */", "meta": { "range": [ 404, 3108 ], "filename": "Plane.js", "lineno": 20, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100068893", "name": "Plane", "type": "ClassDeclaration", "paramnames": [ "texture", "verticesX", "verticesY" ] } }, "classdesc": "The Plane allows you to draw a texture across several points and them manipulate these points
\n", "kind": "class", "augments": [ "PIXI.mesh.Mesh" ], "memberof": "PIXI.mesh", "name": "Plane", "longname": "PIXI.mesh.Plane", "scope": "static", "params": [ { "type": { "names": [ "PIXI.Texture" ] }, "description": "for (let i = 0; i < 20; i++) {\n points.push(new PIXI.Point(i * 50, 0));\n};\nlet Plane = new PIXI.Plane(PIXI.Texture.fromImage("snake.png"), points);
The texture to use on the Plane.
", "name": "texture" }, { "type": { "names": [ "number" ] }, "description": "The number of vertices in the x-axis
", "name": "verticesX" }, { "type": { "names": [ "number" ] }, "description": "The number of vertices in the y-axis
", "name": "verticesY" } ], "___id": "T000002R006406", "___s": true, "$methods": [ { "comment": "/**\n * Refreshes plane coordinates\n *\n */", "meta": { "range": [ 1263, 2787 ], "filename": "Plane.js", "lineno": 51, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100068945", "name": "Plane#_refresh", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Refreshes plane coordinates
", "name": "_refresh", "longname": "PIXI.mesh.Plane#_refresh", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "overrides": "PIXI.mesh.Mesh#_refresh", "___id": "T000002R006413", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_refresh", "filepath": "mesh\\Plane.js" }, { "comment": "/**\n * Clear texture UVs when new texture is set\n *\n * @private\n */", "meta": { "range": [ 2881, 3105 ], "filename": "Plane.js", "lineno": 109, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100069202", "name": "Plane#_onTextureUpdate", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Clear texture UVs when new texture is set
", "access": "private", "name": "_onTextureUpdate", "longname": "PIXI.mesh.Plane#_onTextureUpdate", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "overrides": "PIXI.mesh.Mesh#_onTextureUpdate", "___id": "T000002R006440", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_onTextureUpdate", "filepath": "mesh\\Plane.js" }, { "comment": "/**\n * Refreshes plane coordinates\n *\n */", "meta": { "range": [ 1263, 2787 ], "filename": "Plane.js", "lineno": 51, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100143624", "name": "Plane#_refresh", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Refreshes plane coordinates
", "name": "_refresh", "longname": "PIXI.mesh.Plane#_refresh", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "overrides": "PIXI.mesh.Mesh#_refresh", "___id": "T000002R013347", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_refresh", "filepath": "mesh\\Plane.js" }, { "comment": "/**\n * Clear texture UVs when new texture is set\n *\n * @private\n */", "meta": { "range": [ 2881, 3105 ], "filename": "Plane.js", "lineno": 109, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100143881", "name": "Plane#_onTextureUpdate", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Clear texture UVs when new texture is set
", "access": "private", "name": "_onTextureUpdate", "longname": "PIXI.mesh.Plane#_onTextureUpdate", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "overrides": "PIXI.mesh.Mesh#_onTextureUpdate", "___id": "T000002R013374", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_onTextureUpdate", "filepath": "mesh\\Plane.js" }, { "comment": "/**\n * Renders the object using the WebGL renderer\n *\n * @private\n * @param {PIXI.WebGLRenderer} renderer - a reference to the WebGL renderer\n */", "meta": { "range": [ 4825, 5010 ], "filename": "Mesh.js", "lineno": 161, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067289", "name": "Mesh#_renderWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the WebGL renderer
", "access": "private", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "a reference to the WebGL renderer
", "name": "renderer" } ], "name": "_renderWebGL", "longname": "PIXI.mesh.Plane#_renderWebGL", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.mesh.Mesh#_renderWebGL", "inherited": true, "overrides": "PIXI.mesh.Mesh#_renderWebGL", "___id": "T000002R014529", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_renderWebGL", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Renders the object using the Canvas renderer\n *\n * @private\n * @param {PIXI.CanvasRenderer} renderer - The canvas renderer.\n */", "meta": { "range": [ 5175, 5290 ], "filename": "Mesh.js", "lineno": 174, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067323", "name": "Mesh#_renderCanvas", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the Canvas renderer
", "access": "private", "params": [ { "type": { "names": [ "PIXI.CanvasRenderer" ] }, "description": "The canvas renderer.
", "name": "renderer" } ], "name": "_renderCanvas", "longname": "PIXI.mesh.Plane#_renderCanvas", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.mesh.Mesh#_renderCanvas", "inherited": true, "overrides": "PIXI.mesh.Mesh#_renderCanvas", "___id": "T000002R014530", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_renderCanvas", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * multiplies uvs only if uploadUvTransform is false\n * call it after you change uvs manually\n * make sure that texture is valid\n */", "meta": { "range": [ 5690, 5825 ], "filename": "Mesh.js", "lineno": 196, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067364", "name": "Mesh#multiplyUvs", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "multiplies uvs only if uploadUvTransform is false
", "name": "multiplyUvs", "longname": "PIXI.mesh.Plane#multiplyUvs", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.mesh.Mesh#multiplyUvs", "inherited": true, "overrides": "PIXI.mesh.Mesh#multiplyUvs", "___id": "T000002R014531", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanemultiplyUvs", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Refreshes uvs for generated meshes (rope, plane)\n * sometimes refreshes vertices too\n *\n * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case\n */", "meta": { "range": [ 6037, 6169 ], "filename": "Mesh.js", "lineno": 210, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067384", "name": "Mesh#refresh", "type": "MethodDefinition", "paramnames": [ "forceUpdate" ] }, "vars": { "": null } }, "description": "
call it after you change uvs manually
make sure that texture is validRefreshes uvs for generated meshes (rope, plane)
", "params": [ { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
sometimes refreshes vertices tooif true, matrices will be updated any case
", "name": "forceUpdate" } ], "name": "refresh", "longname": "PIXI.mesh.Plane#refresh", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.mesh.Mesh#refresh", "inherited": true, "overrides": "PIXI.mesh.Mesh#refresh", "___id": "T000002R014532", "___s": true, "skip": true, "slug": "PIXI.mesh.Planerefresh", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Returns the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.\n *\n */", "meta": { "range": [ 6429, 6640 ], "filename": "Mesh.js", "lineno": 231, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067407", "name": "Mesh#_calculateBounds", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Returns the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.
", "name": "_calculateBounds", "longname": "PIXI.mesh.Plane#_calculateBounds", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.mesh.Mesh#_calculateBounds", "inherited": true, "overrides": "PIXI.mesh.Mesh#_calculateBounds", "___id": "T000002R014533", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_calculateBounds", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Tests if a point is inside this mesh. Works only for TRIANGLE_MESH\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */", "meta": { "range": [ 6844, 7876 ], "filename": "Mesh.js", "lineno": 243, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067430", "name": "Mesh#containsPoint", "type": "MethodDefinition", "paramnames": [ "point" ] }, "vars": { "": null } }, "description": "Tests if a point is inside this mesh. Works only for TRIANGLE_MESH
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "the point to test
", "name": "point" } ], "returns": [ { "type": { "names": [ "boolean" ] }, "description": "the result of the test
" } ], "name": "containsPoint", "longname": "PIXI.mesh.Plane#containsPoint", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.mesh.Mesh#containsPoint", "inherited": true, "overrides": "PIXI.mesh.Mesh#containsPoint", "___id": "T000002R014534", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanecontainsPoint", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The texture that the mesh uses.\n *\n * @member {PIXI.Texture}\n */", "meta": { "range": [ 7974, 8029 ], "filename": "Mesh.js", "lineno": 285, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067615", "name": "Mesh#texture", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The texture that the mesh uses.
", "kind": "member", "type": { "names": [ "PIXI.Texture" ] }, "name": "texture", "longname": "PIXI.mesh.Plane#texture", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.mesh.Mesh#texture", "inherited": true, "overrides": "PIXI.mesh.Mesh#texture", "___id": "T000002R014535", "___s": true, "skip": true, "slug": "PIXI.mesh.Planetexture", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The tint applied to the mesh. This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */", "meta": { "range": [ 8706, 8777 ], "filename": "Mesh.js", "lineno": 319, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067668", "name": "Mesh#tint", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The tint applied to the mesh. This is a hex value. A value of 0xFFFFFF will remove any tint effect.
", "kind": "member", "type": { "names": [ "number" ] }, "defaultvalue": "0xFFFFFF", "name": "tint", "longname": "PIXI.mesh.Plane#tint", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.mesh.Mesh#tint", "inherited": true, "overrides": "PIXI.mesh.Mesh#tint", "___id": "T000002R014536", "___s": true, "skip": true, "slug": "PIXI.mesh.Planetint", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Overridable method that can be used by Container subclasses whenever the children array is modified\n *\n * @private\n */", "meta": { "range": [ 886, 936 ], "filename": "Container.js", "lineno": 42, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003526", "name": "Container#onChildrenChange", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Overridable method that can be used by Container subclasses whenever the children array is modified
", "access": "private", "name": "onChildrenChange", "longname": "PIXI.mesh.Plane#onChildrenChange", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.Container#onChildrenChange", "inherited": true, "overrides": "PIXI.mesh.Mesh#onChildrenChange", "___id": "T000002R014538", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneonChildrenChange", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Adds one or more children to the container.\n *\n * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)`\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container\n * @return {PIXI.DisplayObject} The first child that was added.\n */", "meta": { "range": [ 1281, 2509 ], "filename": "Container.js", "lineno": 55, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003530", "name": "Container#addChild", "type": "MethodDefinition", "paramnames": [ "child" ] }, "vars": { "": null } }, "description": "Adds one or more children to the container.
\nMultiple items can be added like so:
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "variable": true, "description": "myContainer.addChild(thingOne, thingTwo, thingThree)
The DisplayObject(s) to add to the container
", "name": "child" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The first child that was added.
" } ], "name": "addChild", "longname": "PIXI.mesh.Plane#addChild", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#addChild", "inherited": true, "overrides": "PIXI.mesh.Mesh#addChild", "___id": "T000002R014539", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneaddChild", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown\n *\n * @param {PIXI.DisplayObject} child - The child to add\n * @param {number} index - The index to place the child in\n * @return {PIXI.DisplayObject} The child that was added.\n */", "meta": { "range": [ 2836, 3576 ], "filename": "Container.js", "lineno": 101, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003628", "name": "Container#addChildAt", "type": "MethodDefinition", "paramnames": [ "child", "index" ] }, "vars": { "": null } }, "description": "Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child to add
", "name": "child" }, { "type": { "names": [ "number" ] }, "description": "The index to place the child in
", "name": "index" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child that was added.
" } ], "name": "addChildAt", "longname": "PIXI.mesh.Plane#addChildAt", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#addChildAt", "inherited": true, "overrides": "PIXI.mesh.Mesh#addChildAt", "___id": "T000002R014540", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneaddChildAt", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Swaps the position of 2 Display Objects within this container.\n *\n * @param {PIXI.DisplayObject} child - First display object to swap\n * @param {PIXI.DisplayObject} child2 - Second display object to swap\n */", "meta": { "range": [ 3821, 4178 ], "filename": "Container.js", "lineno": 135, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003720", "name": "Container#swapChildren", "type": "MethodDefinition", "paramnames": [ "child", "child2" ] }, "vars": { "": null } }, "description": "Swaps the position of 2 Display Objects within this container.
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "First display object to swap
", "name": "child" }, { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "Second display object to swap
", "name": "child2" } ], "name": "swapChildren", "longname": "PIXI.mesh.Plane#swapChildren", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#swapChildren", "inherited": true, "overrides": "PIXI.mesh.Mesh#swapChildren", "___id": "T000002R014541", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneswapChildren", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Returns the index position of a child DisplayObject instance\n *\n * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify\n * @return {number} The index position of the child display object to identify\n */", "meta": { "range": [ 4440, 4683 ], "filename": "Container.js", "lineno": 156, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003775", "name": "Container#getChildIndex", "type": "MethodDefinition", "paramnames": [ "child" ] }, "vars": { "": null } }, "description": "Returns the index position of a child DisplayObject instance
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The DisplayObject instance to identify
", "name": "child" } ], "returns": [ { "type": { "names": [ "number" ] }, "description": "The index position of the child display object to identify
" } ], "name": "getChildIndex", "longname": "PIXI.mesh.Plane#getChildIndex", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#getChildIndex", "inherited": true, "overrides": "PIXI.mesh.Mesh#getChildIndex", "___id": "T000002R014542", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanegetChildIndex", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Changes the position of an existing child in the display object container\n *\n * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number\n * @param {number} index - The resulting index number for the child display object\n */", "meta": { "range": [ 5002, 5433 ], "filename": "Container.js", "lineno": 174, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003802", "name": "Container#setChildIndex", "type": "MethodDefinition", "paramnames": [ "child", "index" ] }, "vars": { "": null } }, "description": "Changes the position of an existing child in the display object container
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child DisplayObject instance for which you want to change the index number
", "name": "child" }, { "type": { "names": [ "number" ] }, "description": "The resulting index number for the child display object
", "name": "index" } ], "name": "setChildIndex", "longname": "PIXI.mesh.Plane#setChildIndex", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#setChildIndex", "inherited": true, "overrides": "PIXI.mesh.Mesh#setChildIndex", "___id": "T000002R014543", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanesetChildIndex", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Returns the child at the specified index\n *\n * @param {number} index - The index to get the child at\n * @return {PIXI.DisplayObject} The child at the given index, if any.\n */", "meta": { "range": [ 5645, 5865 ], "filename": "Container.js", "lineno": 195, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003857", "name": "Container#getChildAt", "type": "MethodDefinition", "paramnames": [ "index" ] }, "vars": { "": null } }, "description": "Returns the child at the specified index
", "params": [ { "type": { "names": [ "number" ] }, "description": "The index to get the child at
", "name": "index" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child at the given index, if any.
" } ], "name": "getChildAt", "longname": "PIXI.mesh.Plane#getChildAt", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#getChildAt", "inherited": true, "overrides": "PIXI.mesh.Mesh#getChildAt", "___id": "T000002R014544", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanegetChildAt", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes one or more children from the container.\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove\n * @return {PIXI.DisplayObject} The first child that was removed.\n */", "meta": { "range": [ 6097, 7212 ], "filename": "Container.js", "lineno": 211, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003888", "name": "Container#removeChild", "type": "MethodDefinition", "paramnames": [ "child" ] }, "vars": { "": null } }, "description": "Removes one or more children from the container.
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "variable": true, "description": "The DisplayObject(s) to remove
", "name": "child" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The first child that was removed.
" } ], "name": "removeChild", "longname": "PIXI.mesh.Plane#removeChild", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#removeChild", "inherited": true, "overrides": "PIXI.mesh.Mesh#removeChild", "___id": "T000002R014545", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneremoveChild", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes a child from the specified index position.\n *\n * @param {number} index - The index to get the child from\n * @return {PIXI.DisplayObject} The child that was removed.\n */", "meta": { "range": [ 7426, 7922 ], "filename": "Container.js", "lineno": 253, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003984", "name": "Container#removeChildAt", "type": "MethodDefinition", "paramnames": [ "index" ] }, "vars": { "": null } }, "description": "Removes a child from the specified index position.
", "params": [ { "type": { "names": [ "number" ] }, "description": "The index to get the child from
", "name": "index" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child that was removed.
" } ], "name": "removeChildAt", "longname": "PIXI.mesh.Plane#removeChildAt", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#removeChildAt", "inherited": true, "overrides": "PIXI.mesh.Mesh#removeChildAt", "___id": "T000002R014546", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneremoveChildAt", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes all children from this container that are within the begin and end indexes.\n *\n * @param {number} [beginIndex=0] - The beginning position.\n * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container.\n * @returns {DisplayObject[]} List of removed children\n */", "meta": { "range": [ 8283, 9328 ], "filename": "Container.js", "lineno": 279, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004040", "name": "Container#removeChildren", "type": "MethodDefinition", "paramnames": [ "beginIndex", "endIndex" ] }, "vars": { "": null } }, "description": "Removes all children from this container that are within the begin and end indexes.
", "params": [ { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The beginning position.
", "name": "beginIndex" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": "this.children.length", "description": "The ending position. Default value is size of the container.
", "name": "endIndex" } ], "returns": [ { "type": { "names": [ "Array." ] }, "description": " List of removed children
" } ], "name": "removeChildren", "longname": "PIXI.mesh.Plane#removeChildren", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#removeChildren", "inherited": true, "overrides": "PIXI.mesh.Mesh#removeChildren", "___id": "T000002R014547", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneremoveChildren", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Updates the transform on all children of this container for rendering\n */", "meta": { "range": [ 9427, 9901 ], "filename": "Container.js", "lineno": 321, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004188", "name": "Container#updateTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Updates the transform on all children of this container for rendering
", "name": "updateTransform", "longname": "PIXI.mesh.Plane#updateTransform", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.Container#updateTransform", "inherited": true, "overrides": "PIXI.mesh.Mesh#updateTransform", "___id": "T000002R014548", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneupdateTransform", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Recalculates the bounds of the container.\n *\n */", "meta": { "range": [ 9979, 10873 ], "filename": "Container.js", "lineno": 345, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004259", "name": "Container#calculateBounds", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Recalculates the bounds of the container.
", "name": "calculateBounds", "longname": "PIXI.mesh.Plane#calculateBounds", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.Container#calculateBounds", "inherited": true, "overrides": "PIXI.mesh.Mesh#calculateBounds", "___id": "T000002R014549", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanecalculateBounds", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.WebGLRenderer} renderer - The renderer\n */", "meta": { "range": [ 11232, 11919 ], "filename": "Container.js", "lineno": 396, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004383", "name": "Container#renderWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the WebGL renderer
", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderWebGL", "longname": "PIXI.mesh.Plane#renderWebGL", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#renderWebGL", "inherited": true, "overrides": "PIXI.mesh.Mesh#renderWebGL", "___id": "T000002R014550", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanerenderWebGL", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Render the object using the WebGL renderer and advanced features.\n *\n * @private\n * @param {PIXI.WebGLRenderer} renderer - The renderer\n */", "meta": { "range": [ 12096, 13593 ], "filename": "Container.js", "lineno": 427, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004456", "name": "Container#renderAdvancedWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Render the object using the WebGL renderer and advanced features.
", "access": "private", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderAdvancedWebGL", "longname": "PIXI.mesh.Plane#renderAdvancedWebGL", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#renderAdvancedWebGL", "inherited": true, "overrides": "PIXI.mesh.Mesh#renderAdvancedWebGL", "___id": "T000002R014551", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanerenderAdvancedWebGL", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Renders the object using the Canvas renderer\n *\n * @param {PIXI.CanvasRenderer} renderer - The renderer\n */", "meta": { "range": [ 14285, 14873 ], "filename": "Container.js", "lineno": 512, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004646", "name": "Container#renderCanvas", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the Canvas renderer
", "params": [ { "type": { "names": [ "PIXI.CanvasRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderCanvas", "longname": "PIXI.mesh.Plane#renderCanvas", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#renderCanvas", "inherited": true, "overrides": "PIXI.mesh.Mesh#renderCanvas", "___id": "T000002R014552", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanerenderCanvas", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes all internal references and listeners as well as removes children from the display list.\n * Do not use a Container after calling `destroy`.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */", "meta": { "range": [ 15730, 16145 ], "filename": "Container.js", "lineno": 550, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004731", "name": "Container#destroy", "type": "MethodDefinition", "paramnames": [ "options" ] }, "vars": { "": null } }, "description": "Removes all internal references and listeners as well as removes children from the display list.
", "params": [ { "type": { "names": [ "object", "boolean" ] }, "optional": true, "description": "
Do not use a Container after callingdestroy
.Options parameter. A boolean will act as if all options
", "name": "options" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
have been set to that valueif set to true, all the children will have their destroy
", "name": "options.children" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
method called as well. 'options' will be passed on to those calls.Only used for child Sprites if options.children is set to true
", "name": "options.texture" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
Should it destroy the texture of the child spriteOnly used for child Sprites if options.children is set to true
", "name": "options.baseTexture" } ], "name": "destroy", "longname": "PIXI.mesh.Plane#destroy", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.Container#destroy", "inherited": true, "overrides": "PIXI.mesh.Mesh#destroy", "___id": "T000002R014553", "___s": true, "skip": true, "slug": "PIXI.mesh.Planedestroy", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * The width of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */", "meta": { "range": [ 16302, 16384 ], "filename": "Container.js", "lineno": 572, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004792", "name": "Container#width", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Should it destroy the base texture of the child spriteThe width of the Container, setting this will actually modify the scale to achieve the value set
", "kind": "member", "type": { "names": [ "number" ] }, "name": "width", "longname": "PIXI.mesh.Plane#width", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.Container#width", "inherited": true, "overrides": "PIXI.mesh.Mesh#width", "___id": "T000002R014554", "___s": true, "skip": true, "slug": "PIXI.mesh.Planewidth", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * The height of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */", "meta": { "range": [ 16845, 16929 ], "filename": "Container.js", "lineno": 598, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004853", "name": "Container#height", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The height of the Container, setting this will actually modify the scale to achieve the value set
", "kind": "member", "type": { "names": [ "number" ] }, "name": "height", "longname": "PIXI.mesh.Plane#height", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.Container#height", "inherited": true, "overrides": "PIXI.mesh.Mesh#height", "___id": "T000002R014555", "___s": true, "skip": true, "slug": "PIXI.mesh.Planeheight", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * @private\n * @member {PIXI.DisplayObject}\n */", "meta": { "range": [ 3985, 4208 ], "filename": "DisplayObject.js", "lineno": 133, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005086", "name": "DisplayObject#_tempDisplayObjectParent", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "access": "private", "kind": "member", "type": { "names": [ "PIXI.DisplayObject" ] }, "name": "_tempDisplayObjectParent", "longname": "PIXI.mesh.Plane#_tempDisplayObjectParent", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#_tempDisplayObjectParent", "inherited": true, "overrides": "PIXI.mesh.Mesh#_tempDisplayObjectParent", "___id": "T000002R014566", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_tempDisplayObjectParent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * recursively updates transform of all objects from the root to this one\n * internal function for toLocal()\n */", "meta": { "range": [ 4681, 5011 ], "filename": "DisplayObject.js", "lineno": 161, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005145", "name": "DisplayObject#_recursivePostUpdateTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "recursively updates transform of all objects from the root to this one
", "name": "_recursivePostUpdateTransform", "longname": "PIXI.mesh.Plane#_recursivePostUpdateTransform", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#_recursivePostUpdateTransform", "inherited": true, "overrides": "PIXI.mesh.Mesh#_recursivePostUpdateTransform", "___id": "T000002R014567", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_recursivePostUpdateTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Retrieves the bounds of the displayObject as a rectangle object.\n *\n * @param {boolean} skipUpdate - setting to true will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost\n * @param {PIXI.Rectangle} rect - Optional rectangle to store the result of the bounds calculation\n * @return {PIXI.Rectangle} the rectangular bounding area\n */", "meta": { "range": [ 5508, 6276 ], "filename": "DisplayObject.js", "lineno": 183, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005186", "name": "DisplayObject#getBounds", "type": "MethodDefinition", "paramnames": [ "skipUpdate", "rect" ] }, "vars": { "": null } }, "description": "
internal function for toLocal()Retrieves the bounds of the displayObject as a rectangle object.
", "params": [ { "type": { "names": [ "boolean" ] }, "description": "setting to true will stop the transforms of the scene graph from
", "name": "skipUpdate" }, { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "
being updated. This means the calculation returned MAY be out of date BUT will give you a
nice performance boostOptional rectangle to store the result of the bounds calculation
", "name": "rect" } ], "returns": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "the rectangular bounding area
" } ], "name": "getBounds", "longname": "PIXI.mesh.Plane#getBounds", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.DisplayObject#getBounds", "inherited": true, "overrides": "PIXI.mesh.Mesh#getBounds", "___id": "T000002R014568", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanegetBounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Retrieves the local bounds of the displayObject as a rectangle object\n *\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation\n * @return {PIXI.Rectangle} the rectangular bounding area\n */", "meta": { "range": [ 6549, 7118 ], "filename": "DisplayObject.js", "lineno": 224, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005277", "name": "DisplayObject#getLocalBounds", "type": "MethodDefinition", "paramnames": [ "rect" ] }, "vars": { "": null } }, "description": "Retrieves the local bounds of the displayObject as a rectangle object
", "params": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "optional": true, "description": "Optional rectangle to store the result of the bounds calculation
", "name": "rect" } ], "returns": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "the rectangular bounding area
" } ], "name": "getLocalBounds", "longname": "PIXI.mesh.Plane#getLocalBounds", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.DisplayObject#getLocalBounds", "inherited": true, "overrides": "PIXI.mesh.Mesh#getLocalBounds", "___id": "T000002R014569", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanegetLocalBounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Calculates the global position of the display object\n *\n * @param {PIXI.Point} position - The world origin to calculate from\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point)\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform.\n * @return {PIXI.Point} A point object representing the position of this object\n */", "meta": { "range": [ 7580, 8444 ], "filename": "DisplayObject.js", "lineno": 259, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005356", "name": "DisplayObject#toGlobal", "type": "MethodDefinition", "paramnames": [ "position", "point", "skipUpdate" ] }, "vars": { "": null } }, "description": "Calculates the global position of the display object
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "The world origin to calculate from
", "name": "position" }, { "type": { "names": [ "PIXI.Point" ] }, "optional": true, "description": "A Point object in which to store the value, optional
", "name": "point" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
(otherwise will create a new Point)Should we skip the update transform.
", "name": "skipUpdate" } ], "returns": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "A point object representing the position of this object
" } ], "name": "toGlobal", "longname": "PIXI.mesh.Plane#toGlobal", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.DisplayObject#toGlobal", "inherited": true, "overrides": "PIXI.mesh.Mesh#toGlobal", "___id": "T000002R014570", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanetoGlobal", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Calculates the local position of the display object relative to another point\n *\n * @param {PIXI.Point} position - The world origin to calculate from\n * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point)\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform\n * @return {PIXI.Point} A point object representing the position of this object\n */", "meta": { "range": [ 9030, 10001 ], "filename": "DisplayObject.js", "lineno": 294, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005414", "name": "DisplayObject#toLocal", "type": "MethodDefinition", "paramnames": [ "position", "from", "point", "skipUpdate" ] }, "vars": { "": null } }, "description": "Calculates the local position of the display object relative to another point
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "The world origin to calculate from
", "name": "position" }, { "type": { "names": [ "PIXI.DisplayObject" ] }, "optional": true, "description": "The DisplayObject to calculate the global position from
", "name": "from" }, { "type": { "names": [ "PIXI.Point" ] }, "optional": true, "description": "A Point object in which to store the value, optional
", "name": "point" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
(otherwise will create a new Point)Should we skip the update transform
", "name": "skipUpdate" } ], "returns": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "A point object representing the position of this object
" } ], "name": "toLocal", "longname": "PIXI.mesh.Plane#toLocal", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.DisplayObject#toLocal", "inherited": true, "overrides": "PIXI.mesh.Mesh#toLocal", "___id": "T000002R014571", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanetoLocal", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Set the parent Container of this DisplayObject\n *\n * @param {PIXI.Container} container - The Container to add this DisplayObject to\n * @return {PIXI.Container} The Container that this DisplayObject was added to\n */", "meta": { "range": [ 10720, 10953 ], "filename": "DisplayObject.js", "lineno": 350, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005494", "name": "DisplayObject#setParent", "type": "MethodDefinition", "paramnames": [ "container" ] }, "vars": { "": null } }, "description": "Set the parent Container of this DisplayObject
", "params": [ { "type": { "names": [ "PIXI.Container" ] }, "description": "The Container to add this DisplayObject to
", "name": "container" } ], "returns": [ { "type": { "names": [ "PIXI.Container" ] }, "description": "The Container that this DisplayObject was added to
" } ], "name": "setParent", "longname": "PIXI.mesh.Plane#setParent", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.DisplayObject#setParent", "inherited": true, "overrides": "PIXI.mesh.Mesh#setParent", "___id": "T000002R014572", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanesetParent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Convenience function to set the position, scale, skew and pivot at once.\n *\n * @param {number} [x=0] - The X position\n * @param {number} [y=0] - The Y position\n * @param {number} [scaleX=1] - The X scale value\n * @param {number} [scaleY=1] - The Y scale value\n * @param {number} [rotation=0] - The rotation\n * @param {number} [skewX=0] - The X skew value\n * @param {number} [skewY=0] - The Y skew value\n * @param {number} [pivotX=0] - The X pivot value\n * @param {number} [pivotY=0] - The Y pivot value\n * @return {PIXI.DisplayObject} The DisplayObject instance\n */", "meta": { "range": [ 11588, 12034 ], "filename": "DisplayObject.js", "lineno": 376, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005520", "name": "DisplayObject#setTransform", "type": "MethodDefinition", "paramnames": [ "x", "y", "scaleX", "scaleY", "rotation", "skewX", "skewY", "pivotX", "pivotY" ] }, "vars": { "": null } }, "description": "Convenience function to set the position, scale, skew and pivot at once.
", "params": [ { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X position
", "name": "x" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y position
", "name": "y" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 1, "description": "The X scale value
", "name": "scaleX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 1, "description": "The Y scale value
", "name": "scaleY" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The rotation
", "name": "rotation" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X skew value
", "name": "skewX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y skew value
", "name": "skewY" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X pivot value
", "name": "pivotX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y pivot value
", "name": "pivotY" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The DisplayObject instance
" } ], "name": "setTransform", "longname": "PIXI.mesh.Plane#setTransform", "kind": "function", "memberof": "PIXI.mesh.Plane", "scope": "instance", "inherits": "PIXI.DisplayObject#setTransform", "inherited": true, "overrides": "PIXI.mesh.Mesh#setTransform", "___id": "T000002R014573", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanesetTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n * An alias to position.x\n *\n * @member {number}\n */", "meta": { "range": [ 12966, 13017 ], "filename": "DisplayObject.js", "lineno": 427, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005707", "name": "DisplayObject#x", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The position of the displayObject on the x axis relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "x", "longname": "PIXI.mesh.Plane#x", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#x", "inherited": true, "overrides": "PIXI.mesh.Mesh#x", "___id": "T000002R014574", "___s": true, "skip": true, "slug": "PIXI.mesh.Planex", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The position of the displayObject on the y axis relative to the local coordinates of the parent.\n * An alias to position.y\n *\n * @member {number}\n */", "meta": { "range": [ 13314, 13365 ], "filename": "DisplayObject.js", "lineno": 443, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005732", "name": "DisplayObject#y", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
An alias to position.xThe position of the displayObject on the y axis relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "y", "longname": "PIXI.mesh.Plane#y", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#y", "inherited": true, "overrides": "PIXI.mesh.Mesh#y", "___id": "T000002R014575", "___s": true, "skip": true, "slug": "PIXI.mesh.Planey", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Current transform of the object based on world (parent) factors\n *\n * @member {PIXI.Matrix}\n * @readonly\n */", "meta": { "range": [ 13621, 13699 ], "filename": "DisplayObject.js", "lineno": 459, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005757", "name": "DisplayObject#worldTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
An alias to position.yCurrent transform of the object based on world (parent) factors
", "kind": "member", "type": { "names": [ "PIXI.Matrix" ] }, "readonly": true, "name": "worldTransform", "longname": "PIXI.mesh.Plane#worldTransform", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#worldTransform", "inherited": true, "overrides": "PIXI.mesh.Mesh#worldTransform", "___id": "T000002R014576", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneworldTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Current transform of the object based on local factors: position, scale, other stuff\n *\n * @member {PIXI.Matrix}\n * @readonly\n */", "meta": { "range": [ 13866, 13944 ], "filename": "DisplayObject.js", "lineno": 470, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005767", "name": "DisplayObject#localTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Current transform of the object based on local factors: position, scale, other stuff
", "kind": "member", "type": { "names": [ "PIXI.Matrix" ] }, "readonly": true, "name": "localTransform", "longname": "PIXI.mesh.Plane#localTransform", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#localTransform", "inherited": true, "overrides": "PIXI.mesh.Mesh#localTransform", "___id": "T000002R014577", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanelocalTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The coordinate of the object relative to the local coordinates of the parent.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14149, 14215 ], "filename": "DisplayObject.js", "lineno": 481, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005777", "name": "DisplayObject#position", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The coordinate of the object relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "position", "longname": "PIXI.mesh.Plane#position", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#position", "inherited": true, "overrides": "PIXI.mesh.Mesh#position", "___id": "T000002R014578", "___s": true, "skip": true, "slug": "PIXI.mesh.Planeposition", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The scale factor of the object.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14493, 14553 ], "filename": "DisplayObject.js", "lineno": 497, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005802", "name": "DisplayObject#scale", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The scale factor of the object.
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "scale", "longname": "PIXI.mesh.Plane#scale", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#scale", "inherited": true, "overrides": "PIXI.mesh.Mesh#scale", "___id": "T000002R014579", "___s": true, "skip": true, "slug": "PIXI.mesh.Planescale", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The pivot point of the displayObject that it rotates around\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14853, 14913 ], "filename": "DisplayObject.js", "lineno": 513, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005827", "name": "DisplayObject#pivot", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The pivot point of the displayObject that it rotates around
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "pivot", "longname": "PIXI.mesh.Plane#pivot", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#pivot", "inherited": true, "overrides": "PIXI.mesh.Mesh#pivot", "___id": "T000002R014580", "___s": true, "skip": true, "slug": "PIXI.mesh.Planepivot", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The skew factor for the object in radians.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.ObservablePoint}\n */", "meta": { "range": [ 15185, 15243 ], "filename": "DisplayObject.js", "lineno": 529, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005852", "name": "DisplayObject#skew", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The skew factor for the object in radians.
", "kind": "member", "type": { "names": [ "PIXI.ObservablePoint" ] }, "name": "skew", "longname": "PIXI.mesh.Plane#skew", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#skew", "inherited": true, "overrides": "PIXI.mesh.Mesh#skew", "___id": "T000002R014581", "___s": true, "skip": true, "slug": "PIXI.mesh.Planeskew", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The rotation of the object in radians.\n *\n * @member {number}\n */", "meta": { "range": [ 15453, 15519 ], "filename": "DisplayObject.js", "lineno": 544, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005877", "name": "DisplayObject#rotation", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The rotation of the object in radians.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "rotation", "longname": "PIXI.mesh.Plane#rotation", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#rotation", "inherited": true, "overrides": "PIXI.mesh.Mesh#rotation", "___id": "T000002R014582", "___s": true, "skip": true, "slug": "PIXI.mesh.Planerotation", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Indicates if the object is globally visible.\n *\n * @member {boolean}\n * @readonly\n */", "meta": { "range": [ 15757, 16002 ], "filename": "DisplayObject.js", "lineno": 560, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005900", "name": "DisplayObject#worldVisible", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Indicates if the object is globally visible.
", "kind": "member", "type": { "names": [ "boolean" ] }, "readonly": true, "name": "worldVisible", "longname": "PIXI.mesh.Plane#worldVisible", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#worldVisible", "inherited": true, "overrides": "PIXI.mesh.Mesh#worldVisible", "___id": "T000002R014583", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneworldVisible", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Sets a mask for the displayObject. A mask is an object that limits the visibility of an\n * object to the shape of the mask applied to it. In PIXI a regular mask must be a\n * PIXI.Graphics or a PIXI.Sprite object. This allows for much faster masking in canvas as it\n * utilises shape clipping. To remove a mask, set this property to null.\n *\n * @todo For the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask.\n *\n * @member {PIXI.Graphics|PIXI.Sprite}\n */", "meta": { "range": [ 16524, 16573 ], "filename": "DisplayObject.js", "lineno": 587, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005927", "name": "DisplayObject#mask", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Sets a mask for the displayObject. A mask is an object that limits the visibility of an
", "todo": [ "For the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask." ], "kind": "member", "type": { "names": [ "PIXI.Graphics", "PIXI.Sprite" ] }, "name": "mask", "longname": "PIXI.mesh.Plane#mask", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#mask", "inherited": true, "overrides": "PIXI.mesh.Mesh#mask", "___id": "T000002R014584", "___s": true, "skip": true, "slug": "PIXI.mesh.Planemask", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Sets the filters for the displayObject.\n * * IMPORTANT: This is a webGL only feature and will be ignored by the canvas renderer.\n * To remove filters simply set this property to 'null'\n *\n * @member {PIXI.Filter[]}\n */", "meta": { "range": [ 17106, 17186 ], "filename": "DisplayObject.js", "lineno": 614, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005972", "name": "DisplayObject#filters", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
object to the shape of the mask applied to it. In PIXI a regular mask must be a
PIXI.Graphics or a PIXI.Sprite object. This allows for much faster masking in canvas as it
utilises shape clipping. To remove a mask, set this property to null.Sets the filters for the displayObject.
\n\n
", "kind": "member", "type": { "names": [ "Array.- IMPORTANT: This is a webGL only feature and will be ignored by the canvas renderer.
\n
To remove filters simply set this property to 'null'" ] }, "name": "filters", "longname": "PIXI.mesh.Plane#filters", "memberof": "PIXI.mesh.Plane", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#filters", "inherited": true, "overrides": "PIXI.mesh.Mesh#filters", "___id": "T000002R014585", "___s": true, "skip": true, "slug": "PIXI.mesh.Planefilters", "filepath": "core\\display\\DisplayObject.js" } ], "$attributes": [ { "comment": "/**\n * Tracker for if the Plane is ready to be drawn. Needed because Mesh ctor can\n * call _onTextureUpdated which could call refresh too early.\n *\n * @member {boolean} PIXI.mesh.Plane#_ready\n * @private\n */", "meta": { "range": [ 749, 1004 ], "filename": "Plane.js", "lineno": 31, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": " Tracker for if the Plane is ready to be drawn. Needed because Mesh ctor can
", "kind": "member", "name": "_ready", "type": { "names": [ "boolean" ] }, "access": "private", "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#_ready", "scope": "instance", "___id": "T000002R006408", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_ready", "filepath": "mesh\\Plane.js" }, { "comment": "/**\n * Tracker for if the Plane is ready to be drawn. Needed because Mesh ctor can\n * call _onTextureUpdated which could call refresh too early.\n *\n * @member {boolean} PIXI.mesh.Plane#_ready\n * @private\n */", "meta": { "range": [ 749, 1004 ], "filename": "Plane.js", "lineno": 31, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "
call _onTextureUpdated which could call refresh too early.Tracker for if the Plane is ready to be drawn. Needed because Mesh ctor can
", "kind": "member", "name": "_ready", "type": { "names": [ "boolean" ] }, "access": "private", "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#_ready", "scope": "instance", "___id": "T000002R013342", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_ready", "filepath": "mesh\\Plane.js" }, { "comment": "/**\n * The texture of the Mesh\n *\n * @member {PIXI.Texture} PIXI.mesh.Mesh#_texture\n * @private\n */", "meta": { "range": [ 807, 946 ], "filename": "Mesh.js", "lineno": 28, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "
call _onTextureUpdated which could call refresh too early.The texture of the Mesh
", "kind": "member", "name": "_texture", "type": { "names": [ "PIXI.Texture" ] }, "access": "private", "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#_texture", "scope": "instance", "inherits": "PIXI.mesh.Mesh#_texture", "inherited": true, "overrides": "PIXI.mesh.Mesh#_texture", "___id": "T000002R014515", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_texture", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The Uvs of the Mesh\n *\n * @member {Float32Array} PIXI.mesh.Mesh#uvs\n */", "meta": { "range": [ 989, 1099 ], "filename": "Mesh.js", "lineno": 36, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The Uvs of the Mesh
", "kind": "member", "name": "uvs", "type": { "names": [ "Float32Array" ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#uvs", "scope": "instance", "inherits": "PIXI.mesh.Mesh#uvs", "inherited": true, "overrides": "PIXI.mesh.Mesh#uvs", "___id": "T000002R014516", "___s": true, "skip": true, "slug": "PIXI.mesh.Planeuvs", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * An array of vertices\n *\n * @member {Float32Array} PIXI.mesh.Mesh#vertices\n */", "meta": { "range": [ 1228, 1344 ], "filename": "Mesh.js", "lineno": 47, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "An array of vertices
", "kind": "member", "name": "vertices", "type": { "names": [ "Float32Array" ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#vertices", "scope": "instance", "inherits": "PIXI.mesh.Mesh#vertices", "inherited": true, "overrides": "PIXI.mesh.Mesh#vertices", "___id": "T000002R014517", "___s": true, "skip": true, "slug": "PIXI.mesh.Planevertices", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Version of mesh uvs are dirty or not\n *\n * @member {number} PIXI.mesh.Mesh#dirty\n */", "meta": { "range": [ 1717, 1840 ], "filename": "Mesh.js", "lineno": 64, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "Version of mesh uvs are dirty or not
", "kind": "member", "name": "dirty", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#dirty", "scope": "instance", "inherits": "PIXI.mesh.Mesh#dirty", "inherited": true, "overrides": "PIXI.mesh.Mesh#dirty", "___id": "T000002R014518", "___s": true, "skip": true, "slug": "PIXI.mesh.Planedirty", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Version of mesh indices\n *\n * @member {number} PIXI.mesh.Mesh#indexDirty\n */", "meta": { "range": [ 1874, 1989 ], "filename": "Mesh.js", "lineno": 71, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "Version of mesh indices
", "kind": "member", "name": "indexDirty", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#indexDirty", "scope": "instance", "inherits": "PIXI.mesh.Mesh#indexDirty", "inherited": true, "overrides": "PIXI.mesh.Mesh#indexDirty", "___id": "T000002R014519", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneindexDirty", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The blend mode to be applied to the sprite. Set to `PIXI.BLEND_MODES.NORMAL` to remove\n * any blend mode.\n *\n * @member {number} PIXI.mesh.Mesh#blendMode\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */", "meta": { "range": [ 2028, 2309 ], "filename": "Mesh.js", "lineno": 78, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The blend mode to be applied to the sprite. Set to
", "kind": "member", "name": "blendMode", "type": { "names": [ "number" ] }, "defaultvalue": "PIXI.BLEND_MODES.NORMAL", "see": [ "PIXI.BLEND_MODES" ], "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#blendMode", "scope": "instance", "inherits": "PIXI.mesh.Mesh#blendMode", "inherited": true, "overrides": "PIXI.mesh.Mesh#blendMode", "___id": "T000002R014520", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneblendMode", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Triangles in canvas mode are automatically antialiased, use this value to force triangles\n * to overlap a bit with each other.\n *\n * @member {number} PIXI.mesh.Mesh#canvasPadding\n */", "meta": { "range": [ 2369, 2598 ], "filename": "Mesh.js", "lineno": 88, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "PIXI.BLEND_MODES.NORMAL
to remove
any blend mode.Triangles in canvas mode are automatically antialiased, use this value to force triangles
", "kind": "member", "name": "canvasPadding", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#canvasPadding", "scope": "instance", "inherits": "PIXI.mesh.Mesh#canvasPadding", "inherited": true, "overrides": "PIXI.mesh.Mesh#canvasPadding", "___id": "T000002R014521", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanecanvasPadding", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The way the Mesh should be drawn, can be any of the {@link PIXI.mesh.Mesh.DRAW_MODES} consts\n *\n * @member {number} PIXI.mesh.Mesh#drawMode\n * @see PIXI.mesh.Mesh.DRAW_MODES\n */", "meta": { "range": [ 2640, 2864 ], "filename": "Mesh.js", "lineno": 96, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "
to overlap a bit with each other.The way the Mesh should be drawn, can be any of the {@link PIXI.mesh.Mesh.DRAW_MODES} consts
", "kind": "member", "name": "drawMode", "type": { "names": [ "number" ] }, "see": [ "PIXI.mesh.Mesh.DRAW_MODES" ], "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#drawMode", "scope": "instance", "inherits": "PIXI.mesh.Mesh#drawMode", "inherited": true, "overrides": "PIXI.mesh.Mesh#drawMode", "___id": "T000002R014522", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanedrawMode", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The default shader that is used if a mesh doesn't have a more specific one.\n *\n * @member {PIXI.Shader} PIXI.mesh.Mesh#shader\n */", "meta": { "range": [ 2941, 3109 ], "filename": "Mesh.js", "lineno": 104, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The default shader that is used if a mesh doesn't have a more specific one.
", "kind": "member", "name": "shader", "type": { "names": [ "PIXI.Shader" ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#shader", "scope": "instance", "inherits": "PIXI.mesh.Mesh#shader", "inherited": true, "overrides": "PIXI.mesh.Mesh#shader", "___id": "T000002R014523", "___s": true, "skip": true, "slug": "PIXI.mesh.Planeshader", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The tint applied to the mesh. This is a [r,g,b] value. A value of [1,1,1] will remove any\n * tint effect.\n *\n * @member {number} PIXI.mesh.Mesh#tintRgb\n */", "meta": { "range": [ 3147, 3349 ], "filename": "Mesh.js", "lineno": 111, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The tint applied to the mesh. This is a [r,g,b] value. A value of [1,1,1] will remove any
", "kind": "member", "name": "tintRgb", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#tintRgb", "scope": "instance", "inherits": "PIXI.mesh.Mesh#tintRgb", "inherited": true, "overrides": "PIXI.mesh.Mesh#tintRgb", "___id": "T000002R014524", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanetintRgb", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * A map of renderer IDs to webgl render data\n *\n * @private\n * @member {object
tint effect.} PIXI.mesh.Mesh#_glDatas\n */", "meta": { "range": [ 3411, 3579 ], "filename": "Mesh.js", "lineno": 119, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": " A map of renderer IDs to webgl render data
", "access": "private", "kind": "member", "name": "_glDatas", "type": { "names": [ "object." ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#_glDatas", "scope": "instance", "inherits": "PIXI.mesh.Mesh#_glDatas", "inherited": true, "overrides": "PIXI.mesh.Mesh#_glDatas", "___id": "T000002R014525", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_glDatas", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * transform that is applied to UV to get the texture coords\n * its updated independently from texture uvTransform\n * updates of uvs are tied to that thing\n *\n * @member {PIXI.extras.TextureTransform} PIXI.mesh.Mesh#_uvTransform\n * @private\n */", "meta": { "range": [ 3617, 3921 ], "filename": "Mesh.js", "lineno": 127, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": " transform that is applied to UV to get the texture coords
", "kind": "member", "name": "_uvTransform", "type": { "names": [ "PIXI.extras.TextureTransform" ] }, "access": "private", "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#_uvTransform", "scope": "instance", "inherits": "PIXI.mesh.Mesh#_uvTransform", "inherited": true, "overrides": "PIXI.mesh.Mesh#_uvTransform", "___id": "T000002R014526", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_uvTransform", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * whether or not upload uvTransform to shader\n * if its false, then uvs should be pre-multiplied\n * if you change it for generated mesh, please call 'refresh(true)'\n * @member {boolean} PIXI.mesh.Mesh#uploadUvTransform\n * @default false\n */", "meta": { "range": [ 3990, 4283 ], "filename": "Mesh.js", "lineno": 137, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "
its updated independently from texture uvTransform
updates of uvs are tied to that thingwhether or not upload uvTransform to shader
", "kind": "member", "name": "uploadUvTransform", "type": { "names": [ "boolean" ] }, "defaultvalue": "false", "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#uploadUvTransform", "scope": "instance", "inherits": "PIXI.mesh.Mesh#uploadUvTransform", "inherited": true, "overrides": "PIXI.mesh.Mesh#uploadUvTransform", "___id": "T000002R014527", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneuploadUvTransform", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_renderWebGL' & '_renderCanvas' methods.\n * @member {string} PIXI.mesh.Mesh#pluginName\n * @default 'mesh'\n */", "meta": { "range": [ 4333, 4609 ], "filename": "Mesh.js", "lineno": 146, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "
if its false, then uvs should be pre-multiplied
if you change it for generated mesh, please call 'refresh(true)'Plugin that is responsible for rendering this element.
", "kind": "member", "name": "pluginName", "type": { "names": [ "string" ] }, "defaultvalue": "'mesh'", "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#pluginName", "scope": "instance", "inherits": "PIXI.mesh.Mesh#pluginName", "inherited": true, "overrides": "PIXI.mesh.Mesh#pluginName", "___id": "T000002R014528", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanepluginName", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The array of children of this container.\n *\n * @member {PIXI.DisplayObject[]} PIXI.Container#children\n * @readonly\n */", "meta": { "range": [ 535, 700 ], "filename": "Container.js", "lineno": 28, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "
Allows to customize the rendering process without overriding '_renderWebGL' & '_renderCanvas' methods.The array of children of this container.
", "kind": "member", "name": "children", "type": { "names": [ "Array." ] }, "readonly": true, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#children", "scope": "instance", "inherits": "PIXI.Container#children", "inherited": true, "overrides": "PIXI.mesh.Mesh#children", "___id": "T000002R014537", "___s": true, "skip": true, "slug": "PIXI.mesh.Planechildren", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * World transform and local transform of this object.\n * This will become read-only later, please do not assign anything there unless you know what are you doing\n *\n * @member {PIXI.TransformBase} PIXI.DisplayObject#transform\n */", "meta": { "range": [ 957, 1231 ], "filename": "DisplayObject.js", "lineno": 35, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": " World transform and local transform of this object.
", "kind": "member", "name": "transform", "type": { "names": [ "PIXI.TransformBase" ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#transform", "scope": "instance", "inherits": "PIXI.DisplayObject#transform", "inherited": true, "overrides": "PIXI.mesh.Mesh#transform", "___id": "T000002R014556", "___s": true, "skip": true, "slug": "PIXI.mesh.Planetransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The opacity of the object.\n *\n * @member {number} PIXI.DisplayObject#alpha\n */", "meta": { "range": [ 1288, 1405 ], "filename": "DisplayObject.js", "lineno": 43, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "
This will become read-only later, please do not assign anything there unless you know what are you doingThe opacity of the object.
", "kind": "member", "name": "alpha", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#alpha", "scope": "instance", "inherits": "PIXI.DisplayObject#alpha", "inherited": true, "overrides": "PIXI.mesh.Mesh#alpha", "___id": "T000002R014557", "___s": true, "skip": true, "slug": "PIXI.mesh.Planealpha", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The visibility of the object. If false the object will not be drawn, and\n * the updateTransform function will not be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually\n *\n * @member {boolean} PIXI.DisplayObject#visible\n */", "meta": { "range": [ 1439, 1785 ], "filename": "DisplayObject.js", "lineno": 50, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The visibility of the object. If false the object will not be drawn, and
\n
the updateTransform function will not be called.Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually
", "kind": "member", "name": "visible", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#visible", "scope": "instance", "inherits": "PIXI.DisplayObject#visible", "inherited": true, "overrides": "PIXI.mesh.Mesh#visible", "___id": "T000002R014558", "___s": true, "skip": true, "slug": "PIXI.mesh.Planevisible", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Can this object be rendered, if false the object will not be drawn but the updateTransform\n * methods will still be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds manually\n *\n * @member {boolean} PIXI.DisplayObject#renderable\n */", "meta": { "range": [ 1824, 2148 ], "filename": "DisplayObject.js", "lineno": 60, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "Can this object be rendered, if false the object will not be drawn but the updateTransform
\n
methods will still be called.Only affects recursive calls from parent. You can ask for bounds manually
", "kind": "member", "name": "renderable", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#renderable", "scope": "instance", "inherits": "PIXI.DisplayObject#renderable", "inherited": true, "overrides": "PIXI.mesh.Mesh#renderable", "___id": "T000002R014559", "___s": true, "skip": true, "slug": "PIXI.mesh.Planerenderable", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The display object container that contains this display object.\n *\n * @member {PIXI.Container} PIXI.DisplayObject#parent\n * @readonly\n */", "meta": { "range": [ 2190, 2374 ], "filename": "DisplayObject.js", "lineno": 70, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The display object container that contains this display object.
", "kind": "member", "name": "parent", "type": { "names": [ "PIXI.Container" ] }, "readonly": true, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#parent", "scope": "instance", "inherits": "PIXI.DisplayObject#parent", "inherited": true, "overrides": "PIXI.mesh.Mesh#parent", "___id": "T000002R014560", "___s": true, "skip": true, "slug": "PIXI.mesh.Planeparent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The multiplied alpha of the displayObject\n *\n * @member {number} PIXI.DisplayObject#worldAlpha\n * @readonly\n */", "meta": { "range": [ 2412, 2570 ], "filename": "DisplayObject.js", "lineno": 78, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The multiplied alpha of the displayObject
", "kind": "member", "name": "worldAlpha", "type": { "names": [ "number" ] }, "readonly": true, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#worldAlpha", "scope": "instance", "inherits": "PIXI.DisplayObject#worldAlpha", "inherited": true, "overrides": "PIXI.mesh.Mesh#worldAlpha", "___id": "T000002R014561", "___s": true, "skip": true, "slug": "PIXI.mesh.PlaneworldAlpha", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The area the filter is applied to. This is used as more of an optimisation\n * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle\n *\n * Also works as an interaction mask\n *\n * @member {PIXI.Rectangle} PIXI.DisplayObject#filterArea\n */", "meta": { "range": [ 2609, 2953 ], "filename": "DisplayObject.js", "lineno": 86, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The area the filter is applied to. This is used as more of an optimisation
\n
rather than figuring out the dimensions of the displayObject each frame you can set this rectangleAlso works as an interaction mask
", "kind": "member", "name": "filterArea", "type": { "names": [ "PIXI.Rectangle" ] }, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#filterArea", "scope": "instance", "inherits": "PIXI.DisplayObject#filterArea", "inherited": true, "overrides": "PIXI.mesh.Mesh#filterArea", "___id": "T000002R014562", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanefilterArea", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The bounds object, this is used to calculate and store the bounds of the displayObject\n *\n * @member {PIXI.Rectangle} PIXI.DisplayObject#_bounds\n * @private\n */", "meta": { "range": [ 3063, 3270 ], "filename": "DisplayObject.js", "lineno": 99, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The bounds object, this is used to calculate and store the bounds of the displayObject
", "kind": "member", "name": "_bounds", "type": { "names": [ "PIXI.Rectangle" ] }, "access": "private", "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#_bounds", "scope": "instance", "inherits": "PIXI.DisplayObject#_bounds", "inherited": true, "overrides": "PIXI.mesh.Mesh#_bounds", "___id": "T000002R014563", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_bounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The original, cached mask of the object\n *\n * @member {PIXI.Graphics|PIXI.Sprite} PIXI.DisplayObject#_mask\n * @private\n */", "meta": { "range": [ 3449, 3618 ], "filename": "DisplayObject.js", "lineno": 111, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The original, cached mask of the object
", "kind": "member", "name": "_mask", "type": { "names": [ "PIXI.Graphics", "PIXI.Sprite" ] }, "access": "private", "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#_mask", "scope": "instance", "inherits": "PIXI.DisplayObject#_mask", "inherited": true, "overrides": "PIXI.mesh.Mesh#_mask", "___id": "T000002R014564", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_mask", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * If the object has been destroyed via destroy(). If true, it should not be used.\n *\n * @member {boolean} PIXI.DisplayObject#_destroyed\n * @private\n * @readonly\n */", "meta": { "range": [ 3655, 3872 ], "filename": "DisplayObject.js", "lineno": 119, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "If the object has been destroyed via destroy(). If true, it should not be used.
", "kind": "member", "name": "_destroyed", "type": { "names": [ "boolean" ] }, "access": "private", "readonly": true, "memberof": "PIXI.mesh.Plane", "longname": "PIXI.mesh.Plane#_destroyed", "scope": "instance", "inherits": "PIXI.DisplayObject#_destroyed", "inherited": true, "overrides": "PIXI.mesh.Mesh#_destroyed", "___id": "T000002R014565", "___s": true, "skip": true, "slug": "PIXI.mesh.Plane_destroyed", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Set this to true if you want this display object to be cached as a bitmap.\n * This basically takes a snap shot of the display object as it is at that moment. It can\n * provide a performance benefit for complex static displayObjects.\n * To remove simply set this property to 'false'\n *\n * IMPORTANT GOTCHA - make sure that all your textures are preloaded BEFORE setting this property to true\n * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */", "meta": { "range": [ 1587, 3623 ], "filename": "cacheAsBitmap.js", "lineno": 50, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\extras", "code": { "id": "astnode100053521", "name": "cacheAsBitmap", "type": "ObjectExpression", "value": "{\"get\":\"\",\"set\":\"\"}" } }, "description": "Set this to true if you want this display object to be cached as a bitmap.
\n
This basically takes a snap shot of the display object as it is at that moment. It can
provide a performance benefit for complex static displayObjects.
To remove simply set this property to 'false'IMPORTANT GOTCHA - make sure that all your textures are preloaded BEFORE setting this property to true
", "kind": "member", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.mesh.Plane", "name": "cacheAsBitmap", "longname": "PIXI.mesh.Plane#cacheAsBitmap", "scope": "instance", "inherits": "PIXI.DisplayObject#cacheAsBitmap", "inherited": true, "overrides": "PIXI.mesh.Mesh#cacheAsBitmap", "___id": "T000002R014586", "___s": true, "skip": true, "slug": "PIXI.mesh.PlanecacheAsBitmap", "filepath": "extras\\cacheAsBitmap.js" } ], "$staticmethods": [], "$staticproperties": [], "$augments": [ { "comment": "/**\n * Base mesh class\n * @class\n * @extends PIXI.Container\n * @memberof PIXI.mesh\n */", "meta": { "range": [ 294, 8913 ], "filename": "Mesh.js", "lineno": 15, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067132", "name": "Mesh", "type": "ClassDeclaration", "paramnames": [ "texture", "vertices", "uvs", "indices", "drawMode" ] } }, "classdesc": "
as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.Base mesh class
", "kind": "class", "augments": [ "PIXI.Container" ], "memberof": "PIXI.mesh", "name": "Mesh", "longname": "PIXI.mesh.Mesh", "scope": "static", "params": [ { "type": { "names": [ "PIXI.Texture" ] }, "description": "The texture to use
", "name": "texture" }, { "type": { "names": [ "Float32Array" ] }, "optional": true, "description": "if you want to specify the vertices
", "name": "vertices" }, { "type": { "names": [ "Float32Array" ] }, "optional": true, "description": "if you want to specify the uvs
", "name": "uvs" }, { "type": { "names": [ "Uint16Array" ] }, "optional": true, "description": "if you want to specify the indices
", "name": "indices" }, { "type": { "names": [ "number" ] }, "optional": true, "description": "the drawMode, can be any of the Mesh.DRAW_MODES consts
", "name": "drawMode" } ], "___id": "T000002R006185", "___s": true, "$methods": [ { "comment": "/**\n * Renders the object using the WebGL renderer\n *\n * @private\n * @param {PIXI.WebGLRenderer} renderer - a reference to the WebGL renderer\n */", "meta": { "range": [ 4825, 5010 ], "filename": "Mesh.js", "lineno": 161, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067289", "name": "Mesh#_renderWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the WebGL renderer
", "access": "private", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "a reference to the WebGL renderer
", "name": "renderer" } ], "name": "_renderWebGL", "longname": "PIXI.mesh.Mesh#_renderWebGL", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "overrides": "PIXI.Container#_renderWebGL", "___id": "T000002R006216", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_renderWebGL", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Renders the object using the Canvas renderer\n *\n * @private\n * @param {PIXI.CanvasRenderer} renderer - The canvas renderer.\n */", "meta": { "range": [ 5175, 5290 ], "filename": "Mesh.js", "lineno": 174, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067323", "name": "Mesh#_renderCanvas", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the Canvas renderer
", "access": "private", "params": [ { "type": { "names": [ "PIXI.CanvasRenderer" ] }, "description": "The canvas renderer.
", "name": "renderer" } ], "name": "_renderCanvas", "longname": "PIXI.mesh.Mesh#_renderCanvas", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "overrides": "PIXI.Container#_renderCanvas", "___id": "T000002R006217", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_renderCanvas", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * When the texture is updated, this event will fire to update the scale and frame\n *\n * @private\n */", "meta": { "range": [ 5422, 5527 ], "filename": "Mesh.js", "lineno": 185, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067345", "name": "Mesh#_onTextureUpdate", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "When the texture is updated, this event will fire to update the scale and frame
", "access": "private", "name": "_onTextureUpdate", "longname": "PIXI.mesh.Mesh#_onTextureUpdate", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "___id": "T000002R006218", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_onTextureUpdate", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * multiplies uvs only if uploadUvTransform is false\n * call it after you change uvs manually\n * make sure that texture is valid\n */", "meta": { "range": [ 5690, 5825 ], "filename": "Mesh.js", "lineno": 196, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067364", "name": "Mesh#multiplyUvs", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "multiplies uvs only if uploadUvTransform is false
", "name": "multiplyUvs", "longname": "PIXI.mesh.Mesh#multiplyUvs", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "___id": "T000002R006220", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshmultiplyUvs", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Refreshes uvs for generated meshes (rope, plane)\n * sometimes refreshes vertices too\n *\n * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case\n */", "meta": { "range": [ 6037, 6169 ], "filename": "Mesh.js", "lineno": 210, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067384", "name": "Mesh#refresh", "type": "MethodDefinition", "paramnames": [ "forceUpdate" ] }, "vars": { "": null } }, "description": "
call it after you change uvs manually
make sure that texture is validRefreshes uvs for generated meshes (rope, plane)
", "params": [ { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
sometimes refreshes vertices tooif true, matrices will be updated any case
", "name": "forceUpdate" } ], "name": "refresh", "longname": "PIXI.mesh.Mesh#refresh", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "___id": "T000002R006221", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshrefresh", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * re-calculates mesh coords\n * @protected\n */", "meta": { "range": [ 6242, 6284 ], "filename": "Mesh.js", "lineno": 222, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067403", "name": "Mesh#_refresh", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "re-calculates mesh coords
", "access": "protected", "name": "_refresh", "longname": "PIXI.mesh.Mesh#_refresh", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "___id": "T000002R006222", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_refresh", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Returns the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.\n *\n */", "meta": { "range": [ 6429, 6640 ], "filename": "Mesh.js", "lineno": 231, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067407", "name": "Mesh#_calculateBounds", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Returns the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.
", "name": "_calculateBounds", "longname": "PIXI.mesh.Mesh#_calculateBounds", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "overrides": "PIXI.Container#_calculateBounds", "___id": "T000002R006223", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_calculateBounds", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Tests if a point is inside this mesh. Works only for TRIANGLE_MESH\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */", "meta": { "range": [ 6844, 7876 ], "filename": "Mesh.js", "lineno": 243, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067430", "name": "Mesh#containsPoint", "type": "MethodDefinition", "paramnames": [ "point" ] }, "vars": { "": null } }, "description": "Tests if a point is inside this mesh. Works only for TRIANGLE_MESH
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "the point to test
", "name": "point" } ], "returns": [ { "type": { "names": [ "boolean" ] }, "description": "the result of the test
" } ], "name": "containsPoint", "longname": "PIXI.mesh.Mesh#containsPoint", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "___id": "T000002R006224", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshcontainsPoint", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The texture that the mesh uses.\n *\n * @member {PIXI.Texture}\n */", "meta": { "range": [ 7974, 8029 ], "filename": "Mesh.js", "lineno": 285, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067615", "name": "Mesh#texture", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The texture that the mesh uses.
", "kind": "member", "type": { "names": [ "PIXI.Texture" ] }, "name": "texture", "longname": "PIXI.mesh.Mesh#texture", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "___id": "T000002R006241", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshtexture", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The tint applied to the mesh. This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */", "meta": { "range": [ 8706, 8777 ], "filename": "Mesh.js", "lineno": 319, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067668", "name": "Mesh#tint", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The tint applied to the mesh. This is a hex value. A value of 0xFFFFFF will remove any tint effect.
", "kind": "member", "type": { "names": [ "number" ] }, "defaultvalue": "0xFFFFFF", "name": "tint", "longname": "PIXI.mesh.Mesh#tint", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "___id": "T000002R006244", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshtint", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Renders the object using the WebGL renderer\n *\n * @private\n * @param {PIXI.WebGLRenderer} renderer - a reference to the WebGL renderer\n */", "meta": { "range": [ 4825, 5010 ], "filename": "Mesh.js", "lineno": 161, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100141968", "name": "Mesh#_renderWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the WebGL renderer
", "access": "private", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "a reference to the WebGL renderer
", "name": "renderer" } ], "name": "_renderWebGL", "longname": "PIXI.mesh.Mesh#_renderWebGL", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "overrides": "PIXI.Container#_renderWebGL", "___id": "T000002R013150", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_renderWebGL", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Renders the object using the Canvas renderer\n *\n * @private\n * @param {PIXI.CanvasRenderer} renderer - The canvas renderer.\n */", "meta": { "range": [ 5175, 5290 ], "filename": "Mesh.js", "lineno": 174, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100142002", "name": "Mesh#_renderCanvas", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the Canvas renderer
", "access": "private", "params": [ { "type": { "names": [ "PIXI.CanvasRenderer" ] }, "description": "The canvas renderer.
", "name": "renderer" } ], "name": "_renderCanvas", "longname": "PIXI.mesh.Mesh#_renderCanvas", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "overrides": "PIXI.Container#_renderCanvas", "___id": "T000002R013151", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_renderCanvas", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * When the texture is updated, this event will fire to update the scale and frame\n *\n * @private\n */", "meta": { "range": [ 5422, 5527 ], "filename": "Mesh.js", "lineno": 185, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100142024", "name": "Mesh#_onTextureUpdate", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "When the texture is updated, this event will fire to update the scale and frame
", "access": "private", "name": "_onTextureUpdate", "longname": "PIXI.mesh.Mesh#_onTextureUpdate", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "___id": "T000002R013152", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_onTextureUpdate", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * multiplies uvs only if uploadUvTransform is false\n * call it after you change uvs manually\n * make sure that texture is valid\n */", "meta": { "range": [ 5690, 5825 ], "filename": "Mesh.js", "lineno": 196, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100142043", "name": "Mesh#multiplyUvs", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "multiplies uvs only if uploadUvTransform is false
", "name": "multiplyUvs", "longname": "PIXI.mesh.Mesh#multiplyUvs", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "___id": "T000002R013154", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshmultiplyUvs", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Refreshes uvs for generated meshes (rope, plane)\n * sometimes refreshes vertices too\n *\n * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case\n */", "meta": { "range": [ 6037, 6169 ], "filename": "Mesh.js", "lineno": 210, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100142063", "name": "Mesh#refresh", "type": "MethodDefinition", "paramnames": [ "forceUpdate" ] }, "vars": { "": null } }, "description": "
call it after you change uvs manually
make sure that texture is validRefreshes uvs for generated meshes (rope, plane)
", "params": [ { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
sometimes refreshes vertices tooif true, matrices will be updated any case
", "name": "forceUpdate" } ], "name": "refresh", "longname": "PIXI.mesh.Mesh#refresh", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "___id": "T000002R013155", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshrefresh", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * re-calculates mesh coords\n * @protected\n */", "meta": { "range": [ 6242, 6284 ], "filename": "Mesh.js", "lineno": 222, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100142082", "name": "Mesh#_refresh", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "re-calculates mesh coords
", "access": "protected", "name": "_refresh", "longname": "PIXI.mesh.Mesh#_refresh", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "___id": "T000002R013156", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_refresh", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Returns the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.\n *\n */", "meta": { "range": [ 6429, 6640 ], "filename": "Mesh.js", "lineno": 231, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100142086", "name": "Mesh#_calculateBounds", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Returns the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.
", "name": "_calculateBounds", "longname": "PIXI.mesh.Mesh#_calculateBounds", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "overrides": "PIXI.Container#_calculateBounds", "___id": "T000002R013157", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_calculateBounds", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Tests if a point is inside this mesh. Works only for TRIANGLE_MESH\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */", "meta": { "range": [ 6844, 7876 ], "filename": "Mesh.js", "lineno": 243, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100142109", "name": "Mesh#containsPoint", "type": "MethodDefinition", "paramnames": [ "point" ] }, "vars": { "": null } }, "description": "Tests if a point is inside this mesh. Works only for TRIANGLE_MESH
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "the point to test
", "name": "point" } ], "returns": [ { "type": { "names": [ "boolean" ] }, "description": "the result of the test
" } ], "name": "containsPoint", "longname": "PIXI.mesh.Mesh#containsPoint", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "___id": "T000002R013158", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshcontainsPoint", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The texture that the mesh uses.\n *\n * @member {PIXI.Texture}\n */", "meta": { "range": [ 7974, 8029 ], "filename": "Mesh.js", "lineno": 285, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100142294", "name": "Mesh#texture", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The texture that the mesh uses.
", "kind": "member", "type": { "names": [ "PIXI.Texture" ] }, "name": "texture", "longname": "PIXI.mesh.Mesh#texture", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "___id": "T000002R013175", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshtexture", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The tint applied to the mesh. This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */", "meta": { "range": [ 8706, 8777 ], "filename": "Mesh.js", "lineno": 319, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100142347", "name": "Mesh#tint", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The tint applied to the mesh. This is a hex value. A value of 0xFFFFFF will remove any tint effect.
", "kind": "member", "type": { "names": [ "number" ] }, "defaultvalue": "0xFFFFFF", "name": "tint", "longname": "PIXI.mesh.Mesh#tint", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "___id": "T000002R013178", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshtint", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Overridable method that can be used by Container subclasses whenever the children array is modified\n *\n * @private\n */", "meta": { "range": [ 886, 936 ], "filename": "Container.js", "lineno": 42, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003526", "name": "Container#onChildrenChange", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Overridable method that can be used by Container subclasses whenever the children array is modified
", "access": "private", "name": "onChildrenChange", "longname": "PIXI.mesh.Mesh#onChildrenChange", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.Container#onChildrenChange", "inherited": true, "overrides": "PIXI.Container#onChildrenChange", "___id": "T000002R014466", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshonChildrenChange", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Adds one or more children to the container.\n *\n * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)`\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container\n * @return {PIXI.DisplayObject} The first child that was added.\n */", "meta": { "range": [ 1281, 2509 ], "filename": "Container.js", "lineno": 55, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003530", "name": "Container#addChild", "type": "MethodDefinition", "paramnames": [ "child" ] }, "vars": { "": null } }, "description": "Adds one or more children to the container.
\nMultiple items can be added like so:
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "variable": true, "description": "myContainer.addChild(thingOne, thingTwo, thingThree)
The DisplayObject(s) to add to the container
", "name": "child" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The first child that was added.
" } ], "name": "addChild", "longname": "PIXI.mesh.Mesh#addChild", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#addChild", "inherited": true, "overrides": "PIXI.Container#addChild", "___id": "T000002R014467", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshaddChild", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown\n *\n * @param {PIXI.DisplayObject} child - The child to add\n * @param {number} index - The index to place the child in\n * @return {PIXI.DisplayObject} The child that was added.\n */", "meta": { "range": [ 2836, 3576 ], "filename": "Container.js", "lineno": 101, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003628", "name": "Container#addChildAt", "type": "MethodDefinition", "paramnames": [ "child", "index" ] }, "vars": { "": null } }, "description": "Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child to add
", "name": "child" }, { "type": { "names": [ "number" ] }, "description": "The index to place the child in
", "name": "index" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child that was added.
" } ], "name": "addChildAt", "longname": "PIXI.mesh.Mesh#addChildAt", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#addChildAt", "inherited": true, "overrides": "PIXI.Container#addChildAt", "___id": "T000002R014468", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshaddChildAt", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Swaps the position of 2 Display Objects within this container.\n *\n * @param {PIXI.DisplayObject} child - First display object to swap\n * @param {PIXI.DisplayObject} child2 - Second display object to swap\n */", "meta": { "range": [ 3821, 4178 ], "filename": "Container.js", "lineno": 135, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003720", "name": "Container#swapChildren", "type": "MethodDefinition", "paramnames": [ "child", "child2" ] }, "vars": { "": null } }, "description": "Swaps the position of 2 Display Objects within this container.
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "First display object to swap
", "name": "child" }, { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "Second display object to swap
", "name": "child2" } ], "name": "swapChildren", "longname": "PIXI.mesh.Mesh#swapChildren", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#swapChildren", "inherited": true, "overrides": "PIXI.Container#swapChildren", "___id": "T000002R014469", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshswapChildren", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Returns the index position of a child DisplayObject instance\n *\n * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify\n * @return {number} The index position of the child display object to identify\n */", "meta": { "range": [ 4440, 4683 ], "filename": "Container.js", "lineno": 156, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003775", "name": "Container#getChildIndex", "type": "MethodDefinition", "paramnames": [ "child" ] }, "vars": { "": null } }, "description": "Returns the index position of a child DisplayObject instance
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The DisplayObject instance to identify
", "name": "child" } ], "returns": [ { "type": { "names": [ "number" ] }, "description": "The index position of the child display object to identify
" } ], "name": "getChildIndex", "longname": "PIXI.mesh.Mesh#getChildIndex", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#getChildIndex", "inherited": true, "overrides": "PIXI.Container#getChildIndex", "___id": "T000002R014470", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshgetChildIndex", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Changes the position of an existing child in the display object container\n *\n * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number\n * @param {number} index - The resulting index number for the child display object\n */", "meta": { "range": [ 5002, 5433 ], "filename": "Container.js", "lineno": 174, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003802", "name": "Container#setChildIndex", "type": "MethodDefinition", "paramnames": [ "child", "index" ] }, "vars": { "": null } }, "description": "Changes the position of an existing child in the display object container
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child DisplayObject instance for which you want to change the index number
", "name": "child" }, { "type": { "names": [ "number" ] }, "description": "The resulting index number for the child display object
", "name": "index" } ], "name": "setChildIndex", "longname": "PIXI.mesh.Mesh#setChildIndex", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#setChildIndex", "inherited": true, "overrides": "PIXI.Container#setChildIndex", "___id": "T000002R014471", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshsetChildIndex", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Returns the child at the specified index\n *\n * @param {number} index - The index to get the child at\n * @return {PIXI.DisplayObject} The child at the given index, if any.\n */", "meta": { "range": [ 5645, 5865 ], "filename": "Container.js", "lineno": 195, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003857", "name": "Container#getChildAt", "type": "MethodDefinition", "paramnames": [ "index" ] }, "vars": { "": null } }, "description": "Returns the child at the specified index
", "params": [ { "type": { "names": [ "number" ] }, "description": "The index to get the child at
", "name": "index" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child at the given index, if any.
" } ], "name": "getChildAt", "longname": "PIXI.mesh.Mesh#getChildAt", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#getChildAt", "inherited": true, "overrides": "PIXI.Container#getChildAt", "___id": "T000002R014472", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshgetChildAt", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes one or more children from the container.\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove\n * @return {PIXI.DisplayObject} The first child that was removed.\n */", "meta": { "range": [ 6097, 7212 ], "filename": "Container.js", "lineno": 211, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003888", "name": "Container#removeChild", "type": "MethodDefinition", "paramnames": [ "child" ] }, "vars": { "": null } }, "description": "Removes one or more children from the container.
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "variable": true, "description": "The DisplayObject(s) to remove
", "name": "child" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The first child that was removed.
" } ], "name": "removeChild", "longname": "PIXI.mesh.Mesh#removeChild", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#removeChild", "inherited": true, "overrides": "PIXI.Container#removeChild", "___id": "T000002R014473", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshremoveChild", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes a child from the specified index position.\n *\n * @param {number} index - The index to get the child from\n * @return {PIXI.DisplayObject} The child that was removed.\n */", "meta": { "range": [ 7426, 7922 ], "filename": "Container.js", "lineno": 253, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003984", "name": "Container#removeChildAt", "type": "MethodDefinition", "paramnames": [ "index" ] }, "vars": { "": null } }, "description": "Removes a child from the specified index position.
", "params": [ { "type": { "names": [ "number" ] }, "description": "The index to get the child from
", "name": "index" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child that was removed.
" } ], "name": "removeChildAt", "longname": "PIXI.mesh.Mesh#removeChildAt", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#removeChildAt", "inherited": true, "overrides": "PIXI.Container#removeChildAt", "___id": "T000002R014474", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshremoveChildAt", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes all children from this container that are within the begin and end indexes.\n *\n * @param {number} [beginIndex=0] - The beginning position.\n * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container.\n * @returns {DisplayObject[]} List of removed children\n */", "meta": { "range": [ 8283, 9328 ], "filename": "Container.js", "lineno": 279, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004040", "name": "Container#removeChildren", "type": "MethodDefinition", "paramnames": [ "beginIndex", "endIndex" ] }, "vars": { "": null } }, "description": "Removes all children from this container that are within the begin and end indexes.
", "params": [ { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The beginning position.
", "name": "beginIndex" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": "this.children.length", "description": "The ending position. Default value is size of the container.
", "name": "endIndex" } ], "returns": [ { "type": { "names": [ "Array." ] }, "description": " List of removed children
" } ], "name": "removeChildren", "longname": "PIXI.mesh.Mesh#removeChildren", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#removeChildren", "inherited": true, "overrides": "PIXI.Container#removeChildren", "___id": "T000002R014475", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshremoveChildren", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Updates the transform on all children of this container for rendering\n */", "meta": { "range": [ 9427, 9901 ], "filename": "Container.js", "lineno": 321, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004188", "name": "Container#updateTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Updates the transform on all children of this container for rendering
", "name": "updateTransform", "longname": "PIXI.mesh.Mesh#updateTransform", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.Container#updateTransform", "inherited": true, "overrides": "PIXI.Container#updateTransform", "___id": "T000002R014476", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshupdateTransform", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Recalculates the bounds of the container.\n *\n */", "meta": { "range": [ 9979, 10873 ], "filename": "Container.js", "lineno": 345, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004259", "name": "Container#calculateBounds", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Recalculates the bounds of the container.
", "name": "calculateBounds", "longname": "PIXI.mesh.Mesh#calculateBounds", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.Container#calculateBounds", "inherited": true, "overrides": "PIXI.Container#calculateBounds", "___id": "T000002R014477", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshcalculateBounds", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.WebGLRenderer} renderer - The renderer\n */", "meta": { "range": [ 11232, 11919 ], "filename": "Container.js", "lineno": 396, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004383", "name": "Container#renderWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the WebGL renderer
", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderWebGL", "longname": "PIXI.mesh.Mesh#renderWebGL", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#renderWebGL", "inherited": true, "overrides": "PIXI.Container#renderWebGL", "___id": "T000002R014478", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshrenderWebGL", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Render the object using the WebGL renderer and advanced features.\n *\n * @private\n * @param {PIXI.WebGLRenderer} renderer - The renderer\n */", "meta": { "range": [ 12096, 13593 ], "filename": "Container.js", "lineno": 427, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004456", "name": "Container#renderAdvancedWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Render the object using the WebGL renderer and advanced features.
", "access": "private", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderAdvancedWebGL", "longname": "PIXI.mesh.Mesh#renderAdvancedWebGL", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#renderAdvancedWebGL", "inherited": true, "overrides": "PIXI.Container#renderAdvancedWebGL", "___id": "T000002R014479", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshrenderAdvancedWebGL", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Renders the object using the Canvas renderer\n *\n * @param {PIXI.CanvasRenderer} renderer - The renderer\n */", "meta": { "range": [ 14285, 14873 ], "filename": "Container.js", "lineno": 512, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004646", "name": "Container#renderCanvas", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the Canvas renderer
", "params": [ { "type": { "names": [ "PIXI.CanvasRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderCanvas", "longname": "PIXI.mesh.Mesh#renderCanvas", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#renderCanvas", "inherited": true, "overrides": "PIXI.Container#renderCanvas", "___id": "T000002R014480", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshrenderCanvas", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes all internal references and listeners as well as removes children from the display list.\n * Do not use a Container after calling `destroy`.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */", "meta": { "range": [ 15730, 16145 ], "filename": "Container.js", "lineno": 550, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004731", "name": "Container#destroy", "type": "MethodDefinition", "paramnames": [ "options" ] }, "vars": { "": null } }, "description": "Removes all internal references and listeners as well as removes children from the display list.
", "params": [ { "type": { "names": [ "object", "boolean" ] }, "optional": true, "description": "
Do not use a Container after callingdestroy
.Options parameter. A boolean will act as if all options
", "name": "options" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
have been set to that valueif set to true, all the children will have their destroy
", "name": "options.children" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
method called as well. 'options' will be passed on to those calls.Only used for child Sprites if options.children is set to true
", "name": "options.texture" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
Should it destroy the texture of the child spriteOnly used for child Sprites if options.children is set to true
", "name": "options.baseTexture" } ], "name": "destroy", "longname": "PIXI.mesh.Mesh#destroy", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.Container#destroy", "inherited": true, "overrides": "PIXI.Container#destroy", "___id": "T000002R014481", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshdestroy", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * The width of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */", "meta": { "range": [ 16302, 16384 ], "filename": "Container.js", "lineno": 572, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004792", "name": "Container#width", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Should it destroy the base texture of the child spriteThe width of the Container, setting this will actually modify the scale to achieve the value set
", "kind": "member", "type": { "names": [ "number" ] }, "name": "width", "longname": "PIXI.mesh.Mesh#width", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.Container#width", "inherited": true, "overrides": "PIXI.Container#width", "___id": "T000002R014482", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshwidth", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * The height of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */", "meta": { "range": [ 16845, 16929 ], "filename": "Container.js", "lineno": 598, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004853", "name": "Container#height", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The height of the Container, setting this will actually modify the scale to achieve the value set
", "kind": "member", "type": { "names": [ "number" ] }, "name": "height", "longname": "PIXI.mesh.Mesh#height", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.Container#height", "inherited": true, "overrides": "PIXI.Container#height", "___id": "T000002R014483", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshheight", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * @private\n * @member {PIXI.DisplayObject}\n */", "meta": { "range": [ 3985, 4208 ], "filename": "DisplayObject.js", "lineno": 133, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005086", "name": "DisplayObject#_tempDisplayObjectParent", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "access": "private", "kind": "member", "type": { "names": [ "PIXI.DisplayObject" ] }, "name": "_tempDisplayObjectParent", "longname": "PIXI.mesh.Mesh#_tempDisplayObjectParent", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#_tempDisplayObjectParent", "inherited": true, "overrides": "PIXI.Container#_tempDisplayObjectParent", "___id": "T000002R014494", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_tempDisplayObjectParent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * recursively updates transform of all objects from the root to this one\n * internal function for toLocal()\n */", "meta": { "range": [ 4681, 5011 ], "filename": "DisplayObject.js", "lineno": 161, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005145", "name": "DisplayObject#_recursivePostUpdateTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "recursively updates transform of all objects from the root to this one
", "name": "_recursivePostUpdateTransform", "longname": "PIXI.mesh.Mesh#_recursivePostUpdateTransform", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#_recursivePostUpdateTransform", "inherited": true, "overrides": "PIXI.Container#_recursivePostUpdateTransform", "___id": "T000002R014495", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_recursivePostUpdateTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Retrieves the bounds of the displayObject as a rectangle object.\n *\n * @param {boolean} skipUpdate - setting to true will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost\n * @param {PIXI.Rectangle} rect - Optional rectangle to store the result of the bounds calculation\n * @return {PIXI.Rectangle} the rectangular bounding area\n */", "meta": { "range": [ 5508, 6276 ], "filename": "DisplayObject.js", "lineno": 183, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005186", "name": "DisplayObject#getBounds", "type": "MethodDefinition", "paramnames": [ "skipUpdate", "rect" ] }, "vars": { "": null } }, "description": "
internal function for toLocal()Retrieves the bounds of the displayObject as a rectangle object.
", "params": [ { "type": { "names": [ "boolean" ] }, "description": "setting to true will stop the transforms of the scene graph from
", "name": "skipUpdate" }, { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "
being updated. This means the calculation returned MAY be out of date BUT will give you a
nice performance boostOptional rectangle to store the result of the bounds calculation
", "name": "rect" } ], "returns": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "the rectangular bounding area
" } ], "name": "getBounds", "longname": "PIXI.mesh.Mesh#getBounds", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.DisplayObject#getBounds", "inherited": true, "overrides": "PIXI.Container#getBounds", "___id": "T000002R014496", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshgetBounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Retrieves the local bounds of the displayObject as a rectangle object\n *\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation\n * @return {PIXI.Rectangle} the rectangular bounding area\n */", "meta": { "range": [ 6549, 7118 ], "filename": "DisplayObject.js", "lineno": 224, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005277", "name": "DisplayObject#getLocalBounds", "type": "MethodDefinition", "paramnames": [ "rect" ] }, "vars": { "": null } }, "description": "Retrieves the local bounds of the displayObject as a rectangle object
", "params": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "optional": true, "description": "Optional rectangle to store the result of the bounds calculation
", "name": "rect" } ], "returns": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "the rectangular bounding area
" } ], "name": "getLocalBounds", "longname": "PIXI.mesh.Mesh#getLocalBounds", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.DisplayObject#getLocalBounds", "inherited": true, "overrides": "PIXI.Container#getLocalBounds", "___id": "T000002R014497", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshgetLocalBounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Calculates the global position of the display object\n *\n * @param {PIXI.Point} position - The world origin to calculate from\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point)\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform.\n * @return {PIXI.Point} A point object representing the position of this object\n */", "meta": { "range": [ 7580, 8444 ], "filename": "DisplayObject.js", "lineno": 259, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005356", "name": "DisplayObject#toGlobal", "type": "MethodDefinition", "paramnames": [ "position", "point", "skipUpdate" ] }, "vars": { "": null } }, "description": "Calculates the global position of the display object
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "The world origin to calculate from
", "name": "position" }, { "type": { "names": [ "PIXI.Point" ] }, "optional": true, "description": "A Point object in which to store the value, optional
", "name": "point" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
(otherwise will create a new Point)Should we skip the update transform.
", "name": "skipUpdate" } ], "returns": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "A point object representing the position of this object
" } ], "name": "toGlobal", "longname": "PIXI.mesh.Mesh#toGlobal", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.DisplayObject#toGlobal", "inherited": true, "overrides": "PIXI.Container#toGlobal", "___id": "T000002R014498", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshtoGlobal", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Calculates the local position of the display object relative to another point\n *\n * @param {PIXI.Point} position - The world origin to calculate from\n * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point)\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform\n * @return {PIXI.Point} A point object representing the position of this object\n */", "meta": { "range": [ 9030, 10001 ], "filename": "DisplayObject.js", "lineno": 294, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005414", "name": "DisplayObject#toLocal", "type": "MethodDefinition", "paramnames": [ "position", "from", "point", "skipUpdate" ] }, "vars": { "": null } }, "description": "Calculates the local position of the display object relative to another point
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "The world origin to calculate from
", "name": "position" }, { "type": { "names": [ "PIXI.DisplayObject" ] }, "optional": true, "description": "The DisplayObject to calculate the global position from
", "name": "from" }, { "type": { "names": [ "PIXI.Point" ] }, "optional": true, "description": "A Point object in which to store the value, optional
", "name": "point" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
(otherwise will create a new Point)Should we skip the update transform
", "name": "skipUpdate" } ], "returns": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "A point object representing the position of this object
" } ], "name": "toLocal", "longname": "PIXI.mesh.Mesh#toLocal", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.DisplayObject#toLocal", "inherited": true, "overrides": "PIXI.Container#toLocal", "___id": "T000002R014499", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshtoLocal", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Set the parent Container of this DisplayObject\n *\n * @param {PIXI.Container} container - The Container to add this DisplayObject to\n * @return {PIXI.Container} The Container that this DisplayObject was added to\n */", "meta": { "range": [ 10720, 10953 ], "filename": "DisplayObject.js", "lineno": 350, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005494", "name": "DisplayObject#setParent", "type": "MethodDefinition", "paramnames": [ "container" ] }, "vars": { "": null } }, "description": "Set the parent Container of this DisplayObject
", "params": [ { "type": { "names": [ "PIXI.Container" ] }, "description": "The Container to add this DisplayObject to
", "name": "container" } ], "returns": [ { "type": { "names": [ "PIXI.Container" ] }, "description": "The Container that this DisplayObject was added to
" } ], "name": "setParent", "longname": "PIXI.mesh.Mesh#setParent", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.DisplayObject#setParent", "inherited": true, "overrides": "PIXI.Container#setParent", "___id": "T000002R014500", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshsetParent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Convenience function to set the position, scale, skew and pivot at once.\n *\n * @param {number} [x=0] - The X position\n * @param {number} [y=0] - The Y position\n * @param {number} [scaleX=1] - The X scale value\n * @param {number} [scaleY=1] - The Y scale value\n * @param {number} [rotation=0] - The rotation\n * @param {number} [skewX=0] - The X skew value\n * @param {number} [skewY=0] - The Y skew value\n * @param {number} [pivotX=0] - The X pivot value\n * @param {number} [pivotY=0] - The Y pivot value\n * @return {PIXI.DisplayObject} The DisplayObject instance\n */", "meta": { "range": [ 11588, 12034 ], "filename": "DisplayObject.js", "lineno": 376, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005520", "name": "DisplayObject#setTransform", "type": "MethodDefinition", "paramnames": [ "x", "y", "scaleX", "scaleY", "rotation", "skewX", "skewY", "pivotX", "pivotY" ] }, "vars": { "": null } }, "description": "Convenience function to set the position, scale, skew and pivot at once.
", "params": [ { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X position
", "name": "x" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y position
", "name": "y" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 1, "description": "The X scale value
", "name": "scaleX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 1, "description": "The Y scale value
", "name": "scaleY" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The rotation
", "name": "rotation" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X skew value
", "name": "skewX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y skew value
", "name": "skewY" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X pivot value
", "name": "pivotX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y pivot value
", "name": "pivotY" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The DisplayObject instance
" } ], "name": "setTransform", "longname": "PIXI.mesh.Mesh#setTransform", "kind": "function", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "inherits": "PIXI.DisplayObject#setTransform", "inherited": true, "overrides": "PIXI.Container#setTransform", "___id": "T000002R014501", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshsetTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n * An alias to position.x\n *\n * @member {number}\n */", "meta": { "range": [ 12966, 13017 ], "filename": "DisplayObject.js", "lineno": 427, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005707", "name": "DisplayObject#x", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The position of the displayObject on the x axis relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "x", "longname": "PIXI.mesh.Mesh#x", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#x", "inherited": true, "overrides": "PIXI.Container#x", "___id": "T000002R014502", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshx", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The position of the displayObject on the y axis relative to the local coordinates of the parent.\n * An alias to position.y\n *\n * @member {number}\n */", "meta": { "range": [ 13314, 13365 ], "filename": "DisplayObject.js", "lineno": 443, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005732", "name": "DisplayObject#y", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
An alias to position.xThe position of the displayObject on the y axis relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "y", "longname": "PIXI.mesh.Mesh#y", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#y", "inherited": true, "overrides": "PIXI.Container#y", "___id": "T000002R014503", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshy", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Current transform of the object based on world (parent) factors\n *\n * @member {PIXI.Matrix}\n * @readonly\n */", "meta": { "range": [ 13621, 13699 ], "filename": "DisplayObject.js", "lineno": 459, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005757", "name": "DisplayObject#worldTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
An alias to position.yCurrent transform of the object based on world (parent) factors
", "kind": "member", "type": { "names": [ "PIXI.Matrix" ] }, "readonly": true, "name": "worldTransform", "longname": "PIXI.mesh.Mesh#worldTransform", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#worldTransform", "inherited": true, "overrides": "PIXI.Container#worldTransform", "___id": "T000002R014504", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshworldTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Current transform of the object based on local factors: position, scale, other stuff\n *\n * @member {PIXI.Matrix}\n * @readonly\n */", "meta": { "range": [ 13866, 13944 ], "filename": "DisplayObject.js", "lineno": 470, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005767", "name": "DisplayObject#localTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Current transform of the object based on local factors: position, scale, other stuff
", "kind": "member", "type": { "names": [ "PIXI.Matrix" ] }, "readonly": true, "name": "localTransform", "longname": "PIXI.mesh.Mesh#localTransform", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#localTransform", "inherited": true, "overrides": "PIXI.Container#localTransform", "___id": "T000002R014505", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshlocalTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The coordinate of the object relative to the local coordinates of the parent.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14149, 14215 ], "filename": "DisplayObject.js", "lineno": 481, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005777", "name": "DisplayObject#position", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The coordinate of the object relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "position", "longname": "PIXI.mesh.Mesh#position", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#position", "inherited": true, "overrides": "PIXI.Container#position", "___id": "T000002R014506", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshposition", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The scale factor of the object.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14493, 14553 ], "filename": "DisplayObject.js", "lineno": 497, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005802", "name": "DisplayObject#scale", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The scale factor of the object.
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "scale", "longname": "PIXI.mesh.Mesh#scale", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#scale", "inherited": true, "overrides": "PIXI.Container#scale", "___id": "T000002R014507", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshscale", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The pivot point of the displayObject that it rotates around\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14853, 14913 ], "filename": "DisplayObject.js", "lineno": 513, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005827", "name": "DisplayObject#pivot", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The pivot point of the displayObject that it rotates around
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "pivot", "longname": "PIXI.mesh.Mesh#pivot", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#pivot", "inherited": true, "overrides": "PIXI.Container#pivot", "___id": "T000002R014508", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshpivot", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The skew factor for the object in radians.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.ObservablePoint}\n */", "meta": { "range": [ 15185, 15243 ], "filename": "DisplayObject.js", "lineno": 529, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005852", "name": "DisplayObject#skew", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The skew factor for the object in radians.
", "kind": "member", "type": { "names": [ "PIXI.ObservablePoint" ] }, "name": "skew", "longname": "PIXI.mesh.Mesh#skew", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#skew", "inherited": true, "overrides": "PIXI.Container#skew", "___id": "T000002R014509", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshskew", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The rotation of the object in radians.\n *\n * @member {number}\n */", "meta": { "range": [ 15453, 15519 ], "filename": "DisplayObject.js", "lineno": 544, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005877", "name": "DisplayObject#rotation", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The rotation of the object in radians.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "rotation", "longname": "PIXI.mesh.Mesh#rotation", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#rotation", "inherited": true, "overrides": "PIXI.Container#rotation", "___id": "T000002R014510", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshrotation", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Indicates if the object is globally visible.\n *\n * @member {boolean}\n * @readonly\n */", "meta": { "range": [ 15757, 16002 ], "filename": "DisplayObject.js", "lineno": 560, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005900", "name": "DisplayObject#worldVisible", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Indicates if the object is globally visible.
", "kind": "member", "type": { "names": [ "boolean" ] }, "readonly": true, "name": "worldVisible", "longname": "PIXI.mesh.Mesh#worldVisible", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#worldVisible", "inherited": true, "overrides": "PIXI.Container#worldVisible", "___id": "T000002R014511", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshworldVisible", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Sets a mask for the displayObject. A mask is an object that limits the visibility of an\n * object to the shape of the mask applied to it. In PIXI a regular mask must be a\n * PIXI.Graphics or a PIXI.Sprite object. This allows for much faster masking in canvas as it\n * utilises shape clipping. To remove a mask, set this property to null.\n *\n * @todo For the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask.\n *\n * @member {PIXI.Graphics|PIXI.Sprite}\n */", "meta": { "range": [ 16524, 16573 ], "filename": "DisplayObject.js", "lineno": 587, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005927", "name": "DisplayObject#mask", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Sets a mask for the displayObject. A mask is an object that limits the visibility of an
", "todo": [ "For the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask." ], "kind": "member", "type": { "names": [ "PIXI.Graphics", "PIXI.Sprite" ] }, "name": "mask", "longname": "PIXI.mesh.Mesh#mask", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#mask", "inherited": true, "overrides": "PIXI.Container#mask", "___id": "T000002R014512", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshmask", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Sets the filters for the displayObject.\n * * IMPORTANT: This is a webGL only feature and will be ignored by the canvas renderer.\n * To remove filters simply set this property to 'null'\n *\n * @member {PIXI.Filter[]}\n */", "meta": { "range": [ 17106, 17186 ], "filename": "DisplayObject.js", "lineno": 614, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005972", "name": "DisplayObject#filters", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
object to the shape of the mask applied to it. In PIXI a regular mask must be a
PIXI.Graphics or a PIXI.Sprite object. This allows for much faster masking in canvas as it
utilises shape clipping. To remove a mask, set this property to null.Sets the filters for the displayObject.
\n\n
", "kind": "member", "type": { "names": [ "Array.- IMPORTANT: This is a webGL only feature and will be ignored by the canvas renderer.
\n
To remove filters simply set this property to 'null'" ] }, "name": "filters", "longname": "PIXI.mesh.Mesh#filters", "memberof": "PIXI.mesh.Mesh", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#filters", "inherited": true, "overrides": "PIXI.Container#filters", "___id": "T000002R014513", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshfilters", "filepath": "core\\display\\DisplayObject.js" } ], "$attributes": [ { "comment": "/**\n * The texture of the Mesh\n *\n * @member {PIXI.Texture} PIXI.mesh.Mesh#_texture\n * @private\n */", "meta": { "range": [ 807, 946 ], "filename": "Mesh.js", "lineno": 28, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": " The texture of the Mesh
", "kind": "member", "name": "_texture", "type": { "names": [ "PIXI.Texture" ] }, "access": "private", "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#_texture", "scope": "instance", "___id": "T000002R006187", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_texture", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The Uvs of the Mesh\n *\n * @member {Float32Array} PIXI.mesh.Mesh#uvs\n */", "meta": { "range": [ 989, 1099 ], "filename": "Mesh.js", "lineno": 36, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The Uvs of the Mesh
", "kind": "member", "name": "uvs", "type": { "names": [ "Float32Array" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#uvs", "scope": "instance", "___id": "T000002R006189", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshuvs", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * An array of vertices\n *\n * @member {Float32Array} PIXI.mesh.Mesh#vertices\n */", "meta": { "range": [ 1228, 1344 ], "filename": "Mesh.js", "lineno": 47, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "An array of vertices
", "kind": "member", "name": "vertices", "type": { "names": [ "Float32Array" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#vertices", "scope": "instance", "___id": "T000002R006191", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshvertices", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Version of mesh uvs are dirty or not\n *\n * @member {number} PIXI.mesh.Mesh#dirty\n */", "meta": { "range": [ 1717, 1840 ], "filename": "Mesh.js", "lineno": 64, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "Version of mesh uvs are dirty or not
", "kind": "member", "name": "dirty", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#dirty", "scope": "instance", "___id": "T000002R006194", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshdirty", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Version of mesh indices\n *\n * @member {number} PIXI.mesh.Mesh#indexDirty\n */", "meta": { "range": [ 1874, 1989 ], "filename": "Mesh.js", "lineno": 71, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "Version of mesh indices
", "kind": "member", "name": "indexDirty", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#indexDirty", "scope": "instance", "___id": "T000002R006196", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshindexDirty", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The blend mode to be applied to the sprite. Set to `PIXI.BLEND_MODES.NORMAL` to remove\n * any blend mode.\n *\n * @member {number} PIXI.mesh.Mesh#blendMode\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */", "meta": { "range": [ 2028, 2309 ], "filename": "Mesh.js", "lineno": 78, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The blend mode to be applied to the sprite. Set to
", "kind": "member", "name": "blendMode", "type": { "names": [ "number" ] }, "defaultvalue": "PIXI.BLEND_MODES.NORMAL", "see": [ "PIXI.BLEND_MODES" ], "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#blendMode", "scope": "instance", "___id": "T000002R006198", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshblendMode", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Triangles in canvas mode are automatically antialiased, use this value to force triangles\n * to overlap a bit with each other.\n *\n * @member {number} PIXI.mesh.Mesh#canvasPadding\n */", "meta": { "range": [ 2369, 2598 ], "filename": "Mesh.js", "lineno": 88, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "PIXI.BLEND_MODES.NORMAL
to remove
any blend mode.Triangles in canvas mode are automatically antialiased, use this value to force triangles
", "kind": "member", "name": "canvasPadding", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#canvasPadding", "scope": "instance", "___id": "T000002R006200", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshcanvasPadding", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The way the Mesh should be drawn, can be any of the {@link PIXI.mesh.Mesh.DRAW_MODES} consts\n *\n * @member {number} PIXI.mesh.Mesh#drawMode\n * @see PIXI.mesh.Mesh.DRAW_MODES\n */", "meta": { "range": [ 2640, 2864 ], "filename": "Mesh.js", "lineno": 96, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "
to overlap a bit with each other.The way the Mesh should be drawn, can be any of the {@link PIXI.mesh.Mesh.DRAW_MODES} consts
", "kind": "member", "name": "drawMode", "type": { "names": [ "number" ] }, "see": [ "PIXI.mesh.Mesh.DRAW_MODES" ], "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#drawMode", "scope": "instance", "___id": "T000002R006202", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshdrawMode", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The default shader that is used if a mesh doesn't have a more specific one.\n *\n * @member {PIXI.Shader} PIXI.mesh.Mesh#shader\n */", "meta": { "range": [ 2941, 3109 ], "filename": "Mesh.js", "lineno": 104, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The default shader that is used if a mesh doesn't have a more specific one.
", "kind": "member", "name": "shader", "type": { "names": [ "PIXI.Shader" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#shader", "scope": "instance", "___id": "T000002R006204", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshshader", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The tint applied to the mesh. This is a [r,g,b] value. A value of [1,1,1] will remove any\n * tint effect.\n *\n * @member {number} PIXI.mesh.Mesh#tintRgb\n */", "meta": { "range": [ 3147, 3349 ], "filename": "Mesh.js", "lineno": 111, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The tint applied to the mesh. This is a [r,g,b] value. A value of [1,1,1] will remove any
", "kind": "member", "name": "tintRgb", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#tintRgb", "scope": "instance", "___id": "T000002R006206", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshtintRgb", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * A map of renderer IDs to webgl render data\n *\n * @private\n * @member {object
tint effect.} PIXI.mesh.Mesh#_glDatas\n */", "meta": { "range": [ 3411, 3579 ], "filename": "Mesh.js", "lineno": 119, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": " A map of renderer IDs to webgl render data
", "access": "private", "kind": "member", "name": "_glDatas", "type": { "names": [ "object." ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#_glDatas", "scope": "instance", "___id": "T000002R006208", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_glDatas", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * transform that is applied to UV to get the texture coords\n * its updated independently from texture uvTransform\n * updates of uvs are tied to that thing\n *\n * @member {PIXI.extras.TextureTransform} PIXI.mesh.Mesh#_uvTransform\n * @private\n */", "meta": { "range": [ 3617, 3921 ], "filename": "Mesh.js", "lineno": 127, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": " transform that is applied to UV to get the texture coords
", "kind": "member", "name": "_uvTransform", "type": { "names": [ "PIXI.extras.TextureTransform" ] }, "access": "private", "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#_uvTransform", "scope": "instance", "___id": "T000002R006210", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_uvTransform", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * whether or not upload uvTransform to shader\n * if its false, then uvs should be pre-multiplied\n * if you change it for generated mesh, please call 'refresh(true)'\n * @member {boolean} PIXI.mesh.Mesh#uploadUvTransform\n * @default false\n */", "meta": { "range": [ 3990, 4283 ], "filename": "Mesh.js", "lineno": 137, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "
its updated independently from texture uvTransform
updates of uvs are tied to that thingwhether or not upload uvTransform to shader
", "kind": "member", "name": "uploadUvTransform", "type": { "names": [ "boolean" ] }, "defaultvalue": "false", "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#uploadUvTransform", "scope": "instance", "___id": "T000002R006212", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshuploadUvTransform", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_renderWebGL' & '_renderCanvas' methods.\n * @member {string} PIXI.mesh.Mesh#pluginName\n * @default 'mesh'\n */", "meta": { "range": [ 4333, 4609 ], "filename": "Mesh.js", "lineno": 146, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "
if its false, then uvs should be pre-multiplied
if you change it for generated mesh, please call 'refresh(true)'Plugin that is responsible for rendering this element.
", "kind": "member", "name": "pluginName", "type": { "names": [ "string" ] }, "defaultvalue": "'mesh'", "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#pluginName", "scope": "instance", "___id": "T000002R006214", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshpluginName", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Different drawing buffer modes supported\n *\n * @static\n * @constant\n * @type {object}\n * @property {number} TRIANGLE_MESH\n * @property {number} TRIANGLES\n */", "meta": { "range": [ 9080, 9141 ], "filename": "Mesh.js", "lineno": 339, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100067703", "name": "Mesh.DRAW_MODES", "type": "ObjectExpression", "value": "{\"TRIANGLE_MESH\":0,\"TRIANGLES\":1}", "paramnames": [] } }, "description": "
Allows to customize the rendering process without overriding '_renderWebGL' & '_renderCanvas' methods.Different drawing buffer modes supported
", "scope": "static", "kind": "constant", "type": { "names": [ "object" ] }, "properties": [ { "type": { "names": [ "number" ] }, "name": "TRIANGLE_MESH" }, { "type": { "names": [ "number" ] }, "name": "TRIANGLES" } ], "name": "DRAW_MODES", "longname": "PIXI.mesh.Mesh.DRAW_MODES", "memberof": "PIXI.mesh.Mesh", "___id": "T000002R006247", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh.DRAW_MODES", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The texture of the Mesh\n *\n * @member {PIXI.Texture} PIXI.mesh.Mesh#_texture\n * @private\n */", "meta": { "range": [ 807, 946 ], "filename": "Mesh.js", "lineno": 28, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The texture of the Mesh
", "kind": "member", "name": "_texture", "type": { "names": [ "PIXI.Texture" ] }, "access": "private", "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#_texture", "scope": "instance", "___id": "T000002R013121", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_texture", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The Uvs of the Mesh\n *\n * @member {Float32Array} PIXI.mesh.Mesh#uvs\n */", "meta": { "range": [ 989, 1099 ], "filename": "Mesh.js", "lineno": 36, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The Uvs of the Mesh
", "kind": "member", "name": "uvs", "type": { "names": [ "Float32Array" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#uvs", "scope": "instance", "___id": "T000002R013123", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshuvs", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * An array of vertices\n *\n * @member {Float32Array} PIXI.mesh.Mesh#vertices\n */", "meta": { "range": [ 1228, 1344 ], "filename": "Mesh.js", "lineno": 47, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "An array of vertices
", "kind": "member", "name": "vertices", "type": { "names": [ "Float32Array" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#vertices", "scope": "instance", "___id": "T000002R013125", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshvertices", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Version of mesh uvs are dirty or not\n *\n * @member {number} PIXI.mesh.Mesh#dirty\n */", "meta": { "range": [ 1717, 1840 ], "filename": "Mesh.js", "lineno": 64, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "Version of mesh uvs are dirty or not
", "kind": "member", "name": "dirty", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#dirty", "scope": "instance", "___id": "T000002R013128", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshdirty", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Version of mesh indices\n *\n * @member {number} PIXI.mesh.Mesh#indexDirty\n */", "meta": { "range": [ 1874, 1989 ], "filename": "Mesh.js", "lineno": 71, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "Version of mesh indices
", "kind": "member", "name": "indexDirty", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#indexDirty", "scope": "instance", "___id": "T000002R013130", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshindexDirty", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The blend mode to be applied to the sprite. Set to `PIXI.BLEND_MODES.NORMAL` to remove\n * any blend mode.\n *\n * @member {number} PIXI.mesh.Mesh#blendMode\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */", "meta": { "range": [ 2028, 2309 ], "filename": "Mesh.js", "lineno": 78, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The blend mode to be applied to the sprite. Set to
", "kind": "member", "name": "blendMode", "type": { "names": [ "number" ] }, "defaultvalue": "PIXI.BLEND_MODES.NORMAL", "see": [ "PIXI.BLEND_MODES" ], "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#blendMode", "scope": "instance", "___id": "T000002R013132", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshblendMode", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Triangles in canvas mode are automatically antialiased, use this value to force triangles\n * to overlap a bit with each other.\n *\n * @member {number} PIXI.mesh.Mesh#canvasPadding\n */", "meta": { "range": [ 2369, 2598 ], "filename": "Mesh.js", "lineno": 88, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "PIXI.BLEND_MODES.NORMAL
to remove
any blend mode.Triangles in canvas mode are automatically antialiased, use this value to force triangles
", "kind": "member", "name": "canvasPadding", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#canvasPadding", "scope": "instance", "___id": "T000002R013134", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshcanvasPadding", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The way the Mesh should be drawn, can be any of the {@link PIXI.mesh.Mesh.DRAW_MODES} consts\n *\n * @member {number} PIXI.mesh.Mesh#drawMode\n * @see PIXI.mesh.Mesh.DRAW_MODES\n */", "meta": { "range": [ 2640, 2864 ], "filename": "Mesh.js", "lineno": 96, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "
to overlap a bit with each other.The way the Mesh should be drawn, can be any of the {@link PIXI.mesh.Mesh.DRAW_MODES} consts
", "kind": "member", "name": "drawMode", "type": { "names": [ "number" ] }, "see": [ "PIXI.mesh.Mesh.DRAW_MODES" ], "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#drawMode", "scope": "instance", "___id": "T000002R013136", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshdrawMode", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The default shader that is used if a mesh doesn't have a more specific one.\n *\n * @member {PIXI.Shader} PIXI.mesh.Mesh#shader\n */", "meta": { "range": [ 2941, 3109 ], "filename": "Mesh.js", "lineno": 104, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The default shader that is used if a mesh doesn't have a more specific one.
", "kind": "member", "name": "shader", "type": { "names": [ "PIXI.Shader" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#shader", "scope": "instance", "___id": "T000002R013138", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshshader", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The tint applied to the mesh. This is a [r,g,b] value. A value of [1,1,1] will remove any\n * tint effect.\n *\n * @member {number} PIXI.mesh.Mesh#tintRgb\n */", "meta": { "range": [ 3147, 3349 ], "filename": "Mesh.js", "lineno": 111, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "The tint applied to the mesh. This is a [r,g,b] value. A value of [1,1,1] will remove any
", "kind": "member", "name": "tintRgb", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#tintRgb", "scope": "instance", "___id": "T000002R013140", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshtintRgb", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * A map of renderer IDs to webgl render data\n *\n * @private\n * @member {object
tint effect.} PIXI.mesh.Mesh#_glDatas\n */", "meta": { "range": [ 3411, 3579 ], "filename": "Mesh.js", "lineno": 119, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": " A map of renderer IDs to webgl render data
", "access": "private", "kind": "member", "name": "_glDatas", "type": { "names": [ "object." ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#_glDatas", "scope": "instance", "___id": "T000002R013142", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_glDatas", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * transform that is applied to UV to get the texture coords\n * its updated independently from texture uvTransform\n * updates of uvs are tied to that thing\n *\n * @member {PIXI.extras.TextureTransform} PIXI.mesh.Mesh#_uvTransform\n * @private\n */", "meta": { "range": [ 3617, 3921 ], "filename": "Mesh.js", "lineno": 127, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": " transform that is applied to UV to get the texture coords
", "kind": "member", "name": "_uvTransform", "type": { "names": [ "PIXI.extras.TextureTransform" ] }, "access": "private", "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#_uvTransform", "scope": "instance", "___id": "T000002R013144", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_uvTransform", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * whether or not upload uvTransform to shader\n * if its false, then uvs should be pre-multiplied\n * if you change it for generated mesh, please call 'refresh(true)'\n * @member {boolean} PIXI.mesh.Mesh#uploadUvTransform\n * @default false\n */", "meta": { "range": [ 3990, 4283 ], "filename": "Mesh.js", "lineno": 137, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "
its updated independently from texture uvTransform
updates of uvs are tied to that thingwhether or not upload uvTransform to shader
", "kind": "member", "name": "uploadUvTransform", "type": { "names": [ "boolean" ] }, "defaultvalue": "false", "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#uploadUvTransform", "scope": "instance", "___id": "T000002R013146", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshuploadUvTransform", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_renderWebGL' & '_renderCanvas' methods.\n * @member {string} PIXI.mesh.Mesh#pluginName\n * @default 'mesh'\n */", "meta": { "range": [ 4333, 4609 ], "filename": "Mesh.js", "lineno": 146, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": {} }, "description": "
if its false, then uvs should be pre-multiplied
if you change it for generated mesh, please call 'refresh(true)'Plugin that is responsible for rendering this element.
", "kind": "member", "name": "pluginName", "type": { "names": [ "string" ] }, "defaultvalue": "'mesh'", "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#pluginName", "scope": "instance", "___id": "T000002R013148", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshpluginName", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * Different drawing buffer modes supported\n *\n * @static\n * @constant\n * @type {object}\n * @property {number} TRIANGLE_MESH\n * @property {number} TRIANGLES\n */", "meta": { "range": [ 9080, 9141 ], "filename": "Mesh.js", "lineno": 339, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\mesh", "code": { "id": "astnode100142382", "name": "Mesh.DRAW_MODES", "type": "ObjectExpression", "value": "{\"TRIANGLE_MESH\":0,\"TRIANGLES\":1}", "paramnames": [] } }, "description": "
Allows to customize the rendering process without overriding '_renderWebGL' & '_renderCanvas' methods.Different drawing buffer modes supported
", "scope": "static", "kind": "constant", "type": { "names": [ "object" ] }, "properties": [ { "type": { "names": [ "number" ] }, "name": "TRIANGLE_MESH" }, { "type": { "names": [ "number" ] }, "name": "TRIANGLES" } ], "name": "DRAW_MODES", "longname": "PIXI.mesh.Mesh.DRAW_MODES", "memberof": "PIXI.mesh.Mesh", "___id": "T000002R013181", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh.DRAW_MODES", "filepath": "mesh\\Mesh.js" }, { "comment": "/**\n * The array of children of this container.\n *\n * @member {PIXI.DisplayObject[]} PIXI.Container#children\n * @readonly\n */", "meta": { "range": [ 535, 700 ], "filename": "Container.js", "lineno": 28, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The array of children of this container.
", "kind": "member", "name": "children", "type": { "names": [ "Array." ] }, "readonly": true, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#children", "scope": "instance", "inherits": "PIXI.Container#children", "inherited": true, "overrides": "PIXI.Container#children", "___id": "T000002R014465", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshchildren", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * World transform and local transform of this object.\n * This will become read-only later, please do not assign anything there unless you know what are you doing\n *\n * @member {PIXI.TransformBase} PIXI.DisplayObject#transform\n */", "meta": { "range": [ 957, 1231 ], "filename": "DisplayObject.js", "lineno": 35, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": " World transform and local transform of this object.
", "kind": "member", "name": "transform", "type": { "names": [ "PIXI.TransformBase" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#transform", "scope": "instance", "inherits": "PIXI.DisplayObject#transform", "inherited": true, "overrides": "PIXI.Container#transform", "___id": "T000002R014484", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshtransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The opacity of the object.\n *\n * @member {number} PIXI.DisplayObject#alpha\n */", "meta": { "range": [ 1288, 1405 ], "filename": "DisplayObject.js", "lineno": 43, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "
This will become read-only later, please do not assign anything there unless you know what are you doingThe opacity of the object.
", "kind": "member", "name": "alpha", "type": { "names": [ "number" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#alpha", "scope": "instance", "inherits": "PIXI.DisplayObject#alpha", "inherited": true, "overrides": "PIXI.Container#alpha", "___id": "T000002R014485", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshalpha", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The visibility of the object. If false the object will not be drawn, and\n * the updateTransform function will not be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually\n *\n * @member {boolean} PIXI.DisplayObject#visible\n */", "meta": { "range": [ 1439, 1785 ], "filename": "DisplayObject.js", "lineno": 50, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The visibility of the object. If false the object will not be drawn, and
\n
the updateTransform function will not be called.Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually
", "kind": "member", "name": "visible", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#visible", "scope": "instance", "inherits": "PIXI.DisplayObject#visible", "inherited": true, "overrides": "PIXI.Container#visible", "___id": "T000002R014486", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshvisible", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Can this object be rendered, if false the object will not be drawn but the updateTransform\n * methods will still be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds manually\n *\n * @member {boolean} PIXI.DisplayObject#renderable\n */", "meta": { "range": [ 1824, 2148 ], "filename": "DisplayObject.js", "lineno": 60, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "Can this object be rendered, if false the object will not be drawn but the updateTransform
\n
methods will still be called.Only affects recursive calls from parent. You can ask for bounds manually
", "kind": "member", "name": "renderable", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#renderable", "scope": "instance", "inherits": "PIXI.DisplayObject#renderable", "inherited": true, "overrides": "PIXI.Container#renderable", "___id": "T000002R014487", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshrenderable", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The display object container that contains this display object.\n *\n * @member {PIXI.Container} PIXI.DisplayObject#parent\n * @readonly\n */", "meta": { "range": [ 2190, 2374 ], "filename": "DisplayObject.js", "lineno": 70, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The display object container that contains this display object.
", "kind": "member", "name": "parent", "type": { "names": [ "PIXI.Container" ] }, "readonly": true, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#parent", "scope": "instance", "inherits": "PIXI.DisplayObject#parent", "inherited": true, "overrides": "PIXI.Container#parent", "___id": "T000002R014488", "___s": true, "skip": true, "slug": "PIXI.mesh.Meshparent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The multiplied alpha of the displayObject\n *\n * @member {number} PIXI.DisplayObject#worldAlpha\n * @readonly\n */", "meta": { "range": [ 2412, 2570 ], "filename": "DisplayObject.js", "lineno": 78, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The multiplied alpha of the displayObject
", "kind": "member", "name": "worldAlpha", "type": { "names": [ "number" ] }, "readonly": true, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#worldAlpha", "scope": "instance", "inherits": "PIXI.DisplayObject#worldAlpha", "inherited": true, "overrides": "PIXI.Container#worldAlpha", "___id": "T000002R014489", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshworldAlpha", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The area the filter is applied to. This is used as more of an optimisation\n * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle\n *\n * Also works as an interaction mask\n *\n * @member {PIXI.Rectangle} PIXI.DisplayObject#filterArea\n */", "meta": { "range": [ 2609, 2953 ], "filename": "DisplayObject.js", "lineno": 86, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The area the filter is applied to. This is used as more of an optimisation
\n
rather than figuring out the dimensions of the displayObject each frame you can set this rectangleAlso works as an interaction mask
", "kind": "member", "name": "filterArea", "type": { "names": [ "PIXI.Rectangle" ] }, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#filterArea", "scope": "instance", "inherits": "PIXI.DisplayObject#filterArea", "inherited": true, "overrides": "PIXI.Container#filterArea", "___id": "T000002R014490", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshfilterArea", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The bounds object, this is used to calculate and store the bounds of the displayObject\n *\n * @member {PIXI.Rectangle} PIXI.DisplayObject#_bounds\n * @private\n */", "meta": { "range": [ 3063, 3270 ], "filename": "DisplayObject.js", "lineno": 99, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The bounds object, this is used to calculate and store the bounds of the displayObject
", "kind": "member", "name": "_bounds", "type": { "names": [ "PIXI.Rectangle" ] }, "access": "private", "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#_bounds", "scope": "instance", "inherits": "PIXI.DisplayObject#_bounds", "inherited": true, "overrides": "PIXI.Container#_bounds", "___id": "T000002R014491", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_bounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The original, cached mask of the object\n *\n * @member {PIXI.Graphics|PIXI.Sprite} PIXI.DisplayObject#_mask\n * @private\n */", "meta": { "range": [ 3449, 3618 ], "filename": "DisplayObject.js", "lineno": 111, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The original, cached mask of the object
", "kind": "member", "name": "_mask", "type": { "names": [ "PIXI.Graphics", "PIXI.Sprite" ] }, "access": "private", "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#_mask", "scope": "instance", "inherits": "PIXI.DisplayObject#_mask", "inherited": true, "overrides": "PIXI.Container#_mask", "___id": "T000002R014492", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_mask", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * If the object has been destroyed via destroy(). If true, it should not be used.\n *\n * @member {boolean} PIXI.DisplayObject#_destroyed\n * @private\n * @readonly\n */", "meta": { "range": [ 3655, 3872 ], "filename": "DisplayObject.js", "lineno": 119, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "If the object has been destroyed via destroy(). If true, it should not be used.
", "kind": "member", "name": "_destroyed", "type": { "names": [ "boolean" ] }, "access": "private", "readonly": true, "memberof": "PIXI.mesh.Mesh", "longname": "PIXI.mesh.Mesh#_destroyed", "scope": "instance", "inherits": "PIXI.DisplayObject#_destroyed", "inherited": true, "overrides": "PIXI.Container#_destroyed", "___id": "T000002R014493", "___s": true, "skip": true, "slug": "PIXI.mesh.Mesh_destroyed", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Set this to true if you want this display object to be cached as a bitmap.\n * This basically takes a snap shot of the display object as it is at that moment. It can\n * provide a performance benefit for complex static displayObjects.\n * To remove simply set this property to 'false'\n *\n * IMPORTANT GOTCHA - make sure that all your textures are preloaded BEFORE setting this property to true\n * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */", "meta": { "range": [ 1587, 3623 ], "filename": "cacheAsBitmap.js", "lineno": 50, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\extras", "code": { "id": "astnode100053521", "name": "cacheAsBitmap", "type": "ObjectExpression", "value": "{\"get\":\"\",\"set\":\"\"}" } }, "description": "Set this to true if you want this display object to be cached as a bitmap.
\n
This basically takes a snap shot of the display object as it is at that moment. It can
provide a performance benefit for complex static displayObjects.
To remove simply set this property to 'false'IMPORTANT GOTCHA - make sure that all your textures are preloaded BEFORE setting this property to true
", "kind": "member", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.mesh.Mesh", "name": "cacheAsBitmap", "longname": "PIXI.mesh.Mesh#cacheAsBitmap", "scope": "instance", "inherits": "PIXI.DisplayObject#cacheAsBitmap", "inherited": true, "overrides": "PIXI.Container#cacheAsBitmap", "___id": "T000002R014514", "___s": true, "skip": true, "slug": "PIXI.mesh.MeshcacheAsBitmap", "filepath": "extras\\cacheAsBitmap.js" } ], "$staticmethods": [], "$staticproperties": [], "$augments": [ { "comment": "/**\n * A Container represents a collection of display objects.\n * It is the base class of all display objects that act as a container for other objects.\n *\n *```js\n * let container = new PIXI.Container();\n * container.addChild(sprite);\n * ```\n *\n * @class\n * @extends PIXI.DisplayObject\n * @memberof PIXI\n */", "meta": { "range": [ 422, 17240 ], "filename": "Container.js", "lineno": 19, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003509", "name": "Container", "type": "ClassDeclaration", "paramnames": [] } }, "classdesc": "
as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.A Container represents a collection of display objects.
\n
It is the base class of all display objects that act as a container for other objects.", "kind": "class", "augments": [ "PIXI.DisplayObject" ], "memberof": "PIXI", "name": "Container", "longname": "PIXI.Container", "scope": "static", "params": [], "___id": "T000002R000428", "___s": true, "$methods": [ { "comment": "/**\n * Overridable method that can be used by Container subclasses whenever the children array is modified\n *\n * @private\n */", "meta": { "range": [ 886, 936 ], "filename": "Container.js", "lineno": 42, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003526", "name": "Container#onChildrenChange", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "let container = new PIXI.Container();\ncontainer.addChild(sprite);
Overridable method that can be used by Container subclasses whenever the children array is modified
", "access": "private", "name": "onChildrenChange", "longname": "PIXI.Container#onChildrenChange", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "params": [], "___id": "T000002R000432", "___s": true, "skip": true, "slug": "PIXI.ContaineronChildrenChange", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Adds one or more children to the container.\n *\n * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)`\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container\n * @return {PIXI.DisplayObject} The first child that was added.\n */", "meta": { "range": [ 1281, 2509 ], "filename": "Container.js", "lineno": 55, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003530", "name": "Container#addChild", "type": "MethodDefinition", "paramnames": [ "child" ] }, "vars": { "": null } }, "description": "Adds one or more children to the container.
\nMultiple items can be added like so:
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "variable": true, "description": "myContainer.addChild(thingOne, thingTwo, thingThree)
The DisplayObject(s) to add to the container
", "name": "child" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The first child that was added.
" } ], "name": "addChild", "longname": "PIXI.Container#addChild", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R000433", "___s": true, "skip": true, "slug": "PIXI.ContaineraddChild", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown\n *\n * @param {PIXI.DisplayObject} child - The child to add\n * @param {number} index - The index to place the child in\n * @return {PIXI.DisplayObject} The child that was added.\n */", "meta": { "range": [ 2836, 3576 ], "filename": "Container.js", "lineno": 101, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003628", "name": "Container#addChildAt", "type": "MethodDefinition", "paramnames": [ "child", "index" ] }, "vars": { "": null } }, "description": "Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child to add
", "name": "child" }, { "type": { "names": [ "number" ] }, "description": "The index to place the child in
", "name": "index" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child that was added.
" } ], "name": "addChildAt", "longname": "PIXI.Container#addChildAt", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R000438", "___s": true, "skip": true, "slug": "PIXI.ContaineraddChildAt", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Swaps the position of 2 Display Objects within this container.\n *\n * @param {PIXI.DisplayObject} child - First display object to swap\n * @param {PIXI.DisplayObject} child2 - Second display object to swap\n */", "meta": { "range": [ 3821, 4178 ], "filename": "Container.js", "lineno": 135, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003720", "name": "Container#swapChildren", "type": "MethodDefinition", "paramnames": [ "child", "child2" ] }, "vars": { "": null } }, "description": "Swaps the position of 2 Display Objects within this container.
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "First display object to swap
", "name": "child" }, { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "Second display object to swap
", "name": "child2" } ], "name": "swapChildren", "longname": "PIXI.Container#swapChildren", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R000441", "___s": true, "skip": true, "slug": "PIXI.ContainerswapChildren", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Returns the index position of a child DisplayObject instance\n *\n * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify\n * @return {number} The index position of the child display object to identify\n */", "meta": { "range": [ 4440, 4683 ], "filename": "Container.js", "lineno": 156, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003775", "name": "Container#getChildIndex", "type": "MethodDefinition", "paramnames": [ "child" ] }, "vars": { "": null } }, "description": "Returns the index position of a child DisplayObject instance
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The DisplayObject instance to identify
", "name": "child" } ], "returns": [ { "type": { "names": [ "number" ] }, "description": "The index position of the child display object to identify
" } ], "name": "getChildIndex", "longname": "PIXI.Container#getChildIndex", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R000446", "___s": true, "skip": true, "slug": "PIXI.ContainergetChildIndex", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Changes the position of an existing child in the display object container\n *\n * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number\n * @param {number} index - The resulting index number for the child display object\n */", "meta": { "range": [ 5002, 5433 ], "filename": "Container.js", "lineno": 174, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003802", "name": "Container#setChildIndex", "type": "MethodDefinition", "paramnames": [ "child", "index" ] }, "vars": { "": null } }, "description": "Changes the position of an existing child in the display object container
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child DisplayObject instance for which you want to change the index number
", "name": "child" }, { "type": { "names": [ "number" ] }, "description": "The resulting index number for the child display object
", "name": "index" } ], "name": "setChildIndex", "longname": "PIXI.Container#setChildIndex", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R000448", "___s": true, "skip": true, "slug": "PIXI.ContainersetChildIndex", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Returns the child at the specified index\n *\n * @param {number} index - The index to get the child at\n * @return {PIXI.DisplayObject} The child at the given index, if any.\n */", "meta": { "range": [ 5645, 5865 ], "filename": "Container.js", "lineno": 195, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003857", "name": "Container#getChildAt", "type": "MethodDefinition", "paramnames": [ "index" ] }, "vars": { "": null } }, "description": "Returns the child at the specified index
", "params": [ { "type": { "names": [ "number" ] }, "description": "The index to get the child at
", "name": "index" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child at the given index, if any.
" } ], "name": "getChildAt", "longname": "PIXI.Container#getChildAt", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R000450", "___s": true, "skip": true, "slug": "PIXI.ContainergetChildAt", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes one or more children from the container.\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove\n * @return {PIXI.DisplayObject} The first child that was removed.\n */", "meta": { "range": [ 6097, 7212 ], "filename": "Container.js", "lineno": 211, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003888", "name": "Container#removeChild", "type": "MethodDefinition", "paramnames": [ "child" ] }, "vars": { "": null } }, "description": "Removes one or more children from the container.
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "variable": true, "description": "The DisplayObject(s) to remove
", "name": "child" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The first child that was removed.
" } ], "name": "removeChild", "longname": "PIXI.Container#removeChild", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R000451", "___s": true, "skip": true, "slug": "PIXI.ContainerremoveChild", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes a child from the specified index position.\n *\n * @param {number} index - The index to get the child from\n * @return {PIXI.DisplayObject} The child that was removed.\n */", "meta": { "range": [ 7426, 7922 ], "filename": "Container.js", "lineno": 253, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100003984", "name": "Container#removeChildAt", "type": "MethodDefinition", "paramnames": [ "index" ] }, "vars": { "": null } }, "description": "Removes a child from the specified index position.
", "params": [ { "type": { "names": [ "number" ] }, "description": "The index to get the child from
", "name": "index" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child that was removed.
" } ], "name": "removeChildAt", "longname": "PIXI.Container#removeChildAt", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R000457", "___s": true, "skip": true, "slug": "PIXI.ContainerremoveChildAt", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes all children from this container that are within the begin and end indexes.\n *\n * @param {number} [beginIndex=0] - The beginning position.\n * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container.\n * @returns {DisplayObject[]} List of removed children\n */", "meta": { "range": [ 8283, 9328 ], "filename": "Container.js", "lineno": 279, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004040", "name": "Container#removeChildren", "type": "MethodDefinition", "paramnames": [ "beginIndex", "endIndex" ] }, "vars": { "": null } }, "description": "Removes all children from this container that are within the begin and end indexes.
", "params": [ { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The beginning position.
", "name": "beginIndex" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": "this.children.length", "description": "The ending position. Default value is size of the container.
", "name": "endIndex" } ], "returns": [ { "type": { "names": [ "Array." ] }, "description": " List of removed children
" } ], "name": "removeChildren", "longname": "PIXI.Container#removeChildren", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R000461", "___s": true, "skip": true, "slug": "PIXI.ContainerremoveChildren", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Updates the transform on all children of this container for rendering\n */", "meta": { "range": [ 9427, 9901 ], "filename": "Container.js", "lineno": 321, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004188", "name": "Container#updateTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Updates the transform on all children of this container for rendering
", "name": "updateTransform", "longname": "PIXI.Container#updateTransform", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "params": [], "overrides": "PIXI.DisplayObject#updateTransform", "___id": "T000002R000471", "___s": true, "skip": true, "slug": "PIXI.ContainerupdateTransform", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Recalculates the bounds of the container.\n *\n */", "meta": { "range": [ 9979, 10873 ], "filename": "Container.js", "lineno": 345, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004259", "name": "Container#calculateBounds", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Recalculates the bounds of the container.
", "name": "calculateBounds", "longname": "PIXI.Container#calculateBounds", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "params": [], "___id": "T000002R000476", "___s": true, "skip": true, "slug": "PIXI.ContainercalculateBounds", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Recalculates the bounds of the object. Override this to\n * calculate the bounds of the specific object (not including children).\n *\n */", "meta": { "range": [ 11042, 11093 ], "filename": "Container.js", "lineno": 386, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004379", "name": "Container#_calculateBounds", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Recalculates the bounds of the object. Override this to
", "name": "_calculateBounds", "longname": "PIXI.Container#_calculateBounds", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "params": [], "___id": "T000002R000480", "___s": true, "skip": true, "slug": "PIXI.Container_calculateBounds", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.WebGLRenderer} renderer - The renderer\n */", "meta": { "range": [ 11232, 11919 ], "filename": "Container.js", "lineno": 396, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004383", "name": "Container#renderWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "
calculate the bounds of the specific object (not including children).Renders the object using the WebGL renderer
", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderWebGL", "longname": "PIXI.Container#renderWebGL", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "overrides": "PIXI.DisplayObject#renderWebGL", "___id": "T000002R000481", "___s": true, "skip": true, "slug": "PIXI.ContainerrenderWebGL", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Render the object using the WebGL renderer and advanced features.\n *\n * @private\n * @param {PIXI.WebGLRenderer} renderer - The renderer\n */", "meta": { "range": [ 12096, 13593 ], "filename": "Container.js", "lineno": 427, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004456", "name": "Container#renderAdvancedWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Render the object using the WebGL renderer and advanced features.
", "access": "private", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderAdvancedWebGL", "longname": "PIXI.Container#renderAdvancedWebGL", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R000484", "___s": true, "skip": true, "slug": "PIXI.ContainerrenderAdvancedWebGL", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * To be overridden by the subclasses.\n *\n * @private\n * @param {PIXI.WebGLRenderer} renderer - The renderer\n */", "meta": { "range": [ 13740, 13869 ], "filename": "Container.js", "lineno": 491, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004636", "name": "Container#_renderWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "To be overridden by the subclasses.
", "access": "private", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "_renderWebGL", "longname": "PIXI.Container#_renderWebGL", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R000492", "___s": true, "skip": true, "slug": "PIXI.Container_renderWebGL", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * To be overridden by the subclass\n *\n * @private\n * @param {PIXI.CanvasRenderer} renderer - The renderer\n */", "meta": { "range": [ 14014, 14144 ], "filename": "Container.js", "lineno": 502, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004641", "name": "Container#_renderCanvas", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "To be overridden by the subclass
", "access": "private", "params": [ { "type": { "names": [ "PIXI.CanvasRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "_renderCanvas", "longname": "PIXI.Container#_renderCanvas", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R000493", "___s": true, "skip": true, "slug": "PIXI.Container_renderCanvas", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Renders the object using the Canvas renderer\n *\n * @param {PIXI.CanvasRenderer} renderer - The renderer\n */", "meta": { "range": [ 14285, 14873 ], "filename": "Container.js", "lineno": 512, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004646", "name": "Container#renderCanvas", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the Canvas renderer
", "params": [ { "type": { "names": [ "PIXI.CanvasRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderCanvas", "longname": "PIXI.Container#renderCanvas", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "overrides": "PIXI.DisplayObject#renderCanvas", "___id": "T000002R000494", "___s": true, "skip": true, "slug": "PIXI.ContainerrenderCanvas", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes all internal references and listeners as well as removes children from the display list.\n * Do not use a Container after calling `destroy`.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */", "meta": { "range": [ 15730, 16145 ], "filename": "Container.js", "lineno": 550, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004731", "name": "Container#destroy", "type": "MethodDefinition", "paramnames": [ "options" ] }, "vars": { "": null } }, "description": "Removes all internal references and listeners as well as removes children from the display list.
", "params": [ { "type": { "names": [ "object", "boolean" ] }, "optional": true, "description": "
Do not use a Container after callingdestroy
.Options parameter. A boolean will act as if all options
", "name": "options" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
have been set to that valueif set to true, all the children will have their destroy
", "name": "options.children" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
method called as well. 'options' will be passed on to those calls.Only used for child Sprites if options.children is set to true
", "name": "options.texture" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
Should it destroy the texture of the child spriteOnly used for child Sprites if options.children is set to true
", "name": "options.baseTexture" } ], "name": "destroy", "longname": "PIXI.Container#destroy", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "overrides": "PIXI.DisplayObject#destroy", "___id": "T000002R000497", "___s": true, "skip": true, "slug": "PIXI.Containerdestroy", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * The width of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */", "meta": { "range": [ 16302, 16384 ], "filename": "Container.js", "lineno": 572, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004792", "name": "Container#width", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Should it destroy the base texture of the child spriteThe width of the Container, setting this will actually modify the scale to achieve the value set
", "kind": "member", "type": { "names": [ "number" ] }, "name": "width", "longname": "PIXI.Container#width", "memberof": "PIXI.Container", "scope": "instance", "params": [], "___id": "T000002R000501", "___s": true, "skip": true, "slug": "PIXI.Containerwidth", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * The height of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */", "meta": { "range": [ 16845, 16929 ], "filename": "Container.js", "lineno": 598, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004853", "name": "Container#height", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The height of the Container, setting this will actually modify the scale to achieve the value set
", "kind": "member", "type": { "names": [ "number" ] }, "name": "height", "longname": "PIXI.Container#height", "memberof": "PIXI.Container", "scope": "instance", "params": [], "___id": "T000002R000507", "___s": true, "skip": true, "slug": "PIXI.Containerheight", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Overridable method that can be used by Container subclasses whenever the children array is modified\n *\n * @private\n */", "meta": { "range": [ 886, 936 ], "filename": "Container.js", "lineno": 42, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100078205", "name": "Container#onChildrenChange", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Overridable method that can be used by Container subclasses whenever the children array is modified
", "access": "private", "name": "onChildrenChange", "longname": "PIXI.Container#onChildrenChange", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "params": [], "___id": "T000002R007366", "___s": true, "skip": true, "slug": "PIXI.ContaineronChildrenChange", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Adds one or more children to the container.\n *\n * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)`\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container\n * @return {PIXI.DisplayObject} The first child that was added.\n */", "meta": { "range": [ 1281, 2509 ], "filename": "Container.js", "lineno": 55, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100078209", "name": "Container#addChild", "type": "MethodDefinition", "paramnames": [ "child" ] }, "vars": { "": null } }, "description": "Adds one or more children to the container.
\nMultiple items can be added like so:
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "variable": true, "description": "myContainer.addChild(thingOne, thingTwo, thingThree)
The DisplayObject(s) to add to the container
", "name": "child" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The first child that was added.
" } ], "name": "addChild", "longname": "PIXI.Container#addChild", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R007367", "___s": true, "skip": true, "slug": "PIXI.ContaineraddChild", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown\n *\n * @param {PIXI.DisplayObject} child - The child to add\n * @param {number} index - The index to place the child in\n * @return {PIXI.DisplayObject} The child that was added.\n */", "meta": { "range": [ 2836, 3576 ], "filename": "Container.js", "lineno": 101, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100078307", "name": "Container#addChildAt", "type": "MethodDefinition", "paramnames": [ "child", "index" ] }, "vars": { "": null } }, "description": "Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child to add
", "name": "child" }, { "type": { "names": [ "number" ] }, "description": "The index to place the child in
", "name": "index" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child that was added.
" } ], "name": "addChildAt", "longname": "PIXI.Container#addChildAt", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R007372", "___s": true, "skip": true, "slug": "PIXI.ContaineraddChildAt", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Swaps the position of 2 Display Objects within this container.\n *\n * @param {PIXI.DisplayObject} child - First display object to swap\n * @param {PIXI.DisplayObject} child2 - Second display object to swap\n */", "meta": { "range": [ 3821, 4178 ], "filename": "Container.js", "lineno": 135, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100078399", "name": "Container#swapChildren", "type": "MethodDefinition", "paramnames": [ "child", "child2" ] }, "vars": { "": null } }, "description": "Swaps the position of 2 Display Objects within this container.
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "First display object to swap
", "name": "child" }, { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "Second display object to swap
", "name": "child2" } ], "name": "swapChildren", "longname": "PIXI.Container#swapChildren", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R007375", "___s": true, "skip": true, "slug": "PIXI.ContainerswapChildren", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Returns the index position of a child DisplayObject instance\n *\n * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify\n * @return {number} The index position of the child display object to identify\n */", "meta": { "range": [ 4440, 4683 ], "filename": "Container.js", "lineno": 156, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100078454", "name": "Container#getChildIndex", "type": "MethodDefinition", "paramnames": [ "child" ] }, "vars": { "": null } }, "description": "Returns the index position of a child DisplayObject instance
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The DisplayObject instance to identify
", "name": "child" } ], "returns": [ { "type": { "names": [ "number" ] }, "description": "The index position of the child display object to identify
" } ], "name": "getChildIndex", "longname": "PIXI.Container#getChildIndex", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R007380", "___s": true, "skip": true, "slug": "PIXI.ContainergetChildIndex", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Changes the position of an existing child in the display object container\n *\n * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number\n * @param {number} index - The resulting index number for the child display object\n */", "meta": { "range": [ 5002, 5433 ], "filename": "Container.js", "lineno": 174, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100078481", "name": "Container#setChildIndex", "type": "MethodDefinition", "paramnames": [ "child", "index" ] }, "vars": { "": null } }, "description": "Changes the position of an existing child in the display object container
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child DisplayObject instance for which you want to change the index number
", "name": "child" }, { "type": { "names": [ "number" ] }, "description": "The resulting index number for the child display object
", "name": "index" } ], "name": "setChildIndex", "longname": "PIXI.Container#setChildIndex", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R007382", "___s": true, "skip": true, "slug": "PIXI.ContainersetChildIndex", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Returns the child at the specified index\n *\n * @param {number} index - The index to get the child at\n * @return {PIXI.DisplayObject} The child at the given index, if any.\n */", "meta": { "range": [ 5645, 5865 ], "filename": "Container.js", "lineno": 195, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100078536", "name": "Container#getChildAt", "type": "MethodDefinition", "paramnames": [ "index" ] }, "vars": { "": null } }, "description": "Returns the child at the specified index
", "params": [ { "type": { "names": [ "number" ] }, "description": "The index to get the child at
", "name": "index" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child at the given index, if any.
" } ], "name": "getChildAt", "longname": "PIXI.Container#getChildAt", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R007384", "___s": true, "skip": true, "slug": "PIXI.ContainergetChildAt", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes one or more children from the container.\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove\n * @return {PIXI.DisplayObject} The first child that was removed.\n */", "meta": { "range": [ 6097, 7212 ], "filename": "Container.js", "lineno": 211, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100078567", "name": "Container#removeChild", "type": "MethodDefinition", "paramnames": [ "child" ] }, "vars": { "": null } }, "description": "Removes one or more children from the container.
", "params": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "variable": true, "description": "The DisplayObject(s) to remove
", "name": "child" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The first child that was removed.
" } ], "name": "removeChild", "longname": "PIXI.Container#removeChild", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R007385", "___s": true, "skip": true, "slug": "PIXI.ContainerremoveChild", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes a child from the specified index position.\n *\n * @param {number} index - The index to get the child from\n * @return {PIXI.DisplayObject} The child that was removed.\n */", "meta": { "range": [ 7426, 7922 ], "filename": "Container.js", "lineno": 253, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100078663", "name": "Container#removeChildAt", "type": "MethodDefinition", "paramnames": [ "index" ] }, "vars": { "": null } }, "description": "Removes a child from the specified index position.
", "params": [ { "type": { "names": [ "number" ] }, "description": "The index to get the child from
", "name": "index" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The child that was removed.
" } ], "name": "removeChildAt", "longname": "PIXI.Container#removeChildAt", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R007391", "___s": true, "skip": true, "slug": "PIXI.ContainerremoveChildAt", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes all children from this container that are within the begin and end indexes.\n *\n * @param {number} [beginIndex=0] - The beginning position.\n * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container.\n * @returns {DisplayObject[]} List of removed children\n */", "meta": { "range": [ 8283, 9328 ], "filename": "Container.js", "lineno": 279, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100078719", "name": "Container#removeChildren", "type": "MethodDefinition", "paramnames": [ "beginIndex", "endIndex" ] }, "vars": { "": null } }, "description": "Removes all children from this container that are within the begin and end indexes.
", "params": [ { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The beginning position.
", "name": "beginIndex" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": "this.children.length", "description": "The ending position. Default value is size of the container.
", "name": "endIndex" } ], "returns": [ { "type": { "names": [ "Array." ] }, "description": " List of removed children
" } ], "name": "removeChildren", "longname": "PIXI.Container#removeChildren", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R007395", "___s": true, "skip": true, "slug": "PIXI.ContainerremoveChildren", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Updates the transform on all children of this container for rendering\n */", "meta": { "range": [ 9427, 9901 ], "filename": "Container.js", "lineno": 321, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100078867", "name": "Container#updateTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Updates the transform on all children of this container for rendering
", "name": "updateTransform", "longname": "PIXI.Container#updateTransform", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "params": [], "overrides": "PIXI.DisplayObject#updateTransform", "___id": "T000002R007405", "___s": true, "skip": true, "slug": "PIXI.ContainerupdateTransform", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Recalculates the bounds of the container.\n *\n */", "meta": { "range": [ 9979, 10873 ], "filename": "Container.js", "lineno": 345, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100078938", "name": "Container#calculateBounds", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Recalculates the bounds of the container.
", "name": "calculateBounds", "longname": "PIXI.Container#calculateBounds", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "params": [], "___id": "T000002R007410", "___s": true, "skip": true, "slug": "PIXI.ContainercalculateBounds", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Recalculates the bounds of the object. Override this to\n * calculate the bounds of the specific object (not including children).\n *\n */", "meta": { "range": [ 11042, 11093 ], "filename": "Container.js", "lineno": 386, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079058", "name": "Container#_calculateBounds", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Recalculates the bounds of the object. Override this to
", "name": "_calculateBounds", "longname": "PIXI.Container#_calculateBounds", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "params": [], "___id": "T000002R007414", "___s": true, "skip": true, "slug": "PIXI.Container_calculateBounds", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.WebGLRenderer} renderer - The renderer\n */", "meta": { "range": [ 11232, 11919 ], "filename": "Container.js", "lineno": 396, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079062", "name": "Container#renderWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "
calculate the bounds of the specific object (not including children).Renders the object using the WebGL renderer
", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderWebGL", "longname": "PIXI.Container#renderWebGL", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "overrides": "PIXI.DisplayObject#renderWebGL", "___id": "T000002R007415", "___s": true, "skip": true, "slug": "PIXI.ContainerrenderWebGL", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Render the object using the WebGL renderer and advanced features.\n *\n * @private\n * @param {PIXI.WebGLRenderer} renderer - The renderer\n */", "meta": { "range": [ 12096, 13593 ], "filename": "Container.js", "lineno": 427, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079135", "name": "Container#renderAdvancedWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Render the object using the WebGL renderer and advanced features.
", "access": "private", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderAdvancedWebGL", "longname": "PIXI.Container#renderAdvancedWebGL", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R007418", "___s": true, "skip": true, "slug": "PIXI.ContainerrenderAdvancedWebGL", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * To be overridden by the subclasses.\n *\n * @private\n * @param {PIXI.WebGLRenderer} renderer - The renderer\n */", "meta": { "range": [ 13740, 13869 ], "filename": "Container.js", "lineno": 491, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079315", "name": "Container#_renderWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "To be overridden by the subclasses.
", "access": "private", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "_renderWebGL", "longname": "PIXI.Container#_renderWebGL", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R007426", "___s": true, "skip": true, "slug": "PIXI.Container_renderWebGL", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * To be overridden by the subclass\n *\n * @private\n * @param {PIXI.CanvasRenderer} renderer - The renderer\n */", "meta": { "range": [ 14014, 14144 ], "filename": "Container.js", "lineno": 502, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079320", "name": "Container#_renderCanvas", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "To be overridden by the subclass
", "access": "private", "params": [ { "type": { "names": [ "PIXI.CanvasRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "_renderCanvas", "longname": "PIXI.Container#_renderCanvas", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "___id": "T000002R007427", "___s": true, "skip": true, "slug": "PIXI.Container_renderCanvas", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Renders the object using the Canvas renderer\n *\n * @param {PIXI.CanvasRenderer} renderer - The renderer\n */", "meta": { "range": [ 14285, 14873 ], "filename": "Container.js", "lineno": 512, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079325", "name": "Container#renderCanvas", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the Canvas renderer
", "params": [ { "type": { "names": [ "PIXI.CanvasRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderCanvas", "longname": "PIXI.Container#renderCanvas", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "overrides": "PIXI.DisplayObject#renderCanvas", "___id": "T000002R007428", "___s": true, "skip": true, "slug": "PIXI.ContainerrenderCanvas", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * Removes all internal references and listeners as well as removes children from the display list.\n * Do not use a Container after calling `destroy`.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */", "meta": { "range": [ 15730, 16145 ], "filename": "Container.js", "lineno": 550, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079410", "name": "Container#destroy", "type": "MethodDefinition", "paramnames": [ "options" ] }, "vars": { "": null } }, "description": "Removes all internal references and listeners as well as removes children from the display list.
", "params": [ { "type": { "names": [ "object", "boolean" ] }, "optional": true, "description": "
Do not use a Container after callingdestroy
.Options parameter. A boolean will act as if all options
", "name": "options" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
have been set to that valueif set to true, all the children will have their destroy
", "name": "options.children" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
method called as well. 'options' will be passed on to those calls.Only used for child Sprites if options.children is set to true
", "name": "options.texture" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
Should it destroy the texture of the child spriteOnly used for child Sprites if options.children is set to true
", "name": "options.baseTexture" } ], "name": "destroy", "longname": "PIXI.Container#destroy", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "overrides": "PIXI.DisplayObject#destroy", "___id": "T000002R007431", "___s": true, "skip": true, "slug": "PIXI.Containerdestroy", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * The width of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */", "meta": { "range": [ 16302, 16384 ], "filename": "Container.js", "lineno": 572, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079471", "name": "Container#width", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Should it destroy the base texture of the child spriteThe width of the Container, setting this will actually modify the scale to achieve the value set
", "kind": "member", "type": { "names": [ "number" ] }, "name": "width", "longname": "PIXI.Container#width", "memberof": "PIXI.Container", "scope": "instance", "params": [], "___id": "T000002R007435", "___s": true, "skip": true, "slug": "PIXI.Containerwidth", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * The height of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */", "meta": { "range": [ 16845, 16929 ], "filename": "Container.js", "lineno": 598, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079532", "name": "Container#height", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The height of the Container, setting this will actually modify the scale to achieve the value set
", "kind": "member", "type": { "names": [ "number" ] }, "name": "height", "longname": "PIXI.Container#height", "memberof": "PIXI.Container", "scope": "instance", "params": [], "___id": "T000002R007441", "___s": true, "skip": true, "slug": "PIXI.Containerheight", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * @private\n * @member {PIXI.DisplayObject}\n */", "meta": { "range": [ 3985, 4208 ], "filename": "DisplayObject.js", "lineno": 133, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005086", "name": "DisplayObject#_tempDisplayObjectParent", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "access": "private", "kind": "member", "type": { "names": [ "PIXI.DisplayObject" ] }, "name": "_tempDisplayObjectParent", "longname": "PIXI.Container#_tempDisplayObjectParent", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#_tempDisplayObjectParent", "inherited": true, "overrides": "PIXI.DisplayObject#_tempDisplayObjectParent", "___id": "T000002R013881", "___s": true, "skip": true, "slug": "PIXI.Container_tempDisplayObjectParent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * recursively updates transform of all objects from the root to this one\n * internal function for toLocal()\n */", "meta": { "range": [ 4681, 5011 ], "filename": "DisplayObject.js", "lineno": 161, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005145", "name": "DisplayObject#_recursivePostUpdateTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "recursively updates transform of all objects from the root to this one
", "name": "_recursivePostUpdateTransform", "longname": "PIXI.Container#_recursivePostUpdateTransform", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#_recursivePostUpdateTransform", "inherited": true, "overrides": "PIXI.DisplayObject#_recursivePostUpdateTransform", "___id": "T000002R013882", "___s": true, "skip": true, "slug": "PIXI.Container_recursivePostUpdateTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Retrieves the bounds of the displayObject as a rectangle object.\n *\n * @param {boolean} skipUpdate - setting to true will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost\n * @param {PIXI.Rectangle} rect - Optional rectangle to store the result of the bounds calculation\n * @return {PIXI.Rectangle} the rectangular bounding area\n */", "meta": { "range": [ 5508, 6276 ], "filename": "DisplayObject.js", "lineno": 183, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005186", "name": "DisplayObject#getBounds", "type": "MethodDefinition", "paramnames": [ "skipUpdate", "rect" ] }, "vars": { "": null } }, "description": "
internal function for toLocal()Retrieves the bounds of the displayObject as a rectangle object.
", "params": [ { "type": { "names": [ "boolean" ] }, "description": "setting to true will stop the transforms of the scene graph from
", "name": "skipUpdate" }, { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "
being updated. This means the calculation returned MAY be out of date BUT will give you a
nice performance boostOptional rectangle to store the result of the bounds calculation
", "name": "rect" } ], "returns": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "the rectangular bounding area
" } ], "name": "getBounds", "longname": "PIXI.Container#getBounds", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "inherits": "PIXI.DisplayObject#getBounds", "inherited": true, "overrides": "PIXI.DisplayObject#getBounds", "___id": "T000002R013883", "___s": true, "skip": true, "slug": "PIXI.ContainergetBounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Retrieves the local bounds of the displayObject as a rectangle object\n *\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation\n * @return {PIXI.Rectangle} the rectangular bounding area\n */", "meta": { "range": [ 6549, 7118 ], "filename": "DisplayObject.js", "lineno": 224, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005277", "name": "DisplayObject#getLocalBounds", "type": "MethodDefinition", "paramnames": [ "rect" ] }, "vars": { "": null } }, "description": "Retrieves the local bounds of the displayObject as a rectangle object
", "params": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "optional": true, "description": "Optional rectangle to store the result of the bounds calculation
", "name": "rect" } ], "returns": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "the rectangular bounding area
" } ], "name": "getLocalBounds", "longname": "PIXI.Container#getLocalBounds", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "inherits": "PIXI.DisplayObject#getLocalBounds", "inherited": true, "overrides": "PIXI.DisplayObject#getLocalBounds", "___id": "T000002R013884", "___s": true, "skip": true, "slug": "PIXI.ContainergetLocalBounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Calculates the global position of the display object\n *\n * @param {PIXI.Point} position - The world origin to calculate from\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point)\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform.\n * @return {PIXI.Point} A point object representing the position of this object\n */", "meta": { "range": [ 7580, 8444 ], "filename": "DisplayObject.js", "lineno": 259, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005356", "name": "DisplayObject#toGlobal", "type": "MethodDefinition", "paramnames": [ "position", "point", "skipUpdate" ] }, "vars": { "": null } }, "description": "Calculates the global position of the display object
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "The world origin to calculate from
", "name": "position" }, { "type": { "names": [ "PIXI.Point" ] }, "optional": true, "description": "A Point object in which to store the value, optional
", "name": "point" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
(otherwise will create a new Point)Should we skip the update transform.
", "name": "skipUpdate" } ], "returns": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "A point object representing the position of this object
" } ], "name": "toGlobal", "longname": "PIXI.Container#toGlobal", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "inherits": "PIXI.DisplayObject#toGlobal", "inherited": true, "overrides": "PIXI.DisplayObject#toGlobal", "___id": "T000002R013885", "___s": true, "skip": true, "slug": "PIXI.ContainertoGlobal", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Calculates the local position of the display object relative to another point\n *\n * @param {PIXI.Point} position - The world origin to calculate from\n * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point)\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform\n * @return {PIXI.Point} A point object representing the position of this object\n */", "meta": { "range": [ 9030, 10001 ], "filename": "DisplayObject.js", "lineno": 294, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005414", "name": "DisplayObject#toLocal", "type": "MethodDefinition", "paramnames": [ "position", "from", "point", "skipUpdate" ] }, "vars": { "": null } }, "description": "Calculates the local position of the display object relative to another point
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "The world origin to calculate from
", "name": "position" }, { "type": { "names": [ "PIXI.DisplayObject" ] }, "optional": true, "description": "The DisplayObject to calculate the global position from
", "name": "from" }, { "type": { "names": [ "PIXI.Point" ] }, "optional": true, "description": "A Point object in which to store the value, optional
", "name": "point" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
(otherwise will create a new Point)Should we skip the update transform
", "name": "skipUpdate" } ], "returns": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "A point object representing the position of this object
" } ], "name": "toLocal", "longname": "PIXI.Container#toLocal", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "inherits": "PIXI.DisplayObject#toLocal", "inherited": true, "overrides": "PIXI.DisplayObject#toLocal", "___id": "T000002R013886", "___s": true, "skip": true, "slug": "PIXI.ContainertoLocal", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Set the parent Container of this DisplayObject\n *\n * @param {PIXI.Container} container - The Container to add this DisplayObject to\n * @return {PIXI.Container} The Container that this DisplayObject was added to\n */", "meta": { "range": [ 10720, 10953 ], "filename": "DisplayObject.js", "lineno": 350, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005494", "name": "DisplayObject#setParent", "type": "MethodDefinition", "paramnames": [ "container" ] }, "vars": { "": null } }, "description": "Set the parent Container of this DisplayObject
", "params": [ { "type": { "names": [ "PIXI.Container" ] }, "description": "The Container to add this DisplayObject to
", "name": "container" } ], "returns": [ { "type": { "names": [ "PIXI.Container" ] }, "description": "The Container that this DisplayObject was added to
" } ], "name": "setParent", "longname": "PIXI.Container#setParent", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "inherits": "PIXI.DisplayObject#setParent", "inherited": true, "overrides": "PIXI.DisplayObject#setParent", "___id": "T000002R013887", "___s": true, "skip": true, "slug": "PIXI.ContainersetParent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Convenience function to set the position, scale, skew and pivot at once.\n *\n * @param {number} [x=0] - The X position\n * @param {number} [y=0] - The Y position\n * @param {number} [scaleX=1] - The X scale value\n * @param {number} [scaleY=1] - The Y scale value\n * @param {number} [rotation=0] - The rotation\n * @param {number} [skewX=0] - The X skew value\n * @param {number} [skewY=0] - The Y skew value\n * @param {number} [pivotX=0] - The X pivot value\n * @param {number} [pivotY=0] - The Y pivot value\n * @return {PIXI.DisplayObject} The DisplayObject instance\n */", "meta": { "range": [ 11588, 12034 ], "filename": "DisplayObject.js", "lineno": 376, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005520", "name": "DisplayObject#setTransform", "type": "MethodDefinition", "paramnames": [ "x", "y", "scaleX", "scaleY", "rotation", "skewX", "skewY", "pivotX", "pivotY" ] }, "vars": { "": null } }, "description": "Convenience function to set the position, scale, skew and pivot at once.
", "params": [ { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X position
", "name": "x" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y position
", "name": "y" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 1, "description": "The X scale value
", "name": "scaleX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 1, "description": "The Y scale value
", "name": "scaleY" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The rotation
", "name": "rotation" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X skew value
", "name": "skewX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y skew value
", "name": "skewY" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X pivot value
", "name": "pivotX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y pivot value
", "name": "pivotY" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The DisplayObject instance
" } ], "name": "setTransform", "longname": "PIXI.Container#setTransform", "kind": "function", "memberof": "PIXI.Container", "scope": "instance", "inherits": "PIXI.DisplayObject#setTransform", "inherited": true, "overrides": "PIXI.DisplayObject#setTransform", "___id": "T000002R013888", "___s": true, "skip": true, "slug": "PIXI.ContainersetTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n * An alias to position.x\n *\n * @member {number}\n */", "meta": { "range": [ 12966, 13017 ], "filename": "DisplayObject.js", "lineno": 427, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005707", "name": "DisplayObject#x", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The position of the displayObject on the x axis relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "x", "longname": "PIXI.Container#x", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#x", "inherited": true, "overrides": "PIXI.DisplayObject#x", "___id": "T000002R013889", "___s": true, "skip": true, "slug": "PIXI.Containerx", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The position of the displayObject on the y axis relative to the local coordinates of the parent.\n * An alias to position.y\n *\n * @member {number}\n */", "meta": { "range": [ 13314, 13365 ], "filename": "DisplayObject.js", "lineno": 443, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005732", "name": "DisplayObject#y", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
An alias to position.xThe position of the displayObject on the y axis relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "y", "longname": "PIXI.Container#y", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#y", "inherited": true, "overrides": "PIXI.DisplayObject#y", "___id": "T000002R013890", "___s": true, "skip": true, "slug": "PIXI.Containery", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Current transform of the object based on world (parent) factors\n *\n * @member {PIXI.Matrix}\n * @readonly\n */", "meta": { "range": [ 13621, 13699 ], "filename": "DisplayObject.js", "lineno": 459, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005757", "name": "DisplayObject#worldTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
An alias to position.yCurrent transform of the object based on world (parent) factors
", "kind": "member", "type": { "names": [ "PIXI.Matrix" ] }, "readonly": true, "name": "worldTransform", "longname": "PIXI.Container#worldTransform", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#worldTransform", "inherited": true, "overrides": "PIXI.DisplayObject#worldTransform", "___id": "T000002R013891", "___s": true, "skip": true, "slug": "PIXI.ContainerworldTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Current transform of the object based on local factors: position, scale, other stuff\n *\n * @member {PIXI.Matrix}\n * @readonly\n */", "meta": { "range": [ 13866, 13944 ], "filename": "DisplayObject.js", "lineno": 470, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005767", "name": "DisplayObject#localTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Current transform of the object based on local factors: position, scale, other stuff
", "kind": "member", "type": { "names": [ "PIXI.Matrix" ] }, "readonly": true, "name": "localTransform", "longname": "PIXI.Container#localTransform", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#localTransform", "inherited": true, "overrides": "PIXI.DisplayObject#localTransform", "___id": "T000002R013892", "___s": true, "skip": true, "slug": "PIXI.ContainerlocalTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The coordinate of the object relative to the local coordinates of the parent.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14149, 14215 ], "filename": "DisplayObject.js", "lineno": 481, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005777", "name": "DisplayObject#position", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The coordinate of the object relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "position", "longname": "PIXI.Container#position", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#position", "inherited": true, "overrides": "PIXI.DisplayObject#position", "___id": "T000002R013893", "___s": true, "skip": true, "slug": "PIXI.Containerposition", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The scale factor of the object.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14493, 14553 ], "filename": "DisplayObject.js", "lineno": 497, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005802", "name": "DisplayObject#scale", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The scale factor of the object.
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "scale", "longname": "PIXI.Container#scale", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#scale", "inherited": true, "overrides": "PIXI.DisplayObject#scale", "___id": "T000002R013894", "___s": true, "skip": true, "slug": "PIXI.Containerscale", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The pivot point of the displayObject that it rotates around\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14853, 14913 ], "filename": "DisplayObject.js", "lineno": 513, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005827", "name": "DisplayObject#pivot", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The pivot point of the displayObject that it rotates around
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "pivot", "longname": "PIXI.Container#pivot", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#pivot", "inherited": true, "overrides": "PIXI.DisplayObject#pivot", "___id": "T000002R013895", "___s": true, "skip": true, "slug": "PIXI.Containerpivot", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The skew factor for the object in radians.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.ObservablePoint}\n */", "meta": { "range": [ 15185, 15243 ], "filename": "DisplayObject.js", "lineno": 529, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005852", "name": "DisplayObject#skew", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The skew factor for the object in radians.
", "kind": "member", "type": { "names": [ "PIXI.ObservablePoint" ] }, "name": "skew", "longname": "PIXI.Container#skew", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#skew", "inherited": true, "overrides": "PIXI.DisplayObject#skew", "___id": "T000002R013896", "___s": true, "skip": true, "slug": "PIXI.Containerskew", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The rotation of the object in radians.\n *\n * @member {number}\n */", "meta": { "range": [ 15453, 15519 ], "filename": "DisplayObject.js", "lineno": 544, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005877", "name": "DisplayObject#rotation", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The rotation of the object in radians.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "rotation", "longname": "PIXI.Container#rotation", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#rotation", "inherited": true, "overrides": "PIXI.DisplayObject#rotation", "___id": "T000002R013897", "___s": true, "skip": true, "slug": "PIXI.Containerrotation", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Indicates if the object is globally visible.\n *\n * @member {boolean}\n * @readonly\n */", "meta": { "range": [ 15757, 16002 ], "filename": "DisplayObject.js", "lineno": 560, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005900", "name": "DisplayObject#worldVisible", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Indicates if the object is globally visible.
", "kind": "member", "type": { "names": [ "boolean" ] }, "readonly": true, "name": "worldVisible", "longname": "PIXI.Container#worldVisible", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#worldVisible", "inherited": true, "overrides": "PIXI.DisplayObject#worldVisible", "___id": "T000002R013898", "___s": true, "skip": true, "slug": "PIXI.ContainerworldVisible", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Sets a mask for the displayObject. A mask is an object that limits the visibility of an\n * object to the shape of the mask applied to it. In PIXI a regular mask must be a\n * PIXI.Graphics or a PIXI.Sprite object. This allows for much faster masking in canvas as it\n * utilises shape clipping. To remove a mask, set this property to null.\n *\n * @todo For the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask.\n *\n * @member {PIXI.Graphics|PIXI.Sprite}\n */", "meta": { "range": [ 16524, 16573 ], "filename": "DisplayObject.js", "lineno": 587, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005927", "name": "DisplayObject#mask", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Sets a mask for the displayObject. A mask is an object that limits the visibility of an
", "todo": [ "For the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask." ], "kind": "member", "type": { "names": [ "PIXI.Graphics", "PIXI.Sprite" ] }, "name": "mask", "longname": "PIXI.Container#mask", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#mask", "inherited": true, "overrides": "PIXI.DisplayObject#mask", "___id": "T000002R013899", "___s": true, "skip": true, "slug": "PIXI.Containermask", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Sets the filters for the displayObject.\n * * IMPORTANT: This is a webGL only feature and will be ignored by the canvas renderer.\n * To remove filters simply set this property to 'null'\n *\n * @member {PIXI.Filter[]}\n */", "meta": { "range": [ 17106, 17186 ], "filename": "DisplayObject.js", "lineno": 614, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005972", "name": "DisplayObject#filters", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
object to the shape of the mask applied to it. In PIXI a regular mask must be a
PIXI.Graphics or a PIXI.Sprite object. This allows for much faster masking in canvas as it
utilises shape clipping. To remove a mask, set this property to null.Sets the filters for the displayObject.
\n\n
", "kind": "member", "type": { "names": [ "Array.- IMPORTANT: This is a webGL only feature and will be ignored by the canvas renderer.
\n
To remove filters simply set this property to 'null'" ] }, "name": "filters", "longname": "PIXI.Container#filters", "memberof": "PIXI.Container", "scope": "instance", "params": [], "inherits": "PIXI.DisplayObject#filters", "inherited": true, "overrides": "PIXI.DisplayObject#filters", "___id": "T000002R013900", "___s": true, "skip": true, "slug": "PIXI.Containerfilters", "filepath": "core\\display\\DisplayObject.js" } ], "$attributes": [ { "comment": "/**\n * The array of children of this container.\n *\n * @member {PIXI.DisplayObject[]} PIXI.Container#children\n * @readonly\n */", "meta": { "range": [ 535, 700 ], "filename": "Container.js", "lineno": 28, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": " The array of children of this container.
", "kind": "member", "name": "children", "type": { "names": [ "Array." ] }, "readonly": true, "memberof": "PIXI.Container", "longname": "PIXI.Container#children", "scope": "instance", "___id": "T000002R000430", "___s": true, "skip": true, "slug": "PIXI.Containerchildren", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * The array of children of this container.\n *\n * @member {PIXI.DisplayObject[]} PIXI.Container#children\n * @readonly\n */", "meta": { "range": [ 535, 700 ], "filename": "Container.js", "lineno": 28, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": " The array of children of this container.
", "kind": "member", "name": "children", "type": { "names": [ "Array." ] }, "readonly": true, "memberof": "PIXI.Container", "longname": "PIXI.Container#children", "scope": "instance", "___id": "T000002R007364", "___s": true, "skip": true, "slug": "PIXI.Containerchildren", "filepath": "core\\display\\Container.js" }, { "comment": "/**\n * World transform and local transform of this object.\n * This will become read-only later, please do not assign anything there unless you know what are you doing\n *\n * @member {PIXI.TransformBase} PIXI.DisplayObject#transform\n */", "meta": { "range": [ 957, 1231 ], "filename": "DisplayObject.js", "lineno": 35, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": " World transform and local transform of this object.
", "kind": "member", "name": "transform", "type": { "names": [ "PIXI.TransformBase" ] }, "memberof": "PIXI.Container", "longname": "PIXI.Container#transform", "scope": "instance", "inherits": "PIXI.DisplayObject#transform", "inherited": true, "overrides": "PIXI.DisplayObject#transform", "___id": "T000002R013871", "___s": true, "skip": true, "slug": "PIXI.Containertransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The opacity of the object.\n *\n * @member {number} PIXI.DisplayObject#alpha\n */", "meta": { "range": [ 1288, 1405 ], "filename": "DisplayObject.js", "lineno": 43, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "
This will become read-only later, please do not assign anything there unless you know what are you doingThe opacity of the object.
", "kind": "member", "name": "alpha", "type": { "names": [ "number" ] }, "memberof": "PIXI.Container", "longname": "PIXI.Container#alpha", "scope": "instance", "inherits": "PIXI.DisplayObject#alpha", "inherited": true, "overrides": "PIXI.DisplayObject#alpha", "___id": "T000002R013872", "___s": true, "skip": true, "slug": "PIXI.Containeralpha", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The visibility of the object. If false the object will not be drawn, and\n * the updateTransform function will not be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually\n *\n * @member {boolean} PIXI.DisplayObject#visible\n */", "meta": { "range": [ 1439, 1785 ], "filename": "DisplayObject.js", "lineno": 50, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The visibility of the object. If false the object will not be drawn, and
\n
the updateTransform function will not be called.Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually
", "kind": "member", "name": "visible", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.Container", "longname": "PIXI.Container#visible", "scope": "instance", "inherits": "PIXI.DisplayObject#visible", "inherited": true, "overrides": "PIXI.DisplayObject#visible", "___id": "T000002R013873", "___s": true, "skip": true, "slug": "PIXI.Containervisible", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Can this object be rendered, if false the object will not be drawn but the updateTransform\n * methods will still be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds manually\n *\n * @member {boolean} PIXI.DisplayObject#renderable\n */", "meta": { "range": [ 1824, 2148 ], "filename": "DisplayObject.js", "lineno": 60, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "Can this object be rendered, if false the object will not be drawn but the updateTransform
\n
methods will still be called.Only affects recursive calls from parent. You can ask for bounds manually
", "kind": "member", "name": "renderable", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.Container", "longname": "PIXI.Container#renderable", "scope": "instance", "inherits": "PIXI.DisplayObject#renderable", "inherited": true, "overrides": "PIXI.DisplayObject#renderable", "___id": "T000002R013874", "___s": true, "skip": true, "slug": "PIXI.Containerrenderable", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The display object container that contains this display object.\n *\n * @member {PIXI.Container} PIXI.DisplayObject#parent\n * @readonly\n */", "meta": { "range": [ 2190, 2374 ], "filename": "DisplayObject.js", "lineno": 70, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The display object container that contains this display object.
", "kind": "member", "name": "parent", "type": { "names": [ "PIXI.Container" ] }, "readonly": true, "memberof": "PIXI.Container", "longname": "PIXI.Container#parent", "scope": "instance", "inherits": "PIXI.DisplayObject#parent", "inherited": true, "overrides": "PIXI.DisplayObject#parent", "___id": "T000002R013875", "___s": true, "skip": true, "slug": "PIXI.Containerparent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The multiplied alpha of the displayObject\n *\n * @member {number} PIXI.DisplayObject#worldAlpha\n * @readonly\n */", "meta": { "range": [ 2412, 2570 ], "filename": "DisplayObject.js", "lineno": 78, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The multiplied alpha of the displayObject
", "kind": "member", "name": "worldAlpha", "type": { "names": [ "number" ] }, "readonly": true, "memberof": "PIXI.Container", "longname": "PIXI.Container#worldAlpha", "scope": "instance", "inherits": "PIXI.DisplayObject#worldAlpha", "inherited": true, "overrides": "PIXI.DisplayObject#worldAlpha", "___id": "T000002R013876", "___s": true, "skip": true, "slug": "PIXI.ContainerworldAlpha", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The area the filter is applied to. This is used as more of an optimisation\n * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle\n *\n * Also works as an interaction mask\n *\n * @member {PIXI.Rectangle} PIXI.DisplayObject#filterArea\n */", "meta": { "range": [ 2609, 2953 ], "filename": "DisplayObject.js", "lineno": 86, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The area the filter is applied to. This is used as more of an optimisation
\n
rather than figuring out the dimensions of the displayObject each frame you can set this rectangleAlso works as an interaction mask
", "kind": "member", "name": "filterArea", "type": { "names": [ "PIXI.Rectangle" ] }, "memberof": "PIXI.Container", "longname": "PIXI.Container#filterArea", "scope": "instance", "inherits": "PIXI.DisplayObject#filterArea", "inherited": true, "overrides": "PIXI.DisplayObject#filterArea", "___id": "T000002R013877", "___s": true, "skip": true, "slug": "PIXI.ContainerfilterArea", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The bounds object, this is used to calculate and store the bounds of the displayObject\n *\n * @member {PIXI.Rectangle} PIXI.DisplayObject#_bounds\n * @private\n */", "meta": { "range": [ 3063, 3270 ], "filename": "DisplayObject.js", "lineno": 99, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The bounds object, this is used to calculate and store the bounds of the displayObject
", "kind": "member", "name": "_bounds", "type": { "names": [ "PIXI.Rectangle" ] }, "access": "private", "memberof": "PIXI.Container", "longname": "PIXI.Container#_bounds", "scope": "instance", "inherits": "PIXI.DisplayObject#_bounds", "inherited": true, "overrides": "PIXI.DisplayObject#_bounds", "___id": "T000002R013878", "___s": true, "skip": true, "slug": "PIXI.Container_bounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The original, cached mask of the object\n *\n * @member {PIXI.Graphics|PIXI.Sprite} PIXI.DisplayObject#_mask\n * @private\n */", "meta": { "range": [ 3449, 3618 ], "filename": "DisplayObject.js", "lineno": 111, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The original, cached mask of the object
", "kind": "member", "name": "_mask", "type": { "names": [ "PIXI.Graphics", "PIXI.Sprite" ] }, "access": "private", "memberof": "PIXI.Container", "longname": "PIXI.Container#_mask", "scope": "instance", "inherits": "PIXI.DisplayObject#_mask", "inherited": true, "overrides": "PIXI.DisplayObject#_mask", "___id": "T000002R013879", "___s": true, "skip": true, "slug": "PIXI.Container_mask", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * If the object has been destroyed via destroy(). If true, it should not be used.\n *\n * @member {boolean} PIXI.DisplayObject#_destroyed\n * @private\n * @readonly\n */", "meta": { "range": [ 3655, 3872 ], "filename": "DisplayObject.js", "lineno": 119, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "If the object has been destroyed via destroy(). If true, it should not be used.
", "kind": "member", "name": "_destroyed", "type": { "names": [ "boolean" ] }, "access": "private", "readonly": true, "memberof": "PIXI.Container", "longname": "PIXI.Container#_destroyed", "scope": "instance", "inherits": "PIXI.DisplayObject#_destroyed", "inherited": true, "overrides": "PIXI.DisplayObject#_destroyed", "___id": "T000002R013880", "___s": true, "skip": true, "slug": "PIXI.Container_destroyed", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Set this to true if you want this display object to be cached as a bitmap.\n * This basically takes a snap shot of the display object as it is at that moment. It can\n * provide a performance benefit for complex static displayObjects.\n * To remove simply set this property to 'false'\n *\n * IMPORTANT GOTCHA - make sure that all your textures are preloaded BEFORE setting this property to true\n * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */", "meta": { "range": [ 1587, 3623 ], "filename": "cacheAsBitmap.js", "lineno": 50, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\extras", "code": { "id": "astnode100053521", "name": "cacheAsBitmap", "type": "ObjectExpression", "value": "{\"get\":\"\",\"set\":\"\"}" } }, "description": "Set this to true if you want this display object to be cached as a bitmap.
\n
This basically takes a snap shot of the display object as it is at that moment. It can
provide a performance benefit for complex static displayObjects.
To remove simply set this property to 'false'IMPORTANT GOTCHA - make sure that all your textures are preloaded BEFORE setting this property to true
", "kind": "member", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.Container", "name": "cacheAsBitmap", "longname": "PIXI.Container#cacheAsBitmap", "scope": "instance", "inherits": "PIXI.DisplayObject#cacheAsBitmap", "inherited": true, "overrides": "PIXI.DisplayObject#cacheAsBitmap", "___id": "T000002R013901", "___s": true, "skip": true, "slug": "PIXI.ContainercacheAsBitmap", "filepath": "extras\\cacheAsBitmap.js" } ], "$staticmethods": [], "$staticproperties": [], "$augments": [ { "comment": "/**\n * The base class for all objects that are rendered on the screen.\n * This is an abstract class and should not be used on its own rather it should be extended.\n *\n * @class\n * @extends EventEmitter\n * @mixes PIXI.interaction.interactiveTarget\n * @memberof PIXI\n */", "meta": { "range": [ 627, 17309 ], "filename": "DisplayObject.js", "lineno": 21, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100004957", "name": "DisplayObject", "type": "ClassDeclaration", "paramnames": [] } }, "classdesc": "
as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.The base class for all objects that are rendered on the screen.
", "kind": "class", "augments": [ "EventEmitter" ], "mixes": [ "PIXI.interaction.interactiveTarget" ], "memberof": "PIXI", "name": "DisplayObject", "longname": "PIXI.DisplayObject", "scope": "static", "params": [], "___id": "T000002R000515", "___s": true, "$methods": [ { "comment": "/**\n * @private\n * @member {PIXI.DisplayObject}\n */", "meta": { "range": [ 3985, 4208 ], "filename": "DisplayObject.js", "lineno": 133, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005086", "name": "DisplayObject#_tempDisplayObjectParent", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "access": "private", "kind": "member", "type": { "names": [ "PIXI.DisplayObject" ] }, "name": "_tempDisplayObjectParent", "longname": "PIXI.DisplayObject#_tempDisplayObjectParent", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000545", "___s": true, "skip": true, "slug": "PIXI.DisplayObject_tempDisplayObjectParent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Updates the object transform for rendering\n *\n * TODO - Optimization pass!\n */", "meta": { "range": [ 4320, 4542 ], "filename": "DisplayObject.js", "lineno": 148, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005108", "name": "DisplayObject#updateTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
This is an abstract class and should not be used on its own rather it should be extended.Updates the object transform for rendering
\nTODO - Optimization pass!
", "name": "updateTransform", "longname": "PIXI.DisplayObject#updateTransform", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000547", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectupdateTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * recursively updates transform of all objects from the root to this one\n * internal function for toLocal()\n */", "meta": { "range": [ 4681, 5011 ], "filename": "DisplayObject.js", "lineno": 161, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005145", "name": "DisplayObject#_recursivePostUpdateTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "recursively updates transform of all objects from the root to this one
", "name": "_recursivePostUpdateTransform", "longname": "PIXI.DisplayObject#_recursivePostUpdateTransform", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000549", "___s": true, "skip": true, "slug": "PIXI.DisplayObject_recursivePostUpdateTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Retrieves the bounds of the displayObject as a rectangle object.\n *\n * @param {boolean} skipUpdate - setting to true will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost\n * @param {PIXI.Rectangle} rect - Optional rectangle to store the result of the bounds calculation\n * @return {PIXI.Rectangle} the rectangular bounding area\n */", "meta": { "range": [ 5508, 6276 ], "filename": "DisplayObject.js", "lineno": 183, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005186", "name": "DisplayObject#getBounds", "type": "MethodDefinition", "paramnames": [ "skipUpdate", "rect" ] }, "vars": { "": null } }, "description": "
internal function for toLocal()Retrieves the bounds of the displayObject as a rectangle object.
", "params": [ { "type": { "names": [ "boolean" ] }, "description": "setting to true will stop the transforms of the scene graph from
", "name": "skipUpdate" }, { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "
being updated. This means the calculation returned MAY be out of date BUT will give you a
nice performance boostOptional rectangle to store the result of the bounds calculation
", "name": "rect" } ], "returns": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "the rectangular bounding area
" } ], "name": "getBounds", "longname": "PIXI.DisplayObject#getBounds", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R000550", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectgetBounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Retrieves the local bounds of the displayObject as a rectangle object\n *\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation\n * @return {PIXI.Rectangle} the rectangular bounding area\n */", "meta": { "range": [ 6549, 7118 ], "filename": "DisplayObject.js", "lineno": 224, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005277", "name": "DisplayObject#getLocalBounds", "type": "MethodDefinition", "paramnames": [ "rect" ] }, "vars": { "": null } }, "description": "Retrieves the local bounds of the displayObject as a rectangle object
", "params": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "optional": true, "description": "Optional rectangle to store the result of the bounds calculation
", "name": "rect" } ], "returns": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "the rectangular bounding area
" } ], "name": "getLocalBounds", "longname": "PIXI.DisplayObject#getLocalBounds", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R000555", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectgetLocalBounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Calculates the global position of the display object\n *\n * @param {PIXI.Point} position - The world origin to calculate from\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point)\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform.\n * @return {PIXI.Point} A point object representing the position of this object\n */", "meta": { "range": [ 7580, 8444 ], "filename": "DisplayObject.js", "lineno": 259, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005356", "name": "DisplayObject#toGlobal", "type": "MethodDefinition", "paramnames": [ "position", "point", "skipUpdate" ] }, "vars": { "": null } }, "description": "Calculates the global position of the display object
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "The world origin to calculate from
", "name": "position" }, { "type": { "names": [ "PIXI.Point" ] }, "optional": true, "description": "A Point object in which to store the value, optional
", "name": "point" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
(otherwise will create a new Point)Should we skip the update transform.
", "name": "skipUpdate" } ], "returns": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "A point object representing the position of this object
" } ], "name": "toGlobal", "longname": "PIXI.DisplayObject#toGlobal", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R000565", "___s": true, "skip": true, "slug": "PIXI.DisplayObjecttoGlobal", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Calculates the local position of the display object relative to another point\n *\n * @param {PIXI.Point} position - The world origin to calculate from\n * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point)\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform\n * @return {PIXI.Point} A point object representing the position of this object\n */", "meta": { "range": [ 9030, 10001 ], "filename": "DisplayObject.js", "lineno": 294, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005414", "name": "DisplayObject#toLocal", "type": "MethodDefinition", "paramnames": [ "position", "from", "point", "skipUpdate" ] }, "vars": { "": null } }, "description": "Calculates the local position of the display object relative to another point
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "The world origin to calculate from
", "name": "position" }, { "type": { "names": [ "PIXI.DisplayObject" ] }, "optional": true, "description": "The DisplayObject to calculate the global position from
", "name": "from" }, { "type": { "names": [ "PIXI.Point" ] }, "optional": true, "description": "A Point object in which to store the value, optional
", "name": "point" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
(otherwise will create a new Point)Should we skip the update transform
", "name": "skipUpdate" } ], "returns": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "A point object representing the position of this object
" } ], "name": "toLocal", "longname": "PIXI.DisplayObject#toLocal", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R000568", "___s": true, "skip": true, "slug": "PIXI.DisplayObjecttoLocal", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.WebGLRenderer} renderer - The renderer\n */", "meta": { "range": [ 10140, 10233 ], "filename": "DisplayObject.js", "lineno": 329, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005484", "name": "DisplayObject#renderWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the WebGL renderer
", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderWebGL", "longname": "PIXI.DisplayObject#renderWebGL", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R000572", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectrenderWebGL", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Renders the object using the Canvas renderer\n *\n * @param {PIXI.CanvasRenderer} renderer - The renderer\n */", "meta": { "range": [ 10374, 10468 ], "filename": "DisplayObject.js", "lineno": 339, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005489", "name": "DisplayObject#renderCanvas", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the Canvas renderer
", "params": [ { "type": { "names": [ "PIXI.CanvasRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderCanvas", "longname": "PIXI.DisplayObject#renderCanvas", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R000573", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectrenderCanvas", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Set the parent Container of this DisplayObject\n *\n * @param {PIXI.Container} container - The Container to add this DisplayObject to\n * @return {PIXI.Container} The Container that this DisplayObject was added to\n */", "meta": { "range": [ 10720, 10953 ], "filename": "DisplayObject.js", "lineno": 350, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005494", "name": "DisplayObject#setParent", "type": "MethodDefinition", "paramnames": [ "container" ] }, "vars": { "": null } }, "description": "Set the parent Container of this DisplayObject
", "params": [ { "type": { "names": [ "PIXI.Container" ] }, "description": "The Container to add this DisplayObject to
", "name": "container" } ], "returns": [ { "type": { "names": [ "PIXI.Container" ] }, "description": "The Container that this DisplayObject was added to
" } ], "name": "setParent", "longname": "PIXI.DisplayObject#setParent", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R000574", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectsetParent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Convenience function to set the position, scale, skew and pivot at once.\n *\n * @param {number} [x=0] - The X position\n * @param {number} [y=0] - The Y position\n * @param {number} [scaleX=1] - The X scale value\n * @param {number} [scaleY=1] - The Y scale value\n * @param {number} [rotation=0] - The rotation\n * @param {number} [skewX=0] - The X skew value\n * @param {number} [skewY=0] - The Y skew value\n * @param {number} [pivotX=0] - The X pivot value\n * @param {number} [pivotY=0] - The Y pivot value\n * @return {PIXI.DisplayObject} The DisplayObject instance\n */", "meta": { "range": [ 11588, 12034 ], "filename": "DisplayObject.js", "lineno": 376, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005520", "name": "DisplayObject#setTransform", "type": "MethodDefinition", "paramnames": [ "x", "y", "scaleX", "scaleY", "rotation", "skewX", "skewY", "pivotX", "pivotY" ] }, "vars": { "": null } }, "description": "Convenience function to set the position, scale, skew and pivot at once.
", "params": [ { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X position
", "name": "x" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y position
", "name": "y" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 1, "description": "The X scale value
", "name": "scaleX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 1, "description": "The Y scale value
", "name": "scaleY" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The rotation
", "name": "rotation" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X skew value
", "name": "skewX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y skew value
", "name": "skewY" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X pivot value
", "name": "pivotX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y pivot value
", "name": "pivotY" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The DisplayObject instance
" } ], "name": "setTransform", "longname": "PIXI.DisplayObject#setTransform", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R000575", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectsetTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Base destroy method for generic display objects. This will automatically\n * remove the display object from its parent Container as well as remove\n * all current event listeners and internal references. Do not use a DisplayObject\n * after calling `destroy`.\n *\n */", "meta": { "range": [ 12339, 12779 ], "filename": "DisplayObject.js", "lineno": 398, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005631", "name": "DisplayObject#destroy", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Base destroy method for generic display objects. This will automatically
", "name": "destroy", "longname": "PIXI.DisplayObject#destroy", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000585", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectdestroy", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n * An alias to position.x\n *\n * @member {number}\n */", "meta": { "range": [ 12966, 13017 ], "filename": "DisplayObject.js", "lineno": 427, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005707", "name": "DisplayObject#x", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
remove the display object from its parent Container as well as remove
all current event listeners and internal references. Do not use a DisplayObject
after callingdestroy
.The position of the displayObject on the x axis relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "x", "longname": "PIXI.DisplayObject#x", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000595", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectx", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The position of the displayObject on the y axis relative to the local coordinates of the parent.\n * An alias to position.y\n *\n * @member {number}\n */", "meta": { "range": [ 13314, 13365 ], "filename": "DisplayObject.js", "lineno": 443, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005732", "name": "DisplayObject#y", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
An alias to position.xThe position of the displayObject on the y axis relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "y", "longname": "PIXI.DisplayObject#y", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000598", "___s": true, "skip": true, "slug": "PIXI.DisplayObjecty", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Current transform of the object based on world (parent) factors\n *\n * @member {PIXI.Matrix}\n * @readonly\n */", "meta": { "range": [ 13621, 13699 ], "filename": "DisplayObject.js", "lineno": 459, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005757", "name": "DisplayObject#worldTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
An alias to position.yCurrent transform of the object based on world (parent) factors
", "kind": "member", "type": { "names": [ "PIXI.Matrix" ] }, "readonly": true, "name": "worldTransform", "longname": "PIXI.DisplayObject#worldTransform", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000601", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectworldTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Current transform of the object based on local factors: position, scale, other stuff\n *\n * @member {PIXI.Matrix}\n * @readonly\n */", "meta": { "range": [ 13866, 13944 ], "filename": "DisplayObject.js", "lineno": 470, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005767", "name": "DisplayObject#localTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Current transform of the object based on local factors: position, scale, other stuff
", "kind": "member", "type": { "names": [ "PIXI.Matrix" ] }, "readonly": true, "name": "localTransform", "longname": "PIXI.DisplayObject#localTransform", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000602", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectlocalTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The coordinate of the object relative to the local coordinates of the parent.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14149, 14215 ], "filename": "DisplayObject.js", "lineno": 481, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005777", "name": "DisplayObject#position", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The coordinate of the object relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "position", "longname": "PIXI.DisplayObject#position", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000603", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectposition", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The scale factor of the object.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14493, 14553 ], "filename": "DisplayObject.js", "lineno": 497, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005802", "name": "DisplayObject#scale", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The scale factor of the object.
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "scale", "longname": "PIXI.DisplayObject#scale", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000605", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectscale", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The pivot point of the displayObject that it rotates around\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14853, 14913 ], "filename": "DisplayObject.js", "lineno": 513, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005827", "name": "DisplayObject#pivot", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The pivot point of the displayObject that it rotates around
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "pivot", "longname": "PIXI.DisplayObject#pivot", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000607", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectpivot", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The skew factor for the object in radians.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.ObservablePoint}\n */", "meta": { "range": [ 15185, 15243 ], "filename": "DisplayObject.js", "lineno": 529, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005852", "name": "DisplayObject#skew", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The skew factor for the object in radians.
", "kind": "member", "type": { "names": [ "PIXI.ObservablePoint" ] }, "name": "skew", "longname": "PIXI.DisplayObject#skew", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000609", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectskew", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The rotation of the object in radians.\n *\n * @member {number}\n */", "meta": { "range": [ 15453, 15519 ], "filename": "DisplayObject.js", "lineno": 544, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005877", "name": "DisplayObject#rotation", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The rotation of the object in radians.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "rotation", "longname": "PIXI.DisplayObject#rotation", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000611", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectrotation", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Indicates if the object is globally visible.\n *\n * @member {boolean}\n * @readonly\n */", "meta": { "range": [ 15757, 16002 ], "filename": "DisplayObject.js", "lineno": 560, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005900", "name": "DisplayObject#worldVisible", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Indicates if the object is globally visible.
", "kind": "member", "type": { "names": [ "boolean" ] }, "readonly": true, "name": "worldVisible", "longname": "PIXI.DisplayObject#worldVisible", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000614", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectworldVisible", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Sets a mask for the displayObject. A mask is an object that limits the visibility of an\n * object to the shape of the mask applied to it. In PIXI a regular mask must be a\n * PIXI.Graphics or a PIXI.Sprite object. This allows for much faster masking in canvas as it\n * utilises shape clipping. To remove a mask, set this property to null.\n *\n * @todo For the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask.\n *\n * @member {PIXI.Graphics|PIXI.Sprite}\n */", "meta": { "range": [ 16524, 16573 ], "filename": "DisplayObject.js", "lineno": 587, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005927", "name": "DisplayObject#mask", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Sets a mask for the displayObject. A mask is an object that limits the visibility of an
", "todo": [ "For the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask." ], "kind": "member", "type": { "names": [ "PIXI.Graphics", "PIXI.Sprite" ] }, "name": "mask", "longname": "PIXI.DisplayObject#mask", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000617", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectmask", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Sets the filters for the displayObject.\n * * IMPORTANT: This is a webGL only feature and will be ignored by the canvas renderer.\n * To remove filters simply set this property to 'null'\n *\n * @member {PIXI.Filter[]}\n */", "meta": { "range": [ 17106, 17186 ], "filename": "DisplayObject.js", "lineno": 614, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100005972", "name": "DisplayObject#filters", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
object to the shape of the mask applied to it. In PIXI a regular mask must be a
PIXI.Graphics or a PIXI.Sprite object. This allows for much faster masking in canvas as it
utilises shape clipping. To remove a mask, set this property to null.Sets the filters for the displayObject.
\n\n
", "kind": "member", "type": { "names": [ "Array.- IMPORTANT: This is a webGL only feature and will be ignored by the canvas renderer.
\n
To remove filters simply set this property to 'null'" ] }, "name": "filters", "longname": "PIXI.DisplayObject#filters", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R000622", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectfilters", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * @private\n * @member {PIXI.DisplayObject}\n */", "meta": { "range": [ 3985, 4208 ], "filename": "DisplayObject.js", "lineno": 133, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079765", "name": "DisplayObject#_tempDisplayObjectParent", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "access": "private", "kind": "member", "type": { "names": [ "PIXI.DisplayObject" ] }, "name": "_tempDisplayObjectParent", "longname": "PIXI.DisplayObject#_tempDisplayObjectParent", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007479", "___s": true, "skip": true, "slug": "PIXI.DisplayObject_tempDisplayObjectParent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Updates the object transform for rendering\n *\n * TODO - Optimization pass!\n */", "meta": { "range": [ 4320, 4542 ], "filename": "DisplayObject.js", "lineno": 148, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079787", "name": "DisplayObject#updateTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": " Updates the object transform for rendering
\nTODO - Optimization pass!
", "name": "updateTransform", "longname": "PIXI.DisplayObject#updateTransform", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007481", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectupdateTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * recursively updates transform of all objects from the root to this one\n * internal function for toLocal()\n */", "meta": { "range": [ 4681, 5011 ], "filename": "DisplayObject.js", "lineno": 161, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079824", "name": "DisplayObject#_recursivePostUpdateTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "recursively updates transform of all objects from the root to this one
", "name": "_recursivePostUpdateTransform", "longname": "PIXI.DisplayObject#_recursivePostUpdateTransform", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007483", "___s": true, "skip": true, "slug": "PIXI.DisplayObject_recursivePostUpdateTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Retrieves the bounds of the displayObject as a rectangle object.\n *\n * @param {boolean} skipUpdate - setting to true will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost\n * @param {PIXI.Rectangle} rect - Optional rectangle to store the result of the bounds calculation\n * @return {PIXI.Rectangle} the rectangular bounding area\n */", "meta": { "range": [ 5508, 6276 ], "filename": "DisplayObject.js", "lineno": 183, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079865", "name": "DisplayObject#getBounds", "type": "MethodDefinition", "paramnames": [ "skipUpdate", "rect" ] }, "vars": { "": null } }, "description": "
internal function for toLocal()Retrieves the bounds of the displayObject as a rectangle object.
", "params": [ { "type": { "names": [ "boolean" ] }, "description": "setting to true will stop the transforms of the scene graph from
", "name": "skipUpdate" }, { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "
being updated. This means the calculation returned MAY be out of date BUT will give you a
nice performance boostOptional rectangle to store the result of the bounds calculation
", "name": "rect" } ], "returns": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "the rectangular bounding area
" } ], "name": "getBounds", "longname": "PIXI.DisplayObject#getBounds", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R007484", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectgetBounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Retrieves the local bounds of the displayObject as a rectangle object\n *\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation\n * @return {PIXI.Rectangle} the rectangular bounding area\n */", "meta": { "range": [ 6549, 7118 ], "filename": "DisplayObject.js", "lineno": 224, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100079956", "name": "DisplayObject#getLocalBounds", "type": "MethodDefinition", "paramnames": [ "rect" ] }, "vars": { "": null } }, "description": "Retrieves the local bounds of the displayObject as a rectangle object
", "params": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "optional": true, "description": "Optional rectangle to store the result of the bounds calculation
", "name": "rect" } ], "returns": [ { "type": { "names": [ "PIXI.Rectangle" ] }, "description": "the rectangular bounding area
" } ], "name": "getLocalBounds", "longname": "PIXI.DisplayObject#getLocalBounds", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R007489", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectgetLocalBounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Calculates the global position of the display object\n *\n * @param {PIXI.Point} position - The world origin to calculate from\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point)\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform.\n * @return {PIXI.Point} A point object representing the position of this object\n */", "meta": { "range": [ 7580, 8444 ], "filename": "DisplayObject.js", "lineno": 259, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080035", "name": "DisplayObject#toGlobal", "type": "MethodDefinition", "paramnames": [ "position", "point", "skipUpdate" ] }, "vars": { "": null } }, "description": "Calculates the global position of the display object
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "The world origin to calculate from
", "name": "position" }, { "type": { "names": [ "PIXI.Point" ] }, "optional": true, "description": "A Point object in which to store the value, optional
", "name": "point" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
(otherwise will create a new Point)Should we skip the update transform.
", "name": "skipUpdate" } ], "returns": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "A point object representing the position of this object
" } ], "name": "toGlobal", "longname": "PIXI.DisplayObject#toGlobal", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R007499", "___s": true, "skip": true, "slug": "PIXI.DisplayObjecttoGlobal", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Calculates the local position of the display object relative to another point\n *\n * @param {PIXI.Point} position - The world origin to calculate from\n * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point)\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform\n * @return {PIXI.Point} A point object representing the position of this object\n */", "meta": { "range": [ 9030, 10001 ], "filename": "DisplayObject.js", "lineno": 294, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080093", "name": "DisplayObject#toLocal", "type": "MethodDefinition", "paramnames": [ "position", "from", "point", "skipUpdate" ] }, "vars": { "": null } }, "description": "Calculates the local position of the display object relative to another point
", "params": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "The world origin to calculate from
", "name": "position" }, { "type": { "names": [ "PIXI.DisplayObject" ] }, "optional": true, "description": "The DisplayObject to calculate the global position from
", "name": "from" }, { "type": { "names": [ "PIXI.Point" ] }, "optional": true, "description": "A Point object in which to store the value, optional
", "name": "point" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "
(otherwise will create a new Point)Should we skip the update transform
", "name": "skipUpdate" } ], "returns": [ { "type": { "names": [ "PIXI.Point" ] }, "description": "A point object representing the position of this object
" } ], "name": "toLocal", "longname": "PIXI.DisplayObject#toLocal", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R007502", "___s": true, "skip": true, "slug": "PIXI.DisplayObjecttoLocal", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.WebGLRenderer} renderer - The renderer\n */", "meta": { "range": [ 10140, 10233 ], "filename": "DisplayObject.js", "lineno": 329, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080163", "name": "DisplayObject#renderWebGL", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the WebGL renderer
", "params": [ { "type": { "names": [ "PIXI.WebGLRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderWebGL", "longname": "PIXI.DisplayObject#renderWebGL", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R007506", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectrenderWebGL", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Renders the object using the Canvas renderer\n *\n * @param {PIXI.CanvasRenderer} renderer - The renderer\n */", "meta": { "range": [ 10374, 10468 ], "filename": "DisplayObject.js", "lineno": 339, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080168", "name": "DisplayObject#renderCanvas", "type": "MethodDefinition", "paramnames": [ "renderer" ] }, "vars": { "": null } }, "description": "Renders the object using the Canvas renderer
", "params": [ { "type": { "names": [ "PIXI.CanvasRenderer" ] }, "description": "The renderer
", "name": "renderer" } ], "name": "renderCanvas", "longname": "PIXI.DisplayObject#renderCanvas", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R007507", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectrenderCanvas", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Set the parent Container of this DisplayObject\n *\n * @param {PIXI.Container} container - The Container to add this DisplayObject to\n * @return {PIXI.Container} The Container that this DisplayObject was added to\n */", "meta": { "range": [ 10720, 10953 ], "filename": "DisplayObject.js", "lineno": 350, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080173", "name": "DisplayObject#setParent", "type": "MethodDefinition", "paramnames": [ "container" ] }, "vars": { "": null } }, "description": "Set the parent Container of this DisplayObject
", "params": [ { "type": { "names": [ "PIXI.Container" ] }, "description": "The Container to add this DisplayObject to
", "name": "container" } ], "returns": [ { "type": { "names": [ "PIXI.Container" ] }, "description": "The Container that this DisplayObject was added to
" } ], "name": "setParent", "longname": "PIXI.DisplayObject#setParent", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R007508", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectsetParent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Convenience function to set the position, scale, skew and pivot at once.\n *\n * @param {number} [x=0] - The X position\n * @param {number} [y=0] - The Y position\n * @param {number} [scaleX=1] - The X scale value\n * @param {number} [scaleY=1] - The Y scale value\n * @param {number} [rotation=0] - The rotation\n * @param {number} [skewX=0] - The X skew value\n * @param {number} [skewY=0] - The Y skew value\n * @param {number} [pivotX=0] - The X pivot value\n * @param {number} [pivotY=0] - The Y pivot value\n * @return {PIXI.DisplayObject} The DisplayObject instance\n */", "meta": { "range": [ 11588, 12034 ], "filename": "DisplayObject.js", "lineno": 376, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080199", "name": "DisplayObject#setTransform", "type": "MethodDefinition", "paramnames": [ "x", "y", "scaleX", "scaleY", "rotation", "skewX", "skewY", "pivotX", "pivotY" ] }, "vars": { "": null } }, "description": "Convenience function to set the position, scale, skew and pivot at once.
", "params": [ { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X position
", "name": "x" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y position
", "name": "y" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 1, "description": "The X scale value
", "name": "scaleX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 1, "description": "The Y scale value
", "name": "scaleY" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The rotation
", "name": "rotation" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X skew value
", "name": "skewX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y skew value
", "name": "skewY" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The X pivot value
", "name": "pivotX" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "The Y pivot value
", "name": "pivotY" } ], "returns": [ { "type": { "names": [ "PIXI.DisplayObject" ] }, "description": "The DisplayObject instance
" } ], "name": "setTransform", "longname": "PIXI.DisplayObject#setTransform", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "___id": "T000002R007509", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectsetTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Base destroy method for generic display objects. This will automatically\n * remove the display object from its parent Container as well as remove\n * all current event listeners and internal references. Do not use a DisplayObject\n * after calling `destroy`.\n *\n */", "meta": { "range": [ 12339, 12779 ], "filename": "DisplayObject.js", "lineno": 398, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080310", "name": "DisplayObject#destroy", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Base destroy method for generic display objects. This will automatically
", "name": "destroy", "longname": "PIXI.DisplayObject#destroy", "kind": "function", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007519", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectdestroy", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n * An alias to position.x\n *\n * @member {number}\n */", "meta": { "range": [ 12966, 13017 ], "filename": "DisplayObject.js", "lineno": 427, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080386", "name": "DisplayObject#x", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
remove the display object from its parent Container as well as remove
all current event listeners and internal references. Do not use a DisplayObject
after callingdestroy
.The position of the displayObject on the x axis relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "x", "longname": "PIXI.DisplayObject#x", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007529", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectx", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The position of the displayObject on the y axis relative to the local coordinates of the parent.\n * An alias to position.y\n *\n * @member {number}\n */", "meta": { "range": [ 13314, 13365 ], "filename": "DisplayObject.js", "lineno": 443, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080411", "name": "DisplayObject#y", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
An alias to position.xThe position of the displayObject on the y axis relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "y", "longname": "PIXI.DisplayObject#y", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007532", "___s": true, "skip": true, "slug": "PIXI.DisplayObjecty", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Current transform of the object based on world (parent) factors\n *\n * @member {PIXI.Matrix}\n * @readonly\n */", "meta": { "range": [ 13621, 13699 ], "filename": "DisplayObject.js", "lineno": 459, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080436", "name": "DisplayObject#worldTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
An alias to position.yCurrent transform of the object based on world (parent) factors
", "kind": "member", "type": { "names": [ "PIXI.Matrix" ] }, "readonly": true, "name": "worldTransform", "longname": "PIXI.DisplayObject#worldTransform", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007535", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectworldTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Current transform of the object based on local factors: position, scale, other stuff\n *\n * @member {PIXI.Matrix}\n * @readonly\n */", "meta": { "range": [ 13866, 13944 ], "filename": "DisplayObject.js", "lineno": 470, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080446", "name": "DisplayObject#localTransform", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Current transform of the object based on local factors: position, scale, other stuff
", "kind": "member", "type": { "names": [ "PIXI.Matrix" ] }, "readonly": true, "name": "localTransform", "longname": "PIXI.DisplayObject#localTransform", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007536", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectlocalTransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The coordinate of the object relative to the local coordinates of the parent.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14149, 14215 ], "filename": "DisplayObject.js", "lineno": 481, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080456", "name": "DisplayObject#position", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "The coordinate of the object relative to the local coordinates of the parent.
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "position", "longname": "PIXI.DisplayObject#position", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007537", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectposition", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The scale factor of the object.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14493, 14553 ], "filename": "DisplayObject.js", "lineno": 497, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080481", "name": "DisplayObject#scale", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The scale factor of the object.
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "scale", "longname": "PIXI.DisplayObject#scale", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007539", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectscale", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The pivot point of the displayObject that it rotates around\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.Point|PIXI.ObservablePoint}\n */", "meta": { "range": [ 14853, 14913 ], "filename": "DisplayObject.js", "lineno": 513, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080506", "name": "DisplayObject#pivot", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The pivot point of the displayObject that it rotates around
", "kind": "member", "type": { "names": [ "PIXI.Point", "PIXI.ObservablePoint" ] }, "name": "pivot", "longname": "PIXI.DisplayObject#pivot", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007541", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectpivot", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The skew factor for the object in radians.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.ObservablePoint}\n */", "meta": { "range": [ 15185, 15243 ], "filename": "DisplayObject.js", "lineno": 529, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080531", "name": "DisplayObject#skew", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The skew factor for the object in radians.
", "kind": "member", "type": { "names": [ "PIXI.ObservablePoint" ] }, "name": "skew", "longname": "PIXI.DisplayObject#skew", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007543", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectskew", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The rotation of the object in radians.\n *\n * @member {number}\n */", "meta": { "range": [ 15453, 15519 ], "filename": "DisplayObject.js", "lineno": 544, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080556", "name": "DisplayObject#rotation", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
Assignment by value since pixi-v4.The rotation of the object in radians.
", "kind": "member", "type": { "names": [ "number" ] }, "name": "rotation", "longname": "PIXI.DisplayObject#rotation", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007545", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectrotation", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Indicates if the object is globally visible.\n *\n * @member {boolean}\n * @readonly\n */", "meta": { "range": [ 15757, 16002 ], "filename": "DisplayObject.js", "lineno": 560, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080579", "name": "DisplayObject#worldVisible", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Indicates if the object is globally visible.
", "kind": "member", "type": { "names": [ "boolean" ] }, "readonly": true, "name": "worldVisible", "longname": "PIXI.DisplayObject#worldVisible", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007548", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectworldVisible", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Sets a mask for the displayObject. A mask is an object that limits the visibility of an\n * object to the shape of the mask applied to it. In PIXI a regular mask must be a\n * PIXI.Graphics or a PIXI.Sprite object. This allows for much faster masking in canvas as it\n * utilises shape clipping. To remove a mask, set this property to null.\n *\n * @todo For the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask.\n *\n * @member {PIXI.Graphics|PIXI.Sprite}\n */", "meta": { "range": [ 16524, 16573 ], "filename": "DisplayObject.js", "lineno": 587, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080606", "name": "DisplayObject#mask", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "Sets a mask for the displayObject. A mask is an object that limits the visibility of an
", "todo": [ "For the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask." ], "kind": "member", "type": { "names": [ "PIXI.Graphics", "PIXI.Sprite" ] }, "name": "mask", "longname": "PIXI.DisplayObject#mask", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007551", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectmask", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Sets the filters for the displayObject.\n * * IMPORTANT: This is a webGL only feature and will be ignored by the canvas renderer.\n * To remove filters simply set this property to 'null'\n *\n * @member {PIXI.Filter[]}\n */", "meta": { "range": [ 17106, 17186 ], "filename": "DisplayObject.js", "lineno": 614, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": { "id": "astnode100080651", "name": "DisplayObject#filters", "type": "MethodDefinition", "paramnames": [] }, "vars": { "": null } }, "description": "
object to the shape of the mask applied to it. In PIXI a regular mask must be a
PIXI.Graphics or a PIXI.Sprite object. This allows for much faster masking in canvas as it
utilises shape clipping. To remove a mask, set this property to null.Sets the filters for the displayObject.
\n\n
", "kind": "member", "type": { "names": [ "Array.- IMPORTANT: This is a webGL only feature and will be ignored by the canvas renderer.
\n
To remove filters simply set this property to 'null'" ] }, "name": "filters", "longname": "PIXI.DisplayObject#filters", "memberof": "PIXI.DisplayObject", "scope": "instance", "params": [], "___id": "T000002R007556", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectfilters", "filepath": "core\\display\\DisplayObject.js" } ], "$attributes": [ { "comment": "/**\n * World transform and local transform of this object.\n * This will become read-only later, please do not assign anything there unless you know what are you doing\n *\n * @member {PIXI.TransformBase} PIXI.DisplayObject#transform\n */", "meta": { "range": [ 957, 1231 ], "filename": "DisplayObject.js", "lineno": 35, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": " World transform and local transform of this object.
", "kind": "member", "name": "transform", "type": { "names": [ "PIXI.TransformBase" ] }, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#transform", "scope": "instance", "___id": "T000002R000519", "___s": true, "skip": true, "slug": "PIXI.DisplayObjecttransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The opacity of the object.\n *\n * @member {number} PIXI.DisplayObject#alpha\n */", "meta": { "range": [ 1288, 1405 ], "filename": "DisplayObject.js", "lineno": 43, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "
This will become read-only later, please do not assign anything there unless you know what are you doingThe opacity of the object.
", "kind": "member", "name": "alpha", "type": { "names": [ "number" ] }, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#alpha", "scope": "instance", "___id": "T000002R000521", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectalpha", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The visibility of the object. If false the object will not be drawn, and\n * the updateTransform function will not be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually\n *\n * @member {boolean} PIXI.DisplayObject#visible\n */", "meta": { "range": [ 1439, 1785 ], "filename": "DisplayObject.js", "lineno": 50, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The visibility of the object. If false the object will not be drawn, and
\n
the updateTransform function will not be called.Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually
", "kind": "member", "name": "visible", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#visible", "scope": "instance", "___id": "T000002R000523", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectvisible", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Can this object be rendered, if false the object will not be drawn but the updateTransform\n * methods will still be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds manually\n *\n * @member {boolean} PIXI.DisplayObject#renderable\n */", "meta": { "range": [ 1824, 2148 ], "filename": "DisplayObject.js", "lineno": 60, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "Can this object be rendered, if false the object will not be drawn but the updateTransform
\n
methods will still be called.Only affects recursive calls from parent. You can ask for bounds manually
", "kind": "member", "name": "renderable", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#renderable", "scope": "instance", "___id": "T000002R000525", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectrenderable", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The display object container that contains this display object.\n *\n * @member {PIXI.Container} PIXI.DisplayObject#parent\n * @readonly\n */", "meta": { "range": [ 2190, 2374 ], "filename": "DisplayObject.js", "lineno": 70, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The display object container that contains this display object.
", "kind": "member", "name": "parent", "type": { "names": [ "PIXI.Container" ] }, "readonly": true, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#parent", "scope": "instance", "___id": "T000002R000527", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectparent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The multiplied alpha of the displayObject\n *\n * @member {number} PIXI.DisplayObject#worldAlpha\n * @readonly\n */", "meta": { "range": [ 2412, 2570 ], "filename": "DisplayObject.js", "lineno": 78, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The multiplied alpha of the displayObject
", "kind": "member", "name": "worldAlpha", "type": { "names": [ "number" ] }, "readonly": true, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#worldAlpha", "scope": "instance", "___id": "T000002R000529", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectworldAlpha", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The area the filter is applied to. This is used as more of an optimisation\n * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle\n *\n * Also works as an interaction mask\n *\n * @member {PIXI.Rectangle} PIXI.DisplayObject#filterArea\n */", "meta": { "range": [ 2609, 2953 ], "filename": "DisplayObject.js", "lineno": 86, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The area the filter is applied to. This is used as more of an optimisation
\n
rather than figuring out the dimensions of the displayObject each frame you can set this rectangleAlso works as an interaction mask
", "kind": "member", "name": "filterArea", "type": { "names": [ "PIXI.Rectangle" ] }, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#filterArea", "scope": "instance", "___id": "T000002R000531", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectfilterArea", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The bounds object, this is used to calculate and store the bounds of the displayObject\n *\n * @member {PIXI.Rectangle} PIXI.DisplayObject#_bounds\n * @private\n */", "meta": { "range": [ 3063, 3270 ], "filename": "DisplayObject.js", "lineno": 99, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The bounds object, this is used to calculate and store the bounds of the displayObject
", "kind": "member", "name": "_bounds", "type": { "names": [ "PIXI.Rectangle" ] }, "access": "private", "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#_bounds", "scope": "instance", "___id": "T000002R000535", "___s": true, "skip": true, "slug": "PIXI.DisplayObject_bounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The original, cached mask of the object\n *\n * @member {PIXI.Graphics|PIXI.Sprite} PIXI.DisplayObject#_mask\n * @private\n */", "meta": { "range": [ 3449, 3618 ], "filename": "DisplayObject.js", "lineno": 111, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The original, cached mask of the object
", "kind": "member", "name": "_mask", "type": { "names": [ "PIXI.Graphics", "PIXI.Sprite" ] }, "access": "private", "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#_mask", "scope": "instance", "___id": "T000002R000541", "___s": true, "skip": true, "slug": "PIXI.DisplayObject_mask", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * If the object has been destroyed via destroy(). If true, it should not be used.\n *\n * @member {boolean} PIXI.DisplayObject#_destroyed\n * @private\n * @readonly\n */", "meta": { "range": [ 3655, 3872 ], "filename": "DisplayObject.js", "lineno": 119, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "If the object has been destroyed via destroy(). If true, it should not be used.
", "kind": "member", "name": "_destroyed", "type": { "names": [ "boolean" ] }, "access": "private", "readonly": true, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#_destroyed", "scope": "instance", "___id": "T000002R000543", "___s": true, "skip": true, "slug": "PIXI.DisplayObject_destroyed", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Set this to true if you want this display object to be cached as a bitmap.\n * This basically takes a snap shot of the display object as it is at that moment. It can\n * provide a performance benefit for complex static displayObjects.\n * To remove simply set this property to 'false'\n *\n * IMPORTANT GOTCHA - make sure that all your textures are preloaded BEFORE setting this property to true\n * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */", "meta": { "range": [ 1587, 3623 ], "filename": "cacheAsBitmap.js", "lineno": 50, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\extras", "code": { "id": "astnode100053521", "name": "cacheAsBitmap", "type": "ObjectExpression", "value": "{\"get\":\"\",\"set\":\"\"}" } }, "description": "Set this to true if you want this display object to be cached as a bitmap.
\n
This basically takes a snap shot of the display object as it is at that moment. It can
provide a performance benefit for complex static displayObjects.
To remove simply set this property to 'false'IMPORTANT GOTCHA - make sure that all your textures are preloaded BEFORE setting this property to true
", "kind": "member", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.DisplayObject", "name": "cacheAsBitmap", "longname": "PIXI.DisplayObject#cacheAsBitmap", "scope": "instance", "___id": "T000002R005071", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectcacheAsBitmap", "filepath": "extras\\cacheAsBitmap.js" }, { "comment": "/**\n * World transform and local transform of this object.\n * This will become read-only later, please do not assign anything there unless you know what are you doing\n *\n * @member {PIXI.TransformBase} PIXI.DisplayObject#transform\n */", "meta": { "range": [ 957, 1231 ], "filename": "DisplayObject.js", "lineno": 35, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "
as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.World transform and local transform of this object.
", "kind": "member", "name": "transform", "type": { "names": [ "PIXI.TransformBase" ] }, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#transform", "scope": "instance", "___id": "T000002R007453", "___s": true, "skip": true, "slug": "PIXI.DisplayObjecttransform", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The opacity of the object.\n *\n * @member {number} PIXI.DisplayObject#alpha\n */", "meta": { "range": [ 1288, 1405 ], "filename": "DisplayObject.js", "lineno": 43, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "
This will become read-only later, please do not assign anything there unless you know what are you doingThe opacity of the object.
", "kind": "member", "name": "alpha", "type": { "names": [ "number" ] }, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#alpha", "scope": "instance", "___id": "T000002R007455", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectalpha", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The visibility of the object. If false the object will not be drawn, and\n * the updateTransform function will not be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually\n *\n * @member {boolean} PIXI.DisplayObject#visible\n */", "meta": { "range": [ 1439, 1785 ], "filename": "DisplayObject.js", "lineno": 50, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The visibility of the object. If false the object will not be drawn, and
\n
the updateTransform function will not be called.Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually
", "kind": "member", "name": "visible", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#visible", "scope": "instance", "___id": "T000002R007457", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectvisible", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Can this object be rendered, if false the object will not be drawn but the updateTransform\n * methods will still be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds manually\n *\n * @member {boolean} PIXI.DisplayObject#renderable\n */", "meta": { "range": [ 1824, 2148 ], "filename": "DisplayObject.js", "lineno": 60, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "Can this object be rendered, if false the object will not be drawn but the updateTransform
\n
methods will still be called.Only affects recursive calls from parent. You can ask for bounds manually
", "kind": "member", "name": "renderable", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#renderable", "scope": "instance", "___id": "T000002R007459", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectrenderable", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The display object container that contains this display object.\n *\n * @member {PIXI.Container} PIXI.DisplayObject#parent\n * @readonly\n */", "meta": { "range": [ 2190, 2374 ], "filename": "DisplayObject.js", "lineno": 70, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The display object container that contains this display object.
", "kind": "member", "name": "parent", "type": { "names": [ "PIXI.Container" ] }, "readonly": true, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#parent", "scope": "instance", "___id": "T000002R007461", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectparent", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The multiplied alpha of the displayObject\n *\n * @member {number} PIXI.DisplayObject#worldAlpha\n * @readonly\n */", "meta": { "range": [ 2412, 2570 ], "filename": "DisplayObject.js", "lineno": 78, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The multiplied alpha of the displayObject
", "kind": "member", "name": "worldAlpha", "type": { "names": [ "number" ] }, "readonly": true, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#worldAlpha", "scope": "instance", "___id": "T000002R007463", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectworldAlpha", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The area the filter is applied to. This is used as more of an optimisation\n * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle\n *\n * Also works as an interaction mask\n *\n * @member {PIXI.Rectangle} PIXI.DisplayObject#filterArea\n */", "meta": { "range": [ 2609, 2953 ], "filename": "DisplayObject.js", "lineno": 86, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The area the filter is applied to. This is used as more of an optimisation
\n
rather than figuring out the dimensions of the displayObject each frame you can set this rectangleAlso works as an interaction mask
", "kind": "member", "name": "filterArea", "type": { "names": [ "PIXI.Rectangle" ] }, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#filterArea", "scope": "instance", "___id": "T000002R007465", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectfilterArea", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The bounds object, this is used to calculate and store the bounds of the displayObject\n *\n * @member {PIXI.Rectangle} PIXI.DisplayObject#_bounds\n * @private\n */", "meta": { "range": [ 3063, 3270 ], "filename": "DisplayObject.js", "lineno": 99, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The bounds object, this is used to calculate and store the bounds of the displayObject
", "kind": "member", "name": "_bounds", "type": { "names": [ "PIXI.Rectangle" ] }, "access": "private", "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#_bounds", "scope": "instance", "___id": "T000002R007469", "___s": true, "skip": true, "slug": "PIXI.DisplayObject_bounds", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * The original, cached mask of the object\n *\n * @member {PIXI.Graphics|PIXI.Sprite} PIXI.DisplayObject#_mask\n * @private\n */", "meta": { "range": [ 3449, 3618 ], "filename": "DisplayObject.js", "lineno": 111, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "The original, cached mask of the object
", "kind": "member", "name": "_mask", "type": { "names": [ "PIXI.Graphics", "PIXI.Sprite" ] }, "access": "private", "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#_mask", "scope": "instance", "___id": "T000002R007475", "___s": true, "skip": true, "slug": "PIXI.DisplayObject_mask", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * If the object has been destroyed via destroy(). If true, it should not be used.\n *\n * @member {boolean} PIXI.DisplayObject#_destroyed\n * @private\n * @readonly\n */", "meta": { "range": [ 3655, 3872 ], "filename": "DisplayObject.js", "lineno": 119, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\display", "code": {} }, "description": "If the object has been destroyed via destroy(). If true, it should not be used.
", "kind": "member", "name": "_destroyed", "type": { "names": [ "boolean" ] }, "access": "private", "readonly": true, "memberof": "PIXI.DisplayObject", "longname": "PIXI.DisplayObject#_destroyed", "scope": "instance", "___id": "T000002R007477", "___s": true, "skip": true, "slug": "PIXI.DisplayObject_destroyed", "filepath": "core\\display\\DisplayObject.js" }, { "comment": "/**\n * Set this to true if you want this display object to be cached as a bitmap.\n * This basically takes a snap shot of the display object as it is at that moment. It can\n * provide a performance benefit for complex static displayObjects.\n * To remove simply set this property to 'false'\n *\n * IMPORTANT GOTCHA - make sure that all your textures are preloaded BEFORE setting this property to true\n * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */", "meta": { "range": [ 1587, 3623 ], "filename": "cacheAsBitmap.js", "lineno": 50, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\extras", "code": { "id": "astnode100128200", "name": "cacheAsBitmap", "type": "ObjectExpression", "value": "{\"get\":\"\",\"set\":\"\"}" } }, "description": "Set this to true if you want this display object to be cached as a bitmap.
\n
This basically takes a snap shot of the display object as it is at that moment. It can
provide a performance benefit for complex static displayObjects.
To remove simply set this property to 'false'IMPORTANT GOTCHA - make sure that all your textures are preloaded BEFORE setting this property to true
", "kind": "member", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.DisplayObject", "name": "cacheAsBitmap", "longname": "PIXI.DisplayObject#cacheAsBitmap", "scope": "instance", "___id": "T000002R012005", "___s": true, "skip": true, "slug": "PIXI.DisplayObjectcacheAsBitmap", "filepath": "extras\\cacheAsBitmap.js" } ], "$staticmethods": [], "$staticproperties": [], "$augments": [ { "name": "EventEmitter" } ], "$augmentedBy": [ { "name": "Container" }, { "name": "Container" } ], "filepath": "core\\display\\DisplayObject.js" } ], "$augmentedBy": [ { "name": "Graphics" }, { "name": "Sprite" }, { "name": "BitmapText" }, { "name": "Mesh" }, { "name": "ParticleContainer" }, { "name": "Graphics" }, { "name": "Sprite" }, { "name": "BitmapText" }, { "name": "Mesh" }, { "name": "ParticleContainer" } ], "filepath": "core\\display\\Container.js" } ], "$augmentedBy": [ { "name": "Plane" }, { "name": "Rope" }, { "name": "Plane" }, { "name": "Rope" } ], "filepath": "mesh\\Mesh.js" } ], "$augmentedBy": [ { "name": "NineSlicePlane" }, { "name": "NineSlicePlane" } ], "filepath": "mesh\\Plane.js" }
as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.