vue-phaserjs 2.25.0 → 2.26.0
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 +1 -1
- package/dist/components/index.d.ts +2 -2
- package/dist/index.js +989 -86918
- package/package.json +10 -12
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Vue 3 integration for the [Phaser 4](https://phaser.io) game engine. Provides Vu
|
|
|
20
20
|
## <a name="getting-started">🚀 Getting Started</a>
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
pnpm i vue-phaserjs vue phaser phaser4-rex-plugins pinia
|
|
23
|
+
pnpm i vue-phaserjs @esposter/shared parse-tmx vue phaser phaser4-rex-plugins pinia
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
Add the type declaration files so scene key types and custom plugins get proper intellisense:
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { default as Zone } from './Zone.vue';
|
|
2
2
|
import { default as Video } from './Video.vue';
|
|
3
3
|
import { default as Triangle } from './Triangle.vue';
|
|
4
|
-
import { default as TileSprite } from './TileSprite.vue';
|
|
5
4
|
import { default as Tilemap } from './Tilemap.vue';
|
|
5
|
+
import { default as TileSprite } from './TileSprite.vue';
|
|
6
6
|
import { default as Text } from './Text.vue';
|
|
7
7
|
import { default as Star } from './Star.vue';
|
|
8
8
|
import { default as Sprite } from './Sprite.vue';
|
|
@@ -25,4 +25,4 @@ import { default as Container } from './Container.vue';
|
|
|
25
25
|
import { default as Circle } from './Circle.vue';
|
|
26
26
|
import { default as BitmapText } from './BitmapText.vue';
|
|
27
27
|
import { default as Arc } from './Arc.vue';
|
|
28
|
-
export { Zone, Video, Triangle,
|
|
28
|
+
export { Zone, Video, Triangle, Tilemap, TileSprite, Text, Star, Sprite, Scene, RenderTexture, Rectangle, Polygon, PathFollower, Particles, Nineslice, Line, IsoTriangle, IsoBox, Image, Graphics, Game, Ellipse, Curve, Container, Circle, BitmapText, Arc, };
|