@vpmedia/phaser 1.30.0 → 1.41.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 +10 -11
- package/src/index.js +33 -33
- package/src/phaser/core/animation.js +5 -5
- package/src/phaser/core/animation_manager.js +6 -6
- package/src/phaser/core/animation_parser.js +7 -7
- package/src/phaser/core/cache.js +9 -9
- package/src/phaser/core/device_util.js +1 -1
- package/src/phaser/core/dom.js +2 -2
- package/src/phaser/core/event_manager.js +2 -2
- package/src/phaser/core/factory.js +9 -9
- package/src/phaser/core/frame.js +3 -3
- package/src/phaser/core/frame_data.js +8 -8
- package/src/phaser/core/frame_util.js +2 -2
- package/src/phaser/core/game.js +20 -20
- package/src/phaser/core/input.js +16 -16
- package/src/phaser/core/input_handler.js +21 -21
- package/src/phaser/core/input_mouse.js +1 -1
- package/src/phaser/core/input_mspointer.js +1 -1
- package/src/phaser/core/input_pointer.js +9 -9
- package/src/phaser/core/input_touch.js +1 -1
- package/src/phaser/core/loader.js +11 -11
- package/src/phaser/core/loader_parser.js +6 -6
- package/src/phaser/core/raf.js +1 -1
- package/src/phaser/core/scale_manager.js +7 -7
- package/src/phaser/core/scene_manager.js +2 -2
- package/src/phaser/core/signal.js +3 -3
- package/src/phaser/core/signal_binding.js +2 -2
- package/src/phaser/core/sound.js +2 -2
- package/src/phaser/core/sound_manager.js +5 -5
- package/src/phaser/core/sound_sprite.js +3 -3
- package/src/phaser/core/stage.js +6 -6
- package/src/phaser/core/time.js +2 -2
- package/src/phaser/core/timer.js +3 -3
- package/src/phaser/core/timer_event.js +1 -1
- package/src/phaser/core/tween.js +8 -8
- package/src/phaser/core/tween_data.js +3 -3
- package/src/phaser/core/tween_manager.js +26 -26
- package/src/phaser/core/world.js +2 -2
- package/src/phaser/display/bitmap_text.js +5 -5
- package/src/phaser/display/button.js +6 -6
- package/src/phaser/display/canvas/buffer.js +1 -1
- package/src/phaser/display/canvas/graphics.js +1 -1
- package/src/phaser/display/canvas/masker.js +2 -2
- package/src/phaser/display/canvas/renderer.js +21 -21
- package/src/phaser/display/canvas/tinter.js +3 -3
- package/src/phaser/display/canvas/util.js +1 -1
- package/src/phaser/display/display_object.js +9 -9
- package/src/phaser/display/graphics.js +24 -24
- package/src/phaser/display/graphics_data.js +1 -1
- package/src/phaser/display/graphics_data_util.js +2 -2
- package/src/phaser/display/group.js +5 -5
- package/src/phaser/display/image.js +13 -13
- package/src/phaser/display/sprite_batch.js +2 -2
- package/src/phaser/display/sprite_util.js +14 -14
- package/src/phaser/display/text.js +11 -11
- package/src/phaser/display/webgl/base_texture.js +1 -1
- package/src/phaser/display/webgl/earcut.js +1 -1
- package/src/phaser/display/webgl/fast_sprite_batch.js +1 -1
- package/src/phaser/display/webgl/filter_texture.js +1 -1
- package/src/phaser/display/webgl/graphics.js +6 -6
- package/src/phaser/display/webgl/mask_manager.js +1 -1
- package/src/phaser/display/webgl/render_texture.js +8 -8
- package/src/phaser/display/webgl/renderer.js +30 -30
- package/src/phaser/display/webgl/shader/complex.js +2 -2
- package/src/phaser/display/webgl/shader/fast.js +2 -2
- package/src/phaser/display/webgl/shader/normal.js +3 -3
- package/src/phaser/display/webgl/shader/primitive.js +2 -2
- package/src/phaser/display/webgl/shader/strip.js +2 -2
- package/src/phaser/display/webgl/shader_manager.js +5 -5
- package/src/phaser/display/webgl/sprite_batch.js +5 -5
- package/src/phaser/display/webgl/stencil_manager.js +7 -7
- package/src/phaser/display/webgl/texture.js +2 -2
- package/src/phaser/display/webgl/texture_util.js +2 -2
- package/src/phaser/geom/circle.js +5 -5
- package/src/phaser/geom/ellipse.js +4 -4
- package/src/phaser/geom/line.js +5 -5
- package/src/phaser/geom/matrix.js +3 -3
- package/src/phaser/geom/point.js +2 -2
- package/src/phaser/geom/polygon.js +3 -3
- package/src/phaser/geom/rectangle.js +3 -3
- package/src/phaser/geom/rounded_rectangle.js +2 -2
- package/src/phaser/geom/util/circle.js +3 -3
- package/src/phaser/geom/util/line.js +3 -3
- package/src/phaser/geom/util/matrix.js +1 -1
- package/src/phaser/geom/util/point.js +1 -1
- package/src/phaser/geom/util/polygon.js +1 -1
- package/src/phaser/geom/util/rectangle.js +3 -3
- package/src/phaser/geom/util/rounded_rectangle.js +1 -1
- package/types/index.d.ts +33 -33
- package/types/index.d.ts.map +1 -1
- package/types/phaser/core/animation.d.ts +11 -11
- package/types/phaser/core/animation.d.ts.map +1 -1
- package/types/phaser/core/animation_manager.d.ts +12 -12
- package/types/phaser/core/animation_manager.d.ts.map +1 -1
- package/types/phaser/core/animation_parser.d.ts +4 -4
- package/types/phaser/core/animation_parser.d.ts.map +1 -1
- package/types/phaser/core/cache.d.ts +9 -9
- package/types/phaser/core/cache.d.ts.map +1 -1
- package/types/phaser/core/device_util.d.ts +1 -1
- package/types/phaser/core/device_util.d.ts.map +1 -1
- package/types/phaser/core/dom.d.ts +3 -3
- package/types/phaser/core/dom.d.ts.map +1 -1
- package/types/phaser/core/event_manager.d.ts +4 -4
- package/types/phaser/core/event_manager.d.ts.map +1 -1
- package/types/phaser/core/factory.d.ts +9 -9
- package/types/phaser/core/factory.d.ts.map +1 -1
- package/types/phaser/core/frame.d.ts +1 -1
- package/types/phaser/core/frame.d.ts.map +1 -1
- package/types/phaser/core/frame_data.d.ts +12 -12
- package/types/phaser/core/frame_data.d.ts.map +1 -1
- package/types/phaser/core/frame_util.d.ts +2 -2
- package/types/phaser/core/frame_util.d.ts.map +1 -1
- package/types/phaser/core/game.d.ts +16 -16
- package/types/phaser/core/game.d.ts.map +1 -1
- package/types/phaser/core/input.d.ts +15 -15
- package/types/phaser/core/input.d.ts.map +1 -1
- package/types/phaser/core/input_handler.d.ts +36 -36
- package/types/phaser/core/input_handler.d.ts.map +1 -1
- package/types/phaser/core/input_mouse.d.ts +5 -5
- package/types/phaser/core/input_mouse.d.ts.map +1 -1
- package/types/phaser/core/input_mspointer.d.ts +5 -5
- package/types/phaser/core/input_mspointer.d.ts.map +1 -1
- package/types/phaser/core/input_pointer.d.ts +7 -7
- package/types/phaser/core/input_pointer.d.ts.map +1 -1
- package/types/phaser/core/input_touch.d.ts +4 -4
- package/types/phaser/core/input_touch.d.ts.map +1 -1
- package/types/phaser/core/loader.d.ts +9 -9
- package/types/phaser/core/loader.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/raf.d.ts +3 -3
- package/types/phaser/core/raf.d.ts.map +1 -1
- package/types/phaser/core/scale_manager.d.ts +7 -7
- package/types/phaser/core/scale_manager.d.ts.map +1 -1
- package/types/phaser/core/scene_manager.d.ts +4 -4
- package/types/phaser/core/scene_manager.d.ts.map +1 -1
- package/types/phaser/core/signal.d.ts +1 -1
- package/types/phaser/core/signal.d.ts.map +1 -1
- package/types/phaser/core/signal_binding.d.ts +5 -5
- package/types/phaser/core/signal_binding.d.ts.map +1 -1
- package/types/phaser/core/sound.d.ts +5 -5
- package/types/phaser/core/sound.d.ts.map +1 -1
- package/types/phaser/core/sound_manager.d.ts +7 -7
- package/types/phaser/core/sound_manager.d.ts.map +1 -1
- package/types/phaser/core/sound_sprite.d.ts +7 -7
- package/types/phaser/core/sound_sprite.d.ts.map +1 -1
- package/types/phaser/core/stage.d.ts +4 -4
- package/types/phaser/core/stage.d.ts.map +1 -1
- package/types/phaser/core/time.d.ts +4 -4
- package/types/phaser/core/time.d.ts.map +1 -1
- package/types/phaser/core/timer.d.ts +5 -5
- package/types/phaser/core/timer.d.ts.map +1 -1
- package/types/phaser/core/timer_event.d.ts +3 -3
- package/types/phaser/core/timer_event.d.ts.map +1 -1
- package/types/phaser/core/tween.d.ts +9 -9
- package/types/phaser/core/tween.d.ts.map +1 -1
- package/types/phaser/core/tween_data.d.ts +5 -5
- package/types/phaser/core/tween_data.d.ts.map +1 -1
- package/types/phaser/core/tween_manager.d.ts +35 -35
- package/types/phaser/core/tween_manager.d.ts.map +1 -1
- package/types/phaser/core/world.d.ts +3 -3
- package/types/phaser/core/world.d.ts.map +1 -1
- package/types/phaser/display/bitmap_text.d.ts +5 -5
- package/types/phaser/display/bitmap_text.d.ts.map +1 -1
- package/types/phaser/display/button.d.ts +5 -5
- package/types/phaser/display/button.d.ts.map +1 -1
- package/types/phaser/display/canvas/renderer.d.ts +8 -8
- package/types/phaser/display/canvas/renderer.d.ts.map +1 -1
- package/types/phaser/display/display_object.d.ts +7 -7
- package/types/phaser/display/display_object.d.ts.map +1 -1
- package/types/phaser/display/graphics.d.ts +10 -10
- package/types/phaser/display/graphics.d.ts.map +1 -1
- package/types/phaser/display/graphics_data_util.d.ts +1 -1
- package/types/phaser/display/graphics_data_util.d.ts.map +1 -1
- package/types/phaser/display/group.d.ts +6 -6
- package/types/phaser/display/group.d.ts.map +1 -1
- package/types/phaser/display/image.d.ts +17 -17
- package/types/phaser/display/image.d.ts.map +1 -1
- package/types/phaser/display/sprite_batch.d.ts +4 -4
- package/types/phaser/display/sprite_batch.d.ts.map +1 -1
- package/types/phaser/display/sprite_util.d.ts +15 -15
- package/types/phaser/display/sprite_util.d.ts.map +1 -1
- package/types/phaser/display/text.d.ts +5 -5
- package/types/phaser/display/text.d.ts.map +1 -1
- package/types/phaser/display/webgl/fast_sprite_batch.d.ts +2 -2
- package/types/phaser/display/webgl/fast_sprite_batch.d.ts.map +1 -1
- package/types/phaser/display/webgl/graphics.d.ts +1 -1
- package/types/phaser/display/webgl/graphics.d.ts.map +1 -1
- package/types/phaser/display/webgl/render_texture.d.ts +7 -7
- package/types/phaser/display/webgl/render_texture.d.ts.map +1 -1
- package/types/phaser/display/webgl/renderer.d.ts +15 -15
- package/types/phaser/display/webgl/renderer.d.ts.map +1 -1
- package/types/phaser/display/webgl/shader_manager.d.ts +5 -5
- package/types/phaser/display/webgl/shader_manager.d.ts.map +1 -1
- package/types/phaser/display/webgl/sprite_batch.d.ts +6 -6
- package/types/phaser/display/webgl/sprite_batch.d.ts.map +1 -1
- package/types/phaser/display/webgl/stencil_manager.d.ts +9 -9
- package/types/phaser/display/webgl/stencil_manager.d.ts.map +1 -1
- package/types/phaser/display/webgl/texture.d.ts +4 -4
- package/types/phaser/display/webgl/texture.d.ts.map +1 -1
- package/types/phaser/geom/circle.d.ts +2 -2
- package/types/phaser/geom/circle.d.ts.map +1 -1
- package/types/phaser/geom/ellipse.d.ts +2 -2
- package/types/phaser/geom/ellipse.d.ts.map +1 -1
- package/types/phaser/geom/line.d.ts +1 -1
- package/types/phaser/geom/line.d.ts.map +1 -1
- package/types/phaser/geom/matrix.d.ts +1 -1
- package/types/phaser/geom/matrix.d.ts.map +1 -1
- package/types/phaser/geom/rectangle.d.ts +1 -1
- package/types/phaser/geom/rectangle.d.ts.map +1 -1
- package/types/phaser/geom/util/circle.d.ts +2 -2
- package/types/phaser/geom/util/circle.d.ts.map +1 -1
- package/types/phaser/geom/util/line.d.ts +2 -2
- package/types/phaser/geom/util/line.d.ts.map +1 -1
- package/types/phaser/geom/util/matrix.d.ts +1 -1
- package/types/phaser/geom/util/matrix.d.ts.map +1 -1
- package/types/phaser/geom/util/point.d.ts +1 -1
- package/types/phaser/geom/util/point.d.ts.map +1 -1
- package/types/phaser/geom/util/polygon.d.ts +1 -1
- package/types/phaser/geom/util/polygon.d.ts.map +1 -1
- package/types/phaser/geom/util/rectangle.d.ts +2 -2
- package/types/phaser/geom/util/rectangle.d.ts.map +1 -1
- package/types/phaser/geom/util/rounded_rectangle.d.ts +1 -1
- package/types/phaser/geom/util/rounded_rectangle.d.ts.map +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sound.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/sound.js"],"names":[],"mappings":"AAEA;IACE;;;;;;;OAOG;IACH,kBANW,OAAO,
|
|
1
|
+
{"version":3,"file":"sound.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/sound.js"],"names":[],"mappings":"AAEA;IACE;;;;;;;OAOG;IACH,kBANW,OAAO,WAAW,EAAE,IAAI,OACxB,MAAM,WACN,MAAM,SACN,OAAO,YACP,OAAO,EAoEjB;IA5DC,+BAAgB;IAChB,aAAe;IACf,YAAc;IACd,cAAgB;IAChB,YAAiB;IACjB,aAAmB;IACnB,kBAAqB;IACrB,sBAAsB;IACtB,kBAAkB;IAClB,oBAAoB;IACpB,iBAAiB;IACjB,mBAAmB;IACnB,iBAAiB;IACjB,iBAAiB;IACjB,gBAAmB;IACnB,uBAAuB;IACvB,mBAAmB;IACnB,mBAAsB;IACtB,sBAAuB;IACvB,sCAAqB;IACrB,yBAA4B;IAC5B,kBAAqB;IACrB,uBAA0B;IAC1B,kBAAwB;IACxB,oBAA0B;IAC1B,cAAoB;IACpB,YAAkB;IAClB,yBAA4B;IAC5B,iCAAoC;IAcpC,eAA0B;IAC1B,gBAA2B;IAC3B,iBAA4B;IAC5B,eAA0B;IAC1B,eAA0B;IAC1B,eAA0B;IAC1B,yBAAoC;IACpC,uBAAkC;IAClC,gBAAqB;IACrB,aAAmB;IACnB,gBAAmB;IACnB,oBAAoB;IACpB,sBAAsB;IACtB,oBAAoB;IACpB,mBAAmB;IACnB,oBAAoB;IACpB,kBAAkB;IAClB,iBAAoB;IAGtB;;;OAGG;IACH,sBAFW,MAAM,QAOhB;IAED;;;;;;;OAOG;IACH,gBANW,MAAM,SACN,MAAM,aACN,MAAM,WACN,MAAM,SACN,OAAO,QAYjB;IAED;;;OAGG;IACH,mBAFW,MAAM,QAIhB;IAED;;OAEG;IACH,uBA2BC;IAED;;OAEG;IACH,eA6CC;IAED;;;;OAIG;IACH,iBAHW,MAAM,GACJ,KAAK,CAIjB;IAED;;;;;;;;OAQG;IACH,aAPW,MAAM,YACN,MAAM,UACN,MAAM,QACN,OAAO,gBACP,OAAO,GACL,KAAK,CA+IjB;IA8MD;;OAEG;IACH,wBAUC;IArBD;;;OAGG;IACH,qBAEC;IA1MD;;;;;;OAMG;IACH,iBALW,MAAM,aACN,MAAM,WACN,MAAM,SACN,OAAO,QAIjB;IAED;;OAEG;IACH,cASC;IAED;;OAEG;IACH,eAgCC;IAED;;OAEG;IACH,aA4BC;IAED;;;;;OAKG;IACH,iBAJW,MAAM,SACN,OAAO,WACP,MAAM,QAQhB;IAED;;;OAGG;IACH,kBAFW,MAAM,QAIhB;IAED;;;;OAIG;IACH,kBAHW,MAAM,WACN,MAAM,QAQhB;IAED;;OAEG;IACH,qBAKC;IAED;;;OAGG;IACH,iBAFW,OAAO,QAqBjB;IAUD;;OAEG;IACH,uBAkBC;IA7BD;;;OAGG;IACH,oBAEC;CA+CF;uBAnkBsB,aAAa"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export class SoundManager {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('./game').Game} game - TBD.
|
|
4
|
+
* @param {import('./game.js').Game} game - TBD.
|
|
5
5
|
*/
|
|
6
|
-
constructor(game: import('./game').Game);
|
|
7
|
-
game: import("./game").Game;
|
|
6
|
+
constructor(game: import('./game.js').Game);
|
|
7
|
+
game: import("./game.js").Game;
|
|
8
8
|
onChange: Signal;
|
|
9
9
|
context: any;
|
|
10
10
|
baseLatency: number;
|
|
@@ -135,8 +135,8 @@ export class SoundManager {
|
|
|
135
135
|
*/
|
|
136
136
|
get volume(): number;
|
|
137
137
|
}
|
|
138
|
-
import { Signal } from './signal';
|
|
139
|
-
import { ArraySet } from './array_set';
|
|
140
|
-
import { Sound } from './sound';
|
|
141
|
-
import { SoundSprite } from './sound_sprite';
|
|
138
|
+
import { Signal } from './signal.js';
|
|
139
|
+
import { ArraySet } from './array_set.js';
|
|
140
|
+
import { Sound } from './sound.js';
|
|
141
|
+
import { SoundSprite } from './sound_sprite.js';
|
|
142
142
|
//# sourceMappingURL=sound_manager.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sound_manager.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/sound_manager.js"],"names":[],"mappings":"AAKA;IACE;;;OAGG;IACH,kBAFW,OAAO,
|
|
1
|
+
{"version":3,"file":"sound_manager.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/sound_manager.js"],"names":[],"mappings":"AAKA;IACE;;;OAGG;IACH,kBAFW,OAAO,WAAW,EAAE,IAAI,EAoBlC;IAjBC,+BAAgB;IAChB,iBAA4B;IAC5B,aAAmB;IACnB,oBAAoB;IACpB,iBAAoB;IACpB,yBAA2B;IAC3B,kBAAqB;IACrB,qBAAuB;IACvB,oBAAuB;IACvB,gBAAmB;IACnB,mBAAyB;IACzB,gBAAgB;IAChB,eAAiB;IACjB,qBAAgC;IAChC,mBAAsB;IACtB,yBAA0B;IAC1B,mBAAyB;IAG3B;;OAEG;IACH,aA0DC;IAvBG,gBAA+C;IAQjD,6BAiDS,KAAK,UAjD0C;IAiB1D;;OAEG;IACH,0BAUC;IAED;;OAEG;IACH,6BAUC;IAED;;;OAGG;IACH,qBAFW,KAAK,QAsCf;IAED;;OAEG;IACH,gBASC;IAED;;OAEG;IACH,iBASC;IAED;;OAEG;IACH,kBASC;IAED;;;OAGG;IACH,YAFW,MAAM,QAiBhB;IAED;;;;;OAKG;IACH,0BAJW,KAAK,EAAE,GAAC,MAAM,EAAE,uCAEhB,MAAM,QAyBhB;IAED;;OAEG;IACH,eAoBC;IAED;;;;;;;OAOG;IACH,SANW,MAAM,WACN,MAAM,SACN,OAAO,YACP,OAAO,GACL,KAAK,CAMjB;IAED;;;;OAIG;IACH,eAHW,MAAM,GACJ,WAAW,CAIvB;IAED;;;;OAIG;IACH,cAHW,KAAK,GACH,OAAO,CAanB;IAED;;;;OAIG;IACH,iBAHW,MAAM,GACJ,MAAM,CAclB;IAED;;;;;;OAMG;IACH,UALW,MAAM,WACN,MAAM,SACN,OAAO,GACL,KAAK,CASjB;IAED;;OAEG;IACH,gBAUC;IAJG,iBAA6C;IAMjD;;OAEG;IACH,kBASC;IAED;;OAEG;IACH,gBAgBC;IAUD;;OAEG;IACH,uBAcC;IAzBD;;;OAGG;IACH,oBAEC;IA6BD;;OAEG;IACH,wBAYC;IAvBD;;;OAGG;IACH,qBAEC;CAkBF;uBA5csB,aAAa;yBADX,gBAAgB;sBAEnB,YAAY;4BACN,mBAAmB"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export class SoundSprite {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('./game').Game} game - TBD.
|
|
4
|
+
* @param {import('./game.js').Game} game - TBD.
|
|
5
5
|
* @param {string} key - TBD.
|
|
6
6
|
*/
|
|
7
|
-
constructor(game: import('./game').Game, key: string);
|
|
8
|
-
game: import("./game").Game;
|
|
7
|
+
constructor(game: import('./game.js').Game, key: string);
|
|
8
|
+
game: import("./game.js").Game;
|
|
9
9
|
key: string;
|
|
10
10
|
config: any;
|
|
11
11
|
autoplayKey: any;
|
|
@@ -15,9 +15,9 @@ export class SoundSprite {
|
|
|
15
15
|
* TBD.
|
|
16
16
|
* @param {string} marker - TBD.
|
|
17
17
|
* @param {number} volume - TBD.
|
|
18
|
-
* @returns {import('./sound').Sound} TBD.
|
|
18
|
+
* @returns {import('./sound.js').Sound} TBD.
|
|
19
19
|
*/
|
|
20
|
-
play(marker: string, volume?: number): import('./sound').Sound;
|
|
20
|
+
play(marker: string, volume?: number): import('./sound.js').Sound;
|
|
21
21
|
/**
|
|
22
22
|
* TBD.
|
|
23
23
|
* @param {string} marker - TBD.
|
|
@@ -26,8 +26,8 @@ export class SoundSprite {
|
|
|
26
26
|
/**
|
|
27
27
|
* TBD.
|
|
28
28
|
* @param {string} marker - TBD.
|
|
29
|
-
* @returns {import('./sound').Sound} TBD.
|
|
29
|
+
* @returns {import('./sound.js').Sound} TBD.
|
|
30
30
|
*/
|
|
31
|
-
get(marker: string): import('./sound').Sound;
|
|
31
|
+
get(marker: string): import('./sound.js').Sound;
|
|
32
32
|
}
|
|
33
33
|
//# sourceMappingURL=sound_sprite.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sound_sprite.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/sound_sprite.js"],"names":[],"mappings":"AAAA;IACE;;;;OAIG;IACH,kBAHW,OAAO,
|
|
1
|
+
{"version":3,"file":"sound_sprite.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/sound_sprite.js"],"names":[],"mappings":"AAAA;IACE;;;;OAIG;IACH,kBAHW,OAAO,WAAW,EAAE,IAAI,OACxB,MAAM,EAoBhB;IAjBC,+BAAgB;IAChB,YAAc;IACd,YAA0D;IAC1D,iBAAuB;IACvB,cAAqB;IACrB,WAAgB;IAclB;;;;;OAKG;IACH,aAJW,MAAM,WACN,MAAM,GACJ,OAAO,YAAY,EAAE,KAAK,CAItC;IAED;;;OAGG;IACH,aAFW,MAAM,QAUhB;IAED;;;;OAIG;IACH,YAHW,MAAM,GACJ,OAAO,YAAY,EAAE,KAAK,CAItC;CACF"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export class Stage extends DisplayObject {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('./game').Game} game - TBD.
|
|
4
|
+
* @param {import('./game.js').Game} game - TBD.
|
|
5
5
|
*/
|
|
6
|
-
constructor(game: import('./game').Game);
|
|
7
|
-
game: import("./game").Game;
|
|
6
|
+
constructor(game: import('./game.js').Game);
|
|
7
|
+
game: import("./game.js").Game;
|
|
8
8
|
name: string;
|
|
9
9
|
currentRenderOrderID: number;
|
|
10
10
|
_bgColor: {
|
|
@@ -47,5 +47,5 @@ export class Stage extends DisplayObject {
|
|
|
47
47
|
*/
|
|
48
48
|
get smoothed(): boolean;
|
|
49
49
|
}
|
|
50
|
-
import { DisplayObject } from '../display/display_object';
|
|
50
|
+
import { DisplayObject } from '../display/display_object.js';
|
|
51
51
|
//# sourceMappingURL=stage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stage.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/stage.js"],"names":[],"mappings":"AAMA;IACE;;;OAGG;IACH,kBAFW,OAAO,
|
|
1
|
+
{"version":3,"file":"stage.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/stage.js"],"names":[],"mappings":"AAMA;IACE;;;OAGG;IACH,kBAFW,OAAO,WAAW,EAAE,IAAI,EAuBlC;IAnBC,+BAAgB;IAChB,aAAyB;IAEzB,6BAA6B;IAC7B;;;;;;;MAOC;IAUH;;;OAGG;IACH,0BAFW,MAAM,QAYhB;IAED;;OAEG;IACH,aAGC;IAkCD;;OAEG;IACH,wBAKC;IAoBD;;OAEG;IACH,iCAEC;IAbD;;;OAGG;IACH,8BAEC;IAiBD;;OAEG;IACH,2BAEC;IAbD;;;OAGG;IACH,wBAEC;CAQF;8BA1I6B,8BAA8B"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export class Time {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('./game').Game} game - TBD.
|
|
4
|
+
* @param {import('./game.js').Game} game - TBD.
|
|
5
5
|
*/
|
|
6
|
-
constructor(game: import('./game').Game);
|
|
7
|
-
game: import("./game").Game;
|
|
6
|
+
constructor(game: import('./game.js').Game);
|
|
7
|
+
game: import("./game.js").Game;
|
|
8
8
|
time: number;
|
|
9
9
|
prevTime: number;
|
|
10
10
|
now: number;
|
|
@@ -111,5 +111,5 @@ export class Time {
|
|
|
111
111
|
*/
|
|
112
112
|
get desiredFps(): number;
|
|
113
113
|
}
|
|
114
|
-
import { Timer } from './timer';
|
|
114
|
+
import { Timer } from './timer.js';
|
|
115
115
|
//# sourceMappingURL=time.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"time.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/time.js"],"names":[],"mappings":"AAEA;IACE;;;OAGG;IACH,kBAFW,OAAO,
|
|
1
|
+
{"version":3,"file":"time.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/time.js"],"names":[],"mappings":"AAEA;IACE;;;OAGG;IACH,kBAFW,OAAO,WAAW,EAAE,IAAI,EA8BlC;IA3BC,+BAAgB;IAChB,aAAa;IACb,iBAAiB;IACjB,YAAY;IACZ,gBAAgB;IAChB,kBAAkB;IAClB,uBAA8B;IAC9B,oBAAqB;IACrB,qBAAmC;IACnC,wBAA2B;IAC3B,eAAe;IACf,YAAY;IACZ,eAAkB;IAClB,eAAe;IACf,cAAiB;IACjB,cAAc;IACd,sBAAsB;IACtB,mBAAmB;IACnB,qBAAqB;IACrB,cAAyC;IACzC,oBAAoB;IACpB,4BAA4B;IAC5B,iBAAiB;IACjB,wBAAwB;IACxB,sBAAsB;IACtB,sBAAyB;IACzB,eAAiB;IAGnB;;OAEG;IACH,aAKC;IAED;;;;OAIG;IACH,WAHW,KAAK,GACH,KAAK,CAKjB;IAED;;;;OAIG;IACH,qBAHW,OAAO,GACL,KAAK,CAMjB;IAED;;OAEG;IACH,kBAMC;IAED;;OAEG;IACH,gBAMC;IAED;;;OAGG;IACH,aAFW,MAAM,QA0BhB;IAED;;OAEG;IACH,qBAYC;IAED;;OAEG;IACH,6BAqBC;IAED;;OAEG;IACH,mBAQC;IAED;;OAEG;IACH,oBASC;IAED;;;OAGG;IACH,uBAFa,MAAM,CAIlB;IAED;;;;OAIG;IACH,oBAHW,MAAM,GACJ,MAAM,CAIlB;IAED;;;;OAIG;IACH,2BAHW,MAAM,GACJ,MAAM,CAIlB;IAED;;OAEG;IACH,cAGC;IAED;;OAEG;IACH,gBAEC;IAUD;;OAEG;IACH,4BAGC;IAdD;;;OAGG;IACH,yBAEC;CASF;sBAtPqB,YAAY"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export class Timer {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('./game').Game} game - TBD.
|
|
4
|
+
* @param {import('./game.js').Game} game - TBD.
|
|
5
5
|
* @param {boolean} autoDestroy - TBD.
|
|
6
6
|
*/
|
|
7
|
-
constructor(game: import('./game').Game, autoDestroy?: boolean);
|
|
8
|
-
game: import("./game").Game;
|
|
7
|
+
constructor(game: import('./game.js').Game, autoDestroy?: boolean);
|
|
8
|
+
game: import("./game.js").Game;
|
|
9
9
|
running: boolean;
|
|
10
10
|
autoDestroy: boolean;
|
|
11
11
|
expired: boolean;
|
|
@@ -156,6 +156,6 @@ export class Timer {
|
|
|
156
156
|
*/
|
|
157
157
|
get seconds(): number;
|
|
158
158
|
}
|
|
159
|
-
import { Signal } from './signal';
|
|
160
|
-
import { TimerEvent } from './timer_event';
|
|
159
|
+
import { Signal } from './signal.js';
|
|
160
|
+
import { TimerEvent } from './timer_event.js';
|
|
161
161
|
//# sourceMappingURL=timer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"timer.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/timer.js"],"names":[],"mappings":"AAGA;IACE;;;;OAIG;IACH,kBAHW,OAAO,
|
|
1
|
+
{"version":3,"file":"timer.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/timer.js"],"names":[],"mappings":"AAGA;IACE;;;;OAIG;IACH,kBAHW,OAAO,WAAW,EAAE,IAAI,gBACxB,OAAO,EAuBjB;IApBC,+BAAgB;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,aAAa;2BACT,kBAAkB"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export class TimerEvent {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('./timer').Timer} timer - TBD.
|
|
4
|
+
* @param {import('./timer.js').Timer} timer - TBD.
|
|
5
5
|
* @param {number} delay - TBD.
|
|
6
6
|
* @param {number} tick - TBD.
|
|
7
7
|
* @param {number} repeatCount - TBD.
|
|
@@ -10,8 +10,8 @@ export class TimerEvent {
|
|
|
10
10
|
* @param {object} callbackContext - TBD.
|
|
11
11
|
* @param {...any} args - TBD.
|
|
12
12
|
*/
|
|
13
|
-
constructor(timer: import('./timer').Timer, delay: number, tick: number, repeatCount: number, loop: boolean, callback: Function, callbackContext: object, args: any[]);
|
|
14
|
-
timer: import("./timer").Timer;
|
|
13
|
+
constructor(timer: import('./timer.js').Timer, delay: number, tick: number, repeatCount: number, loop: boolean, callback: Function, callbackContext: object, args: any[]);
|
|
14
|
+
timer: import("./timer.js").Timer;
|
|
15
15
|
delay: number;
|
|
16
16
|
tick: number;
|
|
17
17
|
repeatCount: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"timer_event.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/timer_event.js"],"names":[],"mappings":"AAAA;IACE;;;;;;;;;;OAUG;IACH,mBATW,OAAO,
|
|
1
|
+
{"version":3,"file":"timer_event.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/timer_event.js"],"names":[],"mappings":"AAAA;IACE;;;;;;;;;;OAUG;IACH,mBATW,OAAO,YAAY,EAAE,KAAK,SAC1B,MAAM,QACN,MAAM,eACN,MAAM,QACN,OAAO,uCAEP,MAAM,QACH,GAAG,IAYhB;IATC,kCAAkB;IAClB,cAAkB;IAClB,aAAgB;IAChB,oBAAkC;IAClC,cAAgB;IAChB,mBAAwB;IACxB,qBAAsC;IACtC,UAAgB;IAChB,uBAA0B;CAE7B"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
export class Tween {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('../display/display_object').DisplayObject} target - TBD.
|
|
5
|
-
* @param {import('./game').Game} game - TBD.
|
|
6
|
-
* @param {import('./tween_manager').TweenManager} manager - TBD.
|
|
7
|
-
*/
|
|
8
|
-
constructor(target: import('../display/display_object').DisplayObject, game: import('./game').Game, manager: import('./tween_manager').TweenManager);
|
|
9
|
-
game: import("./game").Game;
|
|
10
|
-
target: import("../display/display_object").DisplayObject;
|
|
11
|
-
manager: import("./tween_manager").TweenManager;
|
|
4
|
+
* @param {import('../display/display_object.js').DisplayObject} target - TBD.
|
|
5
|
+
* @param {import('./game.js').Game} game - TBD.
|
|
6
|
+
* @param {import('./tween_manager.js').TweenManager} manager - TBD.
|
|
7
|
+
*/
|
|
8
|
+
constructor(target: import('../display/display_object.js').DisplayObject, game: import('./game.js').Game, manager: import('./tween_manager.js').TweenManager);
|
|
9
|
+
game: import("./game.js").Game;
|
|
10
|
+
target: import("../display/display_object.js").DisplayObject;
|
|
11
|
+
manager: import("./tween_manager.js").TweenManager;
|
|
12
12
|
timeline: any[];
|
|
13
13
|
reverse: boolean;
|
|
14
14
|
timeScale: number;
|
|
@@ -185,5 +185,5 @@ export class Tween {
|
|
|
185
185
|
*/
|
|
186
186
|
get totalDuration(): number;
|
|
187
187
|
}
|
|
188
|
-
import { Signal } from './signal';
|
|
188
|
+
import { Signal } from './signal.js';
|
|
189
189
|
//# sourceMappingURL=tween.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tween.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/tween.js"],"names":[],"mappings":"AAKA;IACE;;;;;OAKG;IACH,oBAJW,OAAO,
|
|
1
|
+
{"version":3,"file":"tween.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/tween.js"],"names":[],"mappings":"AAKA;IACE;;;;;OAKG;IACH,oBAJW,OAAO,8BAA8B,EAAE,aAAa,QACpD,OAAO,WAAW,EAAE,IAAI,WACxB,OAAO,oBAAoB,EAAE,YAAY,EA0BnD;IAvBC,+BAAgB;IAChB,6DAAoB;IACpB,mDAAsB;IACtB,gBAAkB;IAClB,iBAAoB;IACpB,kBAAkB;IAClB,sBAAsB;IACtB,uBAA0B;IAC1B,gBAA2B;IAC3B,eAA0B;IAC1B,iBAA4B;IAC5B,wBAAmC;IACnC,mBAA8B;IAC9B,mBAAsB;IACtB,gBAAgB;IAChB,eAAoB;IACpB,kBAAwB;IACxB,kBAAqB;IACrB,4BAA6B;IAC7B,8BAAoC;IACpC,oBAAoB;IACpB,qBAAwB;IACxB,qBAAwB;IAG1B;;;;;;;;;;OAUG;IACH,eATW,MAAM,aACN,MAAM,SACN,MAAM,cACN,OAAO,UACP,MAAM,WACN,MAAM,SACN,OAAO,GACL,KAAK,CAcjB;IAED;;;;;;;;;;OAUG;IACH,iBATW,MAAM,aACN,MAAM,SACN,MAAM,cACN,OAAO,UACP,MAAM,WACN,MAAM,SACN,OAAO,GACL,KAAK,CAejB;IAED;;;;OAIG;IACH,cAHW,MAAM,GACJ,KAAK,CA8BjB;IAED;;;;OAIG;IACH,gBAHW,OAAO,GACL,KAAK,CAejB;IAED;;;;;;OAMG;IACH,0BALW,MAAM,SACN,MAAM,UACN,MAAM,GACJ,KAAK,CAcjB;IAED;;;;;OAKG;IACH,gBAJW,MAAM,SACN,MAAM,GACJ,KAAK,CAIjB;IAED;;;;;;OAMG;IACH,cALW,MAAM,gBACN,MAAM,UACN,MAAM,GACJ,KAAK,CAKjB;IAED;;;;;OAKG;IACH,sBAJW,MAAM,SACN,MAAM,GACJ,KAAK,CAIjB;IAED;;;;;;OAMG;IACH,aALW,OAAO,cACP,MAAM,UACN,MAAM,GACJ,KAAK,CAKjB;IAED;;;;;OAKG;IACH,oBAJW,MAAM,SACN,MAAM,GACJ,KAAK,CAIjB;IAED;;;;;OAKG;IACH,aAJW,MAAM,WAAS,SACf,MAAM,GACJ,KAAK,CAOjB;IAED;;;;;;OAMG;IACH,iDAJW,MAAM,UACN,MAAM,GACJ,KAAK,CAKjB;IAED;;;;OAIG;IACH,kBAHW,MAAM,GACJ,KAAK,CAKjB;IAED;;;;OAIG;IACH,eAHc,GAAG,KACJ,KAAK,CAajB;IAED;;;;OAIG;IACH,aAHW,OAAO,GACL,KAAK,CAKjB;IAED;;;;;OAKG;IACH,sDAHW,MAAM,GACJ,KAAK,CAMjB;IAED;;OAEG;IACH,cAIC;IAED;;OAEG;IACH,eAKC;IAED;;OAEG;IACH,eAUC;IAED;;OAEG;IACH,gBAIC;IAED;;;;OAIG;IACH,aAHW,MAAM,GACJ,OAAO,CA8EnB;IAED;;;;;OAKG;IACH,yBAJW,MAAM,SACN,MAAM,EAAE,GACN,MAAM,EAAE,CA0BpB;IAED;;;OAGG;IACH,4BAMC;CACF;uBA7csB,aAAa"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export class TweenData {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('./tween').Tween} parent - TBD.
|
|
4
|
+
* @param {import('./tween.js').Tween} parent - TBD.
|
|
5
5
|
*/
|
|
6
|
-
constructor(parent: import('./tween').Tween);
|
|
7
|
-
parent: import("./tween").Tween;
|
|
8
|
-
game: import("./game").Game;
|
|
6
|
+
constructor(parent: import('./tween.js').Tween);
|
|
7
|
+
parent: import("./tween.js").Tween;
|
|
8
|
+
game: import("./game.js").Game;
|
|
9
9
|
vStart: {};
|
|
10
10
|
vStartCache: {};
|
|
11
11
|
vEnd: {};
|
|
@@ -79,5 +79,5 @@ export class TweenData {
|
|
|
79
79
|
*/
|
|
80
80
|
repeat(): number;
|
|
81
81
|
}
|
|
82
|
-
import * as MathUtils from '../util/math';
|
|
82
|
+
import * as MathUtils from '../util/math.js';
|
|
83
83
|
//# sourceMappingURL=tween_data.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tween_data.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/tween_data.js"],"names":[],"mappings":"AAGA;IACE;;;OAGG;IACH,oBAFW,OAAO,
|
|
1
|
+
{"version":3,"file":"tween_data.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/tween_data.js"],"names":[],"mappings":"AAGA;IACE;;;OAGG;IACH,oBAFW,OAAO,YAAY,EAAE,KAAK,EA2BpC;IAxBC,mCAAoB;IACpB,+BAAuB;IACvB,WAAgB;IAChB,gBAAqB;IACrB,SAAc;IACd,cAAmB;IACnB,iBAAoB;IACpB,gBAAgB;IAChB,cAAc;IACd,sBAAsB;IACtB,oBAAoB;IACpB,oBAAoB;IACpB,qBAAwB;IACxB,cAAiB;IACjB,kBAAkB;IAClB,mBAAsB;IACtB,cAAc;IACd,WAAW;IACX,kBAAqB;IACrB,uBAA8B;IAC9B,4DAA0D;IAC1D,uCAAqC;IACrC,mBAAsB;IACtB,gBAAmB;IAGrB;;;;;;;;;OASG;IACH,eARW,MAAM,YACN,MAAM,QACN,MAAM,SACN,MAAM,UACN,MAAM,QACN,OAAO,GACL,SAAS,CAWrB;IAED;;;;;;;;;OASG;IACH,iBARW,MAAM,YACN,MAAM,QACN,MAAM,SACN,MAAM,UACN,MAAM,QACN,OAAO,GACL,SAAS,CAWrB;IAED;;;OAGG;IACH,SAFa,SAAS,CA4BrB;IAHC,oBAAoB;IAKtB;;;OAGG;IACH,cAFa,SAAS,CAiCrB;IAED;;;;OAIG;IACH,aAHW,MAAM,GACJ,MAAM,CAsClB;IAED;;;;OAIG;IACH,wBAHW,MAAM,GACJ,MAAM,EAAE,CA4CpB;IAED;;;OAGG;IACH,UAFa,MAAM,CAuDlB;CACF;2BAxS0B,iBAAiB"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export class TweenManager {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('./game').Game} game - TBD.
|
|
4
|
+
* @param {import('./game.js').Game} game - TBD.
|
|
5
5
|
*/
|
|
6
|
-
constructor(game: import('./game').Game);
|
|
7
|
-
game: import("./game").Game;
|
|
6
|
+
constructor(game: import('./game.js').Game);
|
|
7
|
+
game: import("./game.js").Game;
|
|
8
8
|
_tweens: any[];
|
|
9
9
|
_add: any[];
|
|
10
10
|
easeMap: {
|
|
@@ -109,36 +109,36 @@ export class TweenManager {
|
|
|
109
109
|
*/
|
|
110
110
|
resumeAll(): void;
|
|
111
111
|
}
|
|
112
|
-
import { LinearNone } from './tween_easing';
|
|
113
|
-
import { QuadraticOut } from './tween_easing';
|
|
114
|
-
import { CubicOut } from './tween_easing';
|
|
115
|
-
import { QuarticOut } from './tween_easing';
|
|
116
|
-
import { QuinticOut } from './tween_easing';
|
|
117
|
-
import { SinusoidalOut } from './tween_easing';
|
|
118
|
-
import { ExponentialOut } from './tween_easing';
|
|
119
|
-
import { CircularOut } from './tween_easing';
|
|
120
|
-
import { ElasticOut } from './tween_easing';
|
|
121
|
-
import { BackOut } from './tween_easing';
|
|
122
|
-
import { BounceOut } from './tween_easing';
|
|
123
|
-
import { QuadraticIn } from './tween_easing';
|
|
124
|
-
import { CubicIn } from './tween_easing';
|
|
125
|
-
import { QuarticIn } from './tween_easing';
|
|
126
|
-
import { QuinticIn } from './tween_easing';
|
|
127
|
-
import { SinusoidalIn } from './tween_easing';
|
|
128
|
-
import { ExponentialIn } from './tween_easing';
|
|
129
|
-
import { CircularIn } from './tween_easing';
|
|
130
|
-
import { ElasticIn } from './tween_easing';
|
|
131
|
-
import { BackIn } from './tween_easing';
|
|
132
|
-
import { BounceIn } from './tween_easing';
|
|
133
|
-
import { QuadraticInOut } from './tween_easing';
|
|
134
|
-
import { CubicInOut } from './tween_easing';
|
|
135
|
-
import { QuarticInOut } from './tween_easing';
|
|
136
|
-
import { QuinticInOut } from './tween_easing';
|
|
137
|
-
import { SinusoidalInOut } from './tween_easing';
|
|
138
|
-
import { ExponentialInOut } from './tween_easing';
|
|
139
|
-
import { CircularInOut } from './tween_easing';
|
|
140
|
-
import { ElasticInOut } from './tween_easing';
|
|
141
|
-
import { BackInOut } from './tween_easing';
|
|
142
|
-
import { BounceInOut } from './tween_easing';
|
|
143
|
-
import { Tween } from './tween';
|
|
112
|
+
import { LinearNone } from './tween_easing.js';
|
|
113
|
+
import { QuadraticOut } from './tween_easing.js';
|
|
114
|
+
import { CubicOut } from './tween_easing.js';
|
|
115
|
+
import { QuarticOut } from './tween_easing.js';
|
|
116
|
+
import { QuinticOut } from './tween_easing.js';
|
|
117
|
+
import { SinusoidalOut } from './tween_easing.js';
|
|
118
|
+
import { ExponentialOut } from './tween_easing.js';
|
|
119
|
+
import { CircularOut } from './tween_easing.js';
|
|
120
|
+
import { ElasticOut } from './tween_easing.js';
|
|
121
|
+
import { BackOut } from './tween_easing.js';
|
|
122
|
+
import { BounceOut } from './tween_easing.js';
|
|
123
|
+
import { QuadraticIn } from './tween_easing.js';
|
|
124
|
+
import { CubicIn } from './tween_easing.js';
|
|
125
|
+
import { QuarticIn } from './tween_easing.js';
|
|
126
|
+
import { QuinticIn } from './tween_easing.js';
|
|
127
|
+
import { SinusoidalIn } from './tween_easing.js';
|
|
128
|
+
import { ExponentialIn } from './tween_easing.js';
|
|
129
|
+
import { CircularIn } from './tween_easing.js';
|
|
130
|
+
import { ElasticIn } from './tween_easing.js';
|
|
131
|
+
import { BackIn } from './tween_easing.js';
|
|
132
|
+
import { BounceIn } from './tween_easing.js';
|
|
133
|
+
import { QuadraticInOut } from './tween_easing.js';
|
|
134
|
+
import { CubicInOut } from './tween_easing.js';
|
|
135
|
+
import { QuarticInOut } from './tween_easing.js';
|
|
136
|
+
import { QuinticInOut } from './tween_easing.js';
|
|
137
|
+
import { SinusoidalInOut } from './tween_easing.js';
|
|
138
|
+
import { ExponentialInOut } from './tween_easing.js';
|
|
139
|
+
import { CircularInOut } from './tween_easing.js';
|
|
140
|
+
import { ElasticInOut } from './tween_easing.js';
|
|
141
|
+
import { BackInOut } from './tween_easing.js';
|
|
142
|
+
import { BounceInOut } from './tween_easing.js';
|
|
143
|
+
import { Tween } from './tween.js';
|
|
144
144
|
//# sourceMappingURL=tween_manager.d.ts.map
|
|
@@ -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,
|
|
1
|
+
{"version":3,"file":"tween_manager.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/tween_manager.js"],"names":[],"mappings":"AAoCA;IACE;;;OAGG;IACH,kBAFW,OAAO,WAAW,EAAE,IAAI,EAoDlC;IAjDC,+BAAgB;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;2BApNM,mBAAmB;6BAAnB,mBAAmB;yBAAnB,mBAAmB;2BAAnB,mBAAmB;2BAAnB,mBAAmB;8BAAnB,mBAAmB;+BAAnB,mBAAmB;4BAAnB,mBAAmB;2BAAnB,mBAAmB;wBAAnB,mBAAmB;0BAAnB,mBAAmB;4BAAnB,mBAAmB;wBAAnB,mBAAmB;0BAAnB,mBAAmB;0BAAnB,mBAAmB;6BAAnB,mBAAmB;8BAAnB,mBAAmB;2BAAnB,mBAAmB;0BAAnB,mBAAmB;uBAAnB,mBAAmB;yBAAnB,mBAAmB;+BAAnB,mBAAmB;2BAAnB,mBAAmB;6BAAnB,mBAAmB;6BAAnB,mBAAmB;gCAAnB,mBAAmB;iCAAnB,mBAAmB;8BAAnB,mBAAmB;6BAAnB,mBAAmB;0BAAnB,mBAAmB;4BAAnB,mBAAmB;sBAjCJ,YAAY"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export class World extends Group {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('./game').Game} game - TBD.
|
|
4
|
+
* @param {import('./game.js').Game} game - TBD.
|
|
5
5
|
*/
|
|
6
|
-
constructor(game: import('./game').Game);
|
|
6
|
+
constructor(game: import('./game.js').Game);
|
|
7
7
|
/**
|
|
8
8
|
* TBD.
|
|
9
9
|
*/
|
|
10
10
|
boot(): void;
|
|
11
11
|
}
|
|
12
|
-
import { Group } from '../display/group';
|
|
12
|
+
import { Group } from '../display/group.js';
|
|
13
13
|
//# sourceMappingURL=world.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"world.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/world.js"],"names":[],"mappings":"AAEA;IACE;;;OAGG;IACH,kBAFW,OAAO,
|
|
1
|
+
{"version":3,"file":"world.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/world.js"],"names":[],"mappings":"AAEA;IACE;;;OAGG;IACH,kBAFW,OAAO,WAAW,EAAE,IAAI,EAIlC;IAED;;OAEG;IACH,aAEC;CACF;sBAjBqB,qBAAqB"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export class BitmapText extends DisplayObject {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('../core/game').Game} game - TBD.
|
|
4
|
+
* @param {import('../core/game.js').Game} game - TBD.
|
|
5
5
|
* @param {number} x - TBD.
|
|
6
6
|
* @param {number} y - TBD.
|
|
7
7
|
* @param {string} font - TBD.
|
|
@@ -9,8 +9,8 @@ export class BitmapText extends DisplayObject {
|
|
|
9
9
|
* @param {number} size - TBD.
|
|
10
10
|
* @param {string} align - TBD.
|
|
11
11
|
*/
|
|
12
|
-
constructor(game: import('../core/game').Game, x?: number, y?: number, font?: string, text?: string, size?: number, align?: string);
|
|
13
|
-
game: import("../core/game").Game;
|
|
12
|
+
constructor(game: import('../core/game.js').Game, x?: number, y?: number, font?: string, text?: string, size?: number, align?: string);
|
|
13
|
+
game: import("../core/game.js").Game;
|
|
14
14
|
type: number;
|
|
15
15
|
textWidth: number;
|
|
16
16
|
textHeight: number;
|
|
@@ -131,6 +131,6 @@ export class BitmapText extends DisplayObject {
|
|
|
131
131
|
*/
|
|
132
132
|
get smoothed(): boolean;
|
|
133
133
|
}
|
|
134
|
-
import { DisplayObject } from './display_object';
|
|
135
|
-
import { Point } from '../geom/point';
|
|
134
|
+
import { DisplayObject } from './display_object.js';
|
|
135
|
+
import { Point } from '../geom/point.js';
|
|
136
136
|
//# sourceMappingURL=bitmap_text.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bitmap_text.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/bitmap_text.js"],"names":[],"mappings":"AAKA;IACE;;;;;;;;;OASG;IACH,kBARW,OAAO,
|
|
1
|
+
{"version":3,"file":"bitmap_text.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/bitmap_text.js"],"names":[],"mappings":"AAKA;IACE;;;;;;;;;OASG;IACH,kBARW,OAAO,iBAAiB,EAAE,IAAI,MAC9B,MAAM,MACN,MAAM,SACN,MAAM,SACN,MAAM,SACN,MAAM,UACN,MAAM,EAoBhB;IAhBC,qCAAgB;IAChB,aAAuB;IAEvB,kBAAkB;IAClB,mBAAmB;IACnB,mBAA8B;IAC9B,eAAiB;IACjB,kBAAkB;IAClB,cAAkC;IAClC,WAA2C;IAC3C,cAAiB;IACjB,kBAAqB;IACrB,eAAmB;IACnB,cAAqB;IAErB,eAAkB;IAwBhB,sBAAuB;IAY3B;;;OAGG;IACH,cAFW,MAAM,QAIhB;IAkTD;;OAEG;IACH,sBAMC;IAjBD;;;OAGG;IACH,mBAEC;IA9SD;;;;;;OAMG;IACH,eALW,MAAM,SACN,MAAM,QACN,MAAM,GACJ,MAAM,CA6DlB;IAED;;;;;OAKG;IACH,gBAJW,MAAM,YACN,MAAM,GACJ,MAAM,CAsBlB;IAED;;OAEG;IACH,mBAkEC;IAED;;;OAGG;IACH,eAFa,MAAM,CAgBlB;IAED;;OAEG;IACH,wBAOC;IAUD;;OAEG;IACH,uBAKC;IAhBD;;;OAGG;IACH,oBAEC;IAoBD;;OAEG;IACH,sBAKC;IAhBD;;;OAGG;IACH,mBAEC;IA2BD;;OAEG;IACH,sBAEC;IApBD;;;OAGG;IACH,mBASC;IAiBD;;OAEG;IACH,sBAOC;IAlBD;;;OAGG;IACH,mBAEC;IAsBD;;OAEG;IACH,0BAMC;IAjBD;;;OAGG;IACH,uBAEC;IAwCD;;OAEG;IACH,0BAKC;IAhBD;;;OAGG;IACH,uBAEC;IAoBD;;OAEG;IACH,2BAMC;IAjBD;;;OAGG;IACH,wBAEC;CAYF;8BA1a6B,qBAAqB;sBAD7B,kBAAkB"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export class Button extends Image {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('../core/game').Game} game - TBD.
|
|
4
|
+
* @param {import('../core/game.js').Game} game - TBD.
|
|
5
5
|
* @param {number} x - TBD.
|
|
6
6
|
* @param {number} y - TBD.
|
|
7
7
|
* @param {string} key - TBD.
|
|
@@ -12,7 +12,7 @@ export class Button extends Image {
|
|
|
12
12
|
* @param {string} downFrame - TBD.
|
|
13
13
|
* @param {string} upFrame - TBD.
|
|
14
14
|
*/
|
|
15
|
-
constructor(game: import('../core/game').Game, x?: number, y?: number, key?: string, callback?: Function, callbackContext?: object, overFrame?: string, outFrame?: string, downFrame?: string, upFrame?: string);
|
|
15
|
+
constructor(game: import('../core/game.js').Game, x?: number, y?: number, key?: string, callback?: Function, callbackContext?: object, overFrame?: string, outFrame?: string, downFrame?: string, upFrame?: string);
|
|
16
16
|
_onOverFrame: any;
|
|
17
17
|
_onOutFrame: any;
|
|
18
18
|
_onDownFrame: any;
|
|
@@ -98,7 +98,7 @@ export class Button extends Image {
|
|
|
98
98
|
*/
|
|
99
99
|
onInputUpHandler(sprite: object, pointer: object, isOver: boolean): void;
|
|
100
100
|
}
|
|
101
|
-
import { Image } from './image';
|
|
102
|
-
import { Signal } from '../core/signal';
|
|
103
|
-
import { InputHandler } from '../core/input_handler';
|
|
101
|
+
import { Image } from './image.js';
|
|
102
|
+
import { Signal } from '../core/signal.js';
|
|
103
|
+
import { InputHandler } from '../core/input_handler.js';
|
|
104
104
|
//# sourceMappingURL=button.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/button.js"],"names":[],"mappings":"AAWA;IACE;;;;;;;;;;;;OAYG;IACH,kBAXW,OAAO,
|
|
1
|
+
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/button.js"],"names":[],"mappings":"AAWA;IACE;;;;;;;;;;;;OAYG;IACH,kBAXW,OAAO,iBAAiB,EAAE,IAAI,MAC9B,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,oBAAmC;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;IAED;;;;;;;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;sBA/QqB,YAAY;uBADX,mBAAmB;6BADb,0BAA0B"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export class CanvasRenderer {
|
|
2
2
|
/**
|
|
3
3
|
* TBD.
|
|
4
|
-
* @param {import('../../core/game').Game} game - TBD.
|
|
4
|
+
* @param {import('../../core/game.js').Game} game - TBD.
|
|
5
5
|
*/
|
|
6
|
-
constructor(game: import('../../core/game').Game);
|
|
6
|
+
constructor(game: import('../../core/game.js').Game);
|
|
7
7
|
type: number;
|
|
8
8
|
resolution: any;
|
|
9
9
|
clearBeforeRender: any;
|
|
@@ -25,9 +25,9 @@ export class CanvasRenderer {
|
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
27
|
* TBD.
|
|
28
|
-
* @param {import('../../core/stage').Stage} root - TBD.
|
|
28
|
+
* @param {import('../../core/stage.js').Stage} root - TBD.
|
|
29
29
|
*/
|
|
30
|
-
render(root: import('../../core/stage').Stage): void;
|
|
30
|
+
render(root: import('../../core/stage.js').Stage): void;
|
|
31
31
|
/**
|
|
32
32
|
* TBD.
|
|
33
33
|
* @param {boolean} removeView - TBD.
|
|
@@ -41,15 +41,15 @@ export class CanvasRenderer {
|
|
|
41
41
|
resize(width: number, height: number): void;
|
|
42
42
|
/**
|
|
43
43
|
* TBD.
|
|
44
|
-
* @param {import('../../display/image').Image} displayObject - TBD.
|
|
44
|
+
* @param {import('../../display/image.js').Image} displayObject - TBD.
|
|
45
45
|
* @param {CanvasRenderingContext2D} context - TBD.
|
|
46
|
-
* @param {import('../../geom/matrix').Matrix} matrix - TBD.
|
|
46
|
+
* @param {import('../../geom/matrix.js').Matrix} matrix - TBD.
|
|
47
47
|
*/
|
|
48
|
-
renderDisplayObject(displayObject: import('../../display/image').Image, context: CanvasRenderingContext2D, matrix: import('../../geom/matrix').Matrix): void;
|
|
48
|
+
renderDisplayObject(displayObject: import('../../display/image.js').Image, context: CanvasRenderingContext2D, matrix: import('../../geom/matrix.js').Matrix): void;
|
|
49
49
|
/**
|
|
50
50
|
* TBD.
|
|
51
51
|
*/
|
|
52
52
|
mapBlendModes(): void;
|
|
53
53
|
}
|
|
54
|
-
import * as CanvasMaskManager from './masker';
|
|
54
|
+
import * as CanvasMaskManager from './masker.js';
|
|
55
55
|
//# sourceMappingURL=renderer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"renderer.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/canvas/renderer.js"],"names":[],"mappings":"AA0BA;IACE;;;OAGG;IACH,kBAFW,OAAO,
|
|
1
|
+
{"version":3,"file":"renderer.d.ts","sourceRoot":"","sources":["../../../../src/phaser/display/canvas/renderer.js"],"names":[],"mappings":"AA0BA;IACE;;;OAGG;IACH,kBAFW,OAAO,oBAAoB,EAAE,IAAI,EA4B3C;IAxBC,aAAyB;IACzB,gBAAwC;IACxC,uBAAsD;IACtD,iBAA0C;IAC1C,oBAAuB;IACvB,qBAAwB;IACxB,cAAyC;IACzC,eAA2C;IAC3C,UAAuB;IACvB,aAAsE;IAItE,iBAAmB;IACnB,cAAc;IACd;;;;;;MAMC;IAKH;;;OAGG;IACH,aAFW,OAAO,qBAAqB,EAAE,KAAK,QAqB7C;IAED;;;OAGG;IACH,qBAFW,OAAO,QASjB;IAED;;;;OAIG;IACH,cAHW,MAAM,UACN,MAAM,QAchB;IAED;;;;;OAKG;IACH,mCAJW,OAAO,wBAAwB,EAAE,KAAK,WACtC,wBAAwB,UACxB,OAAO,sBAAsB,EAAE,MAAM,QAM/C;IAED;;OAEG;IACH,sBAwBC;CACF;mCAtIkC,aAAa"}
|
|
@@ -18,7 +18,7 @@ export class DisplayObject {
|
|
|
18
18
|
_cr: number;
|
|
19
19
|
cachedBounds: Rectangle;
|
|
20
20
|
currentBounds: any;
|
|
21
|
-
_mask: import("./graphics").Graphics;
|
|
21
|
+
_mask: import("./graphics.js").Graphics;
|
|
22
22
|
children: any[];
|
|
23
23
|
ignoreChildInput: boolean;
|
|
24
24
|
/**
|
|
@@ -211,12 +211,12 @@ export class DisplayObject {
|
|
|
211
211
|
/**
|
|
212
212
|
* TBD.
|
|
213
213
|
*/
|
|
214
|
-
set mask(arg: import("./graphics").Graphics);
|
|
214
|
+
set mask(arg: import("./graphics.js").Graphics);
|
|
215
215
|
/**
|
|
216
216
|
* TBD.
|
|
217
|
-
* @returns {import('./graphics').Graphics} TBD.
|
|
217
|
+
* @returns {import('./graphics.js').Graphics} TBD.
|
|
218
218
|
*/
|
|
219
|
-
get mask(): import("./graphics").Graphics;
|
|
219
|
+
get mask(): import("./graphics.js").Graphics;
|
|
220
220
|
/**
|
|
221
221
|
* TBD.
|
|
222
222
|
* @returns {number} TBD.
|
|
@@ -282,7 +282,7 @@ export class DisplayObject {
|
|
|
282
282
|
*/
|
|
283
283
|
get bottom(): number;
|
|
284
284
|
}
|
|
285
|
-
import { Point } from '../geom/point';
|
|
286
|
-
import { Matrix } from '../geom/matrix';
|
|
287
|
-
import { Rectangle } from '../geom/rectangle';
|
|
285
|
+
import { Point } from '../geom/point.js';
|
|
286
|
+
import { Matrix } from '../geom/matrix.js';
|
|
287
|
+
import { Rectangle } from '../geom/rectangle.js';
|
|
288
288
|
//# sourceMappingURL=display_object.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"display_object.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/display_object.js"],"names":[],"mappings":"AAOA;IAKI,gBAAkB;IAClB,oBAAuB;IACvB,iBAAmB;IACnB,gBAA+B;IAC/B,aAA4B;IAC5B,aAA4B;IAC5B,cAA6B;IAC7B,iBAAiB;IACjB,cAAc;IACd,aAAmB;IACnB,YAAkB;IAClB,mBAAmB;IACnB,uBAAkC;IAElC,kBAAiC;IAEjC,gBAAsB;IACtB,YAAY;IACZ,YAAY;IACZ,wBAA6C;IAC7C,mBAAyB;IACzB,
|
|
1
|
+
{"version":3,"file":"display_object.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/display_object.js"],"names":[],"mappings":"AAOA;IAKI,gBAAkB;IAClB,oBAAuB;IACvB,iBAAmB;IACnB,gBAA+B;IAC/B,aAA4B;IAC5B,aAA4B;IAC5B,cAA6B;IAC7B,iBAAiB;IACjB,cAAc;IACd,aAAmB;IACnB,YAAkB;IAClB,mBAAmB;IACnB,uBAAkC;IAElC,kBAAiC;IAEjC,gBAAsB;IACtB,YAAY;IACZ,YAAY;IACZ,wBAA6C;IAC7C,mBAAyB;IACzB,wCAAiB;IACjB,gBAAkB;IAClB,0BAA6B;IAG/B;;OAEG;IACH,gBA6BC;IAED;;;;OAIG;IACH,gBAHW,aAAa,GACX,aAAa,CAIzB;IAED;;;;;;OAMG;IACH,kBALW,aAAa,SACb,MAAM,GACJ,aAAa,CAazB;IAED;;;;;OAKG;IACH,oBAJW,aAAa,UACb,aAAa,QAcvB;IAED;;;;;OAKG;IACH,qBAJW,aAAa,GACX,MAAM,CASlB;IAED;;;;;OAKG;IACH,qBAJW,aAAa,SACb,MAAM,QAUhB;IAED;;;;;OAKG;IACH,kBAJW,MAAM,GACJ,aAAa,CAYzB;IAED;;;;OAIG;IACH,mBAHW,aAAa,GACX,aAAa,CAQzB;IAED;;;;OAIG;IACH,qBAHW,MAAM,GACJ,aAAa,CASzB;IAED;;;;;;OAMG;IACH,2BALW,MAAM,YACN,MAAM,GACJ,aAAa,EAAE,CAuB3B;IAED;;;;OAIG;IACH,wBAHW,aAAa,GACX,aAAa,CAmFzB;IAtDK,mBAAkC;IA2CtC,sBAA4C;IAa9C;;;;OAIG;IACH,iCAHW,aAAa,GACX,SAAS,CAiGrB;IAED;;;OAGG;IACH,kBAFa,SAAS,CAIrB;IAED;;;;OAIG;IACH,gBAHW,aAAa,GACX,OAAO,CAUnB;IAED;;;OAGG;IACH,2BAFW,MAAM,QA8BhB;IAED;;;OAGG;IACH,4BAFW,MAAM,QAehB;IAED;;OAEG;IACH,kBAEC;IAED;;OAEG;IACH,eAEC;IAED;;OAEG;IACH,mBAEC;IAED;;OAEG;IACH,wBAGC;IAED;;;;OAIG;IACH,mBAHW,KAAK,GACH,KAAK,CAKjB;IAED;;;;;OAKG;IACH,kBAJW,KAAK,QACL,aAAa,GACX,KAAK,CAQjB;IAED;;;OAGG;IACH,kCAFW,MAAM,QAYhB;IAED;;OAEG;IACH,6BAEC;IAED;;OAEG;IACH,4BAMC;IADC,mBAAyB;IAa3B;;OAEG;IACH,uBAQC;IAnBD;;;OAGG;IACH,oBAEC;IAYC,eAAmB;IAWrB;;OAEG;IACH,wBAQC;IAnBD;;;OAGG;IACH,qBAEC;IAYC,gBAAoB;IAWtB;;OAEG;IACH,mBAEC;IAbD;;;OAGG;IACH,gBAEC;IAiBD;;OAEG;IACH,mBAEC;IAbD;;;OAGG;IACH,gBAEC;IASD;;;OAGG;IACH,4BAeC;IAYD;;OAEG;IACH,gDAQC;IAnBD;;;OAGG;IACH,6CAEC;IAiBD;;;OAGG;IACH,sBAEC;IAED;;;OAGG;IACH,sBAEC;IAUD;;OAEG;IACH,yBAEC;IAbD;;;OAGG;IACH,sBAEC;IAiBD;;OAEG;IACH,yBAEC;IAbD;;;OAGG;IACH,sBAEC;IAiBD;;OAEG;IACH,sBAEC;IAbD;;;OAGG;IACH,mBAEC;IAiBD;;OAEG;IACH,uBAEC;IAbD;;;OAGG;IACH,oBAEC;IAiBD;;OAEG;IACH,qBAEC;IAbD;;;OAGG;IACH,kBAEC;IAiBD;;OAEG;IACH,wBAEC;IAbD;;;OAGG;IACH,qBAEC;CAQF;sBA9xBqB,kBAAkB;uBADjB,mBAAmB;0BAEhB,sBAAsB"}
|