From 45f553d8af8b98a5af2aec1a3de69a62ca774c8b Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Wed, 31 Jan 2024 21:22:39 +0000 Subject: [PATCH] x and y are non-optional. Fix #6518 --- src/math/typedefs/Vector2Like.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/math/typedefs/Vector2Like.js b/src/math/typedefs/Vector2Like.js index f868350ad..4e410e6f3 100644 --- a/src/math/typedefs/Vector2Like.js +++ b/src/math/typedefs/Vector2Like.js @@ -2,6 +2,6 @@ * @typedef {object} Phaser.Types.Math.Vector2Like * @since 3.0.0 * - * @property {number} [x] - The x component. - * @property {number} [y] - The y component. + * @property {number} x - The x component. + * @property {number} y - The y component. */