mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 21:24:09 +00:00
15 lines
615 B
TypeScript
15 lines
615 B
TypeScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2016 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
/**
|
|
* Parses a JSON Array and extracts the frame data from it.
|
|
*
|
|
* @class Phaser.TextureParser.JSONArray
|
|
* @static
|
|
* @param {Phaser.Texture} texture - The parent Texture.
|
|
* @param {object} json - The JSON data from the Texture Atlas. Must be in JSON Hash format.
|
|
* @return {Phaser.FrameData} A FrameData object containing the parsed frames.
|
|
*/
|
|
export default function (texture: any, sourceIndex: any, json: any): any;
|