@vpmedia/phaser 1.102.0 → 1.103.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/dist/index.d.ts +38 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +20112 -0
- package/dist/index.js.map +1 -0
- package/{types → dist}/phaser/core/animation.d.ts +41 -83
- package/dist/phaser/core/animation.d.ts.map +1 -0
- package/{types → dist}/phaser/core/animation_manager.d.ts +37 -55
- package/dist/phaser/core/animation_manager.d.ts.map +1 -0
- package/dist/phaser/core/animation_parser.d.ts +21 -0
- package/dist/phaser/core/animation_parser.d.ts.map +1 -0
- package/{types → dist}/phaser/core/array_set.d.ts +13 -13
- package/dist/phaser/core/array_set.d.ts.map +1 -0
- package/{types → dist}/phaser/core/cache.d.ts +78 -91
- package/dist/phaser/core/cache.d.ts.map +1 -0
- package/dist/phaser/core/const.d.ts +262 -0
- package/dist/phaser/core/const.d.ts.map +1 -0
- package/dist/phaser/core/device.d.ts +8 -0
- package/dist/phaser/core/device.d.ts.map +1 -0
- package/dist/phaser/core/device_util.d.ts +65 -0
- package/dist/phaser/core/device_util.d.ts.map +1 -0
- package/dist/phaser/core/dom.d.ts +75 -0
- package/dist/phaser/core/dom.d.ts.map +1 -0
- package/dist/phaser/core/error_code.d.ts +9 -0
- package/dist/phaser/core/error_code.d.ts.map +1 -0
- package/{types → dist}/phaser/core/event_manager.d.ts +17 -35
- package/dist/phaser/core/event_manager.d.ts.map +1 -0
- package/{types → dist}/phaser/core/factory.d.ts +9 -15
- package/dist/phaser/core/factory.d.ts.map +1 -0
- package/{types → dist}/phaser/core/frame.d.ts +7 -28
- package/dist/phaser/core/frame.d.ts.map +1 -0
- package/{types → dist}/phaser/core/frame_data.d.ts +12 -15
- package/dist/phaser/core/frame_data.d.ts.map +1 -0
- package/dist/phaser/core/frame_util.d.ts +15 -0
- package/dist/phaser/core/frame_util.d.ts.map +1 -0
- package/{types → dist}/phaser/core/game.d.ts +7 -74
- package/dist/phaser/core/game.d.ts.map +1 -0
- package/dist/phaser/core/input.d.ts +160 -0
- package/dist/phaser/core/input.d.ts.map +1 -0
- package/{types → dist}/phaser/core/input_handler.d.ts +32 -93
- package/dist/phaser/core/input_handler.d.ts.map +1 -0
- package/dist/phaser/core/input_mouse.d.ts +61 -0
- package/dist/phaser/core/input_mouse.d.ts.map +1 -0
- package/dist/phaser/core/input_mspointer.d.ts +51 -0
- package/dist/phaser/core/input_mspointer.d.ts.map +1 -0
- package/dist/phaser/core/input_pointer.d.ts +106 -0
- package/dist/phaser/core/input_pointer.d.ts.map +1 -0
- package/dist/phaser/core/input_touch.d.ts +55 -0
- package/dist/phaser/core/input_touch.d.ts.map +1 -0
- package/{types → dist}/phaser/core/loader.d.ts +39 -78
- package/dist/phaser/core/loader.d.ts.map +1 -0
- package/dist/phaser/core/loader_parser.d.ts +35 -0
- package/dist/phaser/core/loader_parser.d.ts.map +1 -0
- package/{types → dist}/phaser/core/raf.d.ts +5 -5
- package/dist/phaser/core/raf.d.ts.map +1 -0
- package/{types → dist}/phaser/core/scale_manager.d.ts +41 -124
- package/dist/phaser/core/scale_manager.d.ts.map +1 -0
- package/{types → dist}/phaser/core/scene.d.ts +6 -4
- package/dist/phaser/core/scene.d.ts.map +1 -0
- package/{types → dist}/phaser/core/scene_manager.d.ts +12 -29
- package/dist/phaser/core/scene_manager.d.ts.map +1 -0
- package/{types → dist}/phaser/core/signal.d.ts +21 -17
- package/dist/phaser/core/signal.d.ts.map +1 -0
- package/{types → dist}/phaser/core/signal_binding.d.ts +15 -15
- package/dist/phaser/core/signal_binding.d.ts.map +1 -0
- package/{types → dist}/phaser/core/sound.d.ts +22 -75
- package/dist/phaser/core/sound.d.ts.map +1 -0
- package/{types → dist}/phaser/core/sound_manager.d.ts +20 -43
- package/dist/phaser/core/sound_manager.d.ts.map +1 -0
- package/dist/phaser/core/sound_sprite.d.ts +27 -0
- package/dist/phaser/core/sound_sprite.d.ts.map +1 -0
- package/{types → dist}/phaser/core/stage.d.ts +29 -17
- package/dist/phaser/core/stage.d.ts.map +1 -0
- package/{types → dist}/phaser/core/time.d.ts +12 -64
- package/dist/phaser/core/time.d.ts.map +1 -0
- package/{types → dist}/phaser/core/timer.d.ts +14 -54
- package/dist/phaser/core/timer.d.ts.map +1 -0
- package/{types → dist}/phaser/core/timer_event.d.ts +2 -11
- package/dist/phaser/core/timer_event.d.ts.map +1 -0
- package/{types → dist}/phaser/core/tween.d.ts +21 -62
- package/dist/phaser/core/tween.d.ts.map +1 -0
- package/{types → dist}/phaser/core/tween_data.d.ts +9 -35
- package/dist/phaser/core/tween_data.d.ts.map +1 -0
- package/dist/phaser/core/tween_easing.d.ts +187 -0
- package/dist/phaser/core/tween_easing.d.ts.map +1 -0
- package/{types → dist}/phaser/core/tween_manager.d.ts +9 -18
- package/dist/phaser/core/tween_manager.d.ts.map +1 -0
- package/{types → dist}/phaser/core/world.d.ts +3 -3
- package/dist/phaser/core/world.d.ts.map +1 -0
- package/{types → dist}/phaser/display/bitmap_text.d.ts +52 -71
- package/dist/phaser/display/bitmap_text.d.ts.map +1 -0
- package/{types → dist}/phaser/display/button.d.ts +25 -37
- package/dist/phaser/display/button.d.ts.map +1 -0
- package/{types → dist}/phaser/display/canvas/buffer.d.ts +3 -7
- package/dist/phaser/display/canvas/buffer.d.ts.map +1 -0
- package/dist/phaser/display/canvas/graphics.d.ts +18 -0
- package/dist/phaser/display/canvas/graphics.d.ts.map +1 -0
- package/dist/phaser/display/canvas/masker.d.ts +12 -0
- package/dist/phaser/display/canvas/masker.d.ts.map +1 -0
- package/dist/phaser/display/canvas/pool.d.ts +40 -0
- package/dist/phaser/display/canvas/pool.d.ts.map +1 -0
- package/{types → dist}/phaser/display/canvas/renderer.d.ts +6 -28
- package/dist/phaser/display/canvas/renderer.d.ts.map +1 -0
- package/dist/phaser/display/canvas/tinter.d.ts +41 -0
- package/dist/phaser/display/canvas/tinter.d.ts.map +1 -0
- package/dist/phaser/display/canvas/util.d.ts +70 -0
- package/dist/phaser/display/canvas/util.d.ts.map +1 -0
- package/{types → dist}/phaser/display/display_object.d.ts +63 -124
- package/dist/phaser/display/display_object.d.ts.map +1 -0
- package/{types → dist}/phaser/display/graphics.d.ts +59 -65
- package/dist/phaser/display/graphics.d.ts.map +1 -0
- package/{types → dist}/phaser/display/graphics_data.d.ts +2 -12
- package/dist/phaser/display/graphics_data.d.ts.map +1 -0
- package/dist/phaser/display/graphics_data_util.d.ts +8 -0
- package/dist/phaser/display/graphics_data_util.d.ts.map +1 -0
- package/{types → dist}/phaser/display/group.d.ts +27 -45
- package/dist/phaser/display/group.d.ts.map +1 -0
- package/{types → dist}/phaser/display/image.d.ts +54 -53
- package/dist/phaser/display/image.d.ts.map +1 -0
- package/dist/phaser/display/sprite_batch.d.ts +9 -0
- package/dist/phaser/display/sprite_batch.d.ts.map +1 -0
- package/dist/phaser/display/sprite_util.d.ts +35 -0
- package/dist/phaser/display/sprite_util.d.ts.map +1 -0
- package/{types → dist}/phaser/display/text.d.ts +176 -181
- package/dist/phaser/display/text.d.ts.map +1 -0
- package/{types → dist}/phaser/display/webgl/abstract_filter.d.ts +2 -8
- package/dist/phaser/display/webgl/abstract_filter.d.ts.map +1 -0
- package/{types → dist}/phaser/display/webgl/base_texture.d.ts +3 -15
- package/dist/phaser/display/webgl/base_texture.d.ts.map +1 -0
- package/{types → dist}/phaser/display/webgl/blend_manager.d.ts +7 -5
- package/dist/phaser/display/webgl/blend_manager.d.ts.map +1 -0
- package/{types → dist}/phaser/display/webgl/earcut.d.ts +28 -27
- package/dist/phaser/display/webgl/earcut.d.ts.map +1 -0
- package/{types → dist}/phaser/display/webgl/earcut_node.d.ts +11 -11
- package/dist/phaser/display/webgl/earcut_node.d.ts.map +1 -0
- package/{types → dist}/phaser/display/webgl/fast_sprite_batch.d.ts +6 -28
- package/dist/phaser/display/webgl/fast_sprite_batch.d.ts.map +1 -0
- package/{types → dist}/phaser/display/webgl/filter_manager.d.ts +6 -7
- package/dist/phaser/display/webgl/filter_manager.d.ts.map +1 -0
- package/{types → dist}/phaser/display/webgl/filter_texture.d.ts +3 -9
- package/dist/phaser/display/webgl/filter_texture.d.ts.map +1 -0
- package/dist/phaser/display/webgl/graphics.d.ts +78 -0
- package/dist/phaser/display/webgl/graphics.d.ts.map +1 -0
- package/dist/phaser/display/webgl/graphics_data.d.ts +16 -0
- package/dist/phaser/display/webgl/graphics_data.d.ts.map +1 -0
- package/dist/phaser/display/webgl/mask_manager.d.ts +13 -0
- package/dist/phaser/display/webgl/mask_manager.d.ts.map +1 -0
- package/{types → dist}/phaser/display/webgl/render_texture.d.ts +5 -13
- package/dist/phaser/display/webgl/render_texture.d.ts.map +1 -0
- package/dist/phaser/display/webgl/renderer.d.ts +51 -0
- package/dist/phaser/display/webgl/renderer.d.ts.map +1 -0
- package/dist/phaser/display/webgl/shader/complex.d.ts +16 -0
- package/dist/phaser/display/webgl/shader/complex.d.ts.map +1 -0
- package/dist/phaser/display/webgl/shader/fast.d.ts +16 -0
- package/dist/phaser/display/webgl/shader/fast.d.ts.map +1 -0
- package/dist/phaser/display/webgl/shader/normal.d.ts +29 -0
- package/dist/phaser/display/webgl/shader/normal.d.ts.map +1 -0
- package/dist/phaser/display/webgl/shader/primitive.d.ts +16 -0
- package/dist/phaser/display/webgl/shader/primitive.d.ts.map +1 -0
- package/dist/phaser/display/webgl/shader/strip.d.ts +16 -0
- package/dist/phaser/display/webgl/shader/strip.d.ts.map +1 -0
- package/dist/phaser/display/webgl/shader_manager.d.ts +27 -0
- package/dist/phaser/display/webgl/shader_manager.d.ts.map +1 -0
- package/{types → dist}/phaser/display/webgl/sprite_batch.d.ts +9 -32
- package/dist/phaser/display/webgl/sprite_batch.d.ts.map +1 -0
- package/{types → dist}/phaser/display/webgl/stencil_manager.d.ts +9 -9
- package/dist/phaser/display/webgl/stencil_manager.d.ts.map +1 -0
- package/dist/phaser/display/webgl/texture.d.ts +36 -0
- package/dist/phaser/display/webgl/texture.d.ts.map +1 -0
- package/dist/phaser/display/webgl/texture_util.d.ts +17 -0
- package/dist/phaser/display/webgl/texture_util.d.ts.map +1 -0
- package/dist/phaser/display/webgl/util.d.ts +54 -0
- package/dist/phaser/display/webgl/util.d.ts.map +1 -0
- package/{types → dist}/phaser/geom/circle.d.ts +35 -41
- package/dist/phaser/geom/circle.d.ts.map +1 -0
- package/{types → dist}/phaser/geom/ellipse.d.ts +12 -18
- package/dist/phaser/geom/ellipse.d.ts.map +1 -0
- package/{types → dist}/phaser/geom/line.d.ts +20 -23
- package/dist/phaser/geom/line.d.ts.map +1 -0
- package/{types → dist}/phaser/geom/matrix.d.ts +21 -29
- package/dist/phaser/geom/matrix.d.ts.map +1 -0
- package/{types → dist}/phaser/geom/point.d.ts +30 -33
- package/dist/phaser/geom/point.d.ts.map +1 -0
- package/{types → dist}/phaser/geom/polygon.d.ts +18 -24
- package/dist/phaser/geom/polygon.d.ts.map +1 -0
- package/{types → dist}/phaser/geom/rectangle.d.ts +74 -79
- package/dist/phaser/geom/rectangle.d.ts.map +1 -0
- package/{types → dist}/phaser/geom/rounded_rectangle.d.ts +9 -9
- package/dist/phaser/geom/rounded_rectangle.d.ts.map +1 -0
- package/dist/phaser/geom/util/circle.d.ts +55 -0
- package/dist/phaser/geom/util/circle.d.ts.map +1 -0
- package/dist/phaser/geom/util/ellipse.d.ts +9 -0
- package/dist/phaser/geom/util/ellipse.d.ts.map +1 -0
- package/dist/phaser/geom/util/line.d.ts +42 -0
- package/dist/phaser/geom/util/line.d.ts.map +1 -0
- package/dist/phaser/geom/util/matrix.d.ts +18 -0
- package/dist/phaser/geom/util/matrix.d.ts.map +1 -0
- package/dist/phaser/geom/util/point.d.ts +159 -0
- package/dist/phaser/geom/util/point.d.ts.map +1 -0
- package/dist/phaser/geom/util/polygon.d.ts +8 -0
- package/dist/phaser/geom/util/polygon.d.ts.map +1 -0
- package/dist/phaser/geom/util/rectangle.d.ts +123 -0
- package/dist/phaser/geom/util/rectangle.d.ts.map +1 -0
- package/dist/phaser/geom/util/rounded_rectangle.d.ts +8 -0
- package/dist/phaser/geom/util/rounded_rectangle.d.ts.map +1 -0
- package/dist/phaser/util/math.d.ts +154 -0
- package/dist/phaser/util/math.d.ts.map +1 -0
- package/package.json +25 -11
- package/src/phaser/core/{animation.js → animation.ts} +2 -1
- package/src/phaser/core/{animation_manager.js → animation_manager.ts} +2 -1
- package/src/phaser/core/{array_set.js → array_set.ts} +4 -1
- package/src/phaser/core/{cache.js → cache.ts} +2 -1
- package/src/phaser/core/{device.js → device.ts} +2 -1
- package/src/phaser/core/{dom.js → dom.ts} +7 -0
- package/src/phaser/core/{event_manager.js → event_manager.ts} +2 -1
- package/src/phaser/core/{factory.js → factory.ts} +1 -0
- package/src/phaser/core/{frame.js → frame.ts} +2 -1
- package/src/phaser/core/{frame_data.js → frame_data.ts} +2 -1
- package/src/phaser/core/{frame_util.js → frame_util.ts} +2 -1
- package/src/phaser/core/{game.js → game.ts} +1 -0
- package/src/phaser/core/{input.js → input.ts} +1 -0
- package/src/phaser/core/{input_handler.js → input_handler.ts} +1 -0
- package/src/phaser/core/{input_mouse.js → input_mouse.ts} +1 -0
- package/src/phaser/core/{input_mspointer.js → input_mspointer.ts} +1 -0
- package/src/phaser/core/{input_pointer.js → input_pointer.ts} +1 -0
- package/src/phaser/core/{input_touch.js → input_touch.ts} +1 -0
- package/src/phaser/core/{loader.js → loader.ts} +2 -1
- package/src/phaser/core/{loader_parser.js → loader_parser.ts} +2 -1
- package/src/phaser/core/{raf.js → raf.ts} +3 -0
- package/src/phaser/core/{scale_manager.js → scale_manager.ts} +1 -0
- package/src/phaser/core/{scene.js → scene.ts} +1 -0
- package/src/phaser/core/{scene_manager.js → scene_manager.ts} +1 -0
- package/src/phaser/core/{signal.js → signal.ts} +7 -0
- package/src/phaser/core/{signal_binding.js → signal_binding.ts} +10 -0
- package/src/phaser/core/{sound.js → sound.ts} +2 -1
- package/src/phaser/core/{sound_manager.js → sound_manager.ts} +2 -1
- package/src/phaser/core/{sound_sprite.js → sound_sprite.ts} +2 -1
- package/src/phaser/core/{stage.js → stage.ts} +1 -0
- package/src/phaser/core/{time.js → time.ts} +2 -1
- package/src/phaser/core/{timer.js → timer.ts} +2 -1
- package/src/phaser/core/{timer_event.js → timer_event.ts} +2 -1
- package/src/phaser/core/{tween.js → tween.ts} +2 -1
- package/src/phaser/core/{tween_data.js → tween_data.ts} +2 -1
- package/src/phaser/core/{tween_manager.js → tween_manager.ts} +2 -1
- package/src/phaser/core/{world.js → world.ts} +1 -0
- package/src/phaser/display/{bitmap_text.js → bitmap_text.ts} +1 -0
- package/src/phaser/display/{button.js → button.ts} +1 -0
- package/src/phaser/display/canvas/{buffer.js → buffer.ts} +1 -0
- package/src/phaser/display/canvas/{graphics.js → graphics.ts} +1 -0
- package/src/phaser/display/canvas/{masker.js → masker.ts} +1 -0
- package/src/phaser/display/canvas/{pool.js → pool.ts} +1 -0
- package/src/phaser/display/canvas/{renderer.js → renderer.ts} +1 -0
- package/src/phaser/display/canvas/{tinter.js → tinter.ts} +1 -0
- package/src/phaser/display/{display_object.js → display_object.ts} +1 -0
- package/src/phaser/display/{graphics.js → graphics.ts} +1 -0
- package/src/phaser/display/{graphics_data.js → graphics_data.ts} +1 -0
- package/src/phaser/display/{graphics_data_util.js → graphics_data_util.ts} +1 -0
- package/src/phaser/display/{group.js → group.ts} +1 -0
- package/src/phaser/display/{image.js → image.ts} +1 -0
- package/src/phaser/display/{sprite_batch.js → sprite_batch.ts} +1 -0
- package/src/phaser/display/{sprite_util.js → sprite_util.ts} +1 -0
- package/src/phaser/display/{text.js → text.ts} +1 -0
- package/src/phaser/display/webgl/{abstract_filter.js → abstract_filter.ts} +1 -0
- package/src/phaser/display/webgl/{base_texture.js → base_texture.ts} +1 -0
- package/src/phaser/display/webgl/{blend_manager.js → blend_manager.ts} +1 -0
- package/src/phaser/display/webgl/{earcut.js → earcut.ts} +2 -2
- package/src/phaser/display/webgl/{earcut_node.js → earcut_node.ts} +10 -0
- package/src/phaser/display/webgl/{fast_sprite_batch.js → fast_sprite_batch.ts} +1 -0
- package/src/phaser/display/webgl/{filter_manager.js → filter_manager.ts} +1 -0
- package/src/phaser/display/webgl/{filter_texture.js → filter_texture.ts} +1 -0
- package/src/phaser/display/webgl/{graphics.js → graphics.ts} +1 -0
- package/src/phaser/display/webgl/{graphics_data.js → graphics_data.ts} +1 -0
- package/src/phaser/display/webgl/{mask_manager.js → mask_manager.ts} +1 -0
- package/src/phaser/display/webgl/{render_texture.js → render_texture.ts} +1 -0
- package/src/phaser/display/webgl/{renderer.js → renderer.ts} +1 -0
- package/src/phaser/display/webgl/shader/{complex.js → complex.ts} +1 -0
- package/src/phaser/display/webgl/shader/{fast.js → fast.ts} +1 -0
- package/src/phaser/display/webgl/shader/{normal.js → normal.ts} +1 -0
- package/src/phaser/display/webgl/shader/{primitive.js → primitive.ts} +1 -0
- package/src/phaser/display/webgl/shader/{strip.js → strip.ts} +1 -0
- package/src/phaser/display/webgl/{shader_manager.js → shader_manager.ts} +1 -0
- package/src/phaser/display/webgl/{sprite_batch.js → sprite_batch.ts} +1 -0
- package/src/phaser/display/webgl/{stencil_manager.js → stencil_manager.ts} +1 -0
- package/src/phaser/display/webgl/{texture.js → texture.ts} +1 -0
- package/src/phaser/display/webgl/{texture_util.js → texture_util.ts} +1 -0
- package/src/phaser/geom/{circle.js → circle.ts} +7 -1
- package/src/phaser/geom/{ellipse.js → ellipse.ts} +6 -0
- package/src/phaser/geom/{line.js → line.ts} +4 -0
- package/src/phaser/geom/{matrix.js → matrix.ts} +8 -0
- package/src/phaser/geom/{point.js → point.ts} +5 -1
- package/src/phaser/geom/{polygon.js → polygon.ts} +6 -0
- package/src/phaser/geom/{rectangle.js → rectangle.ts} +10 -4
- package/src/phaser/geom/{rounded_rectangle.js → rounded_rectangle.ts} +7 -0
- package/.vscode/extensions.json +0 -6
- package/.vscode/settings.json +0 -27
- package/AGENTS.md +0 -1
- package/CHANGELOG.md +0 -336
- package/CLAUDE.md +0 -1
- package/SECURITY.md +0 -5
- package/typedefs/global.d.ts +0 -7
- package/types/index.d.ts +0 -38
- package/types/index.d.ts.map +0 -1
- package/types/phaser/core/animation.d.ts.map +0 -1
- package/types/phaser/core/animation_manager.d.ts.map +0 -1
- package/types/phaser/core/animation_parser.d.ts +0 -4
- package/types/phaser/core/animation_parser.d.ts.map +0 -1
- package/types/phaser/core/array_set.d.ts.map +0 -1
- package/types/phaser/core/cache.d.ts.map +0 -1
- package/types/phaser/core/const.d.ts +0 -262
- package/types/phaser/core/const.d.ts.map +0 -1
- package/types/phaser/core/device.d.ts +0 -96
- package/types/phaser/core/device.d.ts.map +0 -1
- package/types/phaser/core/device_util.d.ts +0 -13
- package/types/phaser/core/device_util.d.ts.map +0 -1
- package/types/phaser/core/dom.d.ts +0 -180
- package/types/phaser/core/dom.d.ts.map +0 -1
- package/types/phaser/core/error_code.d.ts +0 -9
- package/types/phaser/core/error_code.d.ts.map +0 -1
- package/types/phaser/core/event_manager.d.ts.map +0 -1
- package/types/phaser/core/factory.d.ts.map +0 -1
- package/types/phaser/core/frame.d.ts.map +0 -1
- package/types/phaser/core/frame_data.d.ts.map +0 -1
- package/types/phaser/core/frame_util.d.ts +0 -5
- package/types/phaser/core/frame_util.d.ts.map +0 -1
- package/types/phaser/core/game.d.ts.map +0 -1
- package/types/phaser/core/input.d.ts +0 -219
- package/types/phaser/core/input.d.ts.map +0 -1
- package/types/phaser/core/input_handler.d.ts.map +0 -1
- package/types/phaser/core/input_mouse.d.ts +0 -86
- package/types/phaser/core/input_mouse.d.ts.map +0 -1
- package/types/phaser/core/input_mspointer.d.ts +0 -67
- package/types/phaser/core/input_mspointer.d.ts.map +0 -1
- package/types/phaser/core/input_pointer.d.ts +0 -170
- package/types/phaser/core/input_pointer.d.ts.map +0 -1
- package/types/phaser/core/input_touch.d.ts +0 -73
- package/types/phaser/core/input_touch.d.ts.map +0 -1
- package/types/phaser/core/loader.d.ts.map +0 -1
- package/types/phaser/core/loader_parser.d.ts +0 -5
- package/types/phaser/core/loader_parser.d.ts.map +0 -1
- package/types/phaser/core/raf.d.ts.map +0 -1
- package/types/phaser/core/scale_manager.d.ts.map +0 -1
- package/types/phaser/core/scene.d.ts.map +0 -1
- package/types/phaser/core/scene_manager.d.ts.map +0 -1
- package/types/phaser/core/signal.d.ts.map +0 -1
- package/types/phaser/core/signal_binding.d.ts.map +0 -1
- package/types/phaser/core/sound.d.ts.map +0 -1
- package/types/phaser/core/sound_manager.d.ts.map +0 -1
- package/types/phaser/core/sound_sprite.d.ts +0 -36
- package/types/phaser/core/sound_sprite.d.ts.map +0 -1
- package/types/phaser/core/stage.d.ts.map +0 -1
- package/types/phaser/core/time.d.ts.map +0 -1
- package/types/phaser/core/timer.d.ts.map +0 -1
- package/types/phaser/core/timer_event.d.ts.map +0 -1
- package/types/phaser/core/tween.d.ts.map +0 -1
- package/types/phaser/core/tween_data.d.ts.map +0 -1
- package/types/phaser/core/tween_easing.d.ts +0 -32
- package/types/phaser/core/tween_easing.d.ts.map +0 -1
- package/types/phaser/core/tween_manager.d.ts.map +0 -1
- package/types/phaser/core/world.d.ts.map +0 -1
- package/types/phaser/display/bitmap_text.d.ts.map +0 -1
- package/types/phaser/display/button.d.ts.map +0 -1
- package/types/phaser/display/canvas/buffer.d.ts.map +0 -1
- package/types/phaser/display/canvas/graphics.d.ts +0 -4
- package/types/phaser/display/canvas/graphics.d.ts.map +0 -1
- package/types/phaser/display/canvas/masker.d.ts +0 -3
- package/types/phaser/display/canvas/masker.d.ts.map +0 -1
- package/types/phaser/display/canvas/pool.d.ts +0 -11
- package/types/phaser/display/canvas/pool.d.ts.map +0 -1
- package/types/phaser/display/canvas/renderer.d.ts.map +0 -1
- package/types/phaser/display/canvas/tinter.d.ts +0 -7
- package/types/phaser/display/canvas/tinter.d.ts.map +0 -1
- package/types/phaser/display/canvas/util.d.ts +0 -10
- package/types/phaser/display/canvas/util.d.ts.map +0 -1
- package/types/phaser/display/display_object.d.ts.map +0 -1
- package/types/phaser/display/graphics.d.ts.map +0 -1
- package/types/phaser/display/graphics_data.d.ts.map +0 -1
- package/types/phaser/display/graphics_data_util.d.ts +0 -3
- package/types/phaser/display/graphics_data_util.d.ts.map +0 -1
- package/types/phaser/display/group.d.ts.map +0 -1
- package/types/phaser/display/image.d.ts.map +0 -1
- package/types/phaser/display/sprite_batch.d.ts +0 -4
- package/types/phaser/display/sprite_batch.d.ts.map +0 -1
- package/types/phaser/display/sprite_util.d.ts +0 -6
- package/types/phaser/display/sprite_util.d.ts.map +0 -1
- package/types/phaser/display/text.d.ts.map +0 -1
- package/types/phaser/display/webgl/abstract_filter.d.ts.map +0 -1
- package/types/phaser/display/webgl/base_texture.d.ts.map +0 -1
- package/types/phaser/display/webgl/blend_manager.d.ts.map +0 -1
- package/types/phaser/display/webgl/earcut.d.ts.map +0 -1
- package/types/phaser/display/webgl/earcut_node.d.ts.map +0 -1
- package/types/phaser/display/webgl/fast_sprite_batch.d.ts.map +0 -1
- package/types/phaser/display/webgl/filter_manager.d.ts.map +0 -1
- package/types/phaser/display/webgl/filter_texture.d.ts.map +0 -1
- package/types/phaser/display/webgl/graphics.d.ts +0 -16
- package/types/phaser/display/webgl/graphics.d.ts.map +0 -1
- package/types/phaser/display/webgl/graphics_data.d.ts +0 -27
- package/types/phaser/display/webgl/graphics_data.d.ts.map +0 -1
- package/types/phaser/display/webgl/mask_manager.d.ts +0 -3
- package/types/phaser/display/webgl/mask_manager.d.ts.map +0 -1
- package/types/phaser/display/webgl/render_texture.d.ts.map +0 -1
- package/types/phaser/display/webgl/renderer.d.ts +0 -87
- package/types/phaser/display/webgl/renderer.d.ts.map +0 -1
- package/types/phaser/display/webgl/shader/complex.d.ts +0 -33
- package/types/phaser/display/webgl/shader/complex.d.ts.map +0 -1
- package/types/phaser/display/webgl/shader/fast.d.ts +0 -36
- package/types/phaser/display/webgl/shader/fast.d.ts.map +0 -1
- package/types/phaser/display/webgl/shader/normal.d.ts +0 -52
- package/types/phaser/display/webgl/shader/normal.d.ts.map +0 -1
- package/types/phaser/display/webgl/shader/primitive.d.ts +0 -32
- package/types/phaser/display/webgl/shader/primitive.d.ts.map +0 -1
- package/types/phaser/display/webgl/shader/strip.d.ts +0 -33
- package/types/phaser/display/webgl/shader/strip.d.ts.map +0 -1
- package/types/phaser/display/webgl/shader_manager.d.ts +0 -44
- package/types/phaser/display/webgl/shader_manager.d.ts.map +0 -1
- package/types/phaser/display/webgl/sprite_batch.d.ts.map +0 -1
- package/types/phaser/display/webgl/stencil_manager.d.ts.map +0 -1
- package/types/phaser/display/webgl/texture.d.ts +0 -63
- package/types/phaser/display/webgl/texture.d.ts.map +0 -1
- package/types/phaser/display/webgl/texture_util.d.ts +0 -5
- package/types/phaser/display/webgl/texture_util.d.ts.map +0 -1
- package/types/phaser/display/webgl/util.d.ts +0 -15
- package/types/phaser/display/webgl/util.d.ts.map +0 -1
- package/types/phaser/geom/circle.d.ts.map +0 -1
- package/types/phaser/geom/ellipse.d.ts.map +0 -1
- package/types/phaser/geom/line.d.ts.map +0 -1
- package/types/phaser/geom/matrix.d.ts.map +0 -1
- package/types/phaser/geom/point.d.ts.map +0 -1
- package/types/phaser/geom/polygon.d.ts.map +0 -1
- package/types/phaser/geom/rectangle.d.ts.map +0 -1
- package/types/phaser/geom/rounded_rectangle.d.ts.map +0 -1
- package/types/phaser/geom/util/circle.d.ts +0 -10
- package/types/phaser/geom/util/circle.d.ts.map +0 -1
- package/types/phaser/geom/util/ellipse.d.ts +0 -2
- package/types/phaser/geom/util/ellipse.d.ts.map +0 -1
- package/types/phaser/geom/util/line.d.ts +0 -8
- package/types/phaser/geom/util/line.d.ts.map +0 -1
- package/types/phaser/geom/util/matrix.d.ts +0 -5
- package/types/phaser/geom/util/matrix.d.ts.map +0 -1
- package/types/phaser/geom/util/point.d.ts +0 -22
- package/types/phaser/geom/util/point.d.ts.map +0 -1
- package/types/phaser/geom/util/polygon.d.ts +0 -3
- package/types/phaser/geom/util/polygon.d.ts.map +0 -1
- package/types/phaser/geom/util/rectangle.d.ts +0 -19
- package/types/phaser/geom/util/rectangle.d.ts.map +0 -1
- package/types/phaser/geom/util/rounded_rectangle.d.ts +0 -3
- package/types/phaser/geom/util/rounded_rectangle.d.ts.map +0 -1
- package/types/phaser/util/math.d.ts +0 -58
- package/types/phaser/util/math.d.ts.map +0 -1
- /package/src/{index.js → index.ts} +0 -0
- /package/src/phaser/core/{animation_parser.js → animation_parser.ts} +0 -0
- /package/src/phaser/core/{const.js → const.ts} +0 -0
- /package/src/phaser/core/{device_util.js → device_util.ts} +0 -0
- /package/src/phaser/core/{error_code.js → error_code.ts} +0 -0
- /package/src/phaser/core/{signal.test.js → signal.test.ts} +0 -0
- /package/src/phaser/core/{tween_easing.js → tween_easing.ts} +0 -0
- /package/src/phaser/display/canvas/{util.js → util.ts} +0 -0
- /package/src/phaser/display/webgl/{util.js → util.ts} +0 -0
- /package/src/phaser/geom/{circle.test.js → circle.test.ts} +0 -0
- /package/src/phaser/geom/{ellipse.test.js → ellipse.test.ts} +0 -0
- /package/src/phaser/geom/{line.test.js → line.test.ts} +0 -0
- /package/src/phaser/geom/{matrix.test.js → matrix.test.ts} +0 -0
- /package/src/phaser/geom/{point.test.js → point.test.ts} +0 -0
- /package/src/phaser/geom/{rectangle.test.js → rectangle.test.ts} +0 -0
- /package/src/phaser/geom/{rounded_rectangle.test.js → rounded_rectangle.test.ts} +0 -0
- /package/src/phaser/geom/util/{circle.test.js → circle.test.ts} +0 -0
- /package/src/phaser/geom/util/{circle.js → circle.ts} +0 -0
- /package/src/phaser/geom/util/{ellipse.test.js → ellipse.test.ts} +0 -0
- /package/src/phaser/geom/util/{ellipse.js → ellipse.ts} +0 -0
- /package/src/phaser/geom/util/{line.test.js → line.test.ts} +0 -0
- /package/src/phaser/geom/util/{line.js → line.ts} +0 -0
- /package/src/phaser/geom/util/{matrix.test.js → matrix.test.ts} +0 -0
- /package/src/phaser/geom/util/{matrix.js → matrix.ts} +0 -0
- /package/src/phaser/geom/util/{point.test.js → point.test.ts} +0 -0
- /package/src/phaser/geom/util/{point.js → point.ts} +0 -0
- /package/src/phaser/geom/util/{polygon.test.js → polygon.test.ts} +0 -0
- /package/src/phaser/geom/util/{polygon.js → polygon.ts} +0 -0
- /package/src/phaser/geom/util/{rectangle.test.js → rectangle.test.ts} +0 -0
- /package/src/phaser/geom/util/{rectangle.js → rectangle.ts} +0 -0
- /package/src/phaser/geom/util/{rounded_rectangle.test.js → rounded_rectangle.test.ts} +0 -0
- /package/src/phaser/geom/util/{rounded_rectangle.js → rounded_rectangle.ts} +0 -0
- /package/src/phaser/util/{math.test.js → math.test.ts} +0 -0
- /package/src/phaser/util/{math.js → math.ts} +0 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { Image } from './image.js';
|
|
2
|
+
export declare class Text extends Image {
|
|
2
3
|
/**
|
|
3
4
|
* Creates a new Text object.
|
|
4
5
|
* @param {import('../core/game.js').Game} game - The game instance this text belongs to.
|
|
@@ -7,36 +8,11 @@ export class Text extends Image {
|
|
|
7
8
|
* @param {string} text - The text content to display.
|
|
8
9
|
* @param {object} style - The style settings for the text.
|
|
9
10
|
*/
|
|
10
|
-
constructor(game:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
style: any;
|
|
16
|
-
/** @type {string[]} */
|
|
17
|
-
colors: string[];
|
|
18
|
-
/** @type {string[]} */
|
|
19
|
-
strokeColors: string[];
|
|
20
|
-
/** @type {string[]} */
|
|
21
|
-
fontStyles: string[];
|
|
22
|
-
/** @type {number[]} */
|
|
23
|
-
fontWeights: number[];
|
|
24
|
-
autoRound: boolean;
|
|
25
|
-
useAdvancedWrap: boolean;
|
|
26
|
-
_res: any;
|
|
27
|
-
_text: string;
|
|
28
|
-
_fontComponents: {
|
|
29
|
-
font: string;
|
|
30
|
-
fontStyle?: string;
|
|
31
|
-
fontVariant?: string;
|
|
32
|
-
fontWeight?: string;
|
|
33
|
-
fontSize?: string;
|
|
34
|
-
fontFamily?: string;
|
|
35
|
-
};
|
|
36
|
-
/** @type {number} */
|
|
37
|
-
_lineSpacing: number;
|
|
38
|
-
/** @type {number} */
|
|
39
|
-
_charCount: number;
|
|
11
|
+
constructor(game: any, x: any, y: any, text?: string, style?: {});
|
|
12
|
+
/**
|
|
13
|
+
* Destroys this text object and cleans up resources.
|
|
14
|
+
*/
|
|
15
|
+
destroy(): void;
|
|
40
16
|
/**
|
|
41
17
|
* Sets the drop shadow properties for this text.
|
|
42
18
|
* @param {number} x - The horizontal offset of the shadow.
|
|
@@ -47,15 +23,14 @@ export class Text extends Image {
|
|
|
47
23
|
* @param {boolean} shadowFill - Whether to apply the shadow to the fill.
|
|
48
24
|
* @returns {Text} This Text object for chaining.
|
|
49
25
|
*/
|
|
50
|
-
setShadow(x?: number, y?: number, color?: string, blur?: number, shadowStroke?: boolean, shadowFill?: boolean):
|
|
51
|
-
dirty: boolean;
|
|
26
|
+
setShadow(x?: number, y?: number, color?: string, blur?: number, shadowStroke?: boolean, shadowFill?: boolean): this;
|
|
52
27
|
/**
|
|
53
28
|
* Sets the style properties for this text.
|
|
54
29
|
* @param {object} style - The style settings to apply.
|
|
55
30
|
* @param {boolean} update - Whether to update the text immediately.
|
|
56
31
|
* @returns {Text} This Text object for chaining.
|
|
57
32
|
*/
|
|
58
|
-
setStyle(style?:
|
|
33
|
+
setStyle(style?: any, update?: boolean): this;
|
|
59
34
|
/**
|
|
60
35
|
* Updates the text content and renders it to the canvas.
|
|
61
36
|
*/
|
|
@@ -67,135 +42,132 @@ export class Text extends Image {
|
|
|
67
42
|
* @param {number} y - The y position to start rendering from.
|
|
68
43
|
* @param {boolean} fill - True to fill the text, false to stroke it.
|
|
69
44
|
*/
|
|
70
|
-
renderTabLine(line:
|
|
45
|
+
renderTabLine(line: any, x: any, y: any, fill: any): void;
|
|
71
46
|
/**
|
|
72
47
|
* Updates the shadow properties for this text.
|
|
73
48
|
* @param {string} state - The shadow state to update ('stroke' or 'fill').
|
|
74
49
|
*/
|
|
75
|
-
updateShadow(state:
|
|
50
|
+
updateShadow(state: any): void;
|
|
76
51
|
/**
|
|
77
52
|
* Measures the width of a line of text.
|
|
78
53
|
* @param {string} line - The line of text to measure.
|
|
79
54
|
* @returns {number} The width of the line in pixels.
|
|
80
55
|
*/
|
|
81
|
-
measureLine(line:
|
|
56
|
+
measureLine(line: any): number;
|
|
82
57
|
/**
|
|
83
58
|
* Updates a line of text to the canvas.
|
|
84
59
|
* @param {string} line - The line of text to update.
|
|
85
60
|
* @param {number} x - The x position to start updating from.
|
|
86
61
|
* @param {number} y - The y position to start updating from.
|
|
87
62
|
*/
|
|
88
|
-
updateLine(line:
|
|
63
|
+
updateLine(line: any, x: any, y: any): void;
|
|
89
64
|
/**
|
|
90
65
|
* Clears all color values from this text object.
|
|
91
66
|
* @returns {Text} This Text object for chaining.
|
|
92
67
|
*/
|
|
93
|
-
clearColors():
|
|
68
|
+
clearColors(): this;
|
|
94
69
|
/**
|
|
95
70
|
* Clears all font style values from this text object.
|
|
96
71
|
* @returns {Text} This Text object for chaining.
|
|
97
72
|
*/
|
|
98
|
-
clearFontValues():
|
|
73
|
+
clearFontValues(): this;
|
|
99
74
|
/**
|
|
100
75
|
* Adds a color to this text object at the specified position.
|
|
101
76
|
* @param {string} color - The color to apply.
|
|
102
77
|
* @param {number} position - The character position to apply the color at.
|
|
103
78
|
* @returns {Text} This Text object for chaining.
|
|
104
79
|
*/
|
|
105
|
-
addColor(color:
|
|
80
|
+
addColor(color: any, position: any): this;
|
|
106
81
|
/**
|
|
107
82
|
* Adds a stroke color to this text object at the specified position.
|
|
108
83
|
* @param {number} color - The stroke color to apply.
|
|
109
84
|
* @param {number} position - The character position to apply the stroke color at.
|
|
110
85
|
* @returns {Text} This Text object for chaining.
|
|
111
86
|
*/
|
|
112
|
-
addStrokeColor(color:
|
|
87
|
+
addStrokeColor(color: any, position: any): this;
|
|
113
88
|
/**
|
|
114
89
|
* Adds a font style to this text object at the specified position.
|
|
115
90
|
* @param {object} style - The font style to apply.
|
|
116
91
|
* @param {number} position - The character position to apply the font style at.
|
|
117
92
|
* @returns {Text} This Text object for chaining.
|
|
118
93
|
*/
|
|
119
|
-
addFontStyle(style:
|
|
94
|
+
addFontStyle(style: any, position: any): this;
|
|
120
95
|
/**
|
|
121
96
|
* Adds a font weight to this text object at the specified position.
|
|
122
97
|
* @param {number} weight - The font weight to apply.
|
|
123
98
|
* @param {number} position - The character position to apply the font weight at.
|
|
124
99
|
* @returns {Text} This Text object for chaining.
|
|
125
100
|
*/
|
|
126
|
-
addFontWeight(weight:
|
|
101
|
+
addFontWeight(weight: any, position: any): this;
|
|
127
102
|
/**
|
|
128
103
|
* Precalculates word wrap for the given text.
|
|
129
104
|
* @param {string} text - The text to precalculate word wrap for.
|
|
130
105
|
* @returns {string[]} The wrapped lines of text.
|
|
131
106
|
*/
|
|
132
|
-
precalculateWordWrap(text:
|
|
107
|
+
precalculateWordWrap(text: any): string[];
|
|
133
108
|
/**
|
|
134
109
|
* Runs word wrap on the given text.
|
|
135
110
|
* @param {string} text - The text to run word wrap on.
|
|
136
111
|
* @returns {string} The wrapped text.
|
|
137
112
|
*/
|
|
138
|
-
runWordWrap(text:
|
|
113
|
+
runWordWrap(text: any): string;
|
|
139
114
|
/**
|
|
140
115
|
* Runs advanced word wrap on the given text.
|
|
141
116
|
* @param {string} text - The text to run advanced word wrap on.
|
|
142
117
|
* @returns {string} The wrapped text.
|
|
143
118
|
* @throws {Error} If the wordWrapWidth setting is less than a single character.
|
|
144
119
|
*/
|
|
145
|
-
advancedWordWrap(text:
|
|
120
|
+
advancedWordWrap(text: any): string;
|
|
146
121
|
/**
|
|
147
122
|
* Runs basic word wrap on the given text.
|
|
148
123
|
* @param {string} text - The text to run basic word wrap on.
|
|
149
124
|
* @returns {string} The wrapped text.
|
|
150
125
|
*/
|
|
151
|
-
basicWordWrap(text:
|
|
126
|
+
basicWordWrap(text: any): string;
|
|
152
127
|
/**
|
|
153
128
|
* Updates the font properties based on the given components.
|
|
154
129
|
* @param {object} components - The font components to update from.
|
|
155
130
|
*/
|
|
156
|
-
updateFont(components:
|
|
131
|
+
updateFont(components: any): void;
|
|
157
132
|
/**
|
|
158
133
|
* Converts a font string to components.
|
|
159
134
|
* @param {string} font - The font string to convert.
|
|
160
135
|
* @returns {{ font: string, fontStyle?: string, fontVariant?: string, fontWeight?: string, fontSize?: string, fontFamily?: string }} The font components.
|
|
161
136
|
*/
|
|
162
|
-
fontToComponents(font:
|
|
163
|
-
font:
|
|
164
|
-
fontStyle
|
|
165
|
-
fontVariant
|
|
166
|
-
fontWeight
|
|
167
|
-
fontSize
|
|
168
|
-
fontFamily
|
|
137
|
+
fontToComponents(font: any): {
|
|
138
|
+
font: any;
|
|
139
|
+
fontStyle: any;
|
|
140
|
+
fontVariant: any;
|
|
141
|
+
fontWeight: any;
|
|
142
|
+
fontSize: any;
|
|
143
|
+
fontFamily: any;
|
|
144
|
+
} | {
|
|
145
|
+
font: any;
|
|
146
|
+
fontStyle?: undefined;
|
|
147
|
+
fontVariant?: undefined;
|
|
148
|
+
fontWeight?: undefined;
|
|
149
|
+
fontSize?: undefined;
|
|
150
|
+
fontFamily?: undefined;
|
|
169
151
|
};
|
|
170
152
|
/**
|
|
171
153
|
* Converts font components to a font string.
|
|
172
154
|
* @param {object} components - The font components to convert.
|
|
173
155
|
* @returns {string} The font string.
|
|
174
156
|
*/
|
|
175
|
-
componentsToFont(components:
|
|
157
|
+
componentsToFont(components: any): string;
|
|
176
158
|
/**
|
|
177
159
|
* Sets the text content of this object.
|
|
178
160
|
* @param {string} text - The new text to set.
|
|
179
161
|
* @param {boolean} immediate - If true, updates the text immediately.
|
|
180
162
|
* @returns {Text} This Text object for chaining.
|
|
181
163
|
*/
|
|
182
|
-
setText(text:
|
|
183
|
-
/**
|
|
184
|
-
* Sets the text content of this object.
|
|
185
|
-
* @param {string | number | boolean | Date} value - The new text content to set.
|
|
186
|
-
*/
|
|
187
|
-
set text(value: string | number | boolean | Date);
|
|
188
|
-
/**
|
|
189
|
-
* Gets the text content of this object.
|
|
190
|
-
* @returns {string} The current text content.
|
|
191
|
-
*/
|
|
192
|
-
get text(): string;
|
|
164
|
+
setText(text: any, immediate?: boolean): this;
|
|
193
165
|
/**
|
|
194
166
|
* Parses a list of text into this object.
|
|
195
167
|
* @param {string[]|string[][]} list - The list of text to parse.
|
|
196
168
|
* @returns {Text} This Text object for chaining.
|
|
197
169
|
*/
|
|
198
|
-
parseList(list:
|
|
170
|
+
parseList(list: any): this;
|
|
199
171
|
/**
|
|
200
172
|
* Sets the text bounds for this object.
|
|
201
173
|
* @param {number} x - The x position of the bounds.
|
|
@@ -204,7 +176,7 @@ export class Text extends Image {
|
|
|
204
176
|
* @param {number} height - The height of the bounds.
|
|
205
177
|
* @returns {Text} This Text object for chaining.
|
|
206
178
|
*/
|
|
207
|
-
setTextBounds(x:
|
|
179
|
+
setTextBounds(x: any, y: any, width: any, height: any): this;
|
|
208
180
|
/**
|
|
209
181
|
* Updates the texture of this object.
|
|
210
182
|
*/
|
|
@@ -213,281 +185,304 @@ export class Text extends Image {
|
|
|
213
185
|
* Renders this text object using WebGL.
|
|
214
186
|
* @param {object} renderSession - The render session to use.
|
|
215
187
|
*/
|
|
216
|
-
renderWebGL(renderSession:
|
|
188
|
+
renderWebGL(renderSession: any): void;
|
|
217
189
|
/**
|
|
218
190
|
* Renders this text object using Canvas.
|
|
219
191
|
* @param {object} renderSession - The render session to use.
|
|
220
192
|
*/
|
|
221
|
-
renderCanvas(renderSession:
|
|
193
|
+
renderCanvas(renderSession: any): void;
|
|
222
194
|
/**
|
|
223
195
|
* Gets the font properties cache object.
|
|
224
196
|
* @returns {{[key: string]: {ascent: number, descent: number, fontSize: number}}} The font properties cache.
|
|
225
197
|
*/
|
|
226
|
-
getFontPropertiesCache():
|
|
227
|
-
[key: string]: {
|
|
228
|
-
ascent: number;
|
|
229
|
-
descent: number;
|
|
230
|
-
fontSize: number;
|
|
231
|
-
};
|
|
232
|
-
};
|
|
198
|
+
getFontPropertiesCache(): any;
|
|
233
199
|
/**
|
|
234
200
|
* Gets the font properties canvas element.
|
|
235
201
|
* @returns {HTMLCanvasElement} The font properties canvas element.
|
|
236
202
|
*/
|
|
237
|
-
getFontPropertiesCanvas():
|
|
203
|
+
getFontPropertiesCanvas(): any;
|
|
238
204
|
/**
|
|
239
205
|
* Gets the font properties canvas context.
|
|
240
206
|
* @returns {CanvasRenderingContext2D} The font properties canvas context.
|
|
241
207
|
*/
|
|
242
|
-
getFontPropertiesContext():
|
|
208
|
+
getFontPropertiesContext(): any;
|
|
243
209
|
/**
|
|
244
210
|
* Determines the font properties for a given font.
|
|
245
211
|
* @param {string} font - The font to determine properties for.
|
|
246
212
|
* @returns {object} The font properties.
|
|
247
213
|
*/
|
|
248
|
-
determineFontProperties(font:
|
|
214
|
+
determineFontProperties(font: any): any;
|
|
249
215
|
/**
|
|
250
216
|
* Determines font properties using a fallback method.
|
|
251
217
|
* @param {string} fontStyle - The font style to determine properties for.
|
|
252
218
|
* @returns {{ascent: number, descent: number, fontSize: number}} The font properties.
|
|
253
219
|
*/
|
|
254
|
-
determineFontPropertiesFallback(fontStyle:
|
|
255
|
-
ascent: number;
|
|
256
|
-
descent: number;
|
|
257
|
-
fontSize: number;
|
|
258
|
-
};
|
|
220
|
+
determineFontPropertiesFallback(fontStyle: any): any;
|
|
259
221
|
/**
|
|
260
|
-
*
|
|
261
|
-
* @param {
|
|
222
|
+
* Gets the bounds of this text object.
|
|
223
|
+
* @param {import('../geom/matrix.js').Matrix} matrix - The transformation matrix to use.
|
|
224
|
+
* @returns {Rectangle} The bounds of this text object.
|
|
262
225
|
*/
|
|
263
|
-
|
|
226
|
+
getBounds(matrix?: any): any;
|
|
227
|
+
/**
|
|
228
|
+
* Gets the text content of this object.
|
|
229
|
+
* @returns {string} The current text content.
|
|
230
|
+
*/
|
|
231
|
+
get text(): any;
|
|
232
|
+
/**
|
|
233
|
+
* Sets the text content of this object.
|
|
234
|
+
* @param {string | number | boolean | Date} value - The new text content to set.
|
|
235
|
+
*/
|
|
236
|
+
set text(value: any);
|
|
264
237
|
/**
|
|
265
238
|
* Gets the CSS font string for this object.
|
|
266
239
|
* @returns {string} The CSS font string.
|
|
267
240
|
*/
|
|
268
241
|
get cssFont(): string;
|
|
269
242
|
/**
|
|
270
|
-
* Sets the font
|
|
271
|
-
* @param {string} value - The new font
|
|
243
|
+
* Sets the CSS font string for this object.
|
|
244
|
+
* @param {string} value - The new CSS font string to set.
|
|
272
245
|
*/
|
|
273
|
-
set
|
|
246
|
+
set cssFont(value: string);
|
|
274
247
|
/**
|
|
275
248
|
* Gets the font family of this object.
|
|
276
249
|
* @returns {number} The font family.
|
|
277
250
|
*/
|
|
278
|
-
get font():
|
|
251
|
+
get font(): any;
|
|
279
252
|
/**
|
|
280
|
-
* Sets the font
|
|
281
|
-
* @param {
|
|
253
|
+
* Sets the font family of this object.
|
|
254
|
+
* @param {string} value - The new font family to set.
|
|
282
255
|
*/
|
|
283
|
-
set
|
|
256
|
+
set font(value: any);
|
|
284
257
|
/**
|
|
285
258
|
* Gets the font size of this object.
|
|
286
259
|
* @returns {number} The font size.
|
|
287
260
|
*/
|
|
288
|
-
get fontSize():
|
|
261
|
+
get fontSize(): any;
|
|
289
262
|
/**
|
|
290
|
-
* Sets the font
|
|
291
|
-
* @param {
|
|
263
|
+
* Sets the font size of this object.
|
|
264
|
+
* @param {number} value - The new font size to set.
|
|
292
265
|
*/
|
|
293
|
-
set
|
|
266
|
+
set fontSize(value: any);
|
|
294
267
|
/**
|
|
295
268
|
* Gets the font weight of this object.
|
|
296
269
|
* @returns {string} The font weight.
|
|
297
270
|
*/
|
|
298
|
-
get fontWeight():
|
|
271
|
+
get fontWeight(): any;
|
|
299
272
|
/**
|
|
300
|
-
* Sets the font
|
|
301
|
-
* @param {string} value - The new font
|
|
273
|
+
* Sets the font weight of this object.
|
|
274
|
+
* @param {string} value - The new font weight to set.
|
|
302
275
|
*/
|
|
303
|
-
set
|
|
276
|
+
set fontWeight(value: any);
|
|
304
277
|
/**
|
|
305
278
|
* Gets the font style of this object.
|
|
306
279
|
* @returns {string} The font style.
|
|
307
280
|
*/
|
|
308
|
-
get fontStyle():
|
|
281
|
+
get fontStyle(): any;
|
|
309
282
|
/**
|
|
310
|
-
* Sets the font
|
|
311
|
-
* @param {string} value - The new font
|
|
283
|
+
* Sets the font style of this object.
|
|
284
|
+
* @param {string} value - The new font style to set.
|
|
312
285
|
*/
|
|
313
|
-
set
|
|
286
|
+
set fontStyle(value: any);
|
|
314
287
|
/**
|
|
315
288
|
* Gets the font variant of this object.
|
|
316
289
|
* @returns {string} The font variant.
|
|
317
290
|
*/
|
|
318
|
-
get fontVariant():
|
|
291
|
+
get fontVariant(): any;
|
|
319
292
|
/**
|
|
320
|
-
* Sets the
|
|
321
|
-
* @param {string} value - The new
|
|
293
|
+
* Sets the font variant of this object.
|
|
294
|
+
* @param {string} value - The new font variant to set.
|
|
322
295
|
*/
|
|
323
|
-
set
|
|
296
|
+
set fontVariant(value: any);
|
|
324
297
|
/**
|
|
325
298
|
* Gets the fill color of this object.
|
|
326
299
|
* @returns {number} The fill color.
|
|
327
300
|
*/
|
|
328
|
-
get fill():
|
|
301
|
+
get fill(): any;
|
|
329
302
|
/**
|
|
330
|
-
* Sets the
|
|
331
|
-
* @param {string} value - The new
|
|
303
|
+
* Sets the fill color of this object.
|
|
304
|
+
* @param {string} value - The new fill color to set.
|
|
332
305
|
*/
|
|
333
|
-
set
|
|
306
|
+
set fill(value: any);
|
|
334
307
|
/**
|
|
335
308
|
* Gets the alignment of this object.
|
|
336
309
|
* @returns {string} The text alignment.
|
|
337
310
|
*/
|
|
338
|
-
get align():
|
|
311
|
+
get align(): any;
|
|
339
312
|
/**
|
|
340
|
-
* Sets the
|
|
341
|
-
* @param {
|
|
313
|
+
* Sets the alignment of this object.
|
|
314
|
+
* @param {string} value - The new text alignment to set.
|
|
342
315
|
*/
|
|
343
|
-
set
|
|
316
|
+
set align(value: any);
|
|
344
317
|
/**
|
|
345
318
|
* Gets the resolution of this object.
|
|
346
319
|
* @returns {number} The resolution.
|
|
347
320
|
*/
|
|
348
|
-
get resolution():
|
|
321
|
+
get resolution(): any;
|
|
349
322
|
/**
|
|
350
|
-
* Sets the
|
|
351
|
-
* @param {number} value - The new
|
|
323
|
+
* Sets the resolution of this object.
|
|
324
|
+
* @param {number} value - The new resolution to set.
|
|
352
325
|
*/
|
|
353
|
-
set
|
|
326
|
+
set resolution(value: any);
|
|
354
327
|
/**
|
|
355
328
|
* Gets the tabs setting of this object.
|
|
356
329
|
* @returns {number} The tabs setting.
|
|
357
330
|
*/
|
|
358
|
-
get tabs():
|
|
331
|
+
get tabs(): any;
|
|
359
332
|
/**
|
|
360
|
-
* Sets the
|
|
361
|
-
* @param {number} value - The new
|
|
333
|
+
* Sets the tabs setting of this object.
|
|
334
|
+
* @param {number} value - The new tabs setting to set.
|
|
362
335
|
*/
|
|
363
|
-
set
|
|
336
|
+
set tabs(value: any);
|
|
364
337
|
/**
|
|
365
338
|
* Gets the horizontal bounds alignment of this object.
|
|
366
339
|
* @returns {number} The horizontal bounds alignment.
|
|
367
340
|
*/
|
|
368
|
-
get boundsAlignH():
|
|
341
|
+
get boundsAlignH(): any;
|
|
369
342
|
/**
|
|
370
|
-
* Sets the
|
|
371
|
-
* @param {number} value - The new
|
|
343
|
+
* Sets the horizontal bounds alignment of this object.
|
|
344
|
+
* @param {number} value - The new horizontal bounds alignment to set.
|
|
372
345
|
*/
|
|
373
|
-
set
|
|
346
|
+
set boundsAlignH(value: any);
|
|
374
347
|
/**
|
|
375
348
|
* Gets the vertical bounds alignment of this object.
|
|
376
349
|
* @returns {number} The vertical bounds alignment.
|
|
377
350
|
*/
|
|
378
|
-
get boundsAlignV():
|
|
351
|
+
get boundsAlignV(): any;
|
|
379
352
|
/**
|
|
380
|
-
* Sets the
|
|
381
|
-
* @param {
|
|
353
|
+
* Sets the vertical bounds alignment of this object.
|
|
354
|
+
* @param {number} value - The new vertical bounds alignment to set.
|
|
382
355
|
*/
|
|
383
|
-
set
|
|
356
|
+
set boundsAlignV(value: any);
|
|
384
357
|
/**
|
|
385
358
|
* Gets the stroke color of this object.
|
|
386
359
|
* @returns {number} The stroke color.
|
|
387
360
|
*/
|
|
388
|
-
get stroke():
|
|
361
|
+
get stroke(): any;
|
|
389
362
|
/**
|
|
390
|
-
* Sets the stroke
|
|
391
|
-
* @param {
|
|
363
|
+
* Sets the stroke color of this object.
|
|
364
|
+
* @param {string} value - The new stroke color to set.
|
|
392
365
|
*/
|
|
393
|
-
set
|
|
366
|
+
set stroke(value: any);
|
|
394
367
|
/**
|
|
395
368
|
* Gets the stroke thickness of this object.
|
|
396
369
|
* @returns {number} The stroke thickness.
|
|
397
370
|
*/
|
|
398
|
-
get strokeThickness():
|
|
371
|
+
get strokeThickness(): any;
|
|
399
372
|
/**
|
|
400
|
-
* Sets the
|
|
401
|
-
* @param {
|
|
373
|
+
* Sets the stroke thickness of this object.
|
|
374
|
+
* @param {number} value - The new stroke thickness to set.
|
|
402
375
|
*/
|
|
403
|
-
set
|
|
376
|
+
set strokeThickness(value: any);
|
|
404
377
|
/**
|
|
405
378
|
* Gets the word wrap setting of this object.
|
|
406
379
|
* @returns {number} The word wrap setting.
|
|
407
380
|
*/
|
|
408
|
-
get wordWrap():
|
|
381
|
+
get wordWrap(): any;
|
|
409
382
|
/**
|
|
410
|
-
* Sets the word wrap
|
|
411
|
-
* @param {
|
|
383
|
+
* Sets the word wrap setting of this object.
|
|
384
|
+
* @param {boolean} value - The new word wrap setting to set.
|
|
412
385
|
*/
|
|
413
|
-
set
|
|
386
|
+
set wordWrap(value: any);
|
|
414
387
|
/**
|
|
415
388
|
* Gets the word wrap width of this object.
|
|
416
389
|
* @returns {number} The word wrap width.
|
|
417
390
|
*/
|
|
418
|
-
get wordWrapWidth():
|
|
391
|
+
get wordWrapWidth(): any;
|
|
419
392
|
/**
|
|
420
|
-
* Sets the
|
|
421
|
-
* @param {number} value - The new
|
|
393
|
+
* Sets the word wrap width of this object.
|
|
394
|
+
* @param {number} value - The new word wrap width to set.
|
|
422
395
|
*/
|
|
423
|
-
set
|
|
396
|
+
set wordWrapWidth(value: any);
|
|
424
397
|
/**
|
|
425
398
|
* Gets the line spacing of this object.
|
|
426
399
|
* @returns {number} The line spacing.
|
|
427
400
|
*/
|
|
428
|
-
get lineSpacing():
|
|
401
|
+
get lineSpacing(): any;
|
|
429
402
|
/**
|
|
430
|
-
* Sets the
|
|
431
|
-
* @param {number} value - The new
|
|
403
|
+
* Sets the line spacing of this object.
|
|
404
|
+
* @param {number} value - The new line spacing to set.
|
|
432
405
|
*/
|
|
433
|
-
set
|
|
406
|
+
set lineSpacing(value: any);
|
|
434
407
|
/**
|
|
435
408
|
* Gets the shadow offset X of this object.
|
|
436
409
|
* @returns {number} The shadow offset X.
|
|
437
410
|
*/
|
|
438
|
-
get shadowOffsetX():
|
|
411
|
+
get shadowOffsetX(): any;
|
|
439
412
|
/**
|
|
440
|
-
* Sets the shadow offset
|
|
441
|
-
* @param {number} value - The new shadow offset
|
|
413
|
+
* Sets the shadow offset X of this object.
|
|
414
|
+
* @param {number} value - The new shadow offset X to set.
|
|
442
415
|
*/
|
|
443
|
-
set
|
|
416
|
+
set shadowOffsetX(value: any);
|
|
444
417
|
/**
|
|
445
418
|
* Gets the shadow offset Y of this object.
|
|
446
419
|
* @returns {number} The shadow offset Y.
|
|
447
420
|
*/
|
|
448
|
-
get shadowOffsetY():
|
|
421
|
+
get shadowOffsetY(): any;
|
|
449
422
|
/**
|
|
450
|
-
* Sets the shadow
|
|
451
|
-
* @param {
|
|
423
|
+
* Sets the shadow offset Y of this object.
|
|
424
|
+
* @param {number} value - The new shadow offset Y to set.
|
|
452
425
|
*/
|
|
453
|
-
set
|
|
426
|
+
set shadowOffsetY(value: any);
|
|
454
427
|
/**
|
|
455
428
|
* Gets the shadow color of this object.
|
|
456
429
|
* @returns {number} The shadow color.
|
|
457
430
|
*/
|
|
458
|
-
get shadowColor():
|
|
431
|
+
get shadowColor(): any;
|
|
459
432
|
/**
|
|
460
|
-
* Sets the shadow
|
|
461
|
-
* @param {
|
|
433
|
+
* Sets the shadow color of this object.
|
|
434
|
+
* @param {string} value - The new shadow color to set.
|
|
462
435
|
*/
|
|
463
|
-
set
|
|
436
|
+
set shadowColor(value: any);
|
|
464
437
|
/**
|
|
465
438
|
* Gets the shadow blur of this object.
|
|
466
439
|
* @returns {number} The shadow blur.
|
|
467
440
|
*/
|
|
468
|
-
get shadowBlur():
|
|
441
|
+
get shadowBlur(): any;
|
|
469
442
|
/**
|
|
470
|
-
* Sets the shadow
|
|
471
|
-
* @param {
|
|
443
|
+
* Sets the shadow blur of this object.
|
|
444
|
+
* @param {number} value - The new shadow blur to set.
|
|
472
445
|
*/
|
|
473
|
-
set
|
|
446
|
+
set shadowBlur(value: any);
|
|
474
447
|
/**
|
|
475
448
|
* Gets the shadow stroke setting of this object.
|
|
476
449
|
* @returns {number} The shadow stroke setting.
|
|
477
450
|
*/
|
|
478
|
-
get shadowStroke():
|
|
451
|
+
get shadowStroke(): any;
|
|
479
452
|
/**
|
|
480
|
-
* Sets the shadow
|
|
481
|
-
* @param {boolean} value - The new shadow
|
|
453
|
+
* Sets the shadow stroke setting of this object.
|
|
454
|
+
* @param {boolean} value - The new shadow stroke setting to set.
|
|
482
455
|
*/
|
|
483
|
-
set
|
|
456
|
+
set shadowStroke(value: any);
|
|
484
457
|
/**
|
|
485
458
|
* Gets the shadow fill setting of this object.
|
|
486
459
|
* @returns {number} The shadow fill setting.
|
|
487
460
|
*/
|
|
488
|
-
get shadowFill():
|
|
461
|
+
get shadowFill(): any;
|
|
462
|
+
/**
|
|
463
|
+
* Sets the shadow fill setting of this object.
|
|
464
|
+
* @param {boolean} value - The new shadow fill setting to set.
|
|
465
|
+
*/
|
|
466
|
+
set shadowFill(value: any);
|
|
467
|
+
/**
|
|
468
|
+
* Gets the width of this object.
|
|
469
|
+
* @returns {number} The width in pixels.
|
|
470
|
+
*/
|
|
471
|
+
get width(): number;
|
|
472
|
+
/**
|
|
473
|
+
* Sets the width of this object.
|
|
474
|
+
* @param {number} value - The new width to set in pixels.
|
|
475
|
+
*/
|
|
476
|
+
set width(value: number);
|
|
477
|
+
/**
|
|
478
|
+
* Gets the height of this object.
|
|
479
|
+
* @returns {number} The height in pixels.
|
|
480
|
+
*/
|
|
481
|
+
get height(): number;
|
|
482
|
+
/**
|
|
483
|
+
* Sets the height of this object.
|
|
484
|
+
* @param {number} value - The new height to set in pixels.
|
|
485
|
+
*/
|
|
486
|
+
set height(value: number);
|
|
489
487
|
}
|
|
490
|
-
import { Image } from './image.js';
|
|
491
|
-
import { Point } from '../geom/point.js';
|
|
492
|
-
import { Rectangle } from '../geom/rectangle.js';
|
|
493
488
|
//# sourceMappingURL=text.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"text.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/text.ts"],"names":[],"mappings":"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"}
|