@drincs/pixi-vn 0.5.4 → 0.5.6
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/dist/classes/CharacterBaseModel.js.map +1 -1
- package/dist/classes/CharacterBaseModel.mjs.map +1 -1
- package/dist/classes/ChoiceMenuOption.js +4 -6
- package/dist/classes/ChoiceMenuOption.js.map +1 -1
- package/dist/classes/ChoiceMenuOption.mjs +4 -6
- package/dist/classes/ChoiceMenuOption.mjs.map +1 -1
- package/dist/classes/CloseLabel.d.mts +2 -4
- package/dist/classes/CloseLabel.d.ts +2 -4
- package/dist/classes/CloseLabel.js +4 -6
- package/dist/classes/CloseLabel.js.map +1 -1
- package/dist/classes/CloseLabel.mjs +4 -6
- package/dist/classes/CloseLabel.mjs.map +1 -1
- package/dist/classes/StoredClassModel.js.map +1 -1
- package/dist/classes/StoredClassModel.mjs.map +1 -1
- package/dist/classes/index.d.mts +1 -1
- package/dist/classes/index.d.ts +1 -1
- package/dist/classes/index.js +30 -0
- package/dist/classes/index.js.map +1 -1
- package/dist/classes/index.mjs +30 -1
- package/dist/classes/index.mjs.map +1 -1
- package/dist/classes/ticker/TickerFadeAlpha.js.map +1 -1
- package/dist/classes/ticker/TickerFadeAlpha.mjs.map +1 -1
- package/dist/classes/ticker/TickerMove.js.map +1 -1
- package/dist/classes/ticker/TickerMove.mjs.map +1 -1
- package/dist/classes/ticker/TickerRotate.js.map +1 -1
- package/dist/classes/ticker/TickerRotate.mjs.map +1 -1
- package/dist/classes/ticker/index.js.map +1 -1
- package/dist/classes/ticker/index.mjs.map +1 -1
- package/dist/constants.d.mts +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/constants.js.map +1 -1
- package/dist/constants.mjs +1 -1
- package/dist/constants.mjs.map +1 -1
- package/dist/decorators/LabelDecorator.js.map +1 -1
- package/dist/decorators/LabelDecorator.mjs.map +1 -1
- package/dist/decorators/index.js.map +1 -1
- package/dist/decorators/index.mjs.map +1 -1
- package/dist/functions/DialogueUtility.js +5 -7
- package/dist/functions/DialogueUtility.js.map +1 -1
- package/dist/functions/DialogueUtility.mjs +5 -7
- package/dist/functions/DialogueUtility.mjs.map +1 -1
- package/dist/functions/FlagsUtility.js.map +1 -1
- package/dist/functions/FlagsUtility.mjs.map +1 -1
- package/dist/functions/GameUtility.js.map +1 -1
- package/dist/functions/GameUtility.mjs.map +1 -1
- package/dist/functions/ImageUtility.js.map +1 -1
- package/dist/functions/ImageUtility.mjs.map +1 -1
- package/dist/functions/SavesUtility.js +1 -1
- package/dist/functions/SavesUtility.js.map +1 -1
- package/dist/functions/SavesUtility.mjs +1 -1
- package/dist/functions/SavesUtility.mjs.map +1 -1
- package/dist/functions/index.js +6 -8
- package/dist/functions/index.js.map +1 -1
- package/dist/functions/index.mjs +6 -8
- package/dist/functions/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +7 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -9
- package/dist/index.mjs.map +1 -1
- package/dist/managers/StepManager.d.mts +4 -4
- package/dist/managers/StepManager.d.ts +4 -4
- package/dist/managers/StepManager.js.map +1 -1
- package/dist/managers/StepManager.mjs.map +1 -1
- package/dist/managers/index.js.map +1 -1
- package/dist/managers/index.mjs.map +1 -1
- package/dist/types/StepLabelType.d.mts +1 -1
- package/dist/types/StepLabelType.d.ts +1 -1
- package/package.json +1 -1
|
@@ -109,7 +109,7 @@ declare class GameStepManager {
|
|
|
109
109
|
* }
|
|
110
110
|
* ```
|
|
111
111
|
*/
|
|
112
|
-
static runNextStep(props
|
|
112
|
+
static runNextStep(props: StepLabelPropsType): Promise<StepLabelResultType>;
|
|
113
113
|
/**
|
|
114
114
|
* Execute the current step and add it to the history.
|
|
115
115
|
* @param props The props to pass to the step.
|
|
@@ -139,7 +139,7 @@ declare class GameStepManager {
|
|
|
139
139
|
* })
|
|
140
140
|
* ```
|
|
141
141
|
*/
|
|
142
|
-
static callLabel<T extends {} = {}>(label: Label<T> | LabelIdType, props
|
|
142
|
+
static callLabel<T extends {} = {}>(label: Label<T> | LabelIdType, props: StepLabelPropsType<T>): Promise<StepLabelResultType>;
|
|
143
143
|
/**
|
|
144
144
|
* Execute the label, close all labels and add them to the history.
|
|
145
145
|
* Is a jump function in Ren'Py.
|
|
@@ -162,7 +162,7 @@ declare class GameStepManager {
|
|
|
162
162
|
* })
|
|
163
163
|
* ```
|
|
164
164
|
*/
|
|
165
|
-
static jumpLabel<T extends {}>(label: Label<T> | LabelIdType, props
|
|
165
|
+
static jumpLabel<T extends {}>(label: Label<T> | LabelIdType, props: StepLabelPropsType<T>): Promise<StepLabelResultType>;
|
|
166
166
|
/**
|
|
167
167
|
* When the player is in a choice menu, can use this function to exit to the choice menu.
|
|
168
168
|
* @param props The props to pass to the step.
|
|
@@ -176,7 +176,7 @@ declare class GameStepManager {
|
|
|
176
176
|
* })
|
|
177
177
|
* ```
|
|
178
178
|
*/
|
|
179
|
-
static closeChoiceMenu<T extends {}>(props
|
|
179
|
+
static closeChoiceMenu<T extends {}>(props: StepLabelPropsType<T>): Promise<StepLabelResultType>;
|
|
180
180
|
/**
|
|
181
181
|
* Go back to the last step and add it to the history.
|
|
182
182
|
* @param navigate The navigate function.
|
|
@@ -109,7 +109,7 @@ declare class GameStepManager {
|
|
|
109
109
|
* }
|
|
110
110
|
* ```
|
|
111
111
|
*/
|
|
112
|
-
static runNextStep(props
|
|
112
|
+
static runNextStep(props: StepLabelPropsType): Promise<StepLabelResultType>;
|
|
113
113
|
/**
|
|
114
114
|
* Execute the current step and add it to the history.
|
|
115
115
|
* @param props The props to pass to the step.
|
|
@@ -139,7 +139,7 @@ declare class GameStepManager {
|
|
|
139
139
|
* })
|
|
140
140
|
* ```
|
|
141
141
|
*/
|
|
142
|
-
static callLabel<T extends {} = {}>(label: Label<T> | LabelIdType, props
|
|
142
|
+
static callLabel<T extends {} = {}>(label: Label<T> | LabelIdType, props: StepLabelPropsType<T>): Promise<StepLabelResultType>;
|
|
143
143
|
/**
|
|
144
144
|
* Execute the label, close all labels and add them to the history.
|
|
145
145
|
* Is a jump function in Ren'Py.
|
|
@@ -162,7 +162,7 @@ declare class GameStepManager {
|
|
|
162
162
|
* })
|
|
163
163
|
* ```
|
|
164
164
|
*/
|
|
165
|
-
static jumpLabel<T extends {}>(label: Label<T> | LabelIdType, props
|
|
165
|
+
static jumpLabel<T extends {}>(label: Label<T> | LabelIdType, props: StepLabelPropsType<T>): Promise<StepLabelResultType>;
|
|
166
166
|
/**
|
|
167
167
|
* When the player is in a choice menu, can use this function to exit to the choice menu.
|
|
168
168
|
* @param props The props to pass to the step.
|
|
@@ -176,7 +176,7 @@ declare class GameStepManager {
|
|
|
176
176
|
* })
|
|
177
177
|
* ```
|
|
178
178
|
*/
|
|
179
|
-
static closeChoiceMenu<T extends {}>(props
|
|
179
|
+
static closeChoiceMenu<T extends {}>(props: StepLabelPropsType<T>): Promise<StepLabelResultType>;
|
|
180
180
|
/**
|
|
181
181
|
* Go back to the last step and add it to the history.
|
|
182
182
|
* @param navigate The navigate function.
|