@flighthq/tilemap 0.5.1-next.903.f434bc2 → 0.5.1-next.905.5fbf787
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/README.md +2 -2
- package/package.json +8 -8
- package/src/tilemap.test.ts +14 -1
package/README.md
CHANGED
|
@@ -13,5 +13,5 @@ Import the supported application-facing API from `@flighthq/tilemap`. The `@flig
|
|
|
13
13
|
This package is part of the locked-version Flight SDK graph. Applications may instead install and import `@flighthq/sdk` when package-level tree shaking is sufficient.
|
|
14
14
|
|
|
15
15
|
- [Flight project](https://github.com/flighthq/flight)
|
|
16
|
-
- [Source for @flighthq/tilemap@0.5.1-next.
|
|
17
|
-
- [License](https://github.com/flighthq/flight/blob/
|
|
16
|
+
- [Source for @flighthq/tilemap@0.5.1-next.905.5fbf787](https://github.com/flighthq/flight/tree/5fbf7874064c384307542d68b4dcb6a895ff0dcf/packages/tilemap)
|
|
17
|
+
- [License](https://github.com/flighthq/flight/blob/5fbf7874064c384307542d68b4dcb6a895ff0dcf/LICENSE.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flighthq/tilemap",
|
|
3
|
-
"version": "0.5.1-next.
|
|
3
|
+
"version": "0.5.1-next.905.5fbf787",
|
|
4
4
|
"author": "Joshua Granick and other contributors",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
"clean:dist": "tsx ../../scripts/clean-package-dist.ts"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@flighthq/entity": "0.5.1-next.
|
|
42
|
-
"@flighthq/geometry": "0.5.1-next.
|
|
43
|
-
"@flighthq/node": "0.5.1-next.
|
|
44
|
-
"@flighthq/quadbatch": "0.5.1-next.
|
|
45
|
-
"@flighthq/scene2d": "0.5.1-next.
|
|
46
|
-
"@flighthq/signals": "0.5.1-next.
|
|
47
|
-
"@flighthq/types": "0.5.1-next.
|
|
41
|
+
"@flighthq/entity": "0.5.1-next.905.5fbf787",
|
|
42
|
+
"@flighthq/geometry": "0.5.1-next.905.5fbf787",
|
|
43
|
+
"@flighthq/node": "0.5.1-next.905.5fbf787",
|
|
44
|
+
"@flighthq/quadbatch": "0.5.1-next.905.5fbf787",
|
|
45
|
+
"@flighthq/scene2d": "0.5.1-next.905.5fbf787",
|
|
46
|
+
"@flighthq/signals": "0.5.1-next.905.5fbf787",
|
|
47
|
+
"@flighthq/types": "0.5.1-next.905.5fbf787"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"typescript": "^5.3.0"
|
package/src/tilemap.test.ts
CHANGED
|
@@ -22,6 +22,8 @@ import {
|
|
|
22
22
|
getTilemapTileAtPoint,
|
|
23
23
|
getTilemapTileAtPointXY,
|
|
24
24
|
getTilemapTileRect,
|
|
25
|
+
initializeTilemapData,
|
|
26
|
+
initializeTilemapSignals,
|
|
25
27
|
resizeTilemap,
|
|
26
28
|
setTilemapTile,
|
|
27
29
|
setTilemapTileTint,
|
|
@@ -371,6 +373,18 @@ describe('getTilemapTileRect', () => {
|
|
|
371
373
|
});
|
|
372
374
|
});
|
|
373
375
|
|
|
376
|
+
describe('initializeTilemapData', () => {
|
|
377
|
+
it('is the construction initializer of createTilemapData', () => {
|
|
378
|
+
expect(typeof initializeTilemapData).toBe('function');
|
|
379
|
+
});
|
|
380
|
+
});
|
|
381
|
+
|
|
382
|
+
describe('initializeTilemapSignals', () => {
|
|
383
|
+
it('is the construction initializer of createTilemapSignals', () => {
|
|
384
|
+
expect(typeof initializeTilemapSignals).toBe('function');
|
|
385
|
+
});
|
|
386
|
+
});
|
|
387
|
+
|
|
374
388
|
describe('resizeTilemap', () => {
|
|
375
389
|
it('updates columns and rows', () => {
|
|
376
390
|
const tilemap = createTilemap({ data: { columns: 3, rows: 3 } });
|
|
@@ -429,7 +443,6 @@ describe('setTilemapTile', () => {
|
|
|
429
443
|
expect(getTilemapTile(tilemap, 0, 0)).toBe(-1);
|
|
430
444
|
});
|
|
431
445
|
});
|
|
432
|
-
|
|
433
446
|
describe('setTilemapTiles', () => {
|
|
434
447
|
it('blits a sub-grid at offset (0, 0)', () => {
|
|
435
448
|
const tilemap = createTilemap({ data: { columns: 4, rows: 3 } });
|