narrat 3.9.8 → 3.10.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/dist/data/all-stores.d.ts +4 -0
- package/dist/narrat.es.js +3657 -3614
- package/dist/narrat.es.js.map +1 -1
- package/dist/narrat.umd.js +39 -39
- package/dist/narrat.umd.js.map +1 -1
- package/dist/stores/dialog-store.d.ts +1 -0
- package/dist/stores/vm-store.d.ts +4 -0
- package/dist/vm/commands/text.d.ts +15 -1
- package/dist/vm/vm-parser.d.ts +8 -0
- package/package.json +4 -4
|
@@ -3296,6 +3296,7 @@ export declare const sourceAllStores: {
|
|
|
3296
3296
|
toggleAutoPlay(): void;
|
|
3297
3297
|
toggleSkip(): void;
|
|
3298
3298
|
clearDialog(): void;
|
|
3299
|
+
makeLastDialogInteractive(): void;
|
|
3299
3300
|
reset(): void;
|
|
3300
3301
|
}>;
|
|
3301
3302
|
readonly save: "dialog";
|
|
@@ -3821,6 +3822,7 @@ export declare const sourceAllStores: {
|
|
|
3821
3822
|
fileName: string;
|
|
3822
3823
|
finishCommand?: ((res: any) => void) | undefined;
|
|
3823
3824
|
}[];
|
|
3825
|
+
promisesWaitingForTextAnimation: (() => void)[];
|
|
3824
3826
|
stack: {
|
|
3825
3827
|
blocks: {
|
|
3826
3828
|
currentIndex: number;
|
|
@@ -3898,6 +3900,8 @@ export declare const sourceAllStores: {
|
|
|
3898
3900
|
findEntitiesInData(data: any): void;
|
|
3899
3901
|
setReturnValue(value: any): void;
|
|
3900
3902
|
waitForPlayerAnswer(cmd: import("../types/parser").Parser.Command<any, any>): void;
|
|
3903
|
+
waitForEndTextAnimation(): Promise<void>;
|
|
3904
|
+
endTextAnimation(): void;
|
|
3901
3905
|
popAnswerQueue(): {
|
|
3902
3906
|
args: (import("../types/parser").Parser.Primitive | {
|
|
3903
3907
|
code: string;
|