• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

excaliburjs / Excalibur / 8476028331
89%

Build:
DEFAULT BRANCH: main
Ran 29 Mar 2024 01:44AM UTC
Jobs 1
Files 210
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

29 Mar 2024 01:41AM UTC coverage: 91.218% (-0.005%) from 91.223%
8476028331

push

github

web-flow
feat: Add pointer events to TileMap/IsometricMap and tiles (#2968)


This PR adds:
- Pointer event support to `ex.TileMap`'s and individual `ex.Tile`'s
- Pointer event support to `ex.IsometricMap`'s and individual `ex.IsometricTile`'s


```typescript
// Tilemap
const tileMap = new TileMap({...});
for (const tile of tileMap.tiles) {
  tile.on('pointerdown', (evt: ex.PointerEvent) => {
    console.log(tile.x, tile.y);
  });
}

// Isometric
const isoMap = new IsometricMap({...});
for (const tile of isoMap.tiles) {
  tile.on('pointerdown', (evt: ex.PointerEvent) => {
    console.log(tile.x, tile.y);
  });
}
```

5380 of 6825 branches covered (78.83%)

34 of 39 new or added lines in 4 files covered. (87.18%)

6 existing lines in 2 files now uncovered.

11820 of 12958 relevant lines covered (91.22%)

23359.85 hits per line

Jobs
ID Job ID Ran Files Coverage
1 8476028331.1 29 Mar 2024 01:44AM UTC 0
91.22
GitHub Action Run
Source Files on build 8476028331
Detailed source file information is not available for this build.
  • Back to Repo
  • Github Actions Build #8476028331
  • 48ddac9f on github
  • Prev Build on main (#8430700718)
  • Next Build on main (#8476028359)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc