From e6a4d9a0b3fe4b73ff781bea09ef2dfd6153a952 Mon Sep 17 00:00:00 2001 From: samme Date: Mon, 29 Jun 2026 12:51:43 -0700 Subject: [PATCH] Docs: correct AnimationManager get() return type Fixes #7324 --- src/animations/AnimationManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/animations/AnimationManager.js b/src/animations/AnimationManager.js index 3fed7eaf43..fc9cd93266 100644 --- a/src/animations/AnimationManager.js +++ b/src/animations/AnimationManager.js @@ -806,7 +806,7 @@ var AnimationManager = new Class({ * * @param {string} key - The key of the Animation to retrieve. * - * @return {Phaser.Animations.Animation} The Animation. + * @return {(Phaser.Animations.Animation|undefined)} The Animation or `undefined`. */ get: function (key) {