@vpmedia/phaser 1.26.0 → 1.28.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/index.js +17 -0
- package/src/phaser/core/factory.js +13 -2
- package/src/phaser/display/button.js +5 -1
- package/types/index.d.ts +8 -1
- package/types/index.d.ts.map +1 -1
- package/types/phaser/core/factory.d.ts +2 -2
- package/types/phaser/core/factory.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/tween_manager.d.ts +1 -1
- package/types/phaser/core/tween_manager.d.ts.map +1 -1
- package/types/phaser/display/button.d.ts +2 -1
- package/types/phaser/display/button.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.28.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",
|
|
@@ -26,7 +26,7 @@
|
|
|
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": "^
|
|
29
|
+
"eslint-plugin-jsdoc": "^44.2.4",
|
|
30
30
|
"eslint-plugin-prettier": "^4.2.1",
|
|
31
31
|
"husky": "^8.0.3",
|
|
32
32
|
"jest": "^29.5.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"lint-staged": "lint-staged"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
|
-
"npm": ">=
|
|
48
|
-
"node": ">=
|
|
47
|
+
"npm": ">=9.0.0",
|
|
48
|
+
"node": ">=19.0.0"
|
|
49
49
|
}
|
|
50
50
|
}
|
package/src/index.js
CHANGED
|
@@ -3,6 +3,16 @@ import * as Const from './phaser/core/const';
|
|
|
3
3
|
import { Game } from './phaser/core/game';
|
|
4
4
|
import { Signal } from './phaser/core/signal';
|
|
5
5
|
import * as MathUtils from './phaser/util/math';
|
|
6
|
+
// sound
|
|
7
|
+
import { Sound } from './phaser/core/sound';
|
|
8
|
+
import { SoundSprite } from './phaser/core/sound_sprite';
|
|
9
|
+
// time
|
|
10
|
+
import { Time } from './phaser/core/time';
|
|
11
|
+
import { Timer } from './phaser/core/timer';
|
|
12
|
+
import { TimerEvent } from './phaser/core/timer_event';
|
|
13
|
+
// tween
|
|
14
|
+
import { Tween } from './phaser/core/tween';
|
|
15
|
+
import { TweenData } from './phaser/core/tween_data';
|
|
6
16
|
// texture
|
|
7
17
|
import { BaseTexture } from './phaser/display/webgl/base_texture';
|
|
8
18
|
import { Texture } from './phaser/display/webgl/texture';
|
|
@@ -30,6 +40,13 @@ export {
|
|
|
30
40
|
Signal,
|
|
31
41
|
MathUtils,
|
|
32
42
|
BaseTexture,
|
|
43
|
+
Sound,
|
|
44
|
+
SoundSprite,
|
|
45
|
+
Time,
|
|
46
|
+
Timer,
|
|
47
|
+
TimerEvent,
|
|
48
|
+
Tween,
|
|
49
|
+
TweenData,
|
|
33
50
|
Texture,
|
|
34
51
|
Circle,
|
|
35
52
|
Ellipse,
|
|
@@ -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
|
}
|
|
@@ -166,12 +166,16 @@ export class Button extends Image {
|
|
|
166
166
|
* @param {string} outFrame - TBD.
|
|
167
167
|
* @param {string} downFrame - TBD.
|
|
168
168
|
* @param {string} upFrame - TBD.
|
|
169
|
+
* @param {string} disabledFrame - TBD.
|
|
169
170
|
*/
|
|
170
|
-
setFrames(overFrame, outFrame, downFrame, upFrame) {
|
|
171
|
+
setFrames(overFrame, outFrame, downFrame, upFrame, disabledFrame) {
|
|
171
172
|
this.setStateFrame(STATE_OVER, overFrame, this.input.pointerOver());
|
|
172
173
|
this.setStateFrame(STATE_OUT, outFrame, !this.input.pointerOver());
|
|
173
174
|
this.setStateFrame(STATE_DOWN, downFrame, this.input.pointerDown());
|
|
174
175
|
this.setStateFrame(STATE_UP, upFrame, this.input.pointerUp());
|
|
176
|
+
if (disabledFrame) {
|
|
177
|
+
this.setStateFrame(STATE_DISABLED, disabledFrame, !this.input.enabled);
|
|
178
|
+
}
|
|
175
179
|
}
|
|
176
180
|
|
|
177
181
|
/**
|
package/types/index.d.ts
CHANGED
|
@@ -3,6 +3,13 @@ import { Game } from './phaser/core/game';
|
|
|
3
3
|
import { Signal } from './phaser/core/signal';
|
|
4
4
|
import * as MathUtils from './phaser/util/math';
|
|
5
5
|
import { BaseTexture } from './phaser/display/webgl/base_texture';
|
|
6
|
+
import { Sound } from './phaser/core/sound';
|
|
7
|
+
import { SoundSprite } from './phaser/core/sound_sprite';
|
|
8
|
+
import { Time } from './phaser/core/time';
|
|
9
|
+
import { Timer } from './phaser/core/timer';
|
|
10
|
+
import { TimerEvent } from './phaser/core/timer_event';
|
|
11
|
+
import { Tween } from './phaser/core/tween';
|
|
12
|
+
import { TweenData } from './phaser/core/tween_data';
|
|
6
13
|
import { Texture } from './phaser/display/webgl/texture';
|
|
7
14
|
import { Circle } from './phaser/geom/circle';
|
|
8
15
|
import { Ellipse } from './phaser/geom/ellipse';
|
|
@@ -19,5 +26,5 @@ import { Image } from './phaser/display/image';
|
|
|
19
26
|
import { Group } from './phaser/display/group';
|
|
20
27
|
import { Text } from './phaser/display/text';
|
|
21
28
|
import { Graphics } from './phaser/display/graphics';
|
|
22
|
-
export { Const, Game, Signal, MathUtils, BaseTexture, Texture, Circle, Ellipse, Line, Matrix, Point, Polygon, Rectangle, RoundedRectangle, BitmapText, Button, DisplayObject, Image, Group, Text, Graphics };
|
|
29
|
+
export { Const, Game, Signal, MathUtils, BaseTexture, Sound, SoundSprite, Time, Timer, TimerEvent, Tween, TweenData, Texture, Circle, Ellipse, Line, Matrix, Point, Polygon, Rectangle, RoundedRectangle, BitmapText, Button, DisplayObject, Image, Group, Text, Graphics };
|
|
23
30
|
//# sourceMappingURL=index.d.ts.map
|
package/types/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":"uBACuB,qBAAqB;qBACvB,oBAAoB;uBAClB,sBAAsB;2BAClB,oBAAoB;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":"uBACuB,qBAAqB;qBACvB,oBAAoB;uBAClB,sBAAsB;2BAClB,oBAAoB;4BAYnB,qCAAqC;sBAV3C,qBAAqB;4BACf,4BAA4B;qBAEnC,oBAAoB;sBACnB,qBAAqB;2BAChB,2BAA2B;sBAEhC,qBAAqB;0BACjB,0BAA0B;wBAG5B,gCAAgC;uBAEjC,sBAAsB;wBACrB,uBAAuB;qBAC1B,oBAAoB;uBAClB,sBAAsB;sBACvB,qBAAqB;wBACnB,uBAAuB;0BACrB,yBAAyB;iCAClB,iCAAiC;2BAEvC,8BAA8B;uBAElC,yBAAyB;8BADlB,iCAAiC;sBAEzC,wBAAwB;sBACxB,wBAAwB;qBACzB,uBAAuB;yBACnB,2BAA2B"}
|
|
@@ -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,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,
|
|
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"}
|
|
@@ -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"}
|
|
@@ -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"}
|
|
@@ -71,8 +71,9 @@ export class Button extends Image {
|
|
|
71
71
|
* @param {string} outFrame - TBD.
|
|
72
72
|
* @param {string} downFrame - TBD.
|
|
73
73
|
* @param {string} upFrame - TBD.
|
|
74
|
+
* @param {string} disabledFrame - TBD.
|
|
74
75
|
*/
|
|
75
|
-
setFrames(overFrame: string, outFrame: string, downFrame: string, upFrame: string): void;
|
|
76
|
+
setFrames(overFrame: string, outFrame: string, downFrame: string, upFrame: string, disabledFrame: string): void;
|
|
76
77
|
/**
|
|
77
78
|
* TBD.
|
|
78
79
|
* @param {object} sprite - TBD.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/button.js"],"names":[],"mappings":"AAWA;IACE;;;;;;;;;;;;OAYG;IACH,kBAXW,OAAO,cAAc,EAAE,IAAI,MAC3B,MAAM,MACN,MAAM,QACN,MAAM,yCAEN,MAAM,cACN,MAAM,aACN,MAAM,cACN,MAAM,YACN,MAAM,EAyChB;IAzBC,kBAAwB;IACxB,iBAAuB;IACvB,kBAAwB;IACxB,gBAAsB;IACtB,sBAA4B;IAC5B,oBAA+B;IAC/B,mBAA8B;IAC9B,oBAA+B;IAC/B,kBAA6B;IAC7B,yBAA2B;IAC3B,iCAA+C;IAC/C,sBAAyB;IACzB,kBAAqB;IACrB,WAAmC;IAwCrC;;;;OAIG;IACH,sBAHW,OAAO,eACP,OAAO,QAWjB;IAED;;OAEG;IACH,oBAEC;IAED;;OAEG;IACH,yBAEC;
|
|
1
|
+
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/button.js"],"names":[],"mappings":"AAWA;IACE;;;;;;;;;;;;OAYG;IACH,kBAXW,OAAO,cAAc,EAAE,IAAI,MAC3B,MAAM,MACN,MAAM,QACN,MAAM,yCAEN,MAAM,cACN,MAAM,aACN,MAAM,cACN,MAAM,YACN,MAAM,EAyChB;IAzBC,kBAAwB;IACxB,iBAAuB;IACvB,kBAAwB;IACxB,gBAAsB;IACtB,sBAA4B;IAC5B,oBAA+B;IAC/B,mBAA8B;IAC9B,oBAA+B;IAC/B,kBAA6B;IAC7B,yBAA2B;IAC3B,iCAA+C;IAC/C,sBAAyB;IACzB,kBAAqB;IACrB,WAAmC;IAwCrC;;;;OAIG;IACH,sBAHW,OAAO,eACP,OAAO,QAWjB;IAED;;OAEG;IACH,oBAEC;IAED;;OAEG;IACH,yBAEC;IA2ID;;OAEG;IACH,+BAWC;IAtBD;;;OAGG;IACH,4BAEC;IAvID;;;;;OAKG;IACH,qBAJW,MAAM,SACN,MAAM,sBACN,OAAO,QAYjB;IAED;;;;OAIG;IACH,2BAHW,MAAM,GACJ,OAAO,CAiBnB;IAPG,eAAsB;IAGtB,WAAkB;IAMtB;;;;;;;OAOG;IACH,qBANW,MAAM,YACN,MAAM,aACN,MAAM,WACN,MAAM,iBACN,MAAM,QAUhB;IAED;;;;OAIG;IACH,2BAHW,MAAM,WACN,MAAM,QAchB;IAED;;;;OAIG;IACH,0BAHW,MAAM,WACN,MAAM,QAOhB;IAED;;;;OAIG;IACH,2BAHW,MAAM,WACN,MAAM,QAOhB;IAED;;;;;OAKG;IACH,yBAJW,MAAM,WACN,MAAM,UACN,OAAO,QAsBjB;CAyBF;sBAlRqB,SAAS;uBACR,gBAAgB"}
|