diff --git a/src/physics/matter-js/events/COLLISION_ACTIVE_EVENT.js b/src/physics/matter-js/events/COLLISION_ACTIVE_EVENT.js index 95c37e0c9..9b0386c6b 100644 --- a/src/physics/matter-js/events/COLLISION_ACTIVE_EVENT.js +++ b/src/physics/matter-js/events/COLLISION_ACTIVE_EVENT.js @@ -7,7 +7,7 @@ /** * @typedef {object} Phaser.Physics.Matter.Events.CollisionActiveEvent * - * @property {Phaser.Types.Physics.Matter.MatterCollisionData[]} pairs - A list of all affected pairs in the collision. + * @property {Phaser.Types.Physics.Matter.MatterCollisionPair[]} pairs - A list of all affected pairs in the collision. * @property {number} timestamp - The Matter Engine `timing.timestamp` value for the event. * @property {any} source - The source object of the event. * @property {string} name - The name of the event. diff --git a/src/physics/matter-js/events/COLLISION_END_EVENT.js b/src/physics/matter-js/events/COLLISION_END_EVENT.js index b2c225d51..a0e2c7ff2 100644 --- a/src/physics/matter-js/events/COLLISION_END_EVENT.js +++ b/src/physics/matter-js/events/COLLISION_END_EVENT.js @@ -7,7 +7,7 @@ /** * @typedef {object} Phaser.Physics.Matter.Events.CollisionEndEvent * - * @property {Phaser.Types.Physics.Matter.MatterCollisionData[]} pairs - A list of all affected pairs in the collision. + * @property {Phaser.Types.Physics.Matter.MatterCollisionPair[]} pairs - A list of all affected pairs in the collision. * @property {number} timestamp - The Matter Engine `timing.timestamp` value for the event. * @property {any} source - The source object of the event. * @property {string} name - The name of the event. diff --git a/src/physics/matter-js/events/COLLISION_START_EVENT.js b/src/physics/matter-js/events/COLLISION_START_EVENT.js index daaa0cc5b..5d92ab1c6 100644 --- a/src/physics/matter-js/events/COLLISION_START_EVENT.js +++ b/src/physics/matter-js/events/COLLISION_START_EVENT.js @@ -7,7 +7,7 @@ /** * @typedef {object} Phaser.Physics.Matter.Events.CollisionStartEvent * - * @property {Phaser.Types.Physics.Matter.MatterCollisionData[]} pairs - A list of all affected pairs in the collision. + * @property {Phaser.Types.Physics.Matter.MatterCollisionPair[]} pairs - A list of all affected pairs in the collision. * @property {number} timestamp - The Matter Engine `timing.timestamp` value for the event. * @property {any} source - The source object of the event. * @property {string} name - The name of the event.