@drincs/pixi-vn 1.3.4 → 1.3.8
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/{SoundGameState-BG_iPwjt.d.cts → SoundGameState-CQ7cbvIY.d.cts} +1 -1
- package/dist/{SoundGameState-BG_iPwjt.d.ts → SoundGameState-CQ7cbvIY.d.ts} +1 -1
- package/dist/canvas/index.cjs +2 -2
- package/dist/canvas/index.mjs +2 -2
- package/dist/canvas/tickers/index.cjs +2 -2
- package/dist/canvas/tickers/index.mjs +2 -2
- package/dist/character/index.cjs +1 -1
- package/dist/character/index.mjs +1 -1
- package/dist/{index-Czfdktw9.d.ts → index-BFrahVX5.d.ts} +1 -1
- package/dist/{index-DZ1shoNp.d.cts → index-D4v4pyT6.d.cts} +1 -1
- package/dist/index.cjs +139 -139
- package/dist/index.d.cts +25 -5
- package/dist/index.d.ts +25 -5
- package/dist/index.mjs +139 -139
- package/dist/interfaces/index.d.cts +1 -1
- package/dist/interfaces/index.d.ts +1 -1
- package/dist/narration/index.cjs +2 -2
- package/dist/narration/index.mjs +2 -2
- package/dist/sound/index.cjs +1 -1
- package/dist/sound/index.d.cts +2 -2
- package/dist/sound/index.d.ts +2 -2
- package/dist/sound/index.mjs +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -2,8 +2,8 @@ import * as _pixi_sound_lib_filters from '@pixi/sound/lib/filters';
|
|
|
2
2
|
import * as pixi_js from 'pixi.js';
|
|
3
3
|
import { ApplicationOptions, Rectangle } from 'pixi.js';
|
|
4
4
|
export { Assets, ContainerOptions, Rectangle, Texture, TextureSourceLike, Ticker as TickerValue, UPDATE_PRIORITY } from 'pixi.js';
|
|
5
|
-
import { S as SoundManager, s as soundUtils } from './index-
|
|
6
|
-
export { b as Sound, c as SoundManagerStatic, a as sound } from './index-
|
|
5
|
+
import { S as SoundManager, s as soundUtils } from './index-D4v4pyT6.cjs';
|
|
6
|
+
export { b as Sound, c as SoundManagerStatic, a as sound } from './index-D4v4pyT6.cjs';
|
|
7
7
|
export { AnimationOptions as MotionAnimationOptions } from 'motion';
|
|
8
8
|
export { AssetSrc, AssetsBundle, AssetsManifest, LoadParserName, ResolvedAsset, ResolvedSrc, UnresolvedAsset } from 'pixi.js/lib/assets/types';
|
|
9
9
|
import { C as CanvasManagerInterface, c as canvasUtils } from './index-Cj--qEPX.cjs';
|
|
@@ -33,14 +33,29 @@ export { H as HistoryGameState } from './HistoryGameState-qeIMl_DH.cjs';
|
|
|
33
33
|
export { a as ChoiceOptionInterface, d as Close, b as CloseChoiceOptionInterface, C as CloseType, D as DialogueInterface, H as HistoryStep, L as LabelRunModeType, O as OpenedLabel, S as StoredChoiceInterface, c as StoredIndexedChoiceInterface } from './OpenedLabel-Dgkgemkv.cjs';
|
|
34
34
|
export { N as NarrationGameState } from './NarrationGameState-Cu-OYzph.cjs';
|
|
35
35
|
export { H as HistoryChoiceMenuOption, N as NarrationHistory } from './HistoryChoiceMenuOption-unaLLfKR.cjs';
|
|
36
|
-
export { E as ExportedSound,
|
|
36
|
+
export { E as ExportedSound, d as SoundFilterMemory, b as SoundGameState, a as SoundOptions, S as SoundPlayOptions } from './SoundGameState-CQ7cbvIY.cjs';
|
|
37
37
|
export { S as StoredClassModel } from './StoredClassModel-CjdhvNgB.cjs';
|
|
38
38
|
export { S as StorageGameState } from './StorageGameState-B2kz-u_2.cjs';
|
|
39
39
|
import 'lru-cache';
|
|
40
40
|
import 'deep-diff';
|
|
41
41
|
import 'microdiff';
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
function _mergeNamespaces(n, m) {
|
|
44
|
+
m.forEach(function (e) {
|
|
45
|
+
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
46
|
+
if (k !== 'default' && !(k in n)) {
|
|
47
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
48
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
49
|
+
enumerable: true,
|
|
50
|
+
get: function () { return e[k]; }
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
});
|
|
55
|
+
return Object.freeze(n);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
var version = "1.3.8";
|
|
44
59
|
|
|
45
60
|
declare const Repeat: RepeatType;
|
|
46
61
|
/**
|
|
@@ -119,6 +134,11 @@ declare const SYSTEM_RESERVED_STORAGE_KEYS: {
|
|
|
119
134
|
LAST_STEP_GLUED: string;
|
|
120
135
|
};
|
|
121
136
|
|
|
137
|
+
var pixijs = /*#__PURE__*/_mergeNamespaces({
|
|
138
|
+
__proto__: null,
|
|
139
|
+
default: pixi_js
|
|
140
|
+
}, [pixi_js]);
|
|
141
|
+
|
|
122
142
|
declare class GameUnifier {
|
|
123
143
|
static init(options: {
|
|
124
144
|
/**
|
|
@@ -466,4 +486,4 @@ declare const _default: {
|
|
|
466
486
|
PIXIVN_VERSION: string;
|
|
467
487
|
};
|
|
468
488
|
|
|
469
|
-
export { CANVAS_APP_GAME_LAYER_ALIAS, CanvasManagerInterface, Game, GameState, GameUnifier, HistoryManagerInterface, LabelAbstract, NarrationManagerInterface, version as PIXIVN_VERSION, Pause, PauseType, Repeat, RepeatType, SYSTEM_RESERVED_STORAGE_KEYS, StepLabelPropsType, StepLabelType, StorageElementType, StorageManagerInterface, createExportableElement, _default as default, filters };
|
|
489
|
+
export { CANVAS_APP_GAME_LAYER_ALIAS, CanvasManagerInterface, Game, GameState, GameUnifier, HistoryManagerInterface, LabelAbstract, NarrationManagerInterface, pixijs as PIXI, version as PIXIVN_VERSION, Pause, PauseType, Repeat, RepeatType, SYSTEM_RESERVED_STORAGE_KEYS, StepLabelPropsType, StepLabelType, StorageElementType, StorageManagerInterface, createExportableElement, _default as default, filters };
|
package/dist/index.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ import * as _pixi_sound_lib_filters from '@pixi/sound/lib/filters';
|
|
|
2
2
|
import * as pixi_js from 'pixi.js';
|
|
3
3
|
import { ApplicationOptions, Rectangle } from 'pixi.js';
|
|
4
4
|
export { Assets, ContainerOptions, Rectangle, Texture, TextureSourceLike, Ticker as TickerValue, UPDATE_PRIORITY } from 'pixi.js';
|
|
5
|
-
import { S as SoundManager, s as soundUtils } from './index-
|
|
6
|
-
export { b as Sound, c as SoundManagerStatic, a as sound } from './index-
|
|
5
|
+
import { S as SoundManager, s as soundUtils } from './index-BFrahVX5.js';
|
|
6
|
+
export { b as Sound, c as SoundManagerStatic, a as sound } from './index-BFrahVX5.js';
|
|
7
7
|
export { AnimationOptions as MotionAnimationOptions } from 'motion';
|
|
8
8
|
export { AssetSrc, AssetsBundle, AssetsManifest, LoadParserName, ResolvedAsset, ResolvedSrc, UnresolvedAsset } from 'pixi.js/lib/assets/types';
|
|
9
9
|
import { C as CanvasManagerInterface, c as canvasUtils } from './index-B3v7TkpX.js';
|
|
@@ -33,14 +33,29 @@ export { H as HistoryGameState } from './HistoryGameState-i_gx3rGM.js';
|
|
|
33
33
|
export { a as ChoiceOptionInterface, d as Close, b as CloseChoiceOptionInterface, C as CloseType, D as DialogueInterface, H as HistoryStep, L as LabelRunModeType, O as OpenedLabel, S as StoredChoiceInterface, c as StoredIndexedChoiceInterface } from './OpenedLabel-DxlOwJKw.js';
|
|
34
34
|
export { N as NarrationGameState } from './NarrationGameState-CqDh48n_.js';
|
|
35
35
|
export { H as HistoryChoiceMenuOption, N as NarrationHistory } from './HistoryChoiceMenuOption-Kj_P28ke.js';
|
|
36
|
-
export { E as ExportedSound,
|
|
36
|
+
export { E as ExportedSound, d as SoundFilterMemory, b as SoundGameState, a as SoundOptions, S as SoundPlayOptions } from './SoundGameState-CQ7cbvIY.js';
|
|
37
37
|
export { S as StoredClassModel } from './StoredClassModel-CjdhvNgB.js';
|
|
38
38
|
export { S as StorageGameState } from './StorageGameState-Cnfj75sk.js';
|
|
39
39
|
import 'lru-cache';
|
|
40
40
|
import 'deep-diff';
|
|
41
41
|
import 'microdiff';
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
function _mergeNamespaces(n, m) {
|
|
44
|
+
m.forEach(function (e) {
|
|
45
|
+
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
46
|
+
if (k !== 'default' && !(k in n)) {
|
|
47
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
48
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
49
|
+
enumerable: true,
|
|
50
|
+
get: function () { return e[k]; }
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
});
|
|
55
|
+
return Object.freeze(n);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
var version = "1.3.8";
|
|
44
59
|
|
|
45
60
|
declare const Repeat: RepeatType;
|
|
46
61
|
/**
|
|
@@ -119,6 +134,11 @@ declare const SYSTEM_RESERVED_STORAGE_KEYS: {
|
|
|
119
134
|
LAST_STEP_GLUED: string;
|
|
120
135
|
};
|
|
121
136
|
|
|
137
|
+
var pixijs = /*#__PURE__*/_mergeNamespaces({
|
|
138
|
+
__proto__: null,
|
|
139
|
+
default: pixi_js
|
|
140
|
+
}, [pixi_js]);
|
|
141
|
+
|
|
122
142
|
declare class GameUnifier {
|
|
123
143
|
static init(options: {
|
|
124
144
|
/**
|
|
@@ -466,4 +486,4 @@ declare const _default: {
|
|
|
466
486
|
PIXIVN_VERSION: string;
|
|
467
487
|
};
|
|
468
488
|
|
|
469
|
-
export { CANVAS_APP_GAME_LAYER_ALIAS, CanvasManagerInterface, Game, GameState, GameUnifier, HistoryManagerInterface, LabelAbstract, NarrationManagerInterface, version as PIXIVN_VERSION, Pause, PauseType, Repeat, RepeatType, SYSTEM_RESERVED_STORAGE_KEYS, StepLabelPropsType, StepLabelType, StorageElementType, StorageManagerInterface, createExportableElement, _default as default, filters };
|
|
489
|
+
export { CANVAS_APP_GAME_LAYER_ALIAS, CanvasManagerInterface, Game, GameState, GameUnifier, HistoryManagerInterface, LabelAbstract, NarrationManagerInterface, pixijs as PIXI, version as PIXIVN_VERSION, Pause, PauseType, Repeat, RepeatType, SYSTEM_RESERVED_STORAGE_KEYS, StepLabelPropsType, StepLabelType, StorageElementType, StorageManagerInterface, createExportableElement, _default as default, filters };
|