@vpmedia/phaser 1.25.0 → 1.27.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/README.md +1 -1
- package/package.json +4 -4
- package/src/phaser/core/animation.js +1 -1
- package/src/phaser/core/animation_manager.js +2 -2
- package/src/phaser/core/factory.js +14 -3
- package/src/phaser/core/loader_parser.js +4 -4
- package/src/phaser/core/signal.js +1 -1
- package/src/phaser/core/timer.js +4 -4
- package/src/phaser/core/tween_manager.js +1 -1
- package/src/phaser/display/graphics_data_util.js +1 -1
- package/src/phaser/display/image.js +2 -2
- package/src/phaser/display/sprite_util.js +8 -8
- package/typedefs/global.d.ts +1 -1
- package/types/phaser/core/animation.d.ts +2 -2
- package/types/phaser/core/animation_manager.d.ts +4 -4
- package/types/phaser/core/factory.d.ts +4 -4
- package/types/phaser/core/factory.d.ts.map +1 -1
- package/types/phaser/core/loader_parser.d.ts +8 -8
- package/types/phaser/core/loader_parser.d.ts.map +1 -1
- package/types/phaser/core/signal.d.ts +2 -2
- package/types/phaser/core/signal.d.ts.map +1 -1
- package/types/phaser/core/timer.d.ts +3 -3
- package/types/phaser/core/timer.d.ts.map +1 -1
- package/types/phaser/core/tween_manager.d.ts +1 -1
- package/types/phaser/core/tween_manager.d.ts.map +1 -1
- package/types/phaser/display/graphics_data_util.d.ts +2 -2
- package/types/phaser/display/graphics_data_util.d.ts.map +1 -1
- package/types/phaser/display/image.d.ts +4 -4
- package/types/phaser/display/image.d.ts.map +1 -1
- package/types/phaser/display/sprite_util.d.ts +13 -13
- package/types/phaser/display/sprite_util.d.ts.map +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @vpmedia/phaser
|
|
2
2
|
|
|
3
|
-
[](https://badge.fury.io/js/@vpmedia%2Fphaser)
|
|
4
4
|
[](https://github.com/vpmedia/phaser/actions/workflows/node.js.yml)
|
|
5
5
|
|
|
6
6
|
@vpmedia/phaser is the modern ECMAScript port of the popular Phaser game engine v2.6.2.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vpmedia/phaser",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.27.0",
|
|
4
4
|
"description": "@vpmedia/phaser is the modern ECMAScript port of the popular Phaser game engine v2.6.2",
|
|
5
5
|
"author": "Andras Csizmadia <andras@vpmedia.hu> (www.vpmedia.hu)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
"main": "./src/index.js",
|
|
23
23
|
"types": "./types/index.d.ts",
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"eslint": "^8.
|
|
25
|
+
"eslint": "^8.40.0",
|
|
26
26
|
"eslint-config-prettier": "^8.8.0",
|
|
27
27
|
"eslint-plugin-import": "^2.27.5",
|
|
28
28
|
"eslint-plugin-jest": "^27.2.1",
|
|
29
|
-
"eslint-plugin-jsdoc": "^43.0
|
|
29
|
+
"eslint-plugin-jsdoc": "^43.2.0",
|
|
30
30
|
"eslint-plugin-prettier": "^4.2.1",
|
|
31
31
|
"husky": "^8.0.3",
|
|
32
32
|
"jest": "^29.5.0",
|
|
33
|
-
"lint-staged": "^13.2.
|
|
33
|
+
"lint-staged": "^13.2.2",
|
|
34
34
|
"prettier": "^2.8.8",
|
|
35
35
|
"typescript": "^5.0.4"
|
|
36
36
|
},
|
|
@@ -37,7 +37,7 @@ export class AnimationManager {
|
|
|
37
37
|
/**
|
|
38
38
|
* TBD.
|
|
39
39
|
* @param {import('./frame_data').FrameData} frameData - TBD.
|
|
40
|
-
* @param {number
|
|
40
|
+
* @param {string|number} frame - TBD.
|
|
41
41
|
* @returns {boolean} TBD.
|
|
42
42
|
*/
|
|
43
43
|
loadFrameData(frameData, frame) {
|
|
@@ -67,7 +67,7 @@ export class AnimationManager {
|
|
|
67
67
|
/**
|
|
68
68
|
* TBD.
|
|
69
69
|
* @param {import('./frame_data').FrameData} frameData - TBD.
|
|
70
|
-
* @param {number
|
|
70
|
+
* @param {string|number} frame - TBD.
|
|
71
71
|
* @returns {boolean} TBD.
|
|
72
72
|
*/
|
|
73
73
|
copyFrameData(frameData, frame) {
|
|
@@ -19,7 +19,7 @@ export class GameObjectFactory {
|
|
|
19
19
|
* @param {number} x - TBD.
|
|
20
20
|
* @param {number} y - TBD.
|
|
21
21
|
* @param {string} key - TBD.
|
|
22
|
-
* @param {string} frame - TBD.
|
|
22
|
+
* @param {string|number} frame - TBD.
|
|
23
23
|
* @param {Group} group - TBD.
|
|
24
24
|
* @returns {Image} TBD.
|
|
25
25
|
*/
|
|
@@ -69,7 +69,18 @@ export class GameObjectFactory {
|
|
|
69
69
|
* @param {Group} group - TBD.
|
|
70
70
|
* @returns {Button} TBD.
|
|
71
71
|
*/
|
|
72
|
-
button(
|
|
72
|
+
button(
|
|
73
|
+
x,
|
|
74
|
+
y,
|
|
75
|
+
key,
|
|
76
|
+
callback = null,
|
|
77
|
+
callbackContext = null,
|
|
78
|
+
overFrame = null,
|
|
79
|
+
outFrame = null,
|
|
80
|
+
downFrame = null,
|
|
81
|
+
upFrame = null,
|
|
82
|
+
group = null
|
|
83
|
+
) {
|
|
73
84
|
const parent = group || this.game.world;
|
|
74
85
|
return parent.add(
|
|
75
86
|
new Button(this.game, x, y, key, callback, callbackContext, overFrame, outFrame, downFrame, upFrame)
|
|
@@ -83,7 +94,7 @@ export class GameObjectFactory {
|
|
|
83
94
|
* @param {Group} group - TBD.
|
|
84
95
|
* @returns {Graphics} TBD.
|
|
85
96
|
*/
|
|
86
|
-
graphics(x, y, group = null) {
|
|
97
|
+
graphics(x = 0, y = 0, group = null) {
|
|
87
98
|
const parent = group || this.game.world;
|
|
88
99
|
return parent.add(new Graphics(this.game, x, y));
|
|
89
100
|
}
|
|
@@ -3,7 +3,7 @@ import { Rectangle } from '../geom/rectangle';
|
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* TBD.
|
|
6
|
-
* @param {
|
|
6
|
+
* @param {import('../display/webgl/base_texture').BaseTexture} baseTexture - TBD.
|
|
7
7
|
* @param {object} bitmapFontData - TBD.
|
|
8
8
|
* @returns {object} TBD.
|
|
9
9
|
*/
|
|
@@ -18,7 +18,7 @@ export function finalizeBitmapFont(baseTexture, bitmapFontData) {
|
|
|
18
18
|
/**
|
|
19
19
|
* TBD.
|
|
20
20
|
* @param {object} xml - TBD.
|
|
21
|
-
* @param {
|
|
21
|
+
* @param {import('../display/webgl/base_texture').BaseTexture} baseTexture - TBD.
|
|
22
22
|
* @param {number} xSpacing - TBD.
|
|
23
23
|
* @param {number} ySpacing - TBD.
|
|
24
24
|
* @returns {object} TBD.
|
|
@@ -58,7 +58,7 @@ export function xmlBitmapFont(xml, baseTexture, xSpacing, ySpacing) {
|
|
|
58
58
|
/**
|
|
59
59
|
* TBD.
|
|
60
60
|
* @param {object} xml - TBD.
|
|
61
|
-
* @param {
|
|
61
|
+
* @param {import('../display/webgl/base_texture').BaseTexture} baseTexture - TBD.
|
|
62
62
|
* @param {number} xSpacing - TBD.
|
|
63
63
|
* @param {number} ySpacing - TBD.
|
|
64
64
|
* @returns {object} TBD.
|
|
@@ -70,7 +70,7 @@ export function bitmapFont(xml, baseTexture, xSpacing, ySpacing) {
|
|
|
70
70
|
/**
|
|
71
71
|
* TBD.
|
|
72
72
|
* @param {object} json - TBD.
|
|
73
|
-
* @param {
|
|
73
|
+
* @param {import('../display/webgl/base_texture').BaseTexture} baseTexture - TBD.
|
|
74
74
|
* @param {number} xSpacing - TBD.
|
|
75
75
|
* @param {number} ySpacing - TBD.
|
|
76
76
|
* @returns {object} TBD.
|
package/src/phaser/core/timer.js
CHANGED
|
@@ -40,7 +40,7 @@ export class Timer {
|
|
|
40
40
|
* @param {...any} args - TBD.
|
|
41
41
|
* @returns {TimerEvent} TBD.
|
|
42
42
|
*/
|
|
43
|
-
create(delay, loop, repeatCount, callback, callbackContext, args) {
|
|
43
|
+
create(delay, loop, repeatCount, callback, callbackContext = null, args) {
|
|
44
44
|
const roundedDelay = Math.round(delay);
|
|
45
45
|
let tick = roundedDelay;
|
|
46
46
|
if (this._now === 0) {
|
|
@@ -63,7 +63,7 @@ export class Timer {
|
|
|
63
63
|
* @param {...any} args - TBD.
|
|
64
64
|
* @returns {TimerEvent} TBD.
|
|
65
65
|
*/
|
|
66
|
-
add(delay, callback, callbackContext, ...args) {
|
|
66
|
+
add(delay, callback, callbackContext = null, ...args) {
|
|
67
67
|
return this.create(delay, false, 0, callback, callbackContext, args);
|
|
68
68
|
}
|
|
69
69
|
|
|
@@ -76,7 +76,7 @@ export class Timer {
|
|
|
76
76
|
* @param {...any} args - TBD.
|
|
77
77
|
* @returns {TimerEvent} TBD.
|
|
78
78
|
*/
|
|
79
|
-
repeat(delay, repeatCount, callback, callbackContext, ...args) {
|
|
79
|
+
repeat(delay, repeatCount, callback, callbackContext = null, ...args) {
|
|
80
80
|
return this.create(delay, false, repeatCount, callback, callbackContext, args);
|
|
81
81
|
}
|
|
82
82
|
|
|
@@ -88,7 +88,7 @@ export class Timer {
|
|
|
88
88
|
* @param {...any} args - TBD.
|
|
89
89
|
* @returns {TimerEvent} TBD.
|
|
90
90
|
*/
|
|
91
|
-
loop(delay, callback, callbackContext, ...args) {
|
|
91
|
+
loop(delay, callback, callbackContext = null, ...args) {
|
|
92
92
|
return this.create(delay, true, 0, callback, callbackContext, args);
|
|
93
93
|
}
|
|
94
94
|
|
|
@@ -14,7 +14,7 @@ export class Image extends DisplayObject {
|
|
|
14
14
|
* @param {number} x - TBD.
|
|
15
15
|
* @param {number} y - TBD.
|
|
16
16
|
* @param {string} key - TBD.
|
|
17
|
-
* @param {string} frame - TBD.
|
|
17
|
+
* @param {string|number} frame - TBD.
|
|
18
18
|
*/
|
|
19
19
|
constructor(game, x, y, key, frame) {
|
|
20
20
|
super();
|
|
@@ -95,7 +95,7 @@ export class Image extends DisplayObject {
|
|
|
95
95
|
/**
|
|
96
96
|
* TBD.
|
|
97
97
|
* @param {string} key - TBD.
|
|
98
|
-
* @param {number} frame - TBD.
|
|
98
|
+
* @param {string|number} frame - TBD.
|
|
99
99
|
* @param {boolean} stopAnimation - TBD.
|
|
100
100
|
*/
|
|
101
101
|
loadTexture(key, frame = 0, stopAnimation = true) {
|
|
@@ -4,8 +4,8 @@ import { SCALE_LINEAR } from '../core/const';
|
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* TBD.
|
|
7
|
-
* @param {
|
|
8
|
-
* @param {
|
|
7
|
+
* @param {import('./image').Image} target - TBD.
|
|
8
|
+
* @param {import('./webgl/texture').Texture} texture - TBD.
|
|
9
9
|
* @param {boolean} destroyBase - TBD.
|
|
10
10
|
*/
|
|
11
11
|
export function setTexture(target, texture, destroyBase = false) {
|
|
@@ -20,7 +20,7 @@ export function setTexture(target, texture, destroyBase = false) {
|
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
22
|
* TBD.
|
|
23
|
-
* @param {
|
|
23
|
+
* @param {import('./image').Image} target - TBD.
|
|
24
24
|
* @param {object} matrix - TBD.
|
|
25
25
|
* @returns {import('../geom/rectangle').Rectangle} TBD.
|
|
26
26
|
*/
|
|
@@ -103,7 +103,7 @@ export function getBounds(target, matrix = null) {
|
|
|
103
103
|
|
|
104
104
|
/**
|
|
105
105
|
* TBD.
|
|
106
|
-
* @param {
|
|
106
|
+
* @param {import('./image').Image} target - TBD.
|
|
107
107
|
* @returns {import('../geom/rectangle').Rectangle} TBD.
|
|
108
108
|
*/
|
|
109
109
|
export function getLocalBounds(target) {
|
|
@@ -123,9 +123,9 @@ export function getLocalBounds(target) {
|
|
|
123
123
|
|
|
124
124
|
/**
|
|
125
125
|
* TBD.
|
|
126
|
-
* @param {
|
|
126
|
+
* @param {import('./image').Image} target - TBD.
|
|
127
127
|
* @param {object} renderSession - TBD.
|
|
128
|
-
* @param {
|
|
128
|
+
* @param {import('../geom/matrix').Matrix} matrix - TBD.
|
|
129
129
|
*/
|
|
130
130
|
export function renderWebGL(target, renderSession, matrix) {
|
|
131
131
|
// if the sprite is not visible or the alpha is 0 then no need to render this element
|
|
@@ -172,9 +172,9 @@ export function renderWebGL(target, renderSession, matrix) {
|
|
|
172
172
|
|
|
173
173
|
/**
|
|
174
174
|
* TBD.
|
|
175
|
-
* @param {
|
|
175
|
+
* @param {import('./image').Image} target - TBD.
|
|
176
176
|
* @param {object} renderSession - TBD.
|
|
177
|
-
* @param {
|
|
177
|
+
* @param {import('../geom/matrix').Matrix} matrix - TBD.
|
|
178
178
|
*/
|
|
179
179
|
export function renderCanvas(target, renderSession, matrix) {
|
|
180
180
|
// If the sprite is not visible or the alpha is 0 then no need to render this element
|
package/typedefs/global.d.ts
CHANGED
|
@@ -76,10 +76,10 @@ export class Animation {
|
|
|
76
76
|
reverseOnce(): Animation;
|
|
77
77
|
/**
|
|
78
78
|
* TBD.
|
|
79
|
-
* @param {number
|
|
79
|
+
* @param {string|number} frameId - TBD.
|
|
80
80
|
* @param {boolean} useLocalFrameIndex - TBD.
|
|
81
81
|
*/
|
|
82
|
-
setFrame(frameId:
|
|
82
|
+
setFrame(frameId: string | number, useLocalFrameIndex?: boolean): void;
|
|
83
83
|
/**
|
|
84
84
|
* TBD.
|
|
85
85
|
* @param {boolean} resetFrame - TBD.
|
|
@@ -20,10 +20,10 @@ export class AnimationManager {
|
|
|
20
20
|
/**
|
|
21
21
|
* TBD.
|
|
22
22
|
* @param {import('./frame_data').FrameData} frameData - TBD.
|
|
23
|
-
* @param {number
|
|
23
|
+
* @param {string|number} frame - TBD.
|
|
24
24
|
* @returns {boolean} TBD.
|
|
25
25
|
*/
|
|
26
|
-
loadFrameData(frameData: import('./frame_data').FrameData, frame:
|
|
26
|
+
loadFrameData(frameData: import('./frame_data').FrameData, frame: string | number): boolean;
|
|
27
27
|
/**
|
|
28
28
|
* TBD.
|
|
29
29
|
*/
|
|
@@ -45,10 +45,10 @@ export class AnimationManager {
|
|
|
45
45
|
/**
|
|
46
46
|
* TBD.
|
|
47
47
|
* @param {import('./frame_data').FrameData} frameData - TBD.
|
|
48
|
-
* @param {number
|
|
48
|
+
* @param {string|number} frame - TBD.
|
|
49
49
|
* @returns {boolean} TBD.
|
|
50
50
|
*/
|
|
51
|
-
copyFrameData(frameData: import('./frame_data').FrameData, frame:
|
|
51
|
+
copyFrameData(frameData: import('./frame_data').FrameData, frame: string | number): boolean;
|
|
52
52
|
/**
|
|
53
53
|
* TBD.
|
|
54
54
|
* @param {string} name - TBD.
|
|
@@ -10,11 +10,11 @@ export class GameObjectFactory {
|
|
|
10
10
|
* @param {number} x - TBD.
|
|
11
11
|
* @param {number} y - TBD.
|
|
12
12
|
* @param {string} key - TBD.
|
|
13
|
-
* @param {string} frame - TBD.
|
|
13
|
+
* @param {string|number} frame - TBD.
|
|
14
14
|
* @param {Group} group - TBD.
|
|
15
15
|
* @returns {Image} TBD.
|
|
16
16
|
*/
|
|
17
|
-
image(x: number, y: number, key: string, frame: string, group?: Group): Image;
|
|
17
|
+
image(x: number, y: number, key: string, frame: string | number, group?: Group): Image;
|
|
18
18
|
/**
|
|
19
19
|
* TBD.
|
|
20
20
|
* @param {Group} parent - TBD.
|
|
@@ -47,7 +47,7 @@ export class GameObjectFactory {
|
|
|
47
47
|
* @param {Group} group - TBD.
|
|
48
48
|
* @returns {Button} TBD.
|
|
49
49
|
*/
|
|
50
|
-
button(x: number, y: number, key: string, callback
|
|
50
|
+
button(x: number, y: number, key: string, callback?: Function, callbackContext?: object, overFrame?: string, outFrame?: string, downFrame?: string, upFrame?: string, group?: Group): Button;
|
|
51
51
|
/**
|
|
52
52
|
* TBD.
|
|
53
53
|
* @param {number} x - TBD.
|
|
@@ -55,7 +55,7 @@ export class GameObjectFactory {
|
|
|
55
55
|
* @param {Group} group - TBD.
|
|
56
56
|
* @returns {Graphics} TBD.
|
|
57
57
|
*/
|
|
58
|
-
graphics(x
|
|
58
|
+
graphics(x?: number, y?: number, group?: Group): Graphics;
|
|
59
59
|
/**
|
|
60
60
|
* TBD.
|
|
61
61
|
* @param {number} x - TBD.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"factory.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/factory.js"],"names":[],"mappings":"AAOA;IACE;;;OAGG;IACH,kBAFW,OAAO,QAAQ,EAAE,IAAI,EAI/B;IADC,4BAAgB;IAGlB;;;;;;;;OAQG;IACH,SAPW,MAAM,KACN,MAAM,OACN,MAAM,SACN,MAAM,
|
|
1
|
+
{"version":3,"file":"factory.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/factory.js"],"names":[],"mappings":"AAOA;IACE;;;OAGG;IACH,kBAFW,OAAO,QAAQ,EAAE,IAAI,EAI/B;IADC,4BAAgB;IAGlB;;;;;;;;OAQG;IACH,SAPW,MAAM,KACN,MAAM,OACN,MAAM,SACN,MAAM,GAAC,MAAM,UACb,KAAK,GACH,KAAK,CAOjB;IAED;;;;;;OAMG;IACH,cALW,KAAK,QACL,MAAM,cACN,OAAO,GACL,KAAK,CAIjB;IAED;;;;;;;;OAQG;IACH,QAPW,MAAM,KACN,MAAM,QACN,MAAM,SACN,MAAM,UACN,KAAK,GACH,IAAI,CAKhB;IAED;;;;;;;;;;;;;OAaG;IACH,UAZW,MAAM,KACN,MAAM,OACN,MAAM,yCAEN,MAAM,cACN,MAAM,aACN,MAAM,cACN,MAAM,YACN,MAAM,UACN,KAAK,GACH,MAAM,CAkBlB;IAED;;;;;;OAMG;IACH,aALW,MAAM,MACN,MAAM,UACN,KAAK,GACH,QAAQ,CAKpB;IAED;;;;;;;;;;OAUG;IACH,cATW,MAAM,KACN,MAAM,QACN,MAAM,QACN,MAAM,QACN,MAAM,UACN,KAAK,UACL,MAAM,GACJ,UAAU,CAKtB;CACF;sBAlHqB,kBAAkB;sBAElB,kBAAkB;qBACnB,iBAAiB;uBAJf,mBAAmB;yBAEjB,qBAAqB;2BAHnB,wBAAwB"}
|
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* TBD.
|
|
3
|
-
* @param {
|
|
3
|
+
* @param {import('../display/webgl/base_texture').BaseTexture} baseTexture - TBD.
|
|
4
4
|
* @param {object} bitmapFontData - TBD.
|
|
5
5
|
* @returns {object} TBD.
|
|
6
6
|
*/
|
|
7
|
-
export function finalizeBitmapFont(baseTexture:
|
|
7
|
+
export function finalizeBitmapFont(baseTexture: import('../display/webgl/base_texture').BaseTexture, bitmapFontData: object): object;
|
|
8
8
|
/**
|
|
9
9
|
* TBD.
|
|
10
10
|
* @param {object} xml - TBD.
|
|
11
|
-
* @param {
|
|
11
|
+
* @param {import('../display/webgl/base_texture').BaseTexture} baseTexture - TBD.
|
|
12
12
|
* @param {number} xSpacing - TBD.
|
|
13
13
|
* @param {number} ySpacing - TBD.
|
|
14
14
|
* @returns {object} TBD.
|
|
15
15
|
*/
|
|
16
|
-
export function xmlBitmapFont(xml: object, baseTexture:
|
|
16
|
+
export function xmlBitmapFont(xml: object, baseTexture: import('../display/webgl/base_texture').BaseTexture, xSpacing: number, ySpacing: number): object;
|
|
17
17
|
/**
|
|
18
18
|
* TBD.
|
|
19
19
|
* @param {object} xml - TBD.
|
|
20
|
-
* @param {
|
|
20
|
+
* @param {import('../display/webgl/base_texture').BaseTexture} baseTexture - TBD.
|
|
21
21
|
* @param {number} xSpacing - TBD.
|
|
22
22
|
* @param {number} ySpacing - TBD.
|
|
23
23
|
* @returns {object} TBD.
|
|
24
24
|
*/
|
|
25
|
-
export function bitmapFont(xml: object, baseTexture:
|
|
25
|
+
export function bitmapFont(xml: object, baseTexture: import('../display/webgl/base_texture').BaseTexture, xSpacing: number, ySpacing: number): object;
|
|
26
26
|
/**
|
|
27
27
|
* TBD.
|
|
28
28
|
* @param {object} json - TBD.
|
|
29
|
-
* @param {
|
|
29
|
+
* @param {import('../display/webgl/base_texture').BaseTexture} baseTexture - TBD.
|
|
30
30
|
* @param {number} xSpacing - TBD.
|
|
31
31
|
* @param {number} ySpacing - TBD.
|
|
32
32
|
* @returns {object} TBD.
|
|
33
33
|
*/
|
|
34
|
-
export function jsonBitmapFont(json: object, baseTexture:
|
|
34
|
+
export function jsonBitmapFont(json: object, baseTexture: import('../display/webgl/base_texture').BaseTexture, xSpacing: number, ySpacing: number): object;
|
|
35
35
|
//# sourceMappingURL=loader_parser.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loader_parser.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/loader_parser.js"],"names":[],"mappings":"AAGA;;;;;GAKG;AACH,gDAJW,
|
|
1
|
+
{"version":3,"file":"loader_parser.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/loader_parser.js"],"names":[],"mappings":"AAGA;;;;;GAKG;AACH,gDAJW,OAAO,+BAA+B,EAAE,WAAW,kBACnD,MAAM,GACJ,MAAM,CAQlB;AAED;;;;;;;GAOG;AACH,mCANW,MAAM,eACN,OAAO,+BAA+B,EAAE,WAAW,YACnD,MAAM,YACN,MAAM,GACJ,MAAM,CAgClB;AAED;;;;;;;GAOG;AACH,gCANW,MAAM,eACN,OAAO,+BAA+B,EAAE,WAAW,YACnD,MAAM,YACN,MAAM,GACJ,MAAM,CAIlB;AAED;;;;;;;GAOG;AACH,qCANW,MAAM,eACN,OAAO,+BAA+B,EAAE,WAAW,YACnD,MAAM,YACN,MAAM,GACJ,MAAM,CA4BlB"}
|
|
@@ -101,9 +101,9 @@ export class Signal {
|
|
|
101
101
|
toString(): string;
|
|
102
102
|
/**
|
|
103
103
|
* TBD.
|
|
104
|
-
* @returns {
|
|
104
|
+
* @returns {Function} TBD.
|
|
105
105
|
*/
|
|
106
|
-
get boundDispatch():
|
|
106
|
+
get boundDispatch(): Function;
|
|
107
107
|
}
|
|
108
108
|
import { SignalBinding } from './signal_binding';
|
|
109
109
|
//# sourceMappingURL=signal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"signal.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/signal.js"],"names":[],"mappings":"AAEA;IAKI,iBAAqB;IACrB,mBAAuB;IACvB,kBAAqB;IACrB,0BAA4B;IAC5B,gBAAkB;IAClB,wBAA2B;IAG7B;;;;;OAKG;IACH,6CAHW,MAAM,QAShB;IAED;;;;;;;;;OASG;IACH,+CAPW,OAAO,oBACP,MAAM,aACN,MAAM,SACH,GAAG,KACJ,aAAa,CAyBzB;IAED;;;OAGG;IACH,qBAFW,aAAa,QAYvB;IAED;;;;;OAKG;IACH,+CAHW,MAAM,GACJ,MAAM,CAgBlB;IAED;;;;;OAKG;IACH,kCAHW,MAAM,GACJ,OAAO,CAInB;IAED;;;;;;;OAOG;IACH,0CALW,MAAM,aACN,MAAM,WACH,GAAG,KACJ,aAAa,CAKzB;IAED;;;;;;;OAOG;IACH,8CALW,MAAM,aACN,MAAM,WACH,GAAG,KACJ,aAAa,CAKzB;IAED;;;;;OAKG;IACH,qCAHW,MAAM,YAYhB;IAED;;;OAGG;IACH,oBAFW,MAAM,QAqBhB;IAED;;;OAGG;IACH,mBAFa,MAAM,CAIlB;IAED;;OAEG;IACH,aAEC;IAED;;;OAGG;IACH,kBAFc,GAAG,UAwBhB;IAED;;OAEG;IACH,eAIC;IAED;;OAEG;IACH,gBAIC;IAED;;;OAGG;IACH,YAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,
|
|
1
|
+
{"version":3,"file":"signal.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/signal.js"],"names":[],"mappings":"AAEA;IAKI,iBAAqB;IACrB,mBAAuB;IACvB,kBAAqB;IACrB,0BAA4B;IAC5B,gBAAkB;IAClB,wBAA2B;IAG7B;;;;;OAKG;IACH,6CAHW,MAAM,QAShB;IAED;;;;;;;;;OASG;IACH,+CAPW,OAAO,oBACP,MAAM,aACN,MAAM,SACH,GAAG,KACJ,aAAa,CAyBzB;IAED;;;OAGG;IACH,qBAFW,aAAa,QAYvB;IAED;;;;;OAKG;IACH,+CAHW,MAAM,GACJ,MAAM,CAgBlB;IAED;;;;;OAKG;IACH,kCAHW,MAAM,GACJ,OAAO,CAInB;IAED;;;;;;;OAOG;IACH,0CALW,MAAM,aACN,MAAM,WACH,GAAG,KACJ,aAAa,CAKzB;IAED;;;;;;;OAOG;IACH,8CALW,MAAM,aACN,MAAM,WACH,GAAG,KACJ,aAAa,CAKzB;IAED;;;;;OAKG;IACH,qCAHW,MAAM,YAYhB;IAED;;;OAGG;IACH,oBAFW,MAAM,QAqBhB;IAED;;;OAGG;IACH,mBAFa,MAAM,CAIlB;IAED;;OAEG;IACH,aAEC;IAED;;;OAGG;IACH,kBAFc,GAAG,UAwBhB;IAED;;OAEG;IACH,eAIC;IAED;;OAEG;IACH,gBAIC;IAED;;;OAGG;IACH,YAFa,MAAM,CAIlB;IAED;;;OAGG;IACH,8BAMC;CACF;8BAnQ6B,kBAAkB"}
|
|
@@ -44,7 +44,7 @@ export class Timer {
|
|
|
44
44
|
* @param {...any} args - TBD.
|
|
45
45
|
* @returns {TimerEvent} TBD.
|
|
46
46
|
*/
|
|
47
|
-
add(delay: number, callback: Function, callbackContext
|
|
47
|
+
add(delay: number, callback: Function, callbackContext?: object, ...args: any[]): TimerEvent;
|
|
48
48
|
/**
|
|
49
49
|
* TBD.
|
|
50
50
|
* @param {number} delay - TBD.
|
|
@@ -54,7 +54,7 @@ export class Timer {
|
|
|
54
54
|
* @param {...any} args - TBD.
|
|
55
55
|
* @returns {TimerEvent} TBD.
|
|
56
56
|
*/
|
|
57
|
-
repeat(delay: number, repeatCount: number, callback: Function, callbackContext
|
|
57
|
+
repeat(delay: number, repeatCount: number, callback: Function, callbackContext?: object, ...args: any[]): TimerEvent;
|
|
58
58
|
/**
|
|
59
59
|
* TBD.
|
|
60
60
|
* @param {number} delay - TBD.
|
|
@@ -63,7 +63,7 @@ export class Timer {
|
|
|
63
63
|
* @param {...any} args - TBD.
|
|
64
64
|
* @returns {TimerEvent} TBD.
|
|
65
65
|
*/
|
|
66
|
-
loop(delay: number, callback: Function, callbackContext
|
|
66
|
+
loop(delay: number, callback: Function, callbackContext?: object, ...args: any[]): TimerEvent;
|
|
67
67
|
/**
|
|
68
68
|
* TBD.
|
|
69
69
|
* @param {number} delay - TBD.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"timer.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/timer.js"],"names":[],"mappings":"AAGA;IACE;;;;OAIG;IACH,kBAHW,OAAO,QAAQ,EAAE,IAAI,gBACrB,OAAO,EAuBjB;IApBC,4BAAgB;IAChB,iBAAoB;IACpB,qBAA8B;IAC9B,iBAAoB;IACpB,gBAAgB;IAChB,cAAgB;IAChB,mBAA8B;IAC9B,iBAAiB;IACjB,gBAAmB;IACnB,gBAAmB;IACnB,qBAAwB;IACxB,iBAAiB;IACjB,sBAAsB;IACtB,oBAAoB;IACpB,aAAsB;IACtB,aAAa;IACb,gBAAgB;IAChB,WAAW;IACX,cAAc;IACd,iBAAiB;IAGnB;;;;;;;;;OASG;IACH,cARW,MAAM,QACN,OAAO,eACP,MAAM,uCAEN,MAAM,QACH,GAAG,KACJ,UAAU,CAetB;IAED;;;;;;;OAOG;IACH,WANW,MAAM,
|
|
1
|
+
{"version":3,"file":"timer.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/timer.js"],"names":[],"mappings":"AAGA;IACE;;;;OAIG;IACH,kBAHW,OAAO,QAAQ,EAAE,IAAI,gBACrB,OAAO,EAuBjB;IApBC,4BAAgB;IAChB,iBAAoB;IACpB,qBAA8B;IAC9B,iBAAoB;IACpB,gBAAgB;IAChB,cAAgB;IAChB,mBAA8B;IAC9B,iBAAiB;IACjB,gBAAmB;IACnB,gBAAmB;IACnB,qBAAwB;IACxB,iBAAiB;IACjB,sBAAsB;IACtB,oBAAoB;IACpB,aAAsB;IACtB,aAAa;IACb,gBAAgB;IAChB,WAAW;IACX,cAAc;IACd,iBAAiB;IAGnB;;;;;;;;;OASG;IACH,cARW,MAAM,QACN,OAAO,eACP,MAAM,uCAEN,MAAM,QACH,GAAG,KACJ,UAAU,CAetB;IAED;;;;;;;OAOG;IACH,WANW,MAAM,wCAEN,MAAM,WACH,GAAG,KACJ,UAAU,CAItB;IAED;;;;;;;;OAQG;IACH,cAPW,MAAM,eACN,MAAM,wCAEN,MAAM,WACH,GAAG,KACJ,UAAU,CAItB;IAED;;;;;;;OAOG;IACH,YANW,MAAM,wCAEN,MAAM,WACH,GAAG,KACJ,UAAU,CAItB;IAED;;;OAGG;IACH,aAFW,MAAM,QAWhB;IAED;;;OAGG;IACH,mBAFW,OAAO,QAOjB;IAED;;;;OAIG;IACH,cAHW,KAAK,GACH,OAAO,CAUnB;IAED;;OAEG;IACH,cAMC;IAED;;;;;OAKG;IACH,eAJW,UAAU,KACV,UAAU,GACR,MAAM,CASlB;IAED;;OAEG;IACH,2BAUC;IAED;;;;OAIG;IACH,aAHW,MAAM,GACJ,OAAO,CAuDnB;IAED;;OAEG;IACH,cAUC;IAED;;OAEG;IACH,eAMC;IAED;;;OAGG;IACH,uBAFW,MAAM,QAoBhB;IAED;;OAEG;IACH,eAUC;IAED;;OAEG;IACH,gBAKC;IAED;;OAEG;IACH,kBAKC;IAED;;OAEG;IACH,gBAMC;IAED;;;OAGG;IACH,mBAEC;IAED;;;OAGG;IACH,uBAKC;IAED;;;OAGG;IACH,qBAEC;IAED;;;OAGG;IACH,iBAKC;IAED;;;OAGG;IACH,sBAKC;CACF;uBA5XsB,UAAU;2BACN,eAAe"}
|
|
@@ -64,7 +64,7 @@ export class TweenManager {
|
|
|
64
64
|
* @param {object} obj - TBD.
|
|
65
65
|
* @param {object[]} children - TBD.
|
|
66
66
|
*/
|
|
67
|
-
removeFrom(obj: object, children
|
|
67
|
+
removeFrom(obj: object, children?: object[]): void;
|
|
68
68
|
/**
|
|
69
69
|
* TBD.
|
|
70
70
|
* @param {Tween} tween - TBD.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tween_manager.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/tween_manager.js"],"names":[],"mappings":"AAoCA;IACE;;;OAGG;IACH,kBAFW,OAAO,QAAQ,EAAE,IAAI,EAoD/B;IAjDC,4BAAgB;IAChB,eAAiB;IACjB,YAAc;IACd;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA0CC;IAMH;;;OAGG;IACH,UAFa,KAAK,EAAE,CAInB;IAED;;OAEG;IACH,kBAKC;IAED;;;;OAIG;IACH,gBAHW,MAAM,
|
|
1
|
+
{"version":3,"file":"tween_manager.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/tween_manager.js"],"names":[],"mappings":"AAoCA;IACE;;;OAGG;IACH,kBAFW,OAAO,QAAQ,EAAE,IAAI,EAoD/B;IAjDC,4BAAgB;IAChB,eAAiB;IACjB,YAAc;IACd;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA0CC;IAMH;;;OAGG;IACH,UAFa,KAAK,EAAE,CAInB;IAED;;OAEG;IACH,kBAKC;IAED;;;;OAIG;IACH,gBAHW,MAAM,aACN,MAAM,EAAE,QAyBlB;IAED;;;OAGG;IACH,WAFW,KAAK,QAKf;IAED;;;;OAIG;IACH,eAHW,MAAM,GACJ,KAAK,CAIjB;IAED;;;OAGG;IACH,cAFW,KAAK,QAYf;IAED;;;OAGG;IACH,UAFa,OAAO,CAuBnB;IAED;;;;OAIG;IACH,mBAHW,MAAM,GACJ,OAAO,CAInB;IAED;;OAEG;IACH,kBAIC;IAED;;OAEG;IACH,mBAIC;IAED;;OAEG;IACH,iBAIC;IAED;;OAEG;IACH,kBAIC;CACF;2BArNM,gBAAgB;6BAAhB,gBAAgB;yBAAhB,gBAAgB;2BAAhB,gBAAgB;2BAAhB,gBAAgB;8BAAhB,gBAAgB;+BAAhB,gBAAgB;4BAAhB,gBAAgB;2BAAhB,gBAAgB;wBAAhB,gBAAgB;0BAAhB,gBAAgB;4BAAhB,gBAAgB;wBAAhB,gBAAgB;0BAAhB,gBAAgB;0BAAhB,gBAAgB;6BAAhB,gBAAgB;8BAAhB,gBAAgB;2BAAhB,gBAAgB;0BAAhB,gBAAgB;uBAAhB,gBAAgB;yBAAhB,gBAAgB;+BAAhB,gBAAgB;2BAAhB,gBAAgB;6BAAhB,gBAAgB;6BAAhB,gBAAgB;gCAAhB,gBAAgB;iCAAhB,gBAAgB;8BAAhB,gBAAgB;6BAAhB,gBAAgB;0BAAhB,gBAAgB;4BAAhB,gBAAgB;sBAjCD,SAAS"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* TBD.
|
|
3
|
-
* @param {
|
|
3
|
+
* @param {GraphicsData} source - TBD.
|
|
4
4
|
* @returns {GraphicsData} TBD.
|
|
5
5
|
*/
|
|
6
|
-
export function clone(source:
|
|
6
|
+
export function clone(source: GraphicsData): GraphicsData;
|
|
7
7
|
import { GraphicsData } from './graphics_data';
|
|
8
8
|
//# sourceMappingURL=graphics_data_util.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphics_data_util.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/graphics_data_util.js"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,8BAHW,
|
|
1
|
+
{"version":3,"file":"graphics_data_util.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/graphics_data_util.js"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,8BAHW,YAAY,GACV,YAAY,CAYxB;6BAjB4B,iBAAiB"}
|
|
@@ -5,9 +5,9 @@ export class Image extends DisplayObject {
|
|
|
5
5
|
* @param {number} x - TBD.
|
|
6
6
|
* @param {number} y - TBD.
|
|
7
7
|
* @param {string} key - TBD.
|
|
8
|
-
* @param {string} frame - TBD.
|
|
8
|
+
* @param {string|number} frame - TBD.
|
|
9
9
|
*/
|
|
10
|
-
constructor(game: import('../core/game').Game, x: number, y: number, key: string, frame: string);
|
|
10
|
+
constructor(game: import('../core/game').Game, x: number, y: number, key: string, frame: string | number);
|
|
11
11
|
game: import("../core/game").Game;
|
|
12
12
|
type: number;
|
|
13
13
|
key: string;
|
|
@@ -26,10 +26,10 @@ export class Image extends DisplayObject {
|
|
|
26
26
|
/**
|
|
27
27
|
* TBD.
|
|
28
28
|
* @param {string} key - TBD.
|
|
29
|
-
* @param {number} frame - TBD.
|
|
29
|
+
* @param {string|number} frame - TBD.
|
|
30
30
|
* @param {boolean} stopAnimation - TBD.
|
|
31
31
|
*/
|
|
32
|
-
loadTexture(key: string, frame?: number, stopAnimation?: boolean): void;
|
|
32
|
+
loadTexture(key: string, frame?: string | number, stopAnimation?: boolean): void;
|
|
33
33
|
customRender: boolean;
|
|
34
34
|
/**
|
|
35
35
|
* TBD.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/image.js"],"names":[],"mappings":"AASA;IACE;;;;;;;OAOG;IACH,kBANW,OAAO,cAAc,EAAE,IAAI,KAC3B,MAAM,KACN,MAAM,OACN,MAAM,SACN,MAAM,
|
|
1
|
+
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/image.js"],"names":[],"mappings":"AASA;IACE;;;;;;;OAOG;IACH,kBANW,OAAO,cAAc,EAAE,IAAI,KAC3B,MAAM,KACN,MAAM,OACN,MAAM,SACN,MAAM,GAAC,MAAM,EA0BvB;IAtBC,kCAAgB;IAChB,aAAiB;IAEjB,YAAc;IACd,aAAwD;IACxD,SAAc;IAGd,aAAoB;IACpB,mBAAoB;IACpB,mBAAyB;IACzB,kBAA6B;IAC7B,YAAkB;IAClB,kDAAkB;IAClB,wBAA2B;IAK3B,qBAAoC;IACpC,6BAA4C;IAqC1C,sBAAuB;IAiB3B;;;;;OAKG;IACH,iBAJW,MAAM,UACN,MAAM,GAAC,MAAM,kBACb,OAAO,QAsCjB;IAzBC,sBAAyB;IA2B3B;;;OAGG;IACH,gBAFW,OAAO,eAAe,EAAE,KAAK,QAyCvC;IAFG,wBAA0B;IAI9B;;;;;OAKG;IACH,oBAJW,aAAa,SACb,MAAM,UACN,MAAM,QAKhB;IAED;;OAEG;IACH,mBAIC;IAUD;;OAEG;IACH,uBAEC;IAbD;;;OAGG;IACH,oBAEC;IAiBD;;OAEG;IACH,2BAEC;IAbD;;;OAGG;IACH,wBAEC;IAWD;;;;OAIG;IACH,WAHW,SAAS,SACT,OAAO,QAiBjB;IAVK,oBAAsE;IAMxE,WAAiB;IAMrB;;OAEG;IACH,mBA2BC;IAkCD;;OAEG;IACH,wBAQC;IAED;;;;OAIG;IACH,oBAHW,OAAO,gBACP,OAAO,QAIjB;IAED;;;;OAIG;IACH,mBAHW,OAAO,gBAAgB,EAAE,MAAM,GAC7B,SAAS,CAIrB;IAUD;;;;OAIG;IACH,2BAHW,MAAM,WACN,OAAO,gBAAgB,EAAE,MAAM,QAIzC;IAED;;;;OAIG;IACH,4BAHW,MAAM,WACN,OAAO,gBAAgB,EAAE,MAAM,QAIzC;CACF;8BArX6B,kBAAkB;0BADtB,mBAAmB;6BADhB,uBAAuB;iCADnB,2BAA2B;wBADpC,iBAAiB"}
|
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* TBD.
|
|
3
|
-
* @param {
|
|
4
|
-
* @param {
|
|
3
|
+
* @param {import('./image').Image} target - TBD.
|
|
4
|
+
* @param {import('./webgl/texture').Texture} texture - TBD.
|
|
5
5
|
* @param {boolean} destroyBase - TBD.
|
|
6
6
|
*/
|
|
7
|
-
export function setTexture(target:
|
|
7
|
+
export function setTexture(target: import('./image').Image, texture: import('./webgl/texture').Texture, destroyBase?: boolean): void;
|
|
8
8
|
/**
|
|
9
9
|
* TBD.
|
|
10
|
-
* @param {
|
|
10
|
+
* @param {import('./image').Image} target - TBD.
|
|
11
11
|
* @param {object} matrix - TBD.
|
|
12
12
|
* @returns {import('../geom/rectangle').Rectangle} TBD.
|
|
13
13
|
*/
|
|
14
|
-
export function getBounds(target:
|
|
14
|
+
export function getBounds(target: import('./image').Image, matrix?: object): import('../geom/rectangle').Rectangle;
|
|
15
15
|
/**
|
|
16
16
|
* TBD.
|
|
17
|
-
* @param {
|
|
17
|
+
* @param {import('./image').Image} target - TBD.
|
|
18
18
|
* @returns {import('../geom/rectangle').Rectangle} TBD.
|
|
19
19
|
*/
|
|
20
|
-
export function getLocalBounds(target:
|
|
20
|
+
export function getLocalBounds(target: import('./image').Image): import('../geom/rectangle').Rectangle;
|
|
21
21
|
/**
|
|
22
22
|
* TBD.
|
|
23
|
-
* @param {
|
|
23
|
+
* @param {import('./image').Image} target - TBD.
|
|
24
24
|
* @param {object} renderSession - TBD.
|
|
25
|
-
* @param {
|
|
25
|
+
* @param {import('../geom/matrix').Matrix} matrix - TBD.
|
|
26
26
|
*/
|
|
27
|
-
export function renderWebGL(target:
|
|
27
|
+
export function renderWebGL(target: import('./image').Image, renderSession: object, matrix: import('../geom/matrix').Matrix): void;
|
|
28
28
|
/**
|
|
29
29
|
* TBD.
|
|
30
|
-
* @param {
|
|
30
|
+
* @param {import('./image').Image} target - TBD.
|
|
31
31
|
* @param {object} renderSession - TBD.
|
|
32
|
-
* @param {
|
|
32
|
+
* @param {import('../geom/matrix').Matrix} matrix - TBD.
|
|
33
33
|
*/
|
|
34
|
-
export function renderCanvas(target:
|
|
34
|
+
export function renderCanvas(target: import('./image').Image, renderSession: object, matrix: import('../geom/matrix').Matrix): void;
|
|
35
35
|
//# sourceMappingURL=sprite_util.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sprite_util.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/sprite_util.js"],"names":[],"mappings":"AAIA;;;;;GAKG;AACH,mCAJW,
|
|
1
|
+
{"version":3,"file":"sprite_util.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/sprite_util.js"],"names":[],"mappings":"AAIA;;;;;GAKG;AACH,mCAJW,OAAO,SAAS,EAAE,KAAK,WACvB,OAAO,iBAAiB,EAAE,OAAO,gBACjC,OAAO,QAUjB;AAED;;;;;GAKG;AACH,kCAJW,OAAO,SAAS,EAAE,KAAK,WACvB,MAAM,GACJ,OAAO,mBAAmB,EAAE,SAAS,CA6EjD;AAED;;;;GAIG;AACH,uCAHW,OAAO,SAAS,EAAE,KAAK,GACrB,OAAO,mBAAmB,EAAE,SAAS,CAejD;AAED;;;;;GAKG;AACH,oCAJW,OAAO,SAAS,EAAE,KAAK,iBACvB,MAAM,UACN,OAAO,gBAAgB,EAAE,MAAM,QA2CzC;AAED;;;;;GAKG;AACH,qCAJW,OAAO,SAAS,EAAE,KAAK,iBACvB,MAAM,UACN,OAAO,gBAAgB,EAAE,MAAM,QAyFzC"}
|