@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,11 +1,11 @@
|
|
|
1
1
|
export class Text extends Image {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* @param {import('../core/game.js').Game} game -
|
|
5
|
-
* @param {number} x -
|
|
6
|
-
* @param {number} y -
|
|
7
|
-
* @param {string} text -
|
|
8
|
-
* @param {object} style -
|
|
3
|
+
* Creates a new Text object.
|
|
4
|
+
* @param {import('../core/game.js').Game} game - The game instance this text belongs to.
|
|
5
|
+
* @param {number} x - The x position of the text.
|
|
6
|
+
* @param {number} y - The y position of the text.
|
|
7
|
+
* @param {string} text - The text content to display.
|
|
8
|
+
* @param {object} style - The style settings for the text.
|
|
9
9
|
*/
|
|
10
10
|
constructor(game: import("../core/game.js").Game, x: number, y: number, text?: string, style?: object);
|
|
11
11
|
canvas: HTMLCanvasElement;
|
|
@@ -38,126 +38,126 @@ export class Text extends Image {
|
|
|
38
38
|
/** @type {number} */
|
|
39
39
|
_charCount: number;
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
42
|
-
* @param {number} x -
|
|
43
|
-
* @param {number} y -
|
|
44
|
-
* @param {string} color -
|
|
45
|
-
* @param {number} blur -
|
|
46
|
-
* @param {boolean} shadowStroke -
|
|
47
|
-
* @param {boolean} shadowFill -
|
|
48
|
-
* @returns {Text}
|
|
41
|
+
* Sets the drop shadow properties for this text.
|
|
42
|
+
* @param {number} x - The horizontal offset of the shadow.
|
|
43
|
+
* @param {number} y - The vertical offset of the shadow.
|
|
44
|
+
* @param {string} color - The color of the shadow.
|
|
45
|
+
* @param {number} blur - The blur radius of the shadow.
|
|
46
|
+
* @param {boolean} shadowStroke - Whether to apply the shadow to the stroke.
|
|
47
|
+
* @param {boolean} shadowFill - Whether to apply the shadow to the fill.
|
|
48
|
+
* @returns {Text} This Text object for chaining.
|
|
49
49
|
*/
|
|
50
50
|
setShadow(x?: number, y?: number, color?: string, blur?: number, shadowStroke?: boolean, shadowFill?: boolean): Text;
|
|
51
51
|
dirty: boolean;
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
54
|
-
* @param {object} style -
|
|
55
|
-
* @param {boolean} update -
|
|
56
|
-
* @returns {Text}
|
|
53
|
+
* Sets the style properties for this text.
|
|
54
|
+
* @param {object} style - The style settings to apply.
|
|
55
|
+
* @param {boolean} update - Whether to update the text immediately.
|
|
56
|
+
* @returns {Text} This Text object for chaining.
|
|
57
57
|
*/
|
|
58
58
|
setStyle(style?: object, update?: boolean): Text;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Updates the text content and renders it to the canvas.
|
|
61
61
|
*/
|
|
62
62
|
updateText(): void;
|
|
63
63
|
/**
|
|
64
|
-
*
|
|
65
|
-
* @param {string} line -
|
|
66
|
-
* @param {number} x -
|
|
67
|
-
* @param {number} y -
|
|
68
|
-
* @param {boolean} fill -
|
|
64
|
+
* Renders a tabbed line of text to the canvas.
|
|
65
|
+
* @param {string} line - The line of text to render.
|
|
66
|
+
* @param {number} x - The x position to start rendering from.
|
|
67
|
+
* @param {number} y - The y position to start rendering from.
|
|
68
|
+
* @param {boolean} fill - True to fill the text, false to stroke it.
|
|
69
69
|
*/
|
|
70
70
|
renderTabLine(line: string, x: number, y: number, fill: boolean): void;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
73
|
-
* @param {string} state -
|
|
72
|
+
* Updates the shadow properties for this text.
|
|
73
|
+
* @param {string} state - The shadow state to update ('stroke' or 'fill').
|
|
74
74
|
*/
|
|
75
75
|
updateShadow(state: string): void;
|
|
76
76
|
/**
|
|
77
|
-
*
|
|
78
|
-
* @param {string} line -
|
|
79
|
-
* @returns {number}
|
|
77
|
+
* Measures the width of a line of text.
|
|
78
|
+
* @param {string} line - The line of text to measure.
|
|
79
|
+
* @returns {number} The width of the line in pixels.
|
|
80
80
|
*/
|
|
81
81
|
measureLine(line: string): number;
|
|
82
82
|
/**
|
|
83
|
-
*
|
|
84
|
-
* @param {string} line -
|
|
85
|
-
* @param {number} x -
|
|
86
|
-
* @param {number} y -
|
|
83
|
+
* Updates a line of text to the canvas.
|
|
84
|
+
* @param {string} line - The line of text to update.
|
|
85
|
+
* @param {number} x - The x position to start updating from.
|
|
86
|
+
* @param {number} y - The y position to start updating from.
|
|
87
87
|
*/
|
|
88
88
|
updateLine(line: string, x: number, y: number): void;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
91
|
-
* @returns {Text}
|
|
90
|
+
* Clears all color values from this text object.
|
|
91
|
+
* @returns {Text} This Text object for chaining.
|
|
92
92
|
*/
|
|
93
93
|
clearColors(): Text;
|
|
94
94
|
/**
|
|
95
|
-
*
|
|
96
|
-
* @returns {Text}
|
|
95
|
+
* Clears all font style values from this text object.
|
|
96
|
+
* @returns {Text} This Text object for chaining.
|
|
97
97
|
*/
|
|
98
98
|
clearFontValues(): Text;
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
101
|
-
* @param {string} color -
|
|
102
|
-
* @param {number} position -
|
|
103
|
-
* @returns {Text}
|
|
100
|
+
* Adds a color to this text object at the specified position.
|
|
101
|
+
* @param {string} color - The color to apply.
|
|
102
|
+
* @param {number} position - The character position to apply the color at.
|
|
103
|
+
* @returns {Text} This Text object for chaining.
|
|
104
104
|
*/
|
|
105
105
|
addColor(color: string, position: number): Text;
|
|
106
106
|
/**
|
|
107
|
-
*
|
|
108
|
-
* @param {number} color -
|
|
109
|
-
* @param {number} position -
|
|
110
|
-
* @returns {Text}
|
|
107
|
+
* Adds a stroke color to this text object at the specified position.
|
|
108
|
+
* @param {number} color - The stroke color to apply.
|
|
109
|
+
* @param {number} position - The character position to apply the stroke color at.
|
|
110
|
+
* @returns {Text} This Text object for chaining.
|
|
111
111
|
*/
|
|
112
112
|
addStrokeColor(color: number, position: number): Text;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
115
|
-
* @param {object} style -
|
|
116
|
-
* @param {number} position -
|
|
117
|
-
* @returns {Text}
|
|
114
|
+
* Adds a font style to this text object at the specified position.
|
|
115
|
+
* @param {object} style - The font style to apply.
|
|
116
|
+
* @param {number} position - The character position to apply the font style at.
|
|
117
|
+
* @returns {Text} This Text object for chaining.
|
|
118
118
|
*/
|
|
119
119
|
addFontStyle(style: object, position: number): Text;
|
|
120
120
|
/**
|
|
121
|
-
*
|
|
122
|
-
* @param {number} weight -
|
|
123
|
-
* @param {number} position -
|
|
124
|
-
* @returns {Text}
|
|
121
|
+
* Adds a font weight to this text object at the specified position.
|
|
122
|
+
* @param {number} weight - The font weight to apply.
|
|
123
|
+
* @param {number} position - The character position to apply the font weight at.
|
|
124
|
+
* @returns {Text} This Text object for chaining.
|
|
125
125
|
*/
|
|
126
126
|
addFontWeight(weight: number, position: number): Text;
|
|
127
127
|
/**
|
|
128
|
-
*
|
|
129
|
-
* @param {string} text -
|
|
130
|
-
* @returns {string[]}
|
|
128
|
+
* Precalculates word wrap for the given text.
|
|
129
|
+
* @param {string} text - The text to precalculate word wrap for.
|
|
130
|
+
* @returns {string[]} The wrapped lines of text.
|
|
131
131
|
*/
|
|
132
132
|
precalculateWordWrap(text: string): string[];
|
|
133
133
|
/**
|
|
134
|
-
*
|
|
135
|
-
* @param {string} text -
|
|
136
|
-
* @returns {string}
|
|
134
|
+
* Runs word wrap on the given text.
|
|
135
|
+
* @param {string} text - The text to run word wrap on.
|
|
136
|
+
* @returns {string} The wrapped text.
|
|
137
137
|
*/
|
|
138
138
|
runWordWrap(text: string): string;
|
|
139
139
|
/**
|
|
140
|
-
*
|
|
141
|
-
* @param {string} text -
|
|
142
|
-
* @returns {string}
|
|
143
|
-
* @throws {Error}
|
|
140
|
+
* Runs advanced word wrap on the given text.
|
|
141
|
+
* @param {string} text - The text to run advanced word wrap on.
|
|
142
|
+
* @returns {string} The wrapped text.
|
|
143
|
+
* @throws {Error} If the wordWrapWidth setting is less than a single character.
|
|
144
144
|
*/
|
|
145
145
|
advancedWordWrap(text: string): string;
|
|
146
146
|
/**
|
|
147
|
-
*
|
|
148
|
-
* @param {string} text -
|
|
149
|
-
* @returns {string}
|
|
147
|
+
* Runs basic word wrap on the given text.
|
|
148
|
+
* @param {string} text - The text to run basic word wrap on.
|
|
149
|
+
* @returns {string} The wrapped text.
|
|
150
150
|
*/
|
|
151
151
|
basicWordWrap(text: string): string;
|
|
152
152
|
/**
|
|
153
|
-
*
|
|
154
|
-
* @param {object} components -
|
|
153
|
+
* Updates the font properties based on the given components.
|
|
154
|
+
* @param {object} components - The font components to update from.
|
|
155
155
|
*/
|
|
156
156
|
updateFont(components: object): void;
|
|
157
157
|
/**
|
|
158
|
-
*
|
|
159
|
-
* @param {string} font -
|
|
160
|
-
* @returns {{ font: string, fontStyle?: string, fontVariant?: string, fontWeight?: string, fontSize?: string, fontFamily?: string }}
|
|
158
|
+
* Converts a font string to components.
|
|
159
|
+
* @param {string} font - The font string to convert.
|
|
160
|
+
* @returns {{ font: string, fontStyle?: string, fontVariant?: string, fontWeight?: string, fontSize?: string, fontFamily?: string }} The font components.
|
|
161
161
|
*/
|
|
162
162
|
fontToComponents(font: string): {
|
|
163
163
|
font: string;
|
|
@@ -168,60 +168,60 @@ export class Text extends Image {
|
|
|
168
168
|
fontFamily?: string;
|
|
169
169
|
};
|
|
170
170
|
/**
|
|
171
|
-
*
|
|
172
|
-
* @param {object} components -
|
|
173
|
-
* @returns {string}
|
|
171
|
+
* Converts font components to a font string.
|
|
172
|
+
* @param {object} components - The font components to convert.
|
|
173
|
+
* @returns {string} The font string.
|
|
174
174
|
*/
|
|
175
175
|
componentsToFont(components: object): string;
|
|
176
176
|
/**
|
|
177
|
-
*
|
|
178
|
-
* @param {string} text -
|
|
179
|
-
* @param {boolean} immediate -
|
|
180
|
-
* @returns {Text}
|
|
177
|
+
* Sets the text content of this object.
|
|
178
|
+
* @param {string} text - The new text to set.
|
|
179
|
+
* @param {boolean} immediate - If true, updates the text immediately.
|
|
180
|
+
* @returns {Text} This Text object for chaining.
|
|
181
181
|
*/
|
|
182
182
|
setText(text: string, immediate?: boolean): Text;
|
|
183
183
|
/**
|
|
184
|
-
*
|
|
185
|
-
* @param {string | number | boolean | Date} value -
|
|
184
|
+
* Sets the text content of this object.
|
|
185
|
+
* @param {string | number | boolean | Date} value - The new text content to set.
|
|
186
186
|
*/
|
|
187
187
|
set text(value: string | number | boolean | Date);
|
|
188
188
|
/**
|
|
189
|
-
*
|
|
190
|
-
* @returns {string}
|
|
189
|
+
* Gets the text content of this object.
|
|
190
|
+
* @returns {string} The current text content.
|
|
191
191
|
*/
|
|
192
192
|
get text(): string;
|
|
193
193
|
/**
|
|
194
|
-
*
|
|
195
|
-
* @param {string[]|string[][]} list -
|
|
196
|
-
* @returns {Text}
|
|
194
|
+
* Parses a list of text into this object.
|
|
195
|
+
* @param {string[]|string[][]} list - The list of text to parse.
|
|
196
|
+
* @returns {Text} This Text object for chaining.
|
|
197
197
|
*/
|
|
198
198
|
parseList(list: string[] | string[][]): Text;
|
|
199
199
|
/**
|
|
200
|
-
*
|
|
201
|
-
* @param {number} x -
|
|
202
|
-
* @param {number} y -
|
|
203
|
-
* @param {number} width -
|
|
204
|
-
* @param {number} height -
|
|
205
|
-
* @returns {Text}
|
|
200
|
+
* Sets the text bounds for this object.
|
|
201
|
+
* @param {number} x - The x position of the bounds.
|
|
202
|
+
* @param {number} y - The y position of the bounds.
|
|
203
|
+
* @param {number} width - The width of the bounds.
|
|
204
|
+
* @param {number} height - The height of the bounds.
|
|
205
|
+
* @returns {Text} This Text object for chaining.
|
|
206
206
|
*/
|
|
207
207
|
setTextBounds(x: number, y: number, width: number, height: number): Text;
|
|
208
208
|
/**
|
|
209
|
-
*
|
|
209
|
+
* Updates the texture of this object.
|
|
210
210
|
*/
|
|
211
211
|
updateTexture(): void;
|
|
212
212
|
/**
|
|
213
|
-
*
|
|
214
|
-
* @param {object} renderSession -
|
|
213
|
+
* Renders this text object using WebGL.
|
|
214
|
+
* @param {object} renderSession - The render session to use.
|
|
215
215
|
*/
|
|
216
216
|
renderWebGL(renderSession: object): void;
|
|
217
217
|
/**
|
|
218
|
-
*
|
|
219
|
-
* @param {object} renderSession -
|
|
218
|
+
* Renders this text object using Canvas.
|
|
219
|
+
* @param {object} renderSession - The render session to use.
|
|
220
220
|
*/
|
|
221
221
|
renderCanvas(renderSession: object): void;
|
|
222
222
|
/**
|
|
223
|
-
*
|
|
224
|
-
* @returns {{[key: string]: {ascent: number, descent: number, fontSize: number}}}
|
|
223
|
+
* Gets the font properties cache object.
|
|
224
|
+
* @returns {{[key: string]: {ascent: number, descent: number, fontSize: number}}} The font properties cache.
|
|
225
225
|
*/
|
|
226
226
|
getFontPropertiesCache(): {
|
|
227
227
|
[key: string]: {
|
|
@@ -231,25 +231,25 @@ export class Text extends Image {
|
|
|
231
231
|
};
|
|
232
232
|
};
|
|
233
233
|
/**
|
|
234
|
-
*
|
|
235
|
-
* @returns {HTMLCanvasElement}
|
|
234
|
+
* Gets the font properties canvas element.
|
|
235
|
+
* @returns {HTMLCanvasElement} The font properties canvas element.
|
|
236
236
|
*/
|
|
237
237
|
getFontPropertiesCanvas(): HTMLCanvasElement;
|
|
238
238
|
/**
|
|
239
|
-
*
|
|
240
|
-
* @returns {CanvasRenderingContext2D}
|
|
239
|
+
* Gets the font properties canvas context.
|
|
240
|
+
* @returns {CanvasRenderingContext2D} The font properties canvas context.
|
|
241
241
|
*/
|
|
242
242
|
getFontPropertiesContext(): CanvasRenderingContext2D;
|
|
243
243
|
/**
|
|
244
|
-
*
|
|
245
|
-
* @param {string} font -
|
|
246
|
-
* @returns {object}
|
|
244
|
+
* Determines the font properties for a given font.
|
|
245
|
+
* @param {string} font - The font to determine properties for.
|
|
246
|
+
* @returns {object} The font properties.
|
|
247
247
|
*/
|
|
248
248
|
determineFontProperties(font: string): object;
|
|
249
249
|
/**
|
|
250
|
-
*
|
|
251
|
-
* @param {string} fontStyle -
|
|
252
|
-
* @returns {{ascent: number, descent: number, fontSize: number}}
|
|
250
|
+
* Determines font properties using a fallback method.
|
|
251
|
+
* @param {string} fontStyle - The font style to determine properties for.
|
|
252
|
+
* @returns {{ascent: number, descent: number, fontSize: number}} The font properties.
|
|
253
253
|
*/
|
|
254
254
|
determineFontPropertiesFallback(fontStyle: string): {
|
|
255
255
|
ascent: number;
|
|
@@ -257,210 +257,233 @@ export class Text extends Image {
|
|
|
257
257
|
fontSize: number;
|
|
258
258
|
};
|
|
259
259
|
/**
|
|
260
|
-
*
|
|
260
|
+
* Sets the CSS font string for this object.
|
|
261
|
+
* @param {string} value - The new CSS font string to set.
|
|
261
262
|
*/
|
|
262
263
|
set cssFont(value: string);
|
|
263
264
|
/**
|
|
264
|
-
*
|
|
265
|
-
* @returns {string}
|
|
265
|
+
* Gets the CSS font string for this object.
|
|
266
|
+
* @returns {string} The CSS font string.
|
|
266
267
|
*/
|
|
267
268
|
get cssFont(): string;
|
|
268
269
|
/**
|
|
269
|
-
*
|
|
270
|
+
* Sets the font family of this object.
|
|
271
|
+
* @param {string} value - The new font family to set.
|
|
270
272
|
*/
|
|
271
|
-
set font(value:
|
|
273
|
+
set font(value: string);
|
|
272
274
|
/**
|
|
273
|
-
*
|
|
274
|
-
* @returns {number}
|
|
275
|
+
* Gets the font family of this object.
|
|
276
|
+
* @returns {number} The font family.
|
|
275
277
|
*/
|
|
276
278
|
get font(): number;
|
|
277
279
|
/**
|
|
278
|
-
*
|
|
280
|
+
* Sets the font size of this object.
|
|
281
|
+
* @param {number} value - The new font size to set.
|
|
279
282
|
*/
|
|
280
283
|
set fontSize(value: number);
|
|
281
284
|
/**
|
|
282
|
-
*
|
|
283
|
-
* @returns {number}
|
|
285
|
+
* Gets the font size of this object.
|
|
286
|
+
* @returns {number} The font size.
|
|
284
287
|
*/
|
|
285
288
|
get fontSize(): number;
|
|
286
289
|
/**
|
|
287
|
-
*
|
|
290
|
+
* Sets the font weight of this object.
|
|
291
|
+
* @param {string} value - The new font weight to set.
|
|
288
292
|
*/
|
|
289
293
|
set fontWeight(value: string);
|
|
290
294
|
/**
|
|
291
|
-
*
|
|
292
|
-
* @returns {string}
|
|
295
|
+
* Gets the font weight of this object.
|
|
296
|
+
* @returns {string} The font weight.
|
|
293
297
|
*/
|
|
294
298
|
get fontWeight(): string;
|
|
295
299
|
/**
|
|
296
|
-
*
|
|
300
|
+
* Sets the font style of this object.
|
|
301
|
+
* @param {string} value - The new font style to set.
|
|
297
302
|
*/
|
|
298
303
|
set fontStyle(value: string);
|
|
299
304
|
/**
|
|
300
|
-
*
|
|
301
|
-
* @returns {string}
|
|
305
|
+
* Gets the font style of this object.
|
|
306
|
+
* @returns {string} The font style.
|
|
302
307
|
*/
|
|
303
308
|
get fontStyle(): string;
|
|
304
309
|
/**
|
|
305
|
-
*
|
|
310
|
+
* Sets the font variant of this object.
|
|
311
|
+
* @param {string} value - The new font variant to set.
|
|
306
312
|
*/
|
|
307
313
|
set fontVariant(value: string);
|
|
308
314
|
/**
|
|
309
|
-
*
|
|
310
|
-
* @returns {string}
|
|
315
|
+
* Gets the font variant of this object.
|
|
316
|
+
* @returns {string} The font variant.
|
|
311
317
|
*/
|
|
312
318
|
get fontVariant(): string;
|
|
313
319
|
/**
|
|
314
|
-
*
|
|
320
|
+
* Sets the fill color of this object.
|
|
321
|
+
* @param {string} value - The new fill color to set.
|
|
315
322
|
*/
|
|
316
|
-
set fill(value:
|
|
323
|
+
set fill(value: string);
|
|
317
324
|
/**
|
|
318
|
-
*
|
|
319
|
-
* @returns {number}
|
|
325
|
+
* Gets the fill color of this object.
|
|
326
|
+
* @returns {number} The fill color.
|
|
320
327
|
*/
|
|
321
328
|
get fill(): number;
|
|
322
329
|
/**
|
|
323
|
-
*
|
|
330
|
+
* Sets the alignment of this object.
|
|
331
|
+
* @param {string} value - The new text alignment to set.
|
|
324
332
|
*/
|
|
325
333
|
set align(value: string);
|
|
326
334
|
/**
|
|
327
|
-
*
|
|
328
|
-
* @returns {string}
|
|
335
|
+
* Gets the alignment of this object.
|
|
336
|
+
* @returns {string} The text alignment.
|
|
329
337
|
*/
|
|
330
338
|
get align(): string;
|
|
331
339
|
/**
|
|
332
|
-
*
|
|
340
|
+
* Sets the resolution of this object.
|
|
341
|
+
* @param {number} value - The new resolution to set.
|
|
333
342
|
*/
|
|
334
343
|
set resolution(value: number);
|
|
335
344
|
/**
|
|
336
|
-
*
|
|
337
|
-
* @returns {number}
|
|
345
|
+
* Gets the resolution of this object.
|
|
346
|
+
* @returns {number} The resolution.
|
|
338
347
|
*/
|
|
339
348
|
get resolution(): number;
|
|
340
349
|
/**
|
|
341
|
-
*
|
|
350
|
+
* Sets the tabs setting of this object.
|
|
351
|
+
* @param {number} value - The new tabs setting to set.
|
|
342
352
|
*/
|
|
343
353
|
set tabs(value: number);
|
|
344
354
|
/**
|
|
345
|
-
*
|
|
346
|
-
* @returns {number}
|
|
355
|
+
* Gets the tabs setting of this object.
|
|
356
|
+
* @returns {number} The tabs setting.
|
|
347
357
|
*/
|
|
348
358
|
get tabs(): number;
|
|
349
359
|
/**
|
|
350
|
-
*
|
|
360
|
+
* Sets the horizontal bounds alignment of this object.
|
|
361
|
+
* @param {number} value - The new horizontal bounds alignment to set.
|
|
351
362
|
*/
|
|
352
363
|
set boundsAlignH(value: number);
|
|
353
364
|
/**
|
|
354
|
-
*
|
|
355
|
-
* @returns {number}
|
|
365
|
+
* Gets the horizontal bounds alignment of this object.
|
|
366
|
+
* @returns {number} The horizontal bounds alignment.
|
|
356
367
|
*/
|
|
357
368
|
get boundsAlignH(): number;
|
|
358
369
|
/**
|
|
359
|
-
*
|
|
370
|
+
* Sets the vertical bounds alignment of this object.
|
|
371
|
+
* @param {number} value - The new vertical bounds alignment to set.
|
|
360
372
|
*/
|
|
361
373
|
set boundsAlignV(value: number);
|
|
362
374
|
/**
|
|
363
|
-
*
|
|
364
|
-
* @returns {number}
|
|
375
|
+
* Gets the vertical bounds alignment of this object.
|
|
376
|
+
* @returns {number} The vertical bounds alignment.
|
|
365
377
|
*/
|
|
366
378
|
get boundsAlignV(): number;
|
|
367
379
|
/**
|
|
368
|
-
*
|
|
380
|
+
* Sets the stroke color of this object.
|
|
381
|
+
* @param {string} value - The new stroke color to set.
|
|
369
382
|
*/
|
|
370
|
-
set stroke(value:
|
|
383
|
+
set stroke(value: string);
|
|
371
384
|
/**
|
|
372
|
-
*
|
|
373
|
-
* @returns {number}
|
|
385
|
+
* Gets the stroke color of this object.
|
|
386
|
+
* @returns {number} The stroke color.
|
|
374
387
|
*/
|
|
375
388
|
get stroke(): number;
|
|
376
389
|
/**
|
|
377
|
-
*
|
|
390
|
+
* Sets the stroke thickness of this object.
|
|
391
|
+
* @param {number} value - The new stroke thickness to set.
|
|
378
392
|
*/
|
|
379
393
|
set strokeThickness(value: number);
|
|
380
394
|
/**
|
|
381
|
-
*
|
|
382
|
-
* @returns {number}
|
|
395
|
+
* Gets the stroke thickness of this object.
|
|
396
|
+
* @returns {number} The stroke thickness.
|
|
383
397
|
*/
|
|
384
398
|
get strokeThickness(): number;
|
|
385
399
|
/**
|
|
386
|
-
*
|
|
400
|
+
* Sets the word wrap setting of this object.
|
|
401
|
+
* @param {boolean} value - The new word wrap setting to set.
|
|
387
402
|
*/
|
|
388
|
-
set wordWrap(value:
|
|
403
|
+
set wordWrap(value: boolean);
|
|
389
404
|
/**
|
|
390
|
-
*
|
|
391
|
-
* @returns {number}
|
|
405
|
+
* Gets the word wrap setting of this object.
|
|
406
|
+
* @returns {number} The word wrap setting.
|
|
392
407
|
*/
|
|
393
408
|
get wordWrap(): number;
|
|
394
409
|
/**
|
|
395
|
-
*
|
|
410
|
+
* Sets the word wrap width of this object.
|
|
411
|
+
* @param {number} value - The new word wrap width to set.
|
|
396
412
|
*/
|
|
397
413
|
set wordWrapWidth(value: number);
|
|
398
414
|
/**
|
|
399
|
-
*
|
|
400
|
-
* @returns {number}
|
|
415
|
+
* Gets the word wrap width of this object.
|
|
416
|
+
* @returns {number} The word wrap width.
|
|
401
417
|
*/
|
|
402
418
|
get wordWrapWidth(): number;
|
|
403
419
|
/**
|
|
404
|
-
*
|
|
420
|
+
* Sets the line spacing of this object.
|
|
421
|
+
* @param {number} value - The new line spacing to set.
|
|
405
422
|
*/
|
|
406
423
|
set lineSpacing(value: number);
|
|
407
424
|
/**
|
|
408
|
-
*
|
|
409
|
-
* @returns {number}
|
|
425
|
+
* Gets the line spacing of this object.
|
|
426
|
+
* @returns {number} The line spacing.
|
|
410
427
|
*/
|
|
411
428
|
get lineSpacing(): number;
|
|
412
429
|
/**
|
|
413
|
-
*
|
|
430
|
+
* Sets the shadow offset X of this object.
|
|
431
|
+
* @param {number} value - The new shadow offset X to set.
|
|
414
432
|
*/
|
|
415
433
|
set shadowOffsetX(value: number);
|
|
416
434
|
/**
|
|
417
|
-
*
|
|
418
|
-
* @returns {number}
|
|
435
|
+
* Gets the shadow offset X of this object.
|
|
436
|
+
* @returns {number} The shadow offset X.
|
|
419
437
|
*/
|
|
420
438
|
get shadowOffsetX(): number;
|
|
421
439
|
/**
|
|
422
|
-
*
|
|
440
|
+
* Sets the shadow offset Y of this object.
|
|
441
|
+
* @param {number} value - The new shadow offset Y to set.
|
|
423
442
|
*/
|
|
424
443
|
set shadowOffsetY(value: number);
|
|
425
444
|
/**
|
|
426
|
-
*
|
|
427
|
-
* @returns {number}
|
|
445
|
+
* Gets the shadow offset Y of this object.
|
|
446
|
+
* @returns {number} The shadow offset Y.
|
|
428
447
|
*/
|
|
429
448
|
get shadowOffsetY(): number;
|
|
430
449
|
/**
|
|
431
|
-
*
|
|
450
|
+
* Sets the shadow color of this object.
|
|
451
|
+
* @param {string} value - The new shadow color to set.
|
|
432
452
|
*/
|
|
433
|
-
set shadowColor(value:
|
|
453
|
+
set shadowColor(value: string);
|
|
434
454
|
/**
|
|
435
|
-
*
|
|
436
|
-
* @returns {number}
|
|
455
|
+
* Gets the shadow color of this object.
|
|
456
|
+
* @returns {number} The shadow color.
|
|
437
457
|
*/
|
|
438
458
|
get shadowColor(): number;
|
|
439
459
|
/**
|
|
440
|
-
*
|
|
460
|
+
* Sets the shadow blur of this object.
|
|
461
|
+
* @param {number} value - The new shadow blur to set.
|
|
441
462
|
*/
|
|
442
463
|
set shadowBlur(value: number);
|
|
443
464
|
/**
|
|
444
|
-
*
|
|
445
|
-
* @returns {number}
|
|
465
|
+
* Gets the shadow blur of this object.
|
|
466
|
+
* @returns {number} The shadow blur.
|
|
446
467
|
*/
|
|
447
468
|
get shadowBlur(): number;
|
|
448
469
|
/**
|
|
449
|
-
*
|
|
470
|
+
* Sets the shadow stroke setting of this object.
|
|
471
|
+
* @param {boolean} value - The new shadow stroke setting to set.
|
|
450
472
|
*/
|
|
451
|
-
set shadowStroke(value:
|
|
473
|
+
set shadowStroke(value: boolean);
|
|
452
474
|
/**
|
|
453
|
-
*
|
|
454
|
-
* @returns {number}
|
|
475
|
+
* Gets the shadow stroke setting of this object.
|
|
476
|
+
* @returns {number} The shadow stroke setting.
|
|
455
477
|
*/
|
|
456
478
|
get shadowStroke(): number;
|
|
457
479
|
/**
|
|
458
|
-
*
|
|
480
|
+
* Sets the shadow fill setting of this object.
|
|
481
|
+
* @param {boolean} value - The new shadow fill setting to set.
|
|
459
482
|
*/
|
|
460
|
-
set shadowFill(value:
|
|
483
|
+
set shadowFill(value: boolean);
|
|
461
484
|
/**
|
|
462
|
-
*
|
|
463
|
-
* @returns {number}
|
|
485
|
+
* Gets the shadow fill setting of this object.
|
|
486
|
+
* @returns {number} The shadow fill setting.
|
|
464
487
|
*/
|
|
465
488
|
get shadowFill(): number;
|
|
466
489
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"text.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/text.js"],"names":[],"mappings":"AASA;IACE;;;;;;;OAOG;IACH,kBANW,OAAO,iBAAiB,EAAE,IAAI,KAC9B,MAAM,KACN,MAAM,SACN,MAAM,UACN,MAAM,EAsChB;IA/BC,0BAA0B;IAC1B,kCAA0E;IAC1E,eAA0B;IAC1B,sBAAsB;IACtB,WAAiB;IACjB,uBAAuB;IACvB,QADW,MAAM,EAAE,CACH;IAChB,uBAAuB;IACvB,cADW,MAAM,EAAE,CACG;IACtB,uBAAuB;IACvB,YADW,MAAM,EAAE,CACC;IACpB,uBAAuB;IACvB,aADW,MAAM,EAAE,CACE;IACrB,mBAAsB;IACtB,yBAA4B;IAC5B,UAAoC;IACpC,cAA4B;IAC5B;cAsnBmB,MAAM;oBAAc,MAAM;sBAAgB,MAAM;qBAAe,MAAM;mBAAa,MAAM;qBAAe,MAAM;MAtnBrG;IAC3B,qBAAqB;IACrB,cADW,MAAM,CACI;IACrB,qBAAqB;IACrB,YADW,MAAM,CACE;IAgCrB;;;;;;;;;OASG;IACH,cARW,MAAM,MACN,MAAM,UACN,MAAM,SACN,MAAM,iBACN,OAAO,eACP,OAAO,GACL,IAAI,CAWhB;IAFC,eAAiB;IAInB;;;;;OAKG;IACH,iBAJW,MAAM,WACN,OAAO,GACL,IAAI,CA4ChB;IAED;;OAEG;IACH,mBA8JC;IAED;;;;;;OAMG;IACH,oBALW,MAAM,KACN,MAAM,KACN,MAAM,QACN,OAAO,QAgCjB;IAED;;;OAGG;IACH,oBAFW,MAAM,QAchB;IAED;;;;OAIG;IACH,kBAHW,MAAM,GACJ,MAAM,CAgClB;IAED;;;;;OAKG;IACH,iBAJW,MAAM,KACN,MAAM,KACN,MAAM,QAgChB;IAED;;;OAGG;IACH,eAFa,IAAI,CAOhB;IAED;;;OAGG;IACH,mBAFa,IAAI,CAOhB;IAED;;;;;OAKG;IACH,gBAJW,MAAM,YACN,MAAM,GACJ,IAAI,CAMhB;IAED;;;;;OAKG;IACH,sBAJW,MAAM,YACN,MAAM,GACJ,IAAI,CAMhB;IAED;;;;;OAKG;IACH,oBAJW,MAAM,YACN,MAAM,GACJ,IAAI,CAMhB;IAED;;;;;OAKG;IACH,sBAJW,MAAM,YACN,MAAM,GACJ,IAAI,CAMhB;IAED;;;;OAIG;IACH,2BAHW,MAAM,GACJ,MAAM,EAAE,CAOpB;IAED;;;;OAIG;IACH,kBAHW,MAAM,GACJ,MAAM,CAOlB;IAED;;;;;OAKG;IACH,uBAJW,MAAM,GACJ,MAAM,CA8ElB;IAED;;;;OAIG;IACH,oBAHW,MAAM,GACJ,MAAM,CA4BlB;IAED;;;OAGG;IACH,uBAFW,MAAM,QAWhB;IAED;;;;OAIG;IACH,uBAHW,MAAM,GACJ;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,CA+BnI;IAED;;;;OAIG;IACH,6BAHW,MAAM,GACJ,MAAM,CA8BlB;IAED;;;;;OAKG;IACH,cAJW,MAAM,cACN,OAAO,GACL,IAAI,CAUhB;IA2RD;;;OAGG;IACH,gBAFW,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,EAU1C;IApBD;;;OAGG;IACH,YAFa,MAAM,CAIlB;IAvRD;;;;OAIG;IACH,gBAHW,MAAM,EAAE,GAAC,MAAM,EAAE,EAAE,GACjB,IAAI,CAuBhB;IAED;;;;;;;OAOG;IACH,iBANW,MAAM,KACN,MAAM,SACN,MAAM,UACN,MAAM,GACJ,IAAI,CAiBhB;IAED;;OAEG;IACH,sBAqCC;IAED;;;OAGG;IACH,2BAFW,MAAM,QAQhB;IAED;;;OAGG;IACH,4BAFW,MAAM,QAQhB;IAED;;;OAGG;IACH,0BAFa;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,MAAM,CAAA;SAAC,CAAA;KAAC,CAOhF;IAED;;;OAGG;IACH,2BAFa,iBAAiB,CAO7B;IAED;;;OAGG;IACH,4BAFa,wBAAwB,CASpC;IAED;;;;OAIG;IACH,8BAHW,MAAM,GACJ,MAAM,CAoBlB;IAED;;;;OAIG;IACH,2CAHW,MAAM,GACJ;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAC,CA4E/D;IA6CD
|
|
1
|
+
{"version":3,"file":"text.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/text.js"],"names":[],"mappings":"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"}
|