@drincs/pixi-vn 1.8.2 → 1.8.3
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 +11 -11
- package/dist/canvas.cjs +1 -1
- package/dist/canvas.mjs +1 -1
- package/dist/characters.d.cts +1 -1
- package/dist/characters.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +1 -1
- package/dist/narration.cjs +2 -2
- package/dist/narration.d.cts +38 -7
- package/dist/narration.d.ts +38 -7
- package/dist/narration.mjs +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -25,22 +25,22 @@ For a quick start, various [project templates](#project-initialization) are avai
|
|
|
25
25
|
|
|
26
26
|
You have the option to use various types of narrative languages (in addition to JavaScript/TypeScript). Currently you can use the following:
|
|
27
27
|
|
|
28
|
-
- [_ink_](https://pixi-vn.
|
|
28
|
+
- [_ink_](https://pixi-vn.com/ink/ink)
|
|
29
29
|
|
|
30
30
|
Pixi’VN does not provide built-in components to create the game UI. Instead, you should use external JavaScript frameworks to build your UI. This allows you to leverage systems such as React, Vue, etc., to create complex and high-performance **UI screens**.
|
|
31
31
|
|
|
32
32
|
## Wiki
|
|
33
33
|
|
|
34
|
-
- [Why Pixi’VN?](https://pixi-vn.
|
|
35
|
-
- [Ren'Py vs Pixi’VN](https://pixi-vn.
|
|
36
|
-
- [Quick Start](https://pixi-vn.
|
|
37
|
-
- [Templates](https://pixi-vn.
|
|
34
|
+
- [Why Pixi’VN?](https://pixi-vn.com/start/why)
|
|
35
|
+
- [Ren'Py vs Pixi’VN](https://pixi-vn.com/start/versus-renpy)
|
|
36
|
+
- [Quick Start](https://pixi-vn.com/start/getting-started)
|
|
37
|
+
- [Templates](https://pixi-vn.com/start/templates)
|
|
38
38
|
- Make your first:
|
|
39
|
-
- [Visual Novel](https://pixi-vn.
|
|
40
|
-
- [Point & Click Adventure](https://pixi-vn.
|
|
41
|
-
- [RPG game](https://pixi-vn.
|
|
42
|
-
- [IDE or graphical editor](https://pixi-vn.
|
|
43
|
-
- [Game engine](https://pixi-vn.
|
|
39
|
+
- [Visual Novel](https://pixi-vn.com/start/make-visual-novel)
|
|
40
|
+
- [Point & Click Adventure](https://pixi-vn.com/nqtr/make-point-and-click)
|
|
41
|
+
- [RPG game](https://pixi-vn.com/start/make-rpg)
|
|
42
|
+
- [IDE or graphical editor](https://pixi-vn.com/start/make-ide)
|
|
43
|
+
- [Game engine](https://pixi-vn.com/start/make-game-engine)
|
|
44
44
|
|
|
45
45
|
## Prerequisites
|
|
46
46
|
|
|
@@ -93,7 +93,7 @@ Game.init(body, {
|
|
|
93
93
|
Game.start("start", {});
|
|
94
94
|
});
|
|
95
95
|
|
|
96
|
-
// read more here: https://pixi-vn.
|
|
96
|
+
// read more here: https://pixi-vn.com/start/other-narrative-features.html#how-manage-the-end-of-the-game
|
|
97
97
|
Game.onEnd(async (props) => {
|
|
98
98
|
Game.clear();
|
|
99
99
|
// navigate to main menu
|