new PIXI.Texture(baseTexture, frame, orig, trim, rotate)
| Name | Type | Description |
|---|---|---|
baseTexture |
PIXI.BaseTexture |
The base texture source to create the texture from |
frame |
PIXI.Rectangle |
optional
The rectangle frame of the texture to show |
orig |
PIXI.Rectangle |
optional
The area of original texture |
trim |
PIXI.Rectangle |
optional
Trimmed rectangle of original texture |
rotate |
number |
optional
indicates how the texture was rotated by texture packer. See PIXI.GroupD8 |
Extends
- EventEmitter
Members
-
static,constantPIXI.Texture.EMPTY
-
An empty texture, used often to not have to create multiple empty textures. Can not be destroyed.
-
static,constantPIXI.Texture.WHITE
-
A white texture of 10x10 size, used for graphics and other things Can not be destroyed.
-
_framePIXI.Rectangle
-
This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering, irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases)
-
baseTexturePIXI.BaseTexture
-
The base texture that this texture uses.
-
framePIXI.Rectangle
-
The frame specifies the region of the base texture that this texture uses.
-
heightnumber
-
The height of the Texture in pixels.
-
noFrameboolean
-
Does this Texture have any frame data assigned to it?
-
origPIXI.Rectangle
-
This is the area of original texture, before it was put in atlas
-
requiresUpdateboolean
-
This will let a renderer know that a texture has been updated (used mainly for webGL uv updates)
-
rotatenumber
-
Indicates whether the texture is rotated inside the atlas set to 2 to compensate for texture packer rotation set to 6 to compensate for spine packer rotation can be used to rotate or mirror sprites See PIXI.GroupD8 for explanation
-
textureCacheIdsArray.<string>
-
The ids under which this Texture has been added to the texture cache. This is automatically set as long as Texture.addToCache is used, but may not be set if a Texture is added directly to the TextureCache array.
-
trimPIXI.Rectangle
-
This is the trimmed area of original texture, before it was put in atlas
-
validboolean
-
This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.
-
widthnumber
-
The width of the Texture in pixels.
Methods
-
staticPIXI.Texture.addTextureToCache(texture, id)
-
Name Type Description texturePIXI.Texture The Texture to add to the cache.
idstring The id that the texture will be stored against.
- Deprecated
- since 4.5.0
- See:
-
staticPIXI.Texture.addToCache(texture, id)
-
Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object.
Name Type Description texturePIXI.Texture The Texture to add to the cache.
idstring The id that the Texture will be stored against.
-
staticPIXI.Texture.from(source){PIXI.Texture}
-
Helper function that creates a new Texture based on the source you provide. The source can be - frame id, image url, video url, canvas element, video element, base texture
Name Type Description sourcenumber | string | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | PIXI.BaseTexture Source to create texture from
Returns:
Type Description PIXI.Texture The newly created texture -
staticPIXI.Texture.fromLoader(source, imageUrl, name){PIXI.Texture}
-
Create a texture from a source and add to the cache.
Name Type Description sourceHTMLImageElement | HTMLCanvasElement The input source.
imageUrlString File name of texture, for cache and resolving resolution.
nameString optional Human readible name for the texture cache. If no name is specified, only
imageUrlwill be used as the cache ID.Returns:
Type Description PIXI.Texture Output texture -
staticPIXI.Texture.removeFromCache(texture){PIXI.Texture|null}
-
Remove a Texture from the global TextureCache.
Name Type Description texturestring | PIXI.Texture id of a Texture to be removed, or a Texture instance itself
Returns:
Type Description PIXI.Texture | null The Texture that was removed -
staticPIXI.Texture.removeTextureFromCache(id){PIXI.Texture|null}
-
Name Type Description idstring The id of the texture to be removed
- Deprecated
- since 4.5.0
- See:
Returns:
Type Description PIXI.Texture | null The texture that was removed -
protected_updateUvs()
-
Updates the internal WebGL UV cache.
-
clone(){PIXI.Texture}
-
Creates a new texture object that acts the same as this one.
Returns:
Type Description PIXI.Texture The new texture -
destroy(destroyBase)
-
Destroys this texture
Name Type Default Description destroyBaseboolean false optional Whether to destroy the base texture as well
-
setFrame(frame)
-
Name Type Description framePIXI.Rectangle The frame to set.
- Deprecated
- since version 3.0.0
- See:
-
update()
-
Updates this texture on the gpu.
Events
-
update
-
Fired when the texture is updated. This happens if the frame or the baseTexture is updated.
Name Type Description texturePIXI.Texture Instance of texture being updated.