From 8285a78231648fbfe80b172afb0ad2a32b6f9204 Mon Sep 17 00:00:00 2001 From: chavaenc Date: Thu, 20 Nov 2025 20:36:47 -0600 Subject: [PATCH] fix: Correct Group.angle description --- src/gameobjects/group/Group.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gameobjects/group/Group.js b/src/gameobjects/group/Group.js index 9644ab8d43..9876047928 100644 --- a/src/gameobjects/group/Group.js +++ b/src/gameobjects/group/Group.js @@ -1390,12 +1390,12 @@ var Group = new Class({ }, /** - * Sets the angle of each group member. + * Adds the given value to the angle of each group member. * * @method Phaser.GameObjects.Group#angle * @since 3.21.0 * - * @param {number} value - The amount to set the angle to, in degrees. + * @param {number} value - The amount to add to the angle, in degrees. * @param {number} [step=0] - This is added to the `value` amount, multiplied by the iteration counter. * * @return {this} This Group object.