Skip to content

Commit a5f306f

Browse files
committed
Adding jsdoc blocks.
1 parent 8230f3f commit a5f306f

72 files changed

Lines changed: 355 additions & 16 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

v3/src/actions/Angle.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*
77
* @param {array} items - An array of Game Objects. The contents of this array are updated by this Action.
88
* @param {number} value - [description]
9+
*
910
* @return {array} The array of Game Objects that was passed to this Action.
1011
*/
1112
var Angle = function (items, value)

v3/src/actions/Call.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* @param {array} items - An array of Game Objects. The contents of this array are updated by this Action.
88
* @param {function} callback - [description]
99
* @param {object} thisArg - [description]
10+
*
1011
* @return {array} The array of Game Objects that was passed to this Action.
1112
*/
1213
var Call = function (items, callback, thisArg)

v3/src/actions/GetFirst.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* @param {array} items - An array of Game Objects. The contents of this array are updated by this Action.
1414
* @param {object} compare - [description]
1515
* @param {integer} index - [description]
16+
*
1617
* @return {array} The array of Game Objects that was passed to this Action.
1718
*/
1819
var GetFirst = function (items, compare, index)

v3/src/actions/GridAlign.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ var tempZone = new Zone({ sys: { sortChildrenFlag: false }}, 0, 0, 1, 1);
1313
*
1414
* @param {array} items - An array of Game Objects. The contents of this array are updated by this Action.
1515
* @param {object} options - [description]
16+
*
1617
* @return {array} The array of Game Objects that was passed to this Action.
1718
*/
1819
var GridAlign = function (items, options)

v3/src/actions/IncAlpha.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*
77
* @param {array} items - An array of Game Objects. The contents of this array are updated by this Action.
88
* @param {number} value - [description]
9+
*
910
* @return {array} The array of Game Objects that was passed to this Action.
1011
*/
1112
var IncAlpha = function (items, value)

v3/src/actions/IncX.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*
77
* @param {array} items - An array of Game Objects. The contents of this array are updated by this Action.
88
* @param {number} value - [description]
9+
*
910
* @return {array} The array of Game Objects that was passed to this Action.
1011
*/
1112
var IncX = function (items, value)

v3/src/actions/IncXY.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* @param {array} items - An array of Game Objects. The contents of this array are updated by this Action.
88
* @param {number} x - [description]
99
* @param {number} y - [description]
10+
*
1011
* @return {array} The array of Game Objects that was passed to this Action.
1112
*/
1213
var IncXY = function (items, x, y)

v3/src/actions/IncY.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*
77
* @param {array} items - An array of Game Objects. The contents of this array are updated by this Action.
88
* @param {number} value - [description]
9+
*
910
* @return {array} The array of Game Objects that was passed to this Action.
1011
*/
1112
var IncY = function (items, value)

v3/src/actions/PlaceOnCircle.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* @param {Phaser.Geom.Circle} circle - [description]
99
* @param {number} [startAngle=0] - [description]
1010
* @param {number} [endAngle=6.28] - [description]
11+
*
1112
* @return {array} The array of Game Objects that was passed to this Action.
1213
*/
1314
var PlaceOnCircle = function (items, circle, startAngle, endAngle)

v3/src/actions/PlaceOnEllipse.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* @param {Phaser.Geom.Ellipse} ellipse - [description]
99
* @param {number} [startAngle=0] - [description]
1010
* @param {number} [endAngle=6.28] - [description]
11+
*
1112
* @return {array} The array of Game Objects that was passed to this Action.
1213
*/
1314
var PlaceOnEllipse = function (items, ellipse, startAngle, endAngle)

0 commit comments

Comments
 (0)