@vpmedia/phaser 1.94.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 +41 -0
- package/package.json +11 -11
- package/src/phaser/core/animation.js +79 -56
- package/src/phaser/core/animation_manager.js +55 -55
- package/src/phaser/core/animation_parser.js +2 -2
- 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 +35 -19
- package/src/phaser/core/input_pointer.js +18 -0
- package/src/phaser/core/loader.js +171 -171
- package/src/phaser/core/loader_parser.js +22 -22
- package/src/phaser/core/raf.js +1 -1
- package/src/phaser/core/scale_manager.js +3 -2
- 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 +54 -30
- package/src/phaser/core/timer.js +82 -64
- package/src/phaser/core/timer_event.js +9 -9
- package/src/phaser/core/tween.js +106 -90
- package/src/phaser/core/tween_data.js +30 -30
- package/src/phaser/core/tween_manager.js +32 -24
- package/src/phaser/core/world.js +4 -3
- package/src/phaser/display/bitmap_text.js +72 -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 +17 -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 +129 -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 +63 -50
- package/src/phaser/display/image.js +68 -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 +217 -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 +21 -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 +74 -69
- package/src/phaser/geom/ellipse.js +33 -28
- package/src/phaser/geom/line.js +96 -93
- package/src/phaser/geom/matrix.js +61 -54
- package/src/phaser/geom/point.js +99 -96
- package/src/phaser/geom/polygon.js +27 -22
- package/src/phaser/geom/rectangle.js +137 -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 +79 -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/animation_parser.d.ts +3 -2
- package/types/phaser/core/animation_parser.d.ts.map +1 -1
- 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 +51 -44
- package/types/phaser/core/dom.d.ts.map +1 -1
- 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 +54 -21
- package/types/phaser/core/game.d.ts.map +1 -1
- package/types/phaser/core/input_pointer.d.ts +18 -0
- package/types/phaser/core/input_pointer.d.ts.map +1 -1
- package/types/phaser/core/loader.d.ts +175 -172
- package/types/phaser/core/loader.d.ts.map +1 -1
- package/types/phaser/core/loader_parser.d.ts.map +1 -1
- package/types/phaser/core/raf.d.ts +1 -1
- package/types/phaser/core/scale_manager.d.ts +6 -5
- package/types/phaser/core/scale_manager.d.ts.map +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 +54 -30
- package/types/phaser/core/time.d.ts.map +1 -1
- package/types/phaser/core/timer.d.ts +82 -64
- package/types/phaser/core/timer.d.ts.map +1 -1
- package/types/phaser/core/timer_event.d.ts +9 -9
- package/types/phaser/core/tween.d.ts +106 -90
- package/types/phaser/core/tween.d.ts.map +1 -1
- package/types/phaser/core/tween_data.d.ts +30 -30
- package/types/phaser/core/tween_manager.d.ts +35 -67
- 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 +76 -53
- 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/graphics.d.ts +3 -3
- package/types/phaser/display/canvas/graphics.d.ts.map +1 -1
- package/types/phaser/display/canvas/pool.d.ts +6 -3
- package/types/phaser/display/canvas/pool.d.ts.map +1 -1
- package/types/phaser/display/canvas/renderer.d.ts +18 -17
- package/types/phaser/display/canvas/renderer.d.ts.map +1 -1
- package/types/phaser/display/canvas/util.d.ts +6 -6
- package/types/phaser/display/canvas/util.d.ts.map +1 -1
- 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 +118 -102
- package/types/phaser/display/graphics.d.ts.map +1 -1
- package/types/phaser/display/graphics_data.d.ts +10 -10
- package/types/phaser/display/group.d.ts +59 -47
- package/types/phaser/display/group.d.ts.map +1 -1
- package/types/phaser/display/image.d.ts +58 -45
- package/types/phaser/display/image.d.ts.map +1 -1
- package/types/phaser/display/text.d.ts +237 -188
- 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 +10 -10
- package/types/phaser/display/webgl/base_texture.d.ts.map +1 -1
- 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.d.ts +2 -2
- package/types/phaser/display/webgl/graphics.d.ts.map +1 -1
- 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 +21 -20
- package/types/phaser/display/webgl/renderer.d.ts.map +1 -1
- 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/display/webgl/texture_util.d.ts +4 -2
- package/types/phaser/display/webgl/texture_util.d.ts.map +1 -1
- package/types/phaser/geom/circle.d.ts +74 -69
- package/types/phaser/geom/circle.d.ts.map +1 -1
- package/types/phaser/geom/ellipse.d.ts +33 -28
- package/types/phaser/geom/ellipse.d.ts.map +1 -1
- package/types/phaser/geom/line.d.ts +96 -93
- package/types/phaser/geom/line.d.ts.map +1 -1
- package/types/phaser/geom/matrix.d.ts +61 -54
- package/types/phaser/geom/matrix.d.ts.map +1 -1
- package/types/phaser/geom/point.d.ts +99 -96
- package/types/phaser/geom/point.d.ts.map +1 -1
- package/types/phaser/geom/polygon.d.ts +29 -23
- package/types/phaser/geom/polygon.d.ts.map +1 -1
- package/types/phaser/geom/rectangle.d.ts +137 -132
- package/types/phaser/geom/rectangle.d.ts.map +1 -1
- package/types/phaser/geom/rounded_rectangle.d.ts +12 -12
- package/types/phaser/geom/util/point.d.ts +1 -1
- package/types/phaser/geom/util/point.d.ts.map +1 -1
- package/pnpm-workspace.yaml +0 -4
|
@@ -1,194 +1,210 @@
|
|
|
1
1
|
export class Graphics extends DisplayObject {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* @param {import('../core/game.js').Game} game -
|
|
5
|
-
* @param {number} x -
|
|
6
|
-
* @param {number} y -
|
|
3
|
+
* Creates a new Graphics object.
|
|
4
|
+
* @param {import('../core/game.js').Game} game - The game instance.
|
|
5
|
+
* @param {number} x - The x coordinate of the graphics object.
|
|
6
|
+
* @param {number} y - The y coordinate of the graphics object.
|
|
7
7
|
*/
|
|
8
8
|
constructor(game: import("../core/game.js").Game, x?: number, y?: number);
|
|
9
|
+
/** @type {number} */
|
|
9
10
|
type: number;
|
|
11
|
+
/** @type {number} */
|
|
10
12
|
fillAlpha: number;
|
|
13
|
+
/** @type {number} */
|
|
11
14
|
lineWidth: number;
|
|
15
|
+
/** @type {number} */
|
|
12
16
|
lineColor: number;
|
|
13
17
|
graphicsData: any[];
|
|
18
|
+
/** @type {number} */
|
|
14
19
|
tint: number;
|
|
20
|
+
/** @type {number} */
|
|
15
21
|
blendMode: number;
|
|
22
|
+
/** @type {GraphicsData} */
|
|
16
23
|
currentPath: GraphicsData;
|
|
17
|
-
|
|
24
|
+
/** @type {object[]} */
|
|
25
|
+
_webGL: object[];
|
|
26
|
+
/** @type {boolean} */
|
|
18
27
|
isMask: boolean;
|
|
28
|
+
/** @type {number} */
|
|
19
29
|
boundsPadding: number;
|
|
30
|
+
/** @type {Rectangle} */
|
|
20
31
|
_localBounds: Rectangle;
|
|
32
|
+
/** @type {boolean} */
|
|
21
33
|
dirty: boolean;
|
|
34
|
+
/** @type {boolean} */
|
|
22
35
|
_boundsDirty: boolean;
|
|
36
|
+
/** @type {boolean} */
|
|
23
37
|
_cacheAsBitmap: boolean;
|
|
38
|
+
/** @type {boolean} */
|
|
24
39
|
webGLDirty: boolean;
|
|
40
|
+
/** @type {boolean} */
|
|
25
41
|
cachedSpriteDirty: boolean;
|
|
26
42
|
/**
|
|
27
|
-
*
|
|
28
|
-
* @param {number} lineWidth -
|
|
29
|
-
* @param {number} color -
|
|
30
|
-
* @param {number} alpha -
|
|
31
|
-
* @returns {Graphics}
|
|
43
|
+
* Sets the line style for subsequent drawing operations.
|
|
44
|
+
* @param {number} lineWidth - The width of the line to draw.
|
|
45
|
+
* @param {number} color - The color of the line to draw.
|
|
46
|
+
* @param {number} alpha - The alpha (transparency) of the line to draw.
|
|
47
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
32
48
|
*/
|
|
33
49
|
lineStyle(lineWidth?: number, color?: number, alpha?: number): Graphics;
|
|
34
50
|
lineAlpha: number;
|
|
35
51
|
/**
|
|
36
|
-
*
|
|
37
|
-
* @param {number} x -
|
|
38
|
-
* @param {number} y -
|
|
39
|
-
* @returns {Graphics}
|
|
52
|
+
* Moves the drawing cursor to the specified point.
|
|
53
|
+
* @param {number} x - The x coordinate to move to.
|
|
54
|
+
* @param {number} y - The y coordinate to move to.
|
|
55
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
40
56
|
*/
|
|
41
57
|
moveTo(x: number, y: number): Graphics;
|
|
42
58
|
/**
|
|
43
|
-
*
|
|
44
|
-
* @param {number} x -
|
|
45
|
-
* @param {number} y -
|
|
46
|
-
* @returns {Graphics}
|
|
59
|
+
* Draws a line from the current drawing position to the specified point.
|
|
60
|
+
* @param {number} x - The x coordinate to draw to.
|
|
61
|
+
* @param {number} y - The y coordinate to draw to.
|
|
62
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
47
63
|
*/
|
|
48
64
|
lineTo(x: number, y: number): Graphics;
|
|
49
65
|
/**
|
|
50
|
-
*
|
|
51
|
-
* @param {number} cpX -
|
|
52
|
-
* @param {number} cpY -
|
|
53
|
-
* @param {number} toX -
|
|
54
|
-
* @param {number} toY -
|
|
55
|
-
* @returns {Graphics}
|
|
66
|
+
* Draws a quadratic curve from the current position to the specified point.
|
|
67
|
+
* @param {number} cpX - The x coordinate of the control point.
|
|
68
|
+
* @param {number} cpY - The y coordinate of the control point.
|
|
69
|
+
* @param {number} toX - The x coordinate to draw to.
|
|
70
|
+
* @param {number} toY - The y coordinate to draw to.
|
|
71
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
56
72
|
*/
|
|
57
73
|
quadraticCurveTo(cpX: number, cpY: number, toX: number, toY: number): Graphics;
|
|
58
74
|
/**
|
|
59
|
-
*
|
|
60
|
-
* @param {number} cpX -
|
|
61
|
-
* @param {number} cpY -
|
|
62
|
-
* @param {number} cpX2 -
|
|
63
|
-
* @param {number} cpY2 -
|
|
64
|
-
* @param {number} toX -
|
|
65
|
-
* @param {number} toY -
|
|
66
|
-
* @returns {Graphics}
|
|
75
|
+
* Draws a cubic Bezier curve from the current position to the specified point.
|
|
76
|
+
* @param {number} cpX - The x coordinate of the first control point.
|
|
77
|
+
* @param {number} cpY - The y coordinate of the first control point.
|
|
78
|
+
* @param {number} cpX2 - The x coordinate of the second control point.
|
|
79
|
+
* @param {number} cpY2 - The y coordinate of the second control point.
|
|
80
|
+
* @param {number} toX - The x coordinate to draw to.
|
|
81
|
+
* @param {number} toY - The y coordinate to draw to.
|
|
82
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
67
83
|
*/
|
|
68
84
|
bezierCurveTo(cpX: number, cpY: number, cpX2: number, cpY2: number, toX: number, toY: number): Graphics;
|
|
69
85
|
/**
|
|
70
|
-
*
|
|
71
|
-
* @param {number} x1 -
|
|
72
|
-
* @param {number} y1 -
|
|
73
|
-
* @param {number} x2 -
|
|
74
|
-
* @param {number} y2 -
|
|
75
|
-
* @param {number} radius -
|
|
76
|
-
* @returns {Graphics}
|
|
86
|
+
* Draws an arc from the current position to the specified point.
|
|
87
|
+
* @param {number} x1 - The x coordinate of the starting point.
|
|
88
|
+
* @param {number} y1 - The y coordinate of the starting point.
|
|
89
|
+
* @param {number} x2 - The x coordinate of the end point.
|
|
90
|
+
* @param {number} y2 - The y coordinate of the end point.
|
|
91
|
+
* @param {number} radius - The radius of the arc.
|
|
92
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
77
93
|
*/
|
|
78
94
|
arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): Graphics;
|
|
79
95
|
/**
|
|
80
|
-
*
|
|
81
|
-
* @param {number} cx -
|
|
82
|
-
* @param {number} cy -
|
|
83
|
-
* @param {number} radius -
|
|
84
|
-
* @param {number} startAngle -
|
|
85
|
-
* @param {number} endAngle -
|
|
86
|
-
* @param {boolean} anticlockwise -
|
|
87
|
-
* @param {number} segments -
|
|
88
|
-
* @returns {Graphics}
|
|
96
|
+
* Draws an arc with the specified center, radius, and angles.
|
|
97
|
+
* @param {number} cx - The x coordinate of the center point.
|
|
98
|
+
* @param {number} cy - The y coordinate of the center point.
|
|
99
|
+
* @param {number} radius - The radius of the arc.
|
|
100
|
+
* @param {number} startAngle - The starting angle in radians.
|
|
101
|
+
* @param {number} endAngle - The ending angle in radians.
|
|
102
|
+
* @param {boolean} anticlockwise - Whether to draw the arc anticlockwise.
|
|
103
|
+
* @param {number} segments - The number of segments to use for drawing the arc.
|
|
104
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
89
105
|
*/
|
|
90
106
|
arc(cx: number, cy: number, radius: number, startAngle: number, endAngle: number, anticlockwise?: boolean, segments?: number): Graphics;
|
|
91
107
|
/**
|
|
92
|
-
*
|
|
93
|
-
* @param {number} color -
|
|
94
|
-
* @param {number} alpha -
|
|
95
|
-
* @returns {Graphics}
|
|
108
|
+
* Begins filling with the specified color and alpha.
|
|
109
|
+
* @param {number} color - The fill color to use.
|
|
110
|
+
* @param {number} alpha - The fill alpha (transparency) to use.
|
|
111
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
96
112
|
*/
|
|
97
113
|
beginFill(color?: number, alpha?: number): Graphics;
|
|
98
114
|
filling: boolean;
|
|
99
115
|
fillColor: number;
|
|
100
116
|
/**
|
|
101
|
-
*
|
|
102
|
-
* @returns {Graphics}
|
|
117
|
+
* Ends the current fill operation.
|
|
118
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
103
119
|
*/
|
|
104
120
|
endFill(): Graphics;
|
|
105
121
|
/**
|
|
106
|
-
*
|
|
107
|
-
* @param {number} x -
|
|
108
|
-
* @param {number} y -
|
|
109
|
-
* @param {number} width -
|
|
110
|
-
* @param {number} height -
|
|
111
|
-
* @returns {Graphics}
|
|
122
|
+
* Draws a rectangle with the specified properties.
|
|
123
|
+
* @param {number} x - The x coordinate of the rectangle.
|
|
124
|
+
* @param {number} y - The y coordinate of the rectangle.
|
|
125
|
+
* @param {number} width - The width of the rectangle.
|
|
126
|
+
* @param {number} height - The height of the rectangle.
|
|
127
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
112
128
|
*/
|
|
113
129
|
drawRect(x: number, y: number, width: number, height: number): Graphics;
|
|
114
130
|
/**
|
|
115
|
-
*
|
|
116
|
-
* @param {number} x -
|
|
117
|
-
* @param {number} y -
|
|
118
|
-
* @param {number} width -
|
|
119
|
-
* @param {number} height -
|
|
120
|
-
* @param {number} radius -
|
|
121
|
-
* @returns {Graphics}
|
|
131
|
+
* Draws a rounded rectangle with the specified properties.
|
|
132
|
+
* @param {number} x - The x coordinate of the rectangle.
|
|
133
|
+
* @param {number} y - The y coordinate of the rectangle.
|
|
134
|
+
* @param {number} width - The width of the rectangle.
|
|
135
|
+
* @param {number} height - The height of the rectangle.
|
|
136
|
+
* @param {number} radius - The radius of the rounded corners.
|
|
137
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
122
138
|
*/
|
|
123
139
|
drawRoundedRect(x: number, y: number, width: number, height: number, radius: number): Graphics;
|
|
124
140
|
/**
|
|
125
|
-
*
|
|
126
|
-
* @param {number} x -
|
|
127
|
-
* @param {number} y -
|
|
128
|
-
* @param {number} diameter -
|
|
129
|
-
* @returns {Graphics}
|
|
141
|
+
* Draws a circle with the specified properties.
|
|
142
|
+
* @param {number} x - The x coordinate of the center point.
|
|
143
|
+
* @param {number} y - The y coordinate of the center point.
|
|
144
|
+
* @param {number} diameter - The diameter of the circle.
|
|
145
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
130
146
|
*/
|
|
131
147
|
drawCircle(x: number, y: number, diameter: number): Graphics;
|
|
132
148
|
/**
|
|
133
|
-
*
|
|
134
|
-
* @param {number} x -
|
|
135
|
-
* @param {number} y -
|
|
136
|
-
* @param {number} width -
|
|
137
|
-
* @param {number} height -
|
|
138
|
-
* @returns {Graphics}
|
|
149
|
+
* Draws an ellipse with the specified properties.
|
|
150
|
+
* @param {number} x - The x coordinate of the center point.
|
|
151
|
+
* @param {number} y - The y coordinate of the center point.
|
|
152
|
+
* @param {number} width - The width of the ellipse.
|
|
153
|
+
* @param {number} height - The height of the ellipse.
|
|
154
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
139
155
|
*/
|
|
140
156
|
drawEllipse(x: number, y: number, width: number, height: number): Graphics;
|
|
141
157
|
/**
|
|
142
|
-
*
|
|
143
|
-
* @param {Polygon} path -
|
|
144
|
-
* @returns {Graphics}
|
|
158
|
+
* Draws a polygon with the specified path.
|
|
159
|
+
* @param {Polygon} path - The polygon to draw.
|
|
160
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
145
161
|
*/
|
|
146
162
|
drawPolygon(path: Polygon): Graphics;
|
|
147
163
|
/**
|
|
148
|
-
*
|
|
149
|
-
* @returns {Graphics}
|
|
164
|
+
* Clears all graphics data.
|
|
165
|
+
* @returns {Graphics} This Graphics object for chaining.
|
|
150
166
|
*/
|
|
151
167
|
clear(): Graphics;
|
|
152
168
|
clearDirty: boolean;
|
|
153
169
|
_prevTint: any;
|
|
154
170
|
/**
|
|
155
|
-
*
|
|
156
|
-
* @param {import('../geom/matrix.js').Matrix} matrix -
|
|
157
|
-
* @returns {Rectangle}
|
|
171
|
+
* Gets the bounds of the graphics object.
|
|
172
|
+
* @param {import('../geom/matrix.js').Matrix} matrix - The transformation matrix to use.
|
|
173
|
+
* @returns {Rectangle} The bounds rectangle of the graphics object.
|
|
158
174
|
*/
|
|
159
175
|
getBounds(matrix?: import("../geom/matrix.js").Matrix): Rectangle;
|
|
160
176
|
/**
|
|
161
|
-
*
|
|
162
|
-
* @param {Point} point -
|
|
163
|
-
* @param {Point} tempPoint -
|
|
164
|
-
* @returns {boolean}
|
|
177
|
+
* Checks if the graphics object contains a point.
|
|
178
|
+
* @param {Point} point - The point to check.
|
|
179
|
+
* @param {Point} tempPoint - A temporary point object to use.
|
|
180
|
+
* @returns {boolean} True if the graphics object contains the point, otherwise false.
|
|
165
181
|
*/
|
|
166
182
|
containsPoint(point: Point, tempPoint: Point): boolean;
|
|
167
183
|
/**
|
|
168
|
-
*
|
|
184
|
+
* Updates the local bounds of the graphics object.
|
|
169
185
|
*/
|
|
170
186
|
updateLocalBounds(): void;
|
|
171
187
|
/**
|
|
172
|
-
*
|
|
188
|
+
* Updates the cached sprite texture.
|
|
173
189
|
*/
|
|
174
190
|
updateCachedSpriteTexture(): void;
|
|
175
191
|
/**
|
|
176
|
-
*
|
|
177
|
-
* @param {object} shape -
|
|
178
|
-
* @returns {GraphicsData}
|
|
192
|
+
* Draws a shape with the specified properties.
|
|
193
|
+
* @param {object} shape - The shape to draw.
|
|
194
|
+
* @returns {GraphicsData} The graphics data for the drawn shape.
|
|
179
195
|
*/
|
|
180
196
|
drawShape(shape: object): GraphicsData;
|
|
181
197
|
/**
|
|
182
|
-
*
|
|
183
|
-
* @param {Point[]} points -
|
|
184
|
-
* @param {boolean} cull -
|
|
198
|
+
* Draws a triangle with the specified points and culling options.
|
|
199
|
+
* @param {Point[]} points - The points of the triangle.
|
|
200
|
+
* @param {boolean} cull - Whether to perform backface culling.
|
|
185
201
|
*/
|
|
186
202
|
drawTriangle(points: Point[], cull?: boolean): void;
|
|
187
203
|
/**
|
|
188
|
-
*
|
|
189
|
-
* @param {number[]|Point[]} vertices -
|
|
190
|
-
* @param {number[]} indices -
|
|
191
|
-
* @param {boolean} cull -
|
|
204
|
+
* Draws triangles with the specified vertices and indices.
|
|
205
|
+
* @param {number[]|Point[]} vertices - The vertices of the triangles.
|
|
206
|
+
* @param {number[]} indices - The indices of the vertices to use.
|
|
207
|
+
* @param {boolean} cull - Whether to perform backface culling.
|
|
192
208
|
*/
|
|
193
209
|
drawTriangles(vertices: number[] | Point[], indices: number[], cull?: boolean): void;
|
|
194
210
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphics.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/graphics.js"],"names":[],"mappings":"AA0BA;IACE;;;;;OAKG;IACH,kBAJW,OAAO,iBAAiB,EAAE,IAAI,MAC9B,MAAM,MACN,MAAM,
|
|
1
|
+
{"version":3,"file":"graphics.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/graphics.js"],"names":[],"mappings":"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"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export class GraphicsData {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* @param {number} lineWidth -
|
|
5
|
-
* @param {number} lineColor -
|
|
6
|
-
* @param {number} lineAlpha -
|
|
7
|
-
* @param {number} fillColor -
|
|
8
|
-
* @param {number} fillAlpha -
|
|
9
|
-
* @param {boolean} fill -
|
|
10
|
-
* @param {object} shape -
|
|
3
|
+
* Creates a new GraphicsData object.
|
|
4
|
+
* @param {number} lineWidth - The line width.
|
|
5
|
+
* @param {number} lineColor - The line color.
|
|
6
|
+
* @param {number} lineAlpha - The line alpha.
|
|
7
|
+
* @param {number} fillColor - The fill color.
|
|
8
|
+
* @param {number} fillAlpha - The fill alpha.
|
|
9
|
+
* @param {boolean} fill - Whether to fill the shape.
|
|
10
|
+
* @param {object} shape - The shape to draw.
|
|
11
11
|
*/
|
|
12
12
|
constructor(lineWidth: number, lineColor: number, lineAlpha: number, fillColor: number, fillAlpha: number, fill: boolean, shape: object);
|
|
13
13
|
lineWidth: number;
|
|
@@ -21,8 +21,8 @@ export class GraphicsData {
|
|
|
21
21
|
shape: any;
|
|
22
22
|
type: any;
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
25
|
-
* @returns {GraphicsData}
|
|
24
|
+
* Clones this GraphicsData object.
|
|
25
|
+
* @returns {GraphicsData} A new cloned GraphicsData object.
|
|
26
26
|
*/
|
|
27
27
|
clone(): GraphicsData;
|
|
28
28
|
}
|
|
@@ -2,111 +2,123 @@ export const SORT_ASCENDING: -1;
|
|
|
2
2
|
export const SORT_DESCENDING: 1;
|
|
3
3
|
export class Group extends DisplayObject {
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
6
|
-
* @param {import('../core/game.js').Game} game -
|
|
7
|
-
* @param {DisplayObject} parent -
|
|
8
|
-
* @param {string} name -
|
|
9
|
-
* @param {boolean} addToStage -
|
|
5
|
+
* Creates a new Group object.
|
|
6
|
+
* @param {import('../core/game.js').Game} game - The game instance this group belongs to.
|
|
7
|
+
* @param {DisplayObject} parent - The parent display object.
|
|
8
|
+
* @param {string} name - The name of this group.
|
|
9
|
+
* @param {boolean} addToStage - Whether to add this group to the stage.
|
|
10
10
|
*/
|
|
11
11
|
constructor(game: import("../core/game.js").Game, parent?: DisplayObject, name?: string, addToStage?: boolean);
|
|
12
|
+
/** @type {number} */
|
|
12
13
|
type: number;
|
|
14
|
+
/** @type {number} */
|
|
13
15
|
z: number;
|
|
16
|
+
/** @type {boolean} */
|
|
14
17
|
ignoreDestroy: boolean;
|
|
18
|
+
/** @type {boolean} */
|
|
15
19
|
pendingDestroy: boolean;
|
|
16
20
|
classType: typeof Image;
|
|
17
21
|
cursor: any;
|
|
22
|
+
/** @type {boolean} */
|
|
18
23
|
inputEnableChildren: boolean;
|
|
24
|
+
/** @type {Signal} */
|
|
19
25
|
onChildInputDown: Signal;
|
|
26
|
+
/** @type {Signal} */
|
|
20
27
|
onChildInputUp: Signal;
|
|
28
|
+
/** @type {Signal} */
|
|
21
29
|
onChildInputOver: Signal;
|
|
30
|
+
/** @type {Signal} */
|
|
22
31
|
onChildInputOut: Signal;
|
|
32
|
+
/** @type {Signal} */
|
|
23
33
|
onDestroy: Signal;
|
|
34
|
+
/** @type {number} */
|
|
24
35
|
cursorIndex: number;
|
|
36
|
+
/** @type {string} */
|
|
25
37
|
_sortProperty: string;
|
|
26
38
|
/**
|
|
27
|
-
*
|
|
28
|
-
* @param {boolean} destroyChildren -
|
|
29
|
-
* @param {boolean} soft -
|
|
39
|
+
* Destroys this group and cleans up resources.
|
|
40
|
+
* @param {boolean} destroyChildren - Whether to destroy children as well.
|
|
41
|
+
* @param {boolean} soft - Whether to perform a soft destroy (leaving the group in the parent's children list).
|
|
30
42
|
*/
|
|
31
43
|
destroy(destroyChildren?: boolean, soft?: boolean): void;
|
|
32
44
|
filters: any;
|
|
33
45
|
/**
|
|
34
|
-
*
|
|
35
|
-
* @param {DisplayObject} child -
|
|
36
|
-
* @param {boolean} silent -
|
|
37
|
-
* @param {number} index -
|
|
38
|
-
* @returns {DisplayObject}
|
|
46
|
+
* Adds a child to this group.
|
|
47
|
+
* @param {DisplayObject} child - The child to add.
|
|
48
|
+
* @param {boolean} silent - Whether to dispatch events.
|
|
49
|
+
* @param {number} index - The index to add the child at.
|
|
50
|
+
* @returns {DisplayObject} The added child.
|
|
39
51
|
*/
|
|
40
52
|
add(child: DisplayObject, silent?: boolean, index?: number): DisplayObject;
|
|
41
53
|
/**
|
|
42
|
-
*
|
|
43
|
-
* @param {DisplayObject} child -
|
|
44
|
-
* @param {number} index -
|
|
45
|
-
* @param {boolean} silent -
|
|
54
|
+
* Adds a child to this group at a specific index.
|
|
55
|
+
* @param {DisplayObject} child - The child to add.
|
|
56
|
+
* @param {number} index - The index to add the child at.
|
|
57
|
+
* @param {boolean} silent - Whether to dispatch events.
|
|
46
58
|
*/
|
|
47
59
|
addAt(child: DisplayObject, index: number, silent: boolean): void;
|
|
48
60
|
/**
|
|
49
|
-
*
|
|
50
|
-
* @param {number} index -
|
|
51
|
-
* @returns {DisplayObject}
|
|
61
|
+
* Gets a child at the specified index.
|
|
62
|
+
* @param {number} index - The index of the child to get.
|
|
63
|
+
* @returns {DisplayObject} The child at the specified index, or -1 if not found.
|
|
52
64
|
*/
|
|
53
65
|
getAt(index: number): DisplayObject;
|
|
54
66
|
/**
|
|
55
|
-
*
|
|
67
|
+
* Updates the Z indices of all children in this group.
|
|
56
68
|
*/
|
|
57
69
|
updateZ(): void;
|
|
58
70
|
/**
|
|
59
|
-
*
|
|
60
|
-
* @returns {DisplayObject}
|
|
71
|
+
* Gets the next child in this group (with circular wrapping).
|
|
72
|
+
* @returns {DisplayObject} The next child, or null if no children exist.
|
|
61
73
|
*/
|
|
62
74
|
next(): DisplayObject;
|
|
63
75
|
/**
|
|
64
|
-
*
|
|
65
|
-
* @returns {DisplayObject}
|
|
76
|
+
* Gets the previous child in this group (with circular wrapping).
|
|
77
|
+
* @returns {DisplayObject} The previous child, or null if no children exist.
|
|
66
78
|
*/
|
|
67
79
|
previous(): DisplayObject;
|
|
68
80
|
/**
|
|
69
|
-
*
|
|
70
|
-
* @param {DisplayObject} child1 -
|
|
71
|
-
* @param {DisplayObject} child2 -
|
|
81
|
+
* Swaps the positions of two children in this group.
|
|
82
|
+
* @param {DisplayObject} child1 - The first child to swap.
|
|
83
|
+
* @param {DisplayObject} child2 - The second child to swap.
|
|
72
84
|
*/
|
|
73
85
|
swap(child1: DisplayObject, child2: DisplayObject): void;
|
|
74
86
|
/**
|
|
75
|
-
*
|
|
76
|
-
* @param {DisplayObject} child -
|
|
77
|
-
* @returns {DisplayObject}
|
|
87
|
+
* Brings a child to the top of this group.
|
|
88
|
+
* @param {DisplayObject} child - The child to bring to the top.
|
|
89
|
+
* @returns {DisplayObject} The child that was brought to the top.
|
|
78
90
|
*/
|
|
79
91
|
bringToTop(child: DisplayObject): DisplayObject;
|
|
80
92
|
/**
|
|
81
|
-
*
|
|
82
|
-
* @param {DisplayObject} child -
|
|
83
|
-
* @returns {DisplayObject}
|
|
93
|
+
* Sends a child to the back of this group.
|
|
94
|
+
* @param {DisplayObject} child - The child to send to the back.
|
|
95
|
+
* @returns {DisplayObject} The child that was sent to the back.
|
|
84
96
|
*/
|
|
85
97
|
sendToBack(child: DisplayObject): DisplayObject;
|
|
86
98
|
/**
|
|
87
|
-
*
|
|
99
|
+
* Reverses the order of children in this group.
|
|
88
100
|
*/
|
|
89
101
|
reverse(): void;
|
|
90
102
|
/**
|
|
91
|
-
*
|
|
92
|
-
* @param {DisplayObject} child -
|
|
93
|
-
* @returns {number}
|
|
103
|
+
* Gets the index of a child in this group.
|
|
104
|
+
* @param {DisplayObject} child - The child to get the index of.
|
|
105
|
+
* @returns {number} The index of the child, or -1 if not found.
|
|
94
106
|
*/
|
|
95
107
|
getIndex(child: DisplayObject): number;
|
|
96
108
|
renderOrderID: number;
|
|
97
109
|
/**
|
|
98
|
-
*
|
|
99
|
-
* @param {DisplayObject} child -
|
|
100
|
-
* @param {boolean} destroy -
|
|
101
|
-
* @param {boolean} silent -
|
|
102
|
-
* @returns {boolean}
|
|
110
|
+
* Removes a child from this group.
|
|
111
|
+
* @param {DisplayObject} child - The child to remove.
|
|
112
|
+
* @param {boolean} destroy - Whether to destroy the child after removing it.
|
|
113
|
+
* @param {boolean} silent - Whether to dispatch events.
|
|
114
|
+
* @returns {boolean} True if the child was removed, false otherwise.
|
|
103
115
|
*/
|
|
104
116
|
remove(child: DisplayObject, destroy?: boolean, silent?: boolean): boolean;
|
|
105
117
|
/**
|
|
106
|
-
*
|
|
107
|
-
* @param {boolean} destroy -
|
|
108
|
-
* @param {boolean} silent -
|
|
109
|
-
* @param {boolean} destroyTexture -
|
|
118
|
+
* Removes all children from this group.
|
|
119
|
+
* @param {boolean} destroy - Whether to destroy children as well.
|
|
120
|
+
* @param {boolean} silent - Whether to dispatch events.
|
|
121
|
+
* @param {boolean} destroyTexture - Whether to destroy textures as well.
|
|
110
122
|
*/
|
|
111
123
|
removeAll(destroy?: boolean, silent?: boolean, destroyTexture?: boolean): void;
|
|
112
124
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"group.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/group.js"],"names":[],"mappings":"AAKA,6BAA8B,CAAC,CAAC,CAAC;AACjC,8BAA+B,CAAC,CAAC;AAEjC;IACE;;;;;;OAMG;IACH,kBALW,OAAO,iBAAiB,EAAE,IAAI,WAC9B,aAAa,SACb,MAAM,eACN,OAAO,
|
|
1
|
+
{"version":3,"file":"group.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/group.js"],"names":[],"mappings":"AAKA,6BAA8B,CAAC,CAAC,CAAC;AACjC,8BAA+B,CAAC,CAAC;AAEjC;IACE;;;;;;OAMG;IACH,kBALW,OAAO,iBAAiB,EAAE,IAAI,WAC9B,aAAa,SACb,MAAM,eACN,OAAO,EA0CjB;IAtCC,qBAAqB;IACrB,MADW,MAAM,CACA;IAMjB,qBAAqB;IACrB,GADW,MAAM,CACP;IAQV,sBAAsB;IACtB,eADW,OAAO,CACQ;IAC1B,sBAAsB;IACtB,gBADW,OAAO,CACS;IAC3B,wBAAsB;IACtB,YAAkB;IAClB,sBAAsB;IACtB,qBADW,OAAO,CACc;IAChC,qBAAqB;IACrB,kBADW,MAAM,CACmB;IACpC,qBAAqB;IACrB,gBADW,MAAM,CACiB;IAClC,qBAAqB;IACrB,kBADW,MAAM,CACmB;IACpC,qBAAqB;IACrB,iBADW,MAAM,CACkB;IACnC,qBAAqB;IACrB,WADW,MAAM,CACY;IAC7B,qBAAqB;IACrB,aADW,MAAM,CACG;IACpB,qBAAqB;IACrB,eADW,MAAM,CACO;IAG1B;;;;OAIG;IACH,0BAHW,OAAO,SACP,OAAO,QAkBjB;IATC,aAAmB;IAWrB;;;;;;OAMG;IACH,WALW,aAAa,WACb,OAAO,UACP,MAAM,GACJ,aAAa,CAuBzB;IAED;;;;;OAKG;IACH,aAJW,aAAa,SACb,MAAM,UACN,OAAO,QAIjB;IAED;;;;OAIG;IACH,aAHW,MAAM,GACJ,aAAa,CAOzB;IAED;;OAEG;IACH,gBAMC;IAED;;;OAGG;IACH,QAFa,aAAa,CAczB;IAED;;;OAGG;IACH,YAFa,aAAa,CAczB;IAED;;;;OAIG;IACH,aAHW,aAAa,UACb,aAAa,QAKvB;IAED;;;;OAIG;IACH,kBAHW,aAAa,GACX,aAAa,CAQzB;IAED;;;;OAIG;IACH,kBAHW,aAAa,GACX,aAAa,CAQzB;IAED;;OAEG;IACH,gBAGC;IAED;;;;OAIG;IACH,gBAHW,aAAa,GACX,MAAM,CAIlB;IAWG,sBAAuB;IA4B3B;;;;;;OAMG;IACH,cALW,aAAa,YACb,OAAO,WACP,OAAO,GACL,OAAO,CAkBnB;IAED;;;;;OAKG;IACH,oBAJW,OAAO,WACP,OAAO,mBACP,OAAO,QAgBjB;CACF;8BA1T6B,qBAAqB;sBAC7B,YAAY;uBAFX,mBAAmB"}
|