@vpmedia/phaser 1.95.0 → 1.96.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/CHANGELOG.md +29 -0
- package/package.json +9 -9
- package/src/phaser/core/animation.js +61 -56
- package/src/phaser/core/animation_manager.js +55 -55
- package/src/phaser/core/cache.js +154 -154
- package/src/phaser/core/device.js +2 -1
- package/src/phaser/core/device_util.js +27 -27
- package/src/phaser/core/dom.js +43 -43
- package/src/phaser/core/event_manager.js +63 -63
- package/src/phaser/core/factory.js +47 -47
- package/src/phaser/core/frame.js +30 -30
- package/src/phaser/core/frame_data.js +30 -28
- package/src/phaser/core/frame_util.js +8 -8
- package/src/phaser/core/game.js +34 -18
- package/src/phaser/core/loader.js +170 -170
- package/src/phaser/core/loader_parser.js +22 -22
- package/src/phaser/core/raf.js +1 -1
- package/src/phaser/core/scene.js +16 -10
- package/src/phaser/core/scene_manager.js +51 -43
- package/src/phaser/core/signal.js +56 -52
- package/src/phaser/core/sound.js +54 -54
- package/src/phaser/core/sound_manager.js +49 -49
- package/src/phaser/core/stage.js +16 -16
- package/src/phaser/core/time.js +30 -30
- package/src/phaser/core/timer.js +64 -64
- package/src/phaser/core/timer_event.js +9 -9
- package/src/phaser/core/tween.js +90 -90
- package/src/phaser/core/tween_data.js +30 -30
- package/src/phaser/core/tween_manager.js +29 -24
- package/src/phaser/core/world.js +4 -3
- package/src/phaser/display/bitmap_text.js +61 -54
- package/src/phaser/display/button.js +48 -47
- package/src/phaser/display/canvas/buffer.js +8 -8
- package/src/phaser/display/canvas/graphics.js +8 -8
- package/src/phaser/display/canvas/masker.js +5 -5
- package/src/phaser/display/canvas/pool.js +18 -18
- package/src/phaser/display/canvas/renderer.js +16 -16
- package/src/phaser/display/canvas/tinter.js +22 -22
- package/src/phaser/display/canvas/util.js +42 -42
- package/src/phaser/display/display_object.js +119 -108
- package/src/phaser/display/graphics.js +112 -112
- package/src/phaser/display/graphics_data.js +10 -10
- package/src/phaser/display/graphics_data_util.js +3 -3
- package/src/phaser/display/group.js +50 -50
- package/src/phaser/display/image.js +54 -50
- package/src/phaser/display/sprite_batch.js +2 -2
- package/src/phaser/display/sprite_util.js +19 -19
- package/src/phaser/display/text.js +212 -187
- package/src/phaser/display/webgl/abstract_filter.js +4 -4
- package/src/phaser/display/webgl/base_texture.js +9 -9
- package/src/phaser/display/webgl/blend_manager.js +7 -7
- package/src/phaser/display/webgl/earcut.js +95 -95
- package/src/phaser/display/webgl/earcut_node.js +4 -4
- package/src/phaser/display/webgl/fast_sprite_batch.js +15 -15
- package/src/phaser/display/webgl/filter_manager.js +9 -9
- package/src/phaser/display/webgl/filter_texture.js +10 -10
- package/src/phaser/display/webgl/graphics.js +37 -37
- package/src/phaser/display/webgl/graphics_data.js +4 -4
- package/src/phaser/display/webgl/mask_manager.js +6 -6
- package/src/phaser/display/webgl/render_texture.js +16 -16
- package/src/phaser/display/webgl/renderer.js +20 -20
- package/src/phaser/display/webgl/shader/complex.js +4 -4
- package/src/phaser/display/webgl/shader/fast.js +4 -4
- package/src/phaser/display/webgl/shader/normal.js +8 -8
- package/src/phaser/display/webgl/shader/primitive.js +4 -4
- package/src/phaser/display/webgl/shader/strip.js +4 -4
- package/src/phaser/display/webgl/shader_manager.js +9 -9
- package/src/phaser/display/webgl/sprite_batch.js +18 -18
- package/src/phaser/display/webgl/stencil_manager.js +16 -16
- package/src/phaser/display/webgl/texture.js +13 -13
- package/src/phaser/display/webgl/texture_util.js +8 -8
- package/src/phaser/display/webgl/util.js +25 -25
- package/src/phaser/geom/circle.js +69 -69
- package/src/phaser/geom/ellipse.js +28 -28
- package/src/phaser/geom/line.js +93 -93
- package/src/phaser/geom/matrix.js +54 -54
- package/src/phaser/geom/point.js +96 -96
- package/src/phaser/geom/polygon.js +22 -22
- package/src/phaser/geom/rectangle.js +132 -132
- package/src/phaser/geom/rounded_rectangle.js +12 -12
- package/src/phaser/geom/util/circle.js +33 -33
- package/src/phaser/geom/util/ellipse.js +5 -5
- package/src/phaser/geom/util/line.js +26 -26
- package/src/phaser/geom/util/matrix.js +8 -8
- package/src/phaser/geom/util/point.js +97 -97
- package/src/phaser/geom/util/polygon.js +4 -4
- package/src/phaser/geom/util/rectangle.js +74 -74
- package/src/phaser/geom/util/rounded_rectangle.js +4 -4
- package/src/phaser/util/math.js +81 -81
- package/types/phaser/core/animation.d.ts +61 -56
- package/types/phaser/core/animation.d.ts.map +1 -1
- package/types/phaser/core/animation_manager.d.ts +55 -55
- package/types/phaser/core/cache.d.ts +154 -154
- package/types/phaser/core/device.d.ts.map +1 -1
- package/types/phaser/core/dom.d.ts +43 -43
- package/types/phaser/core/event_manager.d.ts +63 -63
- package/types/phaser/core/factory.d.ts +47 -47
- package/types/phaser/core/frame.d.ts +30 -30
- package/types/phaser/core/frame_data.d.ts +28 -27
- package/types/phaser/core/frame_data.d.ts.map +1 -1
- package/types/phaser/core/game.d.ts +52 -19
- package/types/phaser/core/game.d.ts.map +1 -1
- package/types/phaser/core/loader.d.ts +170 -170
- package/types/phaser/core/loader_parser.d.ts.map +1 -1
- package/types/phaser/core/raf.d.ts +1 -1
- package/types/phaser/core/scene.d.ts +15 -9
- package/types/phaser/core/scene.d.ts.map +1 -1
- package/types/phaser/core/scene_manager.d.ts +51 -43
- package/types/phaser/core/scene_manager.d.ts.map +1 -1
- package/types/phaser/core/signal.d.ts +54 -51
- package/types/phaser/core/signal.d.ts.map +1 -1
- package/types/phaser/core/sound.d.ts +54 -54
- package/types/phaser/core/sound_manager.d.ts +49 -49
- package/types/phaser/core/stage.d.ts +10 -10
- package/types/phaser/core/time.d.ts +30 -30
- package/types/phaser/core/timer.d.ts +64 -64
- package/types/phaser/core/timer_event.d.ts +9 -9
- package/types/phaser/core/tween.d.ts +90 -90
- package/types/phaser/core/tween_data.d.ts +30 -30
- package/types/phaser/core/tween_manager.d.ts +29 -24
- package/types/phaser/core/tween_manager.d.ts.map +1 -1
- package/types/phaser/core/world.d.ts +4 -3
- package/types/phaser/core/world.d.ts.map +1 -1
- package/types/phaser/display/bitmap_text.d.ts +59 -52
- package/types/phaser/display/bitmap_text.d.ts.map +1 -1
- package/types/phaser/display/button.d.ts +47 -46
- package/types/phaser/display/button.d.ts.map +1 -1
- package/types/phaser/display/canvas/buffer.d.ts +8 -8
- package/types/phaser/display/canvas/renderer.d.ts +16 -16
- package/types/phaser/display/display_object.d.ts +119 -108
- package/types/phaser/display/display_object.d.ts.map +1 -1
- package/types/phaser/display/graphics.d.ts +101 -101
- package/types/phaser/display/graphics_data.d.ts +10 -10
- package/types/phaser/display/group.d.ts +47 -47
- package/types/phaser/display/image.d.ts +42 -40
- package/types/phaser/display/image.d.ts.map +1 -1
- package/types/phaser/display/text.d.ts +207 -184
- package/types/phaser/display/text.d.ts.map +1 -1
- package/types/phaser/display/webgl/abstract_filter.d.ts +4 -4
- package/types/phaser/display/webgl/base_texture.d.ts +9 -9
- package/types/phaser/display/webgl/blend_manager.d.ts +6 -6
- package/types/phaser/display/webgl/earcut.d.ts +95 -95
- package/types/phaser/display/webgl/earcut_node.d.ts +4 -4
- package/types/phaser/display/webgl/fast_sprite_batch.d.ts +15 -15
- package/types/phaser/display/webgl/filter_manager.d.ts +8 -8
- package/types/phaser/display/webgl/filter_texture.d.ts +10 -10
- package/types/phaser/display/webgl/graphics_data.d.ts +4 -4
- package/types/phaser/display/webgl/render_texture.d.ts +16 -16
- package/types/phaser/display/webgl/renderer.d.ts +20 -20
- package/types/phaser/display/webgl/shader/complex.d.ts +4 -4
- package/types/phaser/display/webgl/shader/fast.d.ts +4 -4
- package/types/phaser/display/webgl/shader/normal.d.ts +8 -8
- package/types/phaser/display/webgl/shader/primitive.d.ts +4 -4
- package/types/phaser/display/webgl/shader/strip.d.ts +4 -4
- package/types/phaser/display/webgl/shader_manager.d.ts +8 -8
- package/types/phaser/display/webgl/sprite_batch.d.ts +17 -17
- package/types/phaser/display/webgl/stencil_manager.d.ts +15 -15
- package/types/phaser/display/webgl/texture.d.ts +12 -12
- package/types/phaser/geom/circle.d.ts +69 -69
- package/types/phaser/geom/ellipse.d.ts +28 -28
- package/types/phaser/geom/line.d.ts +93 -93
- package/types/phaser/geom/matrix.d.ts +54 -54
- package/types/phaser/geom/point.d.ts +96 -96
- package/types/phaser/geom/polygon.d.ts +22 -22
- package/types/phaser/geom/rectangle.d.ts +132 -132
- package/types/phaser/geom/rounded_rectangle.d.ts +12 -12
- package/pnpm-workspace.yaml +0 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export class EventManager {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* @param {import('../display/display_object.js').DisplayObject} sprite -
|
|
3
|
+
* Creates a new EventManager instance.
|
|
4
|
+
* @param {import('../display/display_object.js').DisplayObject} sprite - Reference to the parent DisplayObject.
|
|
5
5
|
*/
|
|
6
6
|
constructor(sprite: import("../display/display_object.js").DisplayObject);
|
|
7
7
|
parent: import("../display/display_object.js").DisplayObject;
|
|
@@ -21,158 +21,158 @@ export class EventManager {
|
|
|
21
21
|
_onAnimationComplete: Signal;
|
|
22
22
|
_onAnimationLoop: Signal;
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Destroys the EventManager and cleans up resources.
|
|
25
25
|
*/
|
|
26
26
|
destroy(): void;
|
|
27
27
|
_parent: any;
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
30
|
-
* @returns {Signal}
|
|
29
|
+
* Gets the onAddedToGroup signal.
|
|
30
|
+
* @returns {Signal} The Signal object for the onAddedToGroup event.
|
|
31
31
|
*/
|
|
32
32
|
get onAddedToGroup(): Signal;
|
|
33
33
|
/**
|
|
34
|
-
*
|
|
35
|
-
* @param {...any} args -
|
|
34
|
+
* Dispatches the onAddedToGroup event.
|
|
35
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
36
36
|
*/
|
|
37
37
|
onAddedToGroup$dispatch(...args: any[]): void;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
40
|
-
* @returns {Signal}
|
|
39
|
+
* Gets the onRemovedFromGroup signal.
|
|
40
|
+
* @returns {Signal} The Signal object for the onRemovedFromGroup event.
|
|
41
41
|
*/
|
|
42
42
|
get onRemovedFromGroup(): Signal;
|
|
43
43
|
/**
|
|
44
|
-
*
|
|
45
|
-
* @param {...any} args -
|
|
44
|
+
* Dispatches the onRemovedFromGroup event.
|
|
45
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
46
46
|
*/
|
|
47
47
|
onRemovedFromGroup$dispatch(...args: any[]): void;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
50
|
-
* @returns {Signal}
|
|
49
|
+
* Gets the onDestroy signal.
|
|
50
|
+
* @returns {Signal} The Signal object for the onDestroy event.
|
|
51
51
|
*/
|
|
52
52
|
get onDestroy(): Signal;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
55
|
-
* @param {...any} args -
|
|
54
|
+
* Dispatches the onDestroy event.
|
|
55
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
56
56
|
*/
|
|
57
57
|
onDestroy$dispatch(...args: any[]): void;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
60
|
-
* @returns {Signal}
|
|
59
|
+
* Gets the onOutOfBounds signal.
|
|
60
|
+
* @returns {Signal} The Signal object for the onOutOfBounds event.
|
|
61
61
|
*/
|
|
62
62
|
get onOutOfBounds(): Signal;
|
|
63
63
|
/**
|
|
64
|
-
*
|
|
65
|
-
* @param {...any} args -
|
|
64
|
+
* Dispatches the onOutOfBounds event.
|
|
65
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
66
66
|
*/
|
|
67
67
|
onOutOfBounds$dispatch(...args: any[]): void;
|
|
68
68
|
/**
|
|
69
|
-
*
|
|
70
|
-
* @returns {Signal}
|
|
69
|
+
* Gets the onEnterBounds signal.
|
|
70
|
+
* @returns {Signal} The Signal object for the onEnterBounds event.
|
|
71
71
|
*/
|
|
72
72
|
get onEnterBounds(): Signal;
|
|
73
73
|
/**
|
|
74
|
-
*
|
|
75
|
-
* @param {...any} args -
|
|
74
|
+
* Dispatches the onEnterBounds event.
|
|
75
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
76
76
|
*/
|
|
77
77
|
onEnterBounds$dispatch(...args: any[]): void;
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
80
|
-
* @returns {Signal}
|
|
79
|
+
* Gets the onInputOver signal.
|
|
80
|
+
* @returns {Signal} The Signal object for the onInputOver event.
|
|
81
81
|
*/
|
|
82
82
|
get onInputOver(): Signal;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
85
|
-
* @param {...any} args -
|
|
84
|
+
* Dispatches the onInputOver event.
|
|
85
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
86
86
|
*/
|
|
87
87
|
onInputOver$dispatch(...args: any[]): void;
|
|
88
88
|
/**
|
|
89
|
-
*
|
|
90
|
-
* @returns {Signal}
|
|
89
|
+
* Gets the onInputOut signal.
|
|
90
|
+
* @returns {Signal} The Signal object for the onInputOut event.
|
|
91
91
|
*/
|
|
92
92
|
get onInputOut(): Signal;
|
|
93
93
|
/**
|
|
94
|
-
*
|
|
95
|
-
* @param {...any} args -
|
|
94
|
+
* Dispatches the onInputOut event.
|
|
95
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
96
96
|
*/
|
|
97
97
|
onInputOut$dispatch(...args: any[]): void;
|
|
98
98
|
/**
|
|
99
|
-
*
|
|
100
|
-
* @returns {Signal}
|
|
99
|
+
* Gets the onInputDown signal.
|
|
100
|
+
* @returns {Signal} The Signal object for the onInputDown event.
|
|
101
101
|
*/
|
|
102
102
|
get onInputDown(): Signal;
|
|
103
103
|
/**
|
|
104
|
-
*
|
|
105
|
-
* @param {...any} args -
|
|
104
|
+
* Dispatches the onInputDown event.
|
|
105
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
106
106
|
*/
|
|
107
107
|
onInputDown$dispatch(...args: any[]): void;
|
|
108
108
|
/**
|
|
109
|
-
*
|
|
110
|
-
* @returns {Signal}
|
|
109
|
+
* Gets the onInputUp signal.
|
|
110
|
+
* @returns {Signal} The Signal object for the onInputUp event.
|
|
111
111
|
*/
|
|
112
112
|
get onInputUp(): Signal;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
115
|
-
* @param {...any} args -
|
|
114
|
+
* Dispatches the onInputUp event.
|
|
115
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
116
116
|
*/
|
|
117
117
|
onInputUp$dispatch(...args: any[]): void;
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
120
|
-
* @returns {Signal}
|
|
119
|
+
* Gets the onDragStart signal.
|
|
120
|
+
* @returns {Signal} The Signal object for the onDragStart event.
|
|
121
121
|
*/
|
|
122
122
|
get onDragStart(): Signal;
|
|
123
123
|
/**
|
|
124
|
-
*
|
|
125
|
-
* @param {...any} args -
|
|
124
|
+
* Dispatches the onDragStart event.
|
|
125
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
126
126
|
*/
|
|
127
127
|
onDragStart$dispatch(...args: any[]): void;
|
|
128
128
|
/**
|
|
129
|
-
*
|
|
130
|
-
* @returns {Signal}
|
|
129
|
+
* Gets the onDragUpdate signal.
|
|
130
|
+
* @returns {Signal} The Signal object for the onDragUpdate event.
|
|
131
131
|
*/
|
|
132
132
|
get onDragUpdate(): Signal;
|
|
133
133
|
/**
|
|
134
|
-
*
|
|
135
|
-
* @param {...any} args -
|
|
134
|
+
* Dispatches the onDragUpdate event.
|
|
135
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
136
136
|
*/
|
|
137
137
|
onDragUpdate$dispatch(...args: any[]): void;
|
|
138
138
|
/**
|
|
139
|
-
*
|
|
140
|
-
* @returns {Signal}
|
|
139
|
+
* Gets the onDragStop signal.
|
|
140
|
+
* @returns {Signal} The Signal object for the onDragStop event.
|
|
141
141
|
*/
|
|
142
142
|
get onDragStop(): Signal;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
145
|
-
* @param {...any} args -
|
|
144
|
+
* Dispatches the onDragStop event.
|
|
145
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
146
146
|
*/
|
|
147
147
|
onDragStop$dispatch(...args: any[]): void;
|
|
148
148
|
/**
|
|
149
|
-
*
|
|
150
|
-
* @returns {Signal}
|
|
149
|
+
* Gets the onAnimationStart signal.
|
|
150
|
+
* @returns {Signal} The Signal object for the onAnimationStart event.
|
|
151
151
|
*/
|
|
152
152
|
get onAnimationStart(): Signal;
|
|
153
153
|
/**
|
|
154
|
-
*
|
|
155
|
-
* @param {...any} args -
|
|
154
|
+
* Dispatches the onAnimationStart event.
|
|
155
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
156
156
|
*/
|
|
157
157
|
onAnimationStart$dispatch(...args: any[]): void;
|
|
158
158
|
/**
|
|
159
|
-
*
|
|
160
|
-
* @returns {Signal}
|
|
159
|
+
* Gets the onAnimationComplete signal.
|
|
160
|
+
* @returns {Signal} The Signal object for the onAnimationComplete event.
|
|
161
161
|
*/
|
|
162
162
|
get onAnimationComplete(): Signal;
|
|
163
163
|
/**
|
|
164
|
-
*
|
|
165
|
-
* @param {...any} args -
|
|
164
|
+
* Dispatches the onAnimationComplete event.
|
|
165
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
166
166
|
*/
|
|
167
167
|
onAnimationComplete$dispatch(...args: any[]): void;
|
|
168
168
|
/**
|
|
169
|
-
*
|
|
170
|
-
* @returns {Signal}
|
|
169
|
+
* Gets the onAnimationLoop signal.
|
|
170
|
+
* @returns {Signal} The Signal object for the onAnimationLoop event.
|
|
171
171
|
*/
|
|
172
172
|
get onAnimationLoop(): Signal;
|
|
173
173
|
/**
|
|
174
|
-
*
|
|
175
|
-
* @param {...any} args -
|
|
174
|
+
* Dispatches the onAnimationLoop event.
|
|
175
|
+
* @param {...any} args - Arguments to pass to the signal.
|
|
176
176
|
*/
|
|
177
177
|
onAnimationLoop$dispatch(...args: any[]): void;
|
|
178
178
|
}
|
|
@@ -1,71 +1,71 @@
|
|
|
1
1
|
export class GameObjectFactory {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* @param {import('./game.js').Game} game -
|
|
3
|
+
* Creates a new GameObjectFactory instance.
|
|
4
|
+
* @param {import('./game.js').Game} game - The game instance this factory belongs to.
|
|
5
5
|
*/
|
|
6
6
|
constructor(game: import("./game.js").Game);
|
|
7
7
|
game: import("./game.js").Game;
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
10
|
-
* @param {number} x -
|
|
11
|
-
* @param {number} y -
|
|
12
|
-
* @param {string} key -
|
|
13
|
-
* @param {string|number} frame -
|
|
14
|
-
* @param {Group} group -
|
|
15
|
-
* @returns {Image}
|
|
9
|
+
* Creates a new Image object.
|
|
10
|
+
* @param {number} x - The x coordinate of the image.
|
|
11
|
+
* @param {number} y - The y coordinate of the image.
|
|
12
|
+
* @param {string} key - The texture key for the image.
|
|
13
|
+
* @param {string|number} frame - The frame to display.
|
|
14
|
+
* @param {Group} group - The parent group for the image.
|
|
15
|
+
* @returns {Image} The created Image object.
|
|
16
16
|
*/
|
|
17
17
|
image(x: number, y: number, key: string, frame: string | number, group?: Group): Image;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @param {Group | null} parent -
|
|
21
|
-
* @param {string | null} name -
|
|
22
|
-
* @param {boolean} addToStage -
|
|
23
|
-
* @returns {Group}
|
|
19
|
+
* Creates a new Group object.
|
|
20
|
+
* @param {Group | null} parent - The parent group for the new group.
|
|
21
|
+
* @param {string | null} name - The name of the group.
|
|
22
|
+
* @param {boolean} addToStage - Whether to add the group to the stage.
|
|
23
|
+
* @returns {Group} The created Group object.
|
|
24
24
|
*/
|
|
25
25
|
group(parent?: Group | null, name?: string | null, addToStage?: boolean): Group;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
28
|
-
* @param {number} x -
|
|
29
|
-
* @param {number} y -
|
|
30
|
-
* @param {string} text -
|
|
31
|
-
* @param {object} style -
|
|
32
|
-
* @param {Group | null} group -
|
|
33
|
-
* @returns {Text}
|
|
27
|
+
* Creates a new Text object.
|
|
28
|
+
* @param {number} x - The x coordinate of the text.
|
|
29
|
+
* @param {number} y - The y coordinate of the text.
|
|
30
|
+
* @param {string} text - The text content to display.
|
|
31
|
+
* @param {object} style - The style configuration for the text.
|
|
32
|
+
* @param {Group | null} group - The parent group for the text.
|
|
33
|
+
* @returns {Text} The created Text object.
|
|
34
34
|
*/
|
|
35
35
|
text(x: number, y: number, text: string, style: object, group?: Group | null): Text;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
38
|
-
* @param {number} x -
|
|
39
|
-
* @param {number} y -
|
|
40
|
-
* @param {string} key -
|
|
41
|
-
* @param {Function | null} callback -
|
|
42
|
-
* @param {object | null} callbackContext -
|
|
43
|
-
* @param {string | null} overFrame -
|
|
44
|
-
* @param {string | null} outFrame -
|
|
45
|
-
* @param {string | null} downFrame -
|
|
46
|
-
* @param {string | null} upFrame -
|
|
47
|
-
* @param {Group | null} group -
|
|
48
|
-
* @returns {Button}
|
|
37
|
+
* Creates a new Button object.
|
|
38
|
+
* @param {number} x - The x coordinate of the button.
|
|
39
|
+
* @param {number} y - The y coordinate of the button.
|
|
40
|
+
* @param {string} key - The texture key for the button.
|
|
41
|
+
* @param {Function | null} callback - The function to call when the button is clicked.
|
|
42
|
+
* @param {object | null} callbackContext - The context to apply when calling the callback.
|
|
43
|
+
* @param {string | null} overFrame - The frame to display when the mouse is over the button.
|
|
44
|
+
* @param {string | null} outFrame - The frame to display when the mouse is not over the button.
|
|
45
|
+
* @param {string | null} downFrame - The frame to display when the button is pressed.
|
|
46
|
+
* @param {string | null} upFrame - The frame to display when the button is released.
|
|
47
|
+
* @param {Group | null} group - The parent group for the button.
|
|
48
|
+
* @returns {Button} The created Button object.
|
|
49
49
|
*/
|
|
50
50
|
button(x: number, y: number, key: string, callback?: Function | null, callbackContext?: object | null, overFrame?: string | null, outFrame?: string | null, downFrame?: string | null, upFrame?: string | null, group?: Group | null): Button;
|
|
51
51
|
/**
|
|
52
|
-
*
|
|
53
|
-
* @param {number} x -
|
|
54
|
-
* @param {number} y -
|
|
55
|
-
* @param {Group | null} group -
|
|
56
|
-
* @returns {Graphics}
|
|
52
|
+
* Creates a new Graphics object.
|
|
53
|
+
* @param {number} x - The x coordinate of the graphics object.
|
|
54
|
+
* @param {number} y - The y coordinate of the graphics object.
|
|
55
|
+
* @param {Group | null} group - The parent group for the graphics object.
|
|
56
|
+
* @returns {Graphics} The created Graphics object.
|
|
57
57
|
*/
|
|
58
58
|
graphics(x?: number, y?: number, group?: Group | null): Graphics;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
61
|
-
* @param {number} x -
|
|
62
|
-
* @param {number} y -
|
|
63
|
-
* @param {string} font -
|
|
64
|
-
* @param {string} text -
|
|
65
|
-
* @param {number} size -
|
|
66
|
-
* @param {Group | null} group -
|
|
67
|
-
* @param {string} align -
|
|
68
|
-
* @returns {BitmapText}
|
|
60
|
+
* Creates a new BitmapText object.
|
|
61
|
+
* @param {number} x - The x coordinate of the bitmap text.
|
|
62
|
+
* @param {number} y - The y coordinate of the bitmap text.
|
|
63
|
+
* @param {string} font - The font key for the bitmap text.
|
|
64
|
+
* @param {string} text - The text content to display.
|
|
65
|
+
* @param {number} size - The font size.
|
|
66
|
+
* @param {Group | null} group - The parent group for the bitmap text.
|
|
67
|
+
* @param {string} align - The alignment of the text.
|
|
68
|
+
* @returns {BitmapText} The created BitmapText object.
|
|
69
69
|
*/
|
|
70
70
|
bitmapText(x: number, y: number, font: string, text: string, size: number, group?: Group | null, align?: string): BitmapText;
|
|
71
71
|
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
export class Frame {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* @param {number} index -
|
|
5
|
-
* @param {number} x -
|
|
6
|
-
* @param {number} y -
|
|
7
|
-
* @param {number} width -
|
|
8
|
-
* @param {number} height -
|
|
9
|
-
* @param {string} name -
|
|
3
|
+
* Creates a new Frame instance.
|
|
4
|
+
* @param {number} index - The index of this frame in the animation.
|
|
5
|
+
* @param {number} x - The x coordinate of this frame's position in the texture.
|
|
6
|
+
* @param {number} y - The y coordinate of this frame's position in the texture.
|
|
7
|
+
* @param {number} width - The width of this frame in pixels.
|
|
8
|
+
* @param {number} height - The height of this frame in pixels.
|
|
9
|
+
* @param {string} name - The name of this frame.
|
|
10
10
|
*/
|
|
11
11
|
constructor(index: number, x: number, y: number, width: number, height: number, name: string);
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
14
|
-
* @param {number} index -
|
|
15
|
-
* @param {number} x -
|
|
16
|
-
* @param {number} y -
|
|
17
|
-
* @param {number} width -
|
|
18
|
-
* @param {number} height -
|
|
19
|
-
* @param {string} name -
|
|
13
|
+
* Initializes this frame with the specified properties.
|
|
14
|
+
* @param {number} index - The index of this frame in the animation.
|
|
15
|
+
* @param {number} x - The x coordinate of this frame's position in the texture.
|
|
16
|
+
* @param {number} y - The y coordinate of this frame's position in the texture.
|
|
17
|
+
* @param {number} width - The width of this frame in pixels.
|
|
18
|
+
* @param {number} height - The height of this frame in pixels.
|
|
19
|
+
* @param {string} name - The name of this frame.
|
|
20
20
|
*/
|
|
21
21
|
initialize(index: number, x: number, y: number, width: number, height: number, name: string): void;
|
|
22
22
|
index: number;
|
|
@@ -40,31 +40,31 @@ export class Frame {
|
|
|
40
40
|
right: number;
|
|
41
41
|
bottom: number;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
44
|
-
* @param {number} width -
|
|
45
|
-
* @param {number} height -
|
|
43
|
+
* Resizes this frame to the specified dimensions.
|
|
44
|
+
* @param {number} width - The new width of this frame in pixels.
|
|
45
|
+
* @param {number} height - The new height of this frame in pixels.
|
|
46
46
|
*/
|
|
47
47
|
resize(width: number, height: number): void;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
50
|
-
* @param {boolean} trimmed -
|
|
51
|
-
* @param {number} actualWidth -
|
|
52
|
-
* @param {number} actualHeight -
|
|
53
|
-
* @param {number} destX -
|
|
54
|
-
* @param {number} destY -
|
|
55
|
-
* @param {number} destWidth -
|
|
56
|
-
* @param {number} destHeight -
|
|
49
|
+
* Sets the trim properties for this frame.
|
|
50
|
+
* @param {boolean} trimmed - Whether this frame is trimmed.
|
|
51
|
+
* @param {number} actualWidth - The actual width of the trimmed frame.
|
|
52
|
+
* @param {number} actualHeight - The actual height of the trimmed frame.
|
|
53
|
+
* @param {number} destX - The destination x coordinate for the trimmed frame.
|
|
54
|
+
* @param {number} destY - The destination y coordinate for the trimmed frame.
|
|
55
|
+
* @param {number} destWidth - The destination width of the trimmed frame.
|
|
56
|
+
* @param {number} destHeight - The destination height of the trimmed frame.
|
|
57
57
|
*/
|
|
58
58
|
setTrim(trimmed: boolean, actualWidth: number, actualHeight: number, destX: number, destY: number, destWidth: number, destHeight: number): void;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
61
|
-
* @returns {Frame}
|
|
60
|
+
* Creates a clone of this frame.
|
|
61
|
+
* @returns {Frame} A new Frame instance with the same properties.
|
|
62
62
|
*/
|
|
63
63
|
clone(): Frame;
|
|
64
64
|
/**
|
|
65
|
-
*
|
|
66
|
-
* @param {Rectangle} output -
|
|
67
|
-
* @returns {Rectangle}
|
|
65
|
+
* Gets the rectangle bounds of this frame.
|
|
66
|
+
* @param {Rectangle} output - The rectangle to use for the result (optional).
|
|
67
|
+
* @returns {Rectangle} A Rectangle object representing this frame's bounds.
|
|
68
68
|
*/
|
|
69
69
|
getRect(output?: Rectangle): Rectangle;
|
|
70
70
|
}
|
|
@@ -8,57 +8,58 @@ export class FrameData {
|
|
|
8
8
|
*/
|
|
9
9
|
_frameNames: string[];
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
12
|
-
* @param {import('./frame.js').Frame} frame -
|
|
13
|
-
* @returns {import('./frame.js').Frame}
|
|
11
|
+
* Add a frame to the frame data collection.
|
|
12
|
+
* @param {import('./frame.js').Frame} frame - The frame to add.
|
|
13
|
+
* @returns {import('./frame.js').Frame} The added frame.
|
|
14
14
|
*/
|
|
15
15
|
addFrame(frame: import("./frame.js").Frame): import("./frame.js").Frame;
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
18
|
-
* @param {number} index -
|
|
19
|
-
* @returns {import('./frame.js').Frame}
|
|
17
|
+
* Get a frame by its index.
|
|
18
|
+
* @param {number} index - The index of the frame to get.
|
|
19
|
+
* @returns {import('./frame.js').Frame} The frame at the specified index, or the first frame if index is out of bounds.
|
|
20
20
|
*/
|
|
21
21
|
getFrame(index?: number): import("./frame.js").Frame;
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
24
|
-
* @param {string} name -
|
|
25
|
-
* @returns {import('./frame.js').Frame}
|
|
23
|
+
* Get a frame by its name.
|
|
24
|
+
* @param {string} name - The name of the frame to get.
|
|
25
|
+
* @returns {import('./frame.js').Frame} The frame with the specified name, or null if not found.
|
|
26
26
|
*/
|
|
27
27
|
getFrameByName(name: string): import("./frame.js").Frame;
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
30
|
-
* @param {string} name -
|
|
31
|
-
* @returns {boolean}
|
|
29
|
+
* Check if a frame with the given name exists.
|
|
30
|
+
* @param {string} name - The name of the frame to check.
|
|
31
|
+
* @returns {boolean} True if a frame with this name exists, false otherwise.
|
|
32
32
|
*/
|
|
33
33
|
checkFrameName(name: string): boolean;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
36
|
-
* @returns {FrameData}
|
|
35
|
+
* Create a clone of this FrameData instance.
|
|
36
|
+
* @returns {FrameData} A new FrameData instance with cloned frames.
|
|
37
37
|
*/
|
|
38
38
|
clone(): FrameData;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
41
|
-
* @param {number} start -
|
|
42
|
-
* @param {number} end -
|
|
43
|
-
* @param {import('./frame.js').Frame[]} output -
|
|
44
|
-
* @returns {import('./frame.js').Frame[]}
|
|
40
|
+
* Get a range of frames by index.
|
|
41
|
+
* @param {number} start - The starting index of the frame range.
|
|
42
|
+
* @param {number} end - The ending index of the frame range.
|
|
43
|
+
* @param {import('./frame.js').Frame[]} output - Optional array to populate with frames.
|
|
44
|
+
* @returns {import('./frame.js').Frame[]} An array of frames in the specified range.
|
|
45
45
|
*/
|
|
46
46
|
getFrameRange(start: number, end: number, output?: import("./frame.js").Frame[]): import("./frame.js").Frame[];
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
49
|
-
* @param {number[]|string[]} frames -
|
|
50
|
-
* @param {boolean} useNumericIndex -
|
|
51
|
-
* @param {number[]} output -
|
|
52
|
-
* @returns {number[]}
|
|
48
|
+
* Get frame indexes from an array of frame names or indices.
|
|
49
|
+
* @param {number[]|string[]} frames - An array of frame names or indices.
|
|
50
|
+
* @param {boolean} useNumericIndex - Whether to treat numeric values as frame indices.
|
|
51
|
+
* @param {number[]} output - Optional array to populate with frame indexes.
|
|
52
|
+
* @returns {number[]} An array of frame indexes.
|
|
53
53
|
*/
|
|
54
54
|
getFrameIndexes(frames: number[] | string[], useNumericIndex?: boolean, output?: number[]): number[];
|
|
55
55
|
/**
|
|
56
|
-
*
|
|
56
|
+
* Destroy this FrameData instance and clean up resources.
|
|
57
|
+
* This method clears internal arrays and releases references to frames.
|
|
57
58
|
*/
|
|
58
59
|
destroy(): void;
|
|
59
60
|
/**
|
|
60
|
-
*
|
|
61
|
-
* @returns {number}
|
|
61
|
+
* Get the total number of frames in this FrameData instance.
|
|
62
|
+
* @returns {number} The total number of frames.
|
|
62
63
|
*/
|
|
63
64
|
get total(): number;
|
|
64
65
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"frame_data.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/frame_data.js"],"names":[],"mappings":"AAEA;
|
|
1
|
+
{"version":3,"file":"frame_data.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/frame_data.js"],"names":[],"mappings":"AAEA;IAMI;;OAEG;IACH,SAFU,OAAO,YAAY,EAAE,KAAK,EAAE,CAErB;IACjB;;OAEG;IACH,aAFU,MAAM,EAAE,CAEG;IAGvB;;;;OAIG;IACH,gBAHW,OAAO,YAAY,EAAE,KAAK,GACxB,OAAO,YAAY,EAAE,KAAK,CAStC;IAED;;;;OAIG;IACH,iBAHW,MAAM,GACJ,OAAO,YAAY,EAAE,KAAK,CAOtC;IAED;;;;OAIG;IACH,qBAHW,MAAM,GACJ,OAAO,YAAY,EAAE,KAAK,CAOtC;IAED;;;;OAIG;IACH,qBAHW,MAAM,GACJ,OAAO,CAOnB;IAED;;;OAGG;IACH,SAFa,SAAS,CAIrB;IAED;;;;;;OAMG;IACH,qBALW,MAAM,OACN,MAAM,WACN,OAAO,YAAY,EAAE,KAAK,EAAE,GAC1B,OAAO,YAAY,EAAE,KAAK,EAAE,CAQxC;IAED;;;;;;OAMG;IACH,wBALW,MAAM,EAAE,GAAC,MAAM,EAAE,oBACjB,OAAO,WACP,MAAM,EAAE,GACN,MAAM,EAAE,CAkBpB;IAED;;;OAGG;IACH,gBAGC;IAED;;;OAGG;IACH,aAFa,MAAM,CAIlB;CACF"}
|
|
@@ -1,9 +1,42 @@
|
|
|
1
1
|
export class Game {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* @param {object} gameConfig -
|
|
3
|
+
* Creates a new Game instance.
|
|
4
|
+
* @param {object} gameConfig - The configuration object for the game.
|
|
5
|
+
* @param {number} gameConfig.width - The width of the game canvas (default: 800).
|
|
6
|
+
* @param {number} gameConfig.height - The height of the game canvas (default: 600).
|
|
7
|
+
* @param {string} gameConfig.backgroundColor - The background color of the canvas (default: 0x000000).
|
|
8
|
+
* @param {string} gameConfig.canvasID - The ID of the canvas element (default: '').
|
|
9
|
+
* @param {object} gameConfig.canvasStyle - CSS styles to apply to the canvas.
|
|
10
|
+
* @param {number} gameConfig.resolution - The resolution scale factor (default: 1).
|
|
11
|
+
* @param {boolean} gameConfig.transparent - Whether the canvas should be transparent (default: false).
|
|
12
|
+
* @param {boolean} gameConfig.antialias - Whether to enable antialiasing (default: false).
|
|
13
|
+
* @param {boolean} gameConfig.preserveDrawingBuffer - Whether to preserve the drawing buffer (default: false).
|
|
14
|
+
* @param {boolean} gameConfig.clearBeforeRender - Whether to clear the canvas before rendering (default: true).
|
|
15
|
+
* @param {boolean} gameConfig.roundPixels - Whether to round pixel values (default: true).
|
|
16
|
+
* @param {number} gameConfig.renderType - The rendering type to use (default: RENDER_AUTO).
|
|
17
|
+
* @param {boolean} gameConfig.isForceDisabledAudio - Whether to force disable audio (default: false).
|
|
18
|
+
* @param {number} gameConfig.maxParallelDownloads - Maximum parallel downloads (default: 16).
|
|
19
|
+
* @param {string|HTMLElement} gameConfig.parent - The parent element to append the canvas to.
|
|
20
|
+
* @param {object} gameConfig.state - The initial state object or class.
|
|
5
21
|
*/
|
|
6
|
-
constructor(gameConfig?:
|
|
22
|
+
constructor(gameConfig?: {
|
|
23
|
+
width: number;
|
|
24
|
+
height: number;
|
|
25
|
+
backgroundColor: string;
|
|
26
|
+
canvasID: string;
|
|
27
|
+
canvasStyle: object;
|
|
28
|
+
resolution: number;
|
|
29
|
+
transparent: boolean;
|
|
30
|
+
antialias: boolean;
|
|
31
|
+
preserveDrawingBuffer: boolean;
|
|
32
|
+
clearBeforeRender: boolean;
|
|
33
|
+
roundPixels: boolean;
|
|
34
|
+
renderType: number;
|
|
35
|
+
isForceDisabledAudio: boolean;
|
|
36
|
+
maxParallelDownloads: number;
|
|
37
|
+
parent: string | HTMLElement;
|
|
38
|
+
state: object;
|
|
39
|
+
});
|
|
7
40
|
config: {};
|
|
8
41
|
id: number;
|
|
9
42
|
parent: string;
|
|
@@ -36,48 +69,48 @@ export class Game {
|
|
|
36
69
|
onBoot: Signal;
|
|
37
70
|
isPaused: boolean;
|
|
38
71
|
/**
|
|
39
|
-
*
|
|
72
|
+
* Boots the game and initializes all systems.
|
|
40
73
|
*/
|
|
41
74
|
boot(): void;
|
|
42
75
|
/**
|
|
43
|
-
*
|
|
76
|
+
* Creates the renderer canvas element.
|
|
44
77
|
*/
|
|
45
78
|
createRendererCanvas(): void;
|
|
46
79
|
/**
|
|
47
|
-
*
|
|
80
|
+
* Initializes the renderer and sets up the rendering context.
|
|
48
81
|
*/
|
|
49
82
|
initRenderer(): void;
|
|
50
83
|
contextLostBinded: (event: WebGLContextEvent | Event) => void;
|
|
51
84
|
contextRestoredBinded: (event: WebGLContextEvent | Event) => void;
|
|
52
85
|
/**
|
|
53
|
-
*
|
|
54
|
-
* @param {object} config -
|
|
55
|
-
* @param {string} key -
|
|
56
|
-
* @param {*} defaultValue -
|
|
86
|
+
* Parses a configuration element and sets it on the game config.
|
|
87
|
+
* @param {object} config - The configuration object to parse from.
|
|
88
|
+
* @param {string} key - The configuration key to parse.
|
|
89
|
+
* @param {*} defaultValue - The default value if the key is not found in config.
|
|
57
90
|
*/
|
|
58
91
|
parseConfigElement(config: object, key: string, defaultValue: any): void;
|
|
59
92
|
/**
|
|
60
|
-
*
|
|
61
|
-
* @param {object} config -
|
|
93
|
+
* Parses the configuration object and sets up game properties.
|
|
94
|
+
* @param {object} config - The configuration object to parse.
|
|
62
95
|
*/
|
|
63
96
|
parseConfig(config: object): void;
|
|
64
97
|
/**
|
|
65
|
-
*
|
|
66
|
-
* @param {WebGLContextEvent | Event} event -
|
|
98
|
+
* Called when the WebGL context is lost.
|
|
99
|
+
* @param {WebGLContextEvent | Event} event - The WebGL context loss event.
|
|
67
100
|
*/
|
|
68
101
|
contextLost(event: WebGLContextEvent | Event): void;
|
|
69
102
|
/**
|
|
70
|
-
*
|
|
71
|
-
* @param {WebGLContextEvent | Event} event -
|
|
103
|
+
* Called when the WebGL context is restored.
|
|
104
|
+
* @param {WebGLContextEvent | Event} event - The WebGL context restore event.
|
|
72
105
|
*/
|
|
73
106
|
contextRestored(event: WebGLContextEvent | Event): void;
|
|
74
107
|
/**
|
|
75
|
-
*
|
|
76
|
-
* @param {number} time -
|
|
108
|
+
* Updates the game state.
|
|
109
|
+
* @param {number} time - The current timestamp.
|
|
77
110
|
*/
|
|
78
111
|
update(time: number): void;
|
|
79
112
|
/**
|
|
80
|
-
*
|
|
113
|
+
* Destroys the game and cleans up all resources.
|
|
81
114
|
*/
|
|
82
115
|
destroy(): void;
|
|
83
116
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"game.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/game.js"],"names":[],"mappings":"AAqBA;IACE
|
|
1
|
+
{"version":3,"file":"game.d.ts","sourceRoot":"","sources":["../../../src/phaser/core/game.js"],"names":[],"mappings":"AAqBA;IACE;;;;;;;;;;;;;;;;;;;OAmBG;IACH,yBAjBG;QAA2B,KAAK,EAAxB,MAAM;QACa,MAAM,EAAzB,MAAM;QACa,eAAe,EAAlC,MAAM;QACa,QAAQ,EAA3B,MAAM;QACa,WAAW,EAA9B,MAAM;QACa,UAAU,EAA7B,MAAM;QACc,WAAW,EAA/B,OAAO;QACa,SAAS,EAA7B,OAAO;QACa,qBAAqB,EAAzC,OAAO;QACa,iBAAiB,EAArC,OAAO;QACa,WAAW,EAA/B,OAAO;QACY,UAAU,EAA7B,MAAM;QACc,oBAAoB,EAAxC,OAAO;QACY,oBAAoB,EAAvC,MAAM;QACyB,MAAM,EAArC,MAAM,GAAC,WAAW;QACC,KAAK,EAAxB,MAAM;KAChB,EAmDA;IA9CC,WAAgB;IAChB,WAAW;IACX,eAAgB;IAChB,cAAgB;IAChB,eAAiB;IACjB,yCAAoB;IACpB,oBAAiB;IACjB,kBAAqB;IACrB,gBAAmB;IACnB,2BAAe;IACf,uBAAe;IACf,aAAiB;IACjB,aAAiB;IACjB,aAAgB;IAChB,oBAAiB;IACjB,oBAAiB;IACjB,aAAiB;IACjB,WAAgB;IAChB,qBAAkB;IAClB,aAAiB;IACjB,eAA0B;IAC1B,qBAAqB;IACrB,QADW,MAAM,CACC;IAClB,gCAAgC;IAChC,QADW,iBAAiB,CACV;IAClB,sHAAsH;IACtH,SADW,wBAAwB,GAAG,2BAA2B,GAAG,qBAAqB,GAAG,sBAAsB,CAC/F;IACnB,gBAA2B;IAC3B,iBAA4B;IAC5B,eAA0B;IAC1B,kBAAqB;IAkBvB;;OAEG;IACH,aA+BC;IAED;;OAEG;IACH,6BAkBC;IAED;;OAEG;IACH,qBA2CC;IAnCK,2BAoFK,iBAAiB,GAAG,KAAK,UApFsB;IACpD,+BA+FK,iBAAiB,GAAG,KAAK,UA/F8B;IAoClE;;;;;OAKG;IACH,2BAJW,MAAM,OACN,MAAM,gBACN,GAAC,QAQX;IAED;;;OAGG;IACH,oBAFW,MAAM,QA2BhB;IAED;;;OAGG;IACH,mBAFW,iBAAiB,GAAG,KAAK,QAQnC;IAED;;;OAGG;IACH,uBAFW,iBAAiB,GAAG,KAAK,QASnC;IAED;;;OAGG;IACH,aAFW,MAAM,QAoBhB;IAED;;OAEG;IACH,gBAwCC;CACF;+BAlV8B,+BAA+B;8BAEhC,8BAA8B;6BAU/B,oBAAoB;sCAFX,UAAU;kCAHd,cAAc;sBAJ1B,YAAY;sBAKZ,YAAY;uBACX,aAAa;6BAEP,oBAAoB;6BAGpB,oBAAoB;sBAC3B,YAAY;qBACb,WAAW;6BACH,oBAAoB;sBAC3B,YAAY;uBAbX,aAAa;uBANb,mBAAmB;uBAcnB,aAAa"}
|