mirror of
https://github.com/photonstorm/phaser
synced 2025-01-27 12:25:09 +00:00
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
|
var TextWebGLRenderer = function (renderer, src, interpolationPercentage, camera)
|
||
|
{
|
||
|
if (this.renderMask !== this.renderFlags)
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
var cameraScrollX = camera.scrollX;
|
||
|
var cameraScrollY = camera.scrollY;
|
||
|
};
|
||
|
|
||
|
module.exports = TextWebGLRenderer;
|