@drincs/pixi-vn 0.5.0 → 0.5.2

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.
Files changed (67) hide show
  1. package/dist/classes/CharacterBaseModel.js +6 -6
  2. package/dist/classes/CharacterBaseModel.js.map +1 -1
  3. package/dist/classes/CharacterBaseModel.mjs +6 -6
  4. package/dist/classes/CharacterBaseModel.mjs.map +1 -1
  5. package/dist/classes/ChoiceMenuOption.d.mts +17 -4
  6. package/dist/classes/ChoiceMenuOption.d.ts +17 -4
  7. package/dist/classes/ChoiceMenuOption.js +10 -1
  8. package/dist/classes/ChoiceMenuOption.js.map +1 -1
  9. package/dist/classes/ChoiceMenuOption.mjs +10 -1
  10. package/dist/classes/ChoiceMenuOption.mjs.map +1 -1
  11. package/dist/classes/StoredClassModel.js.map +1 -1
  12. package/dist/classes/StoredClassModel.mjs.map +1 -1
  13. package/dist/classes/index.js +6 -6
  14. package/dist/classes/index.js.map +1 -1
  15. package/dist/classes/index.mjs +6 -6
  16. package/dist/classes/index.mjs.map +1 -1
  17. package/dist/classes/ticker/TickerFadeAlpha.js.map +1 -1
  18. package/dist/classes/ticker/TickerFadeAlpha.mjs.map +1 -1
  19. package/dist/classes/ticker/TickerMove.js.map +1 -1
  20. package/dist/classes/ticker/TickerMove.mjs.map +1 -1
  21. package/dist/classes/ticker/TickerRotate.js.map +1 -1
  22. package/dist/classes/ticker/TickerRotate.mjs.map +1 -1
  23. package/dist/classes/ticker/index.js.map +1 -1
  24. package/dist/classes/ticker/index.mjs.map +1 -1
  25. package/dist/constants.d.mts +1 -1
  26. package/dist/constants.d.ts +1 -1
  27. package/dist/constants.js +1 -1
  28. package/dist/constants.js.map +1 -1
  29. package/dist/constants.mjs +1 -1
  30. package/dist/constants.mjs.map +1 -1
  31. package/dist/functions/DialogueUtility.js +47 -17
  32. package/dist/functions/DialogueUtility.js.map +1 -1
  33. package/dist/functions/DialogueUtility.mjs +47 -17
  34. package/dist/functions/DialogueUtility.mjs.map +1 -1
  35. package/dist/functions/FlagsUtility.js.map +1 -1
  36. package/dist/functions/FlagsUtility.mjs.map +1 -1
  37. package/dist/functions/GameUtility.js.map +1 -1
  38. package/dist/functions/GameUtility.mjs.map +1 -1
  39. package/dist/functions/ImageUtility.js.map +1 -1
  40. package/dist/functions/ImageUtility.mjs.map +1 -1
  41. package/dist/functions/SavesUtility.js +25 -7
  42. package/dist/functions/SavesUtility.js.map +1 -1
  43. package/dist/functions/SavesUtility.mjs +25 -7
  44. package/dist/functions/SavesUtility.mjs.map +1 -1
  45. package/dist/functions/index.js +48 -18
  46. package/dist/functions/index.js.map +1 -1
  47. package/dist/functions/index.mjs +48 -18
  48. package/dist/functions/index.mjs.map +1 -1
  49. package/dist/index.js +60 -30
  50. package/dist/index.js.map +1 -1
  51. package/dist/index.mjs +60 -30
  52. package/dist/index.mjs.map +1 -1
  53. package/dist/interface/IDialogueHistory.d.mts +4 -4
  54. package/dist/interface/IDialogueHistory.d.ts +4 -4
  55. package/dist/interface/IHistoryStep.d.mts +2 -2
  56. package/dist/interface/IHistoryStep.d.ts +2 -2
  57. package/dist/managers/StepManager.d.mts +14 -0
  58. package/dist/managers/StepManager.d.ts +14 -0
  59. package/dist/managers/StepManager.js +18 -0
  60. package/dist/managers/StepManager.js.map +1 -1
  61. package/dist/managers/StepManager.mjs +18 -0
  62. package/dist/managers/StepManager.mjs.map +1 -1
  63. package/dist/managers/index.js +24 -6
  64. package/dist/managers/index.js.map +1 -1
  65. package/dist/managers/index.mjs +24 -6
  66. package/dist/managers/index.mjs.map +1 -1
  67. package/package.json +1 -1
@@ -59,7 +59,13 @@ var __async = (__this, __arguments, generator) => {
59
59
  };
60
60
 
61
61
  // src/constants.ts
62
- var PIXIVN_VERSION = "0.5.0";
62
+ var PIXIVN_VERSION = "0.5.2";
63
+
64
+ // src/types/PauseType.ts
65
+ var PauseValueType = "pause";
66
+
67
+ // src/types/RepeatType.ts
68
+ var Repeat = "repeat";
63
69
  function getStepSha1(step) {
64
70
  let sha1String = sha1__default.default(step.toString().toLocaleLowerCase());
65
71
  return sha1String.toString();
@@ -122,12 +128,6 @@ function getLabelInstanceByClassName(labelName) {
122
128
  }
123
129
  }
124
130
 
125
- // src/types/PauseType.ts
126
- var PauseValueType = "pause";
127
-
128
- // src/types/RepeatType.ts
129
- var Repeat = "repeat";
130
-
131
131
  // src/functions/DialogueUtility.ts
132
132
  function getDialogue() {
133
133
  return GameStorageManager.getVariable(GameStorageManager.keysSystem.CURRENT_DIALOGUE_MEMORY_KEY);
@@ -1867,6 +1867,24 @@ var _GameStepManager = class _GameStepManager {
1867
1867
  return yield _GameStepManager.runCurrentStep(props);
1868
1868
  });
1869
1869
  }
1870
+ /**
1871
+ * When the player is in a choice menu, can use this function to exit to the choice menu.
1872
+ * @param props The props to pass to the step.
1873
+ * @returns StepLabelResultType or undefined.
1874
+ * @example
1875
+ * ```typescript
1876
+ * GameStepManager.exitToChoiceMenu(yourParams).then((result) => {
1877
+ * if (result) {
1878
+ * // your code
1879
+ * }
1880
+ * })
1881
+ * ```
1882
+ */
1883
+ static exitToChoiceMenu(props) {
1884
+ return __async(this, null, function* () {
1885
+ return _GameStepManager.runNextStep(props);
1886
+ });
1887
+ }
1870
1888
  /* After Update Methods */
1871
1889
  // /**
1872
1890
  // * After the update or code edit, some steps or labels may no longer match.