mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboOs.git
synced 2026-06-16 12:36:13 +00:00
19 lines
518 B
JavaScript
19 lines
518 B
JavaScript
|
|
/**
|
||
|
|
* The object returned by the SpritesheetTask.
|
||
|
|
* @class Spritesheet
|
||
|
|
* @memberof jibo.rendering.animation
|
||
|
|
* @param {PIXI.BaseTexture} baseTexture
|
||
|
|
* @param {Object} frames The frames map
|
||
|
|
* @param {Number} resolution The amount of scale
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* The collection of textures by name.
|
||
|
|
* @name jibo.rendering.animation.Spritesheet#frames
|
||
|
|
* @type {Object}
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Destroys all the textures/frames of spritesheet.
|
||
|
|
* @method jibo.rendering.animation.Spritesheet#destroy
|
||
|
|
*/
|