2018-03-05 02:24:47 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.RenderTexture#renderCanvas
|
|
|
|
* @since 3.2.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-08-03 18:17:39 +00:00
|
|
|
* @param {Phaser.GameObjects.RenderTexture} src - The Game Object being rendered in this call.
|
2018-03-05 02:24:47 +00:00
|
|
|
* @param {number} interpolationPercentage - Reserved for future use and custom pipelines.
|
|
|
|
* @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-03-05 02:24:47 +00:00
|
|
|
*/
|
2018-08-03 18:17:39 +00:00
|
|
|
var RenderTextureCanvasRenderer = function (renderer, src, interpolationPercentage, camera, parentMatrix)
|
2018-02-23 03:44:22 +00:00
|
|
|
{
|
2018-08-03 18:17:39 +00:00
|
|
|
renderer.batchSprite(src, src.frame, camera, parentMatrix);
|
2018-02-23 03:44:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = RenderTextureCanvasRenderer;
|