You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/animations/AnimationManager.js
+6-28Lines changed: 6 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -261,28 +261,16 @@ var AnimationManager = new Class({
261
261
returnoutput;
262
262
},
263
263
264
-
/**
265
-
* @typedef {object} GenerateFrameNamesConfig
266
-
*
267
-
* @property {string} [prefix=''] - The string to append to every resulting frame name if using a range or an array of `frames`.
268
-
* @property {integer} [start=0] - If `frames` is not provided, the number of the first frame to return.
269
-
* @property {integer} [end=0] - If `frames` is not provided, the number of the last frame to return.
270
-
* @property {string} [suffix=''] - The string to append to every resulting frame name if using a range or an array of `frames`.
271
-
* @property {integer} [zeroPad=0] - The minimum expected lengths of each resulting frame's number. Numbers will be left-padded with zeroes until they are this long, then prepended and appended to create the resulting frame name.
272
-
* @property {AnimationFrameConfig[]} [outputArray=[]] - The array to append the created configuration objects to.
273
-
* @property {boolean} [frames=false] - If provided as an array, the range defined by `start` and `end` will be ignored and these frame numbers will be used.
* @property {string} [prefix=''] - The string to append to every resulting frame name if using a range or an array of `frames`.
5
+
* @property {integer} [start=0] - If `frames` is not provided, the number of the first frame to return.
6
+
* @property {integer} [end=0] - If `frames` is not provided, the number of the last frame to return.
7
+
* @property {string} [suffix=''] - The string to append to every resulting frame name if using a range or an array of `frames`.
8
+
* @property {integer} [zeroPad=0] - The minimum expected lengths of each resulting frame's number. Numbers will be left-padded with zeroes until they are this long, then prepended and appended to create the resulting frame name.
9
+
* @property {Phaser.Animations.Types.AnimationFrame[]} [outputArray=[]] - The array to append the created configuration objects to.
10
+
* @property {boolean} [frames=false] - If provided as an array, the range defined by `start` and `end` will be ignored and these frame numbers will be used.
0 commit comments