From 1185617e0c6207cb7c9f6dd95fdc6d9723ec8c0d Mon Sep 17 00:00:00 2001 From: Antriel Date: Tue, 23 Jun 2026 12:38:20 +0200 Subject: [PATCH] fix `setPollAlways()` hit-testing inactive pointers, firing phantom `pointerover`/`pointerout` from a parked pointer at world (0,0) --- src/input/InputPlugin.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/input/InputPlugin.js b/src/input/InputPlugin.js index 5f22c3204c..2e785ce83b 100644 --- a/src/input/InputPlugin.js +++ b/src/input/InputPlugin.js @@ -652,6 +652,11 @@ var InputPlugin = new Class({ var pointer = pointers[i]; + if (!pointer.active) + { + continue; + } + // Always reset this array this._tempZones = [];