File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -319,23 +319,23 @@ var AnimationManager = new Class({
319319 /**
320320 * @typedef {object } GenerateFrameNumbersConfig
321321 *
322- * @property {integer } [start=0] - [description]
323- * @property {integer } [end=-1] - [description]
324- * @property {boolean } [first=false] - [description]
325- * @property {AnimationFrameConfig[] } [outputArray=[]] - [description]
326- * @property {boolean } [frames=false] - [description]
322+ * @property {integer } [start=0] - The starting frame of the animation.
323+ * @property {integer } [end=-1] - The ending frame of the animation.
324+ * @property {( boolean|integer) } [first=false] - A frame to put at the beginning of the animation, before `start` or `outputArray` or `frames`.
325+ * @property {AnimationFrameConfig[] } [outputArray=[]] - An array to concatenate the output onto.
326+ * @property {( boolean|integer[]) } [frames=false] - A custom sequence of frames.
327327 */
328328
329329 /**
330- * [description]
330+ * Generates an array of { @link AnimationFrameConfig} objects from a texture key and configuration object.
331331 *
332332 * @method Phaser.Animations.AnimationManager#generateFrameNumbers
333333 * @since 3.0.0
334334 *
335- * @param {string } key - [description]
336- * @param {GenerateFrameNumbersConfig } config - [description]
335+ * @param {string } key - The key for the texture containing the animation frames.
336+ * @param {GenerateFrameNumbersConfig } config - The configuration object for the animation frames.
337337 *
338- * @return {AnimationFrameConfig[] } [description]
338+ * @return {AnimationFrameConfig[] } The array of { @link AnimationFrameConfig} objects.
339339 */
340340 generateFrameNumbers : function ( key , config )
341341 {
You can’t perform that action at this time.
0 commit comments