Skip to content

Commit 0899c13

Browse files
committed
Fixed types
1 parent 13f5608 commit 0899c13

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/math/TransformXY.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ var Vector2 = require('./Vector2');
2020
* @param {number} rotation - Rotation of the transform point, in radians.
2121
* @param {number} scaleX - Horizontal scale of the transform point.
2222
* @param {number} scaleY - Vertical scale of the transform point.
23-
* @param {(Vector2|Point|object)} [output] - [description]
23+
* @param {(Phaser.Math.Vector2|Phaser.Geom.Point|object)} [output] - [description]
2424
*
25-
* @return {(Vector2|Point|object)} The translated point.
25+
* @return {(Phaser.Math.Vector2|Phaser.Geom.Point|object)} The translated point.
2626
*/
2727
var TransformXY = function (x, y, positionX, positionY, rotation, scaleX, scaleY, output)
2828
{

0 commit comments

Comments
 (0)