mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 13:43:26 +00:00
Fixed renderCanvas() call in Graphics.generateTexture().
Introduced by altering the signature of the Canvas renderers (c232642a
).
This commit is contained in:
parent
0e401bb6fe
commit
9293891c82
1 changed files with 3 additions and 3 deletions
|
@ -1133,7 +1133,7 @@ var Graphics = new Class({
|
|||
|
||||
if (ctx)
|
||||
{
|
||||
this.renderCanvas(sys.game.renderer, this, 0, Graphics.TargetCamera, ctx);
|
||||
this.renderCanvas(sys.game.renderer, this, 0.0, Graphics.TargetCamera, null, ctx);
|
||||
|
||||
if (sys.game.renderer.gl && texture)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue