2017-03-28 12:20:39 +00:00
|
|
|
var MathRotateAroundDistance = require('../math/RotateAroundDistance');
|
|
|
|
|
2017-10-04 16:05:26 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @function Phaser.Actions.RotateAroundDistance
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {array} items - An array of Game Objects. The contents of this array are updated by this Action.
|
|
|
|
* @param {object} point - Any object with public `x` and `y` properties.
|
|
|
|
* @param {number} angle - The angle to rotate by, in radians.
|
|
|
|
* @param {number} distance - The distance from the point of rotation in pixels.
|
2017-10-06 02:05:01 +00:00
|
|
|
*
|
2017-10-04 16:05:26 +00:00
|
|
|
* @return {array} The array of Game Objects that was passed to this Action.
|
|
|
|
*/
|
2017-03-28 12:20:39 +00:00
|
|
|
var RotateAroundDistance = function (items, point, angle, distance)
|
|
|
|
{
|
|
|
|
var x = point.x;
|
|
|
|
var y = point.y;
|
|
|
|
|
|
|
|
for (var i = 0; i < items.length; i++)
|
|
|
|
{
|
|
|
|
MathRotateAroundDistance(items[i], x, y, angle, distance);
|
|
|
|
}
|
|
|
|
|
|
|
|
return items;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = RotateAroundDistance;
|