[]texture可以加载一个canvas吗
var share = sharedCanvas.getContext('2d');
share.fillStyle="#0000ff";
share.fillRect(20,20,150,100);
var _texture = new Laya.Texture(sharedCanvas);
var sp2 = new Laya.Sprite();
sp2.x = 300;
sp2.graphics.drawTexture(_texture,0,0,100,100);
Laya.stage.addChild(sp2);
文档说好像可以
报错了。 this.bitmap.activeResource is not a function
有其他的方法将一个canvas的内容绘制到另外一个canvas吗
share.fillStyle="#0000ff";
share.fillRect(20,20,150,100);
var _texture = new Laya.Texture(sharedCanvas);
var sp2 = new Laya.Sprite();
sp2.x = 300;
sp2.graphics.drawTexture(_texture,0,0,100,100);
Laya.stage.addChild(sp2);
文档说好像可以
报错了。 this.bitmap.activeResource is not a function
有其他的方法将一个canvas的内容绘制到另外一个canvas吗
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
ymsdandan
赞同来自: