excalibur 0.32.0-alpha.1571 → 0.32.0-alpha.1572

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- /*! excalibur - 0.32.0-alpha.1571+1b94394 - 2025-11-26
1
+ /*! excalibur - 0.32.0-alpha.1572+72a3430 - 2025-11-28
2
2
  https://github.com/excaliburjs/Excalibur
3
3
  Copyright (c) 2025 Excalibur.js <https://github.com/excaliburjs/Excalibur/graphs/contributors>
4
4
  Licensed BSD-2-Clause
@@ -27211,7 +27211,9 @@ class PointerSystem extends System {
27211
27211
  const collider = colliders[i];
27212
27212
  const maybePointer = this._entityToPointer.get(collider.owner);
27213
27213
  if (maybePointer && (maybePointer.useColliderShape || this.overrideUseColliderShape)) {
27214
- this._pointerEventDispatcher.addPointerToObject(collider.owner, pointerId);
27214
+ if (collider.contains(pos.worldPos)) {
27215
+ this._pointerEventDispatcher.addPointerToObject(collider.owner, pointerId);
27216
+ }
27215
27217
  }
27216
27218
  }
27217
27219
  const graphics = this._graphicsHashGrid.query(pos.worldPos);
@@ -33436,7 +33438,7 @@ class Semaphore {
33436
33438
  this._count += count;
33437
33439
  }
33438
33440
  }
33439
- const EX_VERSION = "0.32.0-alpha.1571+1b94394";
33441
+ const EX_VERSION = "0.32.0-alpha.1572+72a3430";
33440
33442
  polyfill();
33441
33443
  export {
33442
33444
  ActionCompleteEvent,
@@ -1,4 +1,4 @@
1
- /*! excalibur - 0.32.0-alpha.1571+1b94394 - 2025-11-26
1
+ /*! excalibur - 0.32.0-alpha.1572+72a3430 - 2025-11-28
2
2
  https://github.com/excaliburjs/Excalibur
3
3
  Copyright (c) 2025 Excalibur.js <https://github.com/excaliburjs/Excalibur/graphs/contributors>
4
4
  Licensed BSD-2-Clause
@@ -27211,7 +27211,9 @@ class PointerSystem extends System {
27211
27211
  const collider = colliders[i];
27212
27212
  const maybePointer = this._entityToPointer.get(collider.owner);
27213
27213
  if (maybePointer && (maybePointer.useColliderShape || this.overrideUseColliderShape)) {
27214
- this._pointerEventDispatcher.addPointerToObject(collider.owner, pointerId);
27214
+ if (collider.contains(pos.worldPos)) {
27215
+ this._pointerEventDispatcher.addPointerToObject(collider.owner, pointerId);
27216
+ }
27215
27217
  }
27216
27218
  }
27217
27219
  const graphics = this._graphicsHashGrid.query(pos.worldPos);
@@ -33436,7 +33438,7 @@ class Semaphore {
33436
33438
  this._count += count;
33437
33439
  }
33438
33440
  }
33439
- const EX_VERSION = "0.32.0-alpha.1571+1b94394";
33441
+ const EX_VERSION = "0.32.0-alpha.1572+72a3430";
33440
33442
  polyfill();
33441
33443
  export {
33442
33444
  ActionCompleteEvent,
@@ -1,4 +1,4 @@
1
- /*! excalibur - 0.32.0-alpha.1571+1b94394 - 2025-11-26
1
+ /*! excalibur - 0.32.0-alpha.1572+72a3430 - 2025-11-28
2
2
  https://github.com/excaliburjs/Excalibur
3
3
  Copyright (c) 2025 Excalibur.js <https://github.com/excaliburjs/Excalibur/graphs/contributors>
4
4
  Licensed BSD-2-Clause
@@ -18395,7 +18395,7 @@ class Ps extends Ft {
18395
18395
  const i = this._scene.physics.query(e.worldPos);
18396
18396
  for (let n = 0; n < i.length; n++) {
18397
18397
  const o = i[n], a = this._entityToPointer.get(o.owner);
18398
- a && (a.useColliderShape || this.overrideUseColliderShape) && this._pointerEventDispatcher.addPointerToObject(o.owner, t);
18398
+ a && (a.useColliderShape || this.overrideUseColliderShape) && o.contains(e.worldPos) && this._pointerEventDispatcher.addPointerToObject(o.owner, t);
18399
18399
  }
18400
18400
  const s = this._graphicsHashGrid.query(e.worldPos);
18401
18401
  for (let n = 0; n < s.length; n++) {
@@ -22470,7 +22470,7 @@ class Cc {
22470
22470
  }
22471
22471
  }
22472
22472
  }
22473
- const hn = "0.32.0-alpha.1571+1b94394";
22473
+ const hn = "0.32.0-alpha.1572+72a3430";
22474
22474
  ln();
22475
22475
  export {
22476
22476
  Wn as ActionCompleteEvent,
@@ -1,4 +1,4 @@
1
- /*! excalibur - 0.32.0-alpha.1571+1b94394 - 2025-11-26
1
+ /*! excalibur - 0.32.0-alpha.1572+72a3430 - 2025-11-28
2
2
  https://github.com/excaliburjs/Excalibur
3
3
  Copyright (c) 2025 Excalibur.js <https://github.com/excaliburjs/Excalibur/graphs/contributors>
4
4
  Licensed BSD-2-Clause
@@ -18395,7 +18395,7 @@ class Ps extends Ft {
18395
18395
  const i = this._scene.physics.query(e.worldPos);
18396
18396
  for (let n = 0; n < i.length; n++) {
18397
18397
  const o = i[n], a = this._entityToPointer.get(o.owner);
18398
- a && (a.useColliderShape || this.overrideUseColliderShape) && this._pointerEventDispatcher.addPointerToObject(o.owner, t);
18398
+ a && (a.useColliderShape || this.overrideUseColliderShape) && o.contains(e.worldPos) && this._pointerEventDispatcher.addPointerToObject(o.owner, t);
18399
18399
  }
18400
18400
  const s = this._graphicsHashGrid.query(e.worldPos);
18401
18401
  for (let n = 0; n < s.length; n++) {
@@ -22470,7 +22470,7 @@ class Cc {
22470
22470
  }
22471
22471
  }
22472
22472
  }
22473
- const hn = "0.32.0-alpha.1571+1b94394";
22473
+ const hn = "0.32.0-alpha.1572+72a3430";
22474
22474
  ln();
22475
22475
  export {
22476
22476
  Wn as ActionCompleteEvent,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "excalibur",
3
3
  "sideEffects": false,
4
- "version": "0.32.0-alpha.1571",
4
+ "version": "0.32.0-alpha.1572",
5
5
  "exNextVersion": "0.32.0",
6
6
  "publishConfig": {
7
7
  "provenance": true