excalibur 0.32.0-alpha.1571 → 0.32.0-alpha.1573
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.
- package/CHANGELOG.md +1 -0
- package/build/dist/Graphics/SpriteFont.d.ts +3 -2
- package/build/dist/excalibur.development.js +5 -3
- package/build/dist/excalibur.js +5 -3
- package/build/dist/excalibur.min.development.js +3 -3
- package/build/dist/excalibur.min.js +3 -3
- package/build/esm/excalibur.development.js +5 -3
- package/build/esm/excalibur.js +5 -3
- package/build/esm/excalibur.min.development.js +3 -3
- package/build/esm/excalibur.min.js +3 -3
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! excalibur - 0.32.0-alpha.
|
|
1
|
+
/*! excalibur - 0.32.0-alpha.1573+fb2f11d - 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
|
-
|
|
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.
|
|
33441
|
+
const EX_VERSION = "0.32.0-alpha.1573+fb2f11d";
|
|
33440
33442
|
polyfill();
|
|
33441
33443
|
export {
|
|
33442
33444
|
ActionCompleteEvent,
|
package/build/esm/excalibur.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! excalibur - 0.32.0-alpha.
|
|
1
|
+
/*! excalibur - 0.32.0-alpha.1573+fb2f11d - 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
|
-
|
|
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.
|
|
33441
|
+
const EX_VERSION = "0.32.0-alpha.1573+fb2f11d";
|
|
33440
33442
|
polyfill();
|
|
33441
33443
|
export {
|
|
33442
33444
|
ActionCompleteEvent,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! excalibur - 0.32.0-alpha.
|
|
1
|
+
/*! excalibur - 0.32.0-alpha.1573+fb2f11d - 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.
|
|
22473
|
+
const hn = "0.32.0-alpha.1573+fb2f11d";
|
|
22474
22474
|
ln();
|
|
22475
22475
|
export {
|
|
22476
22476
|
Wn as ActionCompleteEvent,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! excalibur - 0.32.0-alpha.
|
|
1
|
+
/*! excalibur - 0.32.0-alpha.1573+fb2f11d - 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.
|
|
22473
|
+
const hn = "0.32.0-alpha.1573+fb2f11d";
|
|
22474
22474
|
ln();
|
|
22475
22475
|
export {
|
|
22476
22476
|
Wn as ActionCompleteEvent,
|