2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2023-01-02 17:36:27 +00:00
|
|
|
* @copyright 2013-2023 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-02-12 16:01:20 +00:00
|
|
|
*/
|
|
|
|
|
2018-02-07 00:18:22 +00:00
|
|
|
/**
|
|
|
|
* Renders this Game Object with the Canvas Renderer to the given Camera.
|
|
|
|
* The object will not render if any of its renderFlags are set or it is being actively filtered out by the Camera.
|
|
|
|
* This method should not be called directly. It is a utility function of the Render module.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Text#renderCanvas
|
|
|
|
* @since 3.0.0
|
|
|
|
* @private
|
|
|
|
*
|
2018-03-28 14:04:09 +00:00
|
|
|
* @param {Phaser.Renderer.Canvas.CanvasRenderer} renderer - A reference to the current active Canvas renderer.
|
2018-02-07 00:18:22 +00:00
|
|
|
* @param {Phaser.GameObjects.Text} src - The Game Object being rendered in this call.
|
|
|
|
* @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera that is rendering the Game Object.
|
2018-04-04 16:14:55 +00:00
|
|
|
* @param {Phaser.GameObjects.Components.TransformMatrix} parentMatrix - This transform matrix is defined if the game object is nested
|
2018-02-07 00:18:22 +00:00
|
|
|
*/
|
2020-09-14 14:33:58 +00:00
|
|
|
var TextCanvasRenderer = function (renderer, src, camera, parentMatrix)
|
2017-03-15 01:07:58 +00:00
|
|
|
{
|
2020-09-14 14:33:58 +00:00
|
|
|
if (src.width === 0 || src.height === 0)
|
2017-03-15 01:07:58 +00:00
|
|
|
{
|
2019-05-26 12:58:40 +00:00
|
|
|
return;
|
2017-03-15 01:07:58 +00:00
|
|
|
}
|
2019-05-26 12:58:40 +00:00
|
|
|
|
2021-01-07 14:52:08 +00:00
|
|
|
camera.addToRenderList(src);
|
|
|
|
|
2019-05-26 12:58:40 +00:00
|
|
|
renderer.batchSprite(src, src.frame, camera, parentMatrix);
|
2017-03-15 01:07:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = TextCanvasRenderer;
|